
segfault88.github.io
segfault88 / Malcolm Lockyer · segfault88 / Malcolm LockyerGo, Ruby and other stuff
http://segfault88.github.io/
Go, Ruby and other stuff
http://segfault88.github.io/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.2 seconds
PAGES IN
THIS WEBSITE
7
SSL
EXTERNAL LINKS
1
SITE IP
199.27.76.133
LOAD TIME
0.21 sec
SCORE
6.2
segfault88 / Malcolm Lockyer · segfault88 / Malcolm Lockyer | segfault88.github.io Reviews
https://segfault88.github.io
Go, Ruby and other stuff
Golang · segfault88 / Malcolm Lockyer
http://segfault88.github.io//categories/golang
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 13 Sep 2016, 16:30. Dave Cheney - SOLID Go Design Video from Golang UK. Paul Bellamy - Advanced Patterns with io ReadWriter Video from Golang UK. 10 Aug 2015, 00:00. Quick, what is wrong with this Go code? Package main import ( "log" "math/rand" "sync" "time" ) func main() { var wg sync.WaitGroup for i := 0; i. Answer - the WaitGroup. Simply pass it as a pointer. Helpfully Go will warn you about this:. 09 Aug 2015, 17:30. Ruby vs. Go 1. Package main...
Rubyvsgo · segfault88 / Malcolm Lockyer
http://segfault88.github.io//categories/rubyvsgo
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 09 Aug 2015, 17:30. Ruby vs. Go 1. So you can follow along. I built a simple simulation of the APIs being called. I threw something together in Go, basically it’s like this: * /slow - sleeps for 200-400 ms then returns * /bad - approximately 50% of the time sleep for 50-100 ms then return, otherwise wait 3 seconds and return * /timeout - wait 10 seconds then return. The whole thing is simply this:. Success #{(Time.now - t1).round(2)}. Go’s net...
First post · segfault88 / Malcolm Lockyer
http://segfault88.github.io/posts/first
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 09 Aug 2015, 00:00. First post. Time to resurect this blogging thing! Def openFile(path): # syntax highlighting test file = open(path, "r") content = file.read() file.close() return content. Func slow(c web.C, w http.ResponseWriter, r *http.Request) { n := time.Duration(200 (rand.Int31n(200) ) time.Sleep(n * time.Millisecond) fmt.Fprintf(w, "Done %d ms", n) }.
First · segfault88 / Malcolm Lockyer
http://segfault88.github.io//categories/first
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 09 Aug 2015, 00:00. First post. Time to resurect this blogging thing! Def openFile(path): # syntax highlighting test file = open(path, "r") content = file.read() file.close() return content. Func slow(c web.C, w http.ResponseWriter, r *http.Request) { n := time.Duration(200 (rand.Int31n(200) ) time.Sleep(n * time.Millisecond) fmt.Fprintf(w, "Done %d ms", n) }.
Go · segfault88 / Malcolm Lockyer
http://segfault88.github.io//categories/go
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 13 Sep 2016, 16:30. Dave Cheney - SOLID Go Design Video from Golang UK. Paul Bellamy - Advanced Patterns with io ReadWriter Video from Golang UK. 10 Aug 2015, 00:00. Quick, what is wrong with this Go code? Package main import ( "log" "math/rand" "sync" "time" ) func main() { var wg sync.WaitGroup for i := 0; i. Answer - the WaitGroup. Simply pass it as a pointer. Helpfully Go will warn you about this:. 09 Aug 2015, 17:30. Ruby vs. Go 1. Package main...
TOTAL PAGES IN THIS WEBSITE
7
Segfault ← News from the Linux Mint development team
News from the Linux Mint development team. Cinnamon 2.8: Better box pointers. JosephM applied a couple of fixes to box pointers from our GNOME cousin. Making weird box pointers which looked like this: now look like this:. Read more →. Cinnamon 2.8: Battery vendor/model info. Read more →. Yet another glorious wallpaper. Read more →. No personal information exchanged with DuckDuckGo. DuckDuckGo is always looking for ways to strengthen trust in its strict privacy policy. They’ve been further embol...Thanks ...
void * - Kamal Advani's Home Page
Tue, 17 Feb, 2009: Nostalgia. Just migrated to namingcrisis.net, my new domain (new as in, almost 2 years now). This site is old and nostalgic - and has a working contact form. P But otherwise, unless you're interested in some old code. You should just hop back to my new home. As they say, it ain't much (at time of writing), but it's home sweet home. Wed, Sep 1, 2004: br0kennez. Haven't updated anything in a while, just noted that the contact. Thu, Apr 22, 2004: Resume Update. That's the first milestone ...
Segfault.net.nz
You may know me as cjh, but most likely you do not know me at all. By day I write Perl for Catalyst It. By night I hack on various things. Out of clutter, find simplicity" Albert Einstein. An argument for types. Dodo the stupid editor. Postgres replication 93 to 82. Micropython: a quick gc tour. Perl: the straw that broke the camels back. Git time travel primer. Prologue: a blog is born.
0x00000000
Here we begin our journey into the madness that is MTRCB permits. Ostensibly, these documents are meant to inform the public about the content of the movies in cinemas. Or at the very least, they’re there to justify the rating given to these films. A lot of the time, however, we get something like this. A VERY INSPIRING FILM! Sa panahon ngayon, tuwing umiihi na lang ako kinikilig. Daily Routines of Famous Creatives. On trying to save two kittens stuck in a pipe. Should I vacuum them out? Or use a blower?
unwg.no-ip.com
O say, can you see, by the dawn's early light, What so proudly we hailed at the twilight's last gleaming? Whose broad stripes and bright stars, through the perilous fight, O'er the ramparts we watched, were so gallantly streaming? And the rocket's red glare, the bombs bursting in air, Gave proof through the night that our flag was still there. O say does that star-spangled banner yet wave, O'er the land of the free, and the home of the brave?
segfault88 / Malcolm Lockyer · segfault88 / Malcolm Lockyer
Segfault88 / Malcolm Lockyer. Go, Ruby and other stuff. 10 Aug 2015, 00:00. Quick, what is wrong with this Go code? Package main import ( "log" "math/rand" "sync" "time" ) func main() { var wg sync.WaitGroup for i := 0; i. Answer - the WaitGroup. Simply pass it as a pointer. Helpfully Go will warn you about this:. Go vet wg-gotcha.go wg-gotcha.go:23: doWork passes Lock by value: sync.WaitGroup contains sync.Mutex exit status 1. 09 Aug 2015, 17:30. Ruby vs. Go 1. So you can follow along. Package main impo...
404 (Page Not Found) Error - Ever feel like you're in the wrong place?
Ever feel you're in the wrong place. 404 (Page Not Found) Error. If you're the site owner,. One of two things happened:. 1) You entered an incorrect URL into your browser's address bar, or. 2) You haven't uploaded content. If you're a visitor. And not sure what happened:. 1) You entered or copied the URL incorrectly or. 2) The link you used to get here is faulty. It's an excellent idea to let the link owner know.).
SSU Computer Science Club
SSU Computer Science Club. Welcome to the Sonoma State computer science club blog. Saturday, April 26, 2014. Cs-club-l] CS Club BBQ/Potluck and Congratulations New Officers! Tomorrow is the CS Club BBQ/Potluck! 160; It will be held in section M park from 12:00 - 4:00. Take a break from final projects and hang out with your fellow classmates outside at the park! 160; Please bring a dish to share. Also, Congratulations to next year's club officers! President: Kelsey Rangel. Treasurer: David Fisher.
segfaultd - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Digital Art / Hobbyist. Deviant for 4 Years. This deviant's full pageview. Last Visit: 46 weeks ago. By moving, adding and personalizing widgets.
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required. For online documentation and support please refer to nginx.org. Commercial support is available at nginx.com. Thank you for using nginx.
SOCIAL ENGAGEMENT