Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
JoeAcchino
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
JoeAcchino
5y ago
Linking that video you're playing their game, adding pointless rambling is a way to increase video length for more ads.
2.
▲
by
JoeAcchino
7y ago
Clicking on StartGame does not work beacause the button is not wired to anything: func _on_StartGame_pressed(): pass # Replace with function body. Probably not ready for the public, but fun to hack around and trying to understa
3.
▲
by
JoeAcchino
7y ago
Bottleneck is the brain, English is not my first language and I usually score 10 wpm less than my native language.
4.
▲
by
JoeAcchino
8y ago
Same for me. I like her writing stile and the content.
5.
▲
by
JoeAcchino
9y ago
Would this work? c := colly.NewCollector() // this functions create a goroutine and returns a channel ch := c.HTML("a") e := <- ch link := e.Attr("href") // ... I'm a bit r
6.
▲
by
JoeAcchino
11y ago
I'm reading How to Fail at Almost Everything and Still Win Big: Kind of the Story of My Life by Scott Adams and I'm about to start The Power of Habit by Charles Duhigg. I'm also reading again Comme un roman by Danil Pen
7.
▲
Learning the Cello as an Adult (1997)
(ethanwiner.com)
92 points
by
JoeAcchino
11y ago
|
29 comments
8.
▲
Go Challenge 3: write a photo-mosaic generating web application
(golang-challenge.com)
69 points
by
JoeAcchino
11y ago
|
18 comments
9.
▲
by
JoeAcchino
12y ago
I didn't know that there are homebrew games for Atari 2600. They also assembled a tutorial for beginners: http://atariage.com/forums/topic/33233-sorted-table-of-conte...
10.
▲
From Magic to Science (sort of)
(blog.dilbert.com)
2 points
by
JoeAcchino
12y ago
|
0 comments
11.
▲
by
JoeAcchino
12y ago
Is this guide specific for Go on Heroku or its concepts can be easily applied elsewhere?
12.
▲
by
JoeAcchino
12y ago
Nightwatch runs against Selenium, Nightmare uses Phantom.js With Selenium you have full cross browser support, while Phantom is Webkit based.
13.
▲
by
JoeAcchino
12y ago
> You know what else I hate? Typing in long commands in the Mac OS X terminal and then them wrapping weirdly. I solved this by adding the following line in my ~/.bashrc shopt -s checkwinsize Never tried on Mac OS X though, so
14.
▲
by
JoeAcchino
12y ago
Nice to know, if an oscar-winning pure mathematician working on science-fiction projects found difficult to learn Haskell, I can save myself the trouble.
15.
▲
by
JoeAcchino
12y ago
In addition, I would track with a web analytics tool the number of queries and the time they took for each page, so I could easily have them as metrics in the Pages Report. Next, sort pages by query time and optimize them first.
16.
▲
by
JoeAcchino
13y ago
How do I compile this? GCC complains: CFLAGS="-g -pipe" make -k donut cc -g -pipe donut.c -o donut donut.c:1:2: warning: data definition has no type or storage class [enabled by default] donut.c: In function
17.
▲
by
JoeAcchino
13y ago
I don't know how useful is this to track unique visitors, the next month I will probably have a different fingerprint. All it takes is a new release of Firefox (different version in the User-Agent string) a new font or any plugin updat
18.
▲
by
JoeAcchino
13y ago
"They didn't use any JavaScript to get this information." The list of installed plugins is retrieved via JS: window.navigator.plugins. Not sure about fonts, though.
19.
▲
OrgMode
(orgmode.org)
2 points
by
JoeAcchino
13y ago
|
0 comments
20.
▲
by
JoeAcchino
13y ago
The guy pictured in the photo is Richard Branson, aka the boss at Virgin. Just search his name on Google Images to get the humor. http://it.wikipedia.org/wiki/Richard_Branson
21.
▲
by
JoeAcchino
13y ago
I use this game to practice touch typing more or less regularly and what I really miss is a way to monitor my progress.
22.
▲
by
JoeAcchino
13y ago
HTTP Proxies do this.
23.
▲
Profiling and creating call graphs for Go
(saml.rilspace.org)
3 points
by
JoeAcchino
13y ago
|
0 comments
24.
▲
by
JoeAcchino
13y ago
Transcribe! is awesome, thanks for mentioning it.
25.
▲
by
JoeAcchino
13y ago
So you don't need to build a new Firefox OS release on your PC and flash it, the phone will just update itself?
26.
▲
by
JoeAcchino
13y ago
I'm very interested in this because this is the kind of web server I was planning to write for my work, but from a quick glance I didn't find HTTPS support. Is HTTPS supported or planned?
27.
▲
by
JoeAcchino
13y ago
Great, now I'm totally reassured.
28.
▲
by
JoeAcchino
13y ago
This regexp [^ @]*@[^ @]* will validate strings like `@example.com` and `joe@` and even a single `@`. Probably [^ @]+@[^ @]+ is what he wants, plus server side validation (that is the classic "click link to validate addres
29.
▲
by
JoeAcchino
13y ago
Just use tabs for indentation and spaces for alignment.
30.
▲
by
JoeAcchino
13y ago
find ~/my/docs/ -type f -name '*.txt' -exec sed -i.bak 's/inheritance/composition/g' {} + This will search all files ending in `.txt` and will exec `sed 's/inheritance/composition/g'` on it. Sed modifies files in-place and saves a
More ›