« 263 264 265 266 267 1506 »

Pages are deceptive. Live life in a basket.

Nickelback - When We Stand Together - YouTube

Skip navigation Sign in Search Loading... Close Watch Queue Queue Remove all Disconnect The next video is starting stop Loading... Watch Queue Queue __count__/__total__ <p class="yt-spinner "> <span class="yt-spinner-img yt-sprite" title="Loading icon"></span> <span class="yt-spinner-message"> Loading... </span> </p> Find out why Close Nickelback - When We Stand Together Roadrunner Records UK Loading... Unsubscribe from Roadrunner Records UK? Cancel Unsubscribe Working... Subscribe Subscribed Unsubscribe 222K Loading... Loading... Working... Add to Sign in to add this video to a playlist. Sign in Share More Report Sign in to report in...

Linked on 2019-11-27 22:36:48 | Similar Links
Sekiro : Dunkey Dies 489 Times - YouTube

Skip navigation Sign in Search Loading... Close Watch Queue Queue Remove all Disconnect The next video is starting stop Loading... Watch Queue Queue __count__/__total__ <p class="yt-spinner "> <span title="Loading icon" class="yt-spinner-img yt-sprite"></span> <span class="yt-spinner-message"> Loading... </span> </p> Find out why Close Sekiro : Dunkey Dies 489 Times videogamedunkey Loading... Unsubscribe from videogamedunkey? Cancel Unsubscribe Working... Subscribe Subscribed Unsubscribe 5.93M Loading... Loading... Working... Add to Sign in to add this video to a playlist. Sign in Share More Report Sign in to report inappropriate cont...

Linked on 2019-11-27 00:31:58 | Similar Links
BODY/PRISON, a song by HEALTH, Perturbator on Spotify

We and our partners use cookies to personalize your experience, to show you ads based on your interests, and for measurement and analytics purposes. By using our website and our services, you agree to our use of cookies as described in our Cookie Policy . × This browser doesn't support Spotify Web Player. Switch browsers or download Spotify for your desktop. BODY/PRISON HEALTH Perturbator 2018 • 1 song, 2:44 Play on Spotify 1. BODY/PRISON 2:44 0:30 Featured on BODY/PRISON Grand Theft Auto Online: Arena War (Official Soundtrack) VOL. 4 :: SLAVES OF FEAR DISCO3+ DISCO3 DEATH MAGIC More HEALTH Listen to HEALTH in full in the Spotify app Play on Spotify © © 2018 Loma Vista Recordings., Distributed by Concord Music Group, inc. ℗ ℗ 2018 Loma Vista Recordings., Distributed by Concord Music Group, inc. Legal Privacy Cookies About Ads To play this content, you'll need the Spotify app. Get Spotif...

Linked on 2019-11-26 22:17:25 | Similar Links
Hundred Rabbits — Orca

Introduction Sustainability Orca Download Web version Donations Tutorial Workshops Visual Extras Introduction Orca is an esoteric programming language, designed to create procedural sequencers in which each letter of the alphabet is an operation, where lowercase letters operate on bang, uppercase letters operate each frame. The application is not a synthesizer, but a flexible livecoding environment capable of sending MIDI, OSC & UDP to your audio interface, like Ableton, Renoise, VCV Rack or SuperCollider. You can also use Pilot , a companion application to ORCA. Marabu, Orca's predecessor was created while in French Polynesia in 2017. Orca came into being in 2018-2019, its production spanning over 3 countries: Fiji, The Marshall Islands and Japan. Sustainability We create our own tools, built light to reduce our energy use, also to lessen our dependence on closed-source app...

Linked on 2019-11-26 21:35:25 | Similar Links
ornament & crime

HEADER Brand and toggle get grouped for better mobile display Toggle navigation ornament & crime: home Collect the nav links, forms, and other content for toggling hardware DIY basics schematic BoM build it! firmware installation compilation options calibration faq troubleshooting ready-made buy it! Buchla format firmware installation & upgrading user manual overview operational principles the apps CopierMaschine Harrington 1200 Automatonnetz Quantermain Meta-Q Quadraturia Low-rents Piqued Sequins Dialectic Ping Pong Acid Curds Viznutcracker, sweet! References stand-alone version of manual predefined scales envelope zoo hacking custom scales o_C hacking blog firmware CHANGELOG other information licensing vague thoughts about further development videos about or featuring o_C sound tracks featuring o_C acknowledgements known issues /.navbar-collapse /.contain...

Linked on 2019-11-26 21:35:04 | Similar Links
The Go Playground

The Go Playground Imports embed package main import ( "fmt" ) type PriorityQueue struct { high chan string low chan string } func (pq *PriorityQueue) NextItem() string { if len(pq.high) > 0 { return <-pq.high } var item string select { case item = <-pq.high: case item = <-pq.low: } return item } func NewPriorityQueue() *PriorityQueue { return &PriorityQueue{ high: make(chan string, 10), low: make(chan string, 10), } } func main() { pq := NewPriorityQueue() pq.low <- "I'm first, at LOW 1" pq.low <- "LOW 2" pq.high <- "HIGH 1" pq.high <- "HIGH 2" pq.high <- "HIGH 3" fmt.Println(pq.NextItem()) pq.high <- "HIGH 4" pq.low <- "LOW3" fmt.Println(pq.NextItem()) fmt.Println(pq.NextItem()) fmt.Println(pq.NextItem()) pq.high <- "HIGH 5" fmt.Println(pq.NextItem()) fmt.Println(pq.NextItem()) fmt.Println(pq.NextItem()) fmt.Printl...

Linked on 2019-11-25 22:03:51 | Similar Links
The Go Playground

The Go Playground Imports embed package main import ( "fmt" ) type PriorityQueue struct { high chan string low chan string } func (pq *PriorityQueue) Run() { for { if len(pq.high) == 0 && len(pq.low) == 0 { // this is just to prevent sleeping goroutine deadlocks in the Playgound // (since we aren't ever adding anything else to the queue). return } if len(pq.high) > 0 { pq.handle(<-pq.high) continue } select { case item := <-pq.high: pq.handle(item) case item := <-pq.low: pq.handle(item) } } } func (pq *PriorityQueue) handle(item string) { fmt.Println(item) } func NewPriorityQueue() *PriorityQueue { return &PriorityQueue{ high: make(chan string, 10), low: make(chan string, 10), } } func main() { pq := NewPriorityQueue() pq.low <- "I'm first, at LOW 1" pq.low <- "LOW 2" pq.high <- "HIGH 1" pq.high <- ...

Linked on 2019-11-25 21:55:21 | Similar Links
GitHub - puppetlabs/horsehead: Useful libraries for Go projects

-- this is our utility library that we use for our internal stuff

Skip to content Why GitHub? Features → Code review Project management Integrations Actions Packages Security Team management Social coding Documentation Code hosting Customer stories → Security → Enterprise Explore Explore GitHub → Topics Collections Trending Learning Lab Open source guides Events Community forum GitHub Education Marketplace Pricing Plans → Compare plans Contact Sales Nonprofit → Education → '"` </textarea></xmp> In this repository All GitHub ↵ Jump to ↵ No suggested jump to results In this repository All GitHub ↵ Jump to ↵ In this repository All GitHub ↵ Jump to ↵ Sign in Sign up Watch 2 Star 1 Fork 0 puppetlabs / horsehead Code Issues 0 Pull requests 0 Security Insights '"` </textar...

Linked on 2019-11-25 21:29:07 | Similar Links
GitHub - Masterminds/squirrel: Fluent SQL generation for golang

Skip to content Why GitHub? Features → Code review Project management Integrations Actions Packages Security Team management Social coding Documentation Code hosting Customer stories → Security → Enterprise Explore Explore GitHub → Topics Collections Trending Learning Lab Open source guides Events Community forum GitHub Education Marketplace Pricing Plans → Compare plans Contact Sales Nonprofit → Education → '"` </textarea></xmp> In this repository All GitHub ↵ Jump to ↵ No suggested jump to results In this repository All GitHub ↵ Jump to ↵ In this repository All GitHub ↵ Jump to ↵ Sign in Sign up Watch 39 Star 2.5k Fork 217 Masterminds / squirrel Code Issues 40 Pull requests 16 Projects 0 Security Insigh...

Linked on 2019-11-25 21:26:32 | Similar Links
_MG_ on Twitter: "People are still freaking out about nonexistent razor blades in trick-or-treat candy? What century is it!? You need better boogeymen. Happy Halloween 😈… https://t.co/zSmp2Mz2hb"

We've detected that JavaScript is disabled in your browser. Would you like to proceed to legacy Twitter? Yes Skip to content Home Home Home, current page. Moments Moments Moments, current page. Search query Search Twitter Remove In this conversation Verified account Protected Tweets @ Suggested users Verified account Protected Tweets @ Verified account Protected Tweets @ Language: English Bahasa Indonesia Bahasa Melayu Català Čeština Dansk Deutsch English UK Español Filipino Français Hrvatski Italiano Magyar Nederlands Norsk Polski Português Română Slovenčina Suomi Svenska Tiếng Việt Türkçe Ελληνικά Български език Русский Српски Українська мова עִבְרִית العربية فارسی मराठी हिन्दी বাংলা ગુજરાતી தமிழ் ಕನ್ನಡ ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log i...

Linked on 2019-11-25 08:15:45 | Similar Links
« 263 264 265 266 267 1506 »

Pages are deceptive. Live life in a basket.