Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
protopete
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
protopete
1y ago
There's a time and place for anime catgirls and it's EVERY TIME I OPEN A DAMN WEBPAGE BECAUSE OF AI CRAWLERS
2.
▲
by
protopete
3y ago
Hey I noticed that the division code example is using the "ul" tag instead of the "div" tag. Thanks! Edit: nevermind, but the comment still says "This ul tag"
3.
▲
by
protopete
4y ago
Check the "font-feature-settings" in the body style CSS. The "case" 1 when changed to 0 makes the text normal on Firefox.
4.
▲
by
protopete
6y ago
Likely a bug. I carried the skull item and got this error when trying to dance: Uncaught Error: Frame tag not found: dance-carry getTaggedFrameIndex Aseprite.ts:140 update Player.ts:859 update GameScene.ts:424 update Sc
5.
▲
by
protopete
8y ago
Me too, this feels like another case of better off not knowing. Being a childhood fan of Ren and Stimpy cartoons, and having read the article realizing that Katie Rice worked for Spumco, now I get why I like the art style for Katie's
6.
▲
by
protopete
9y ago
The new one is better: https://krikienoid.github.io/flagwaver/#?src=https%3A%2F%2Fb...
7.
▲
by
protopete
9y ago
Why would I want Amazon charging their drones from my car?
8.
▲
by
protopete
9y ago
> Perhaps we need a Model W the Westfalia edition :-). http://cafeelectric.com/stretchla/
9.
▲
by
protopete
9y ago
And that the floods lasted exactly 420 seconds and 666 seconds, those script kiddies are pretty creative when choosing numbers.
10.
▲
by
protopete
10y ago
I got this Arduino bot for $70. Has its own battery for sufficient power. The motor gearing is a bit fast, so it's better to use PWM to slow down the motors, except the default pinout disables PWM on the drive gpios when the servo is
11.
▲
Rogue Wave Software
(roguewave.com)
1 points
by
protopete
10y ago
|
0 comments
12.
▲
by
protopete
10y ago
This subthread here? https://news.ycombinator.com/item?id=11810177
13.
▲
by
protopete
11y ago
I logged in to say the same thing. More info here: http://perldoc.perl.org/functions/dump.html
14.
▲
by
protopete
11y ago
I was able to compile it on Ubuntu after moving the X11 includes to the bottom of the list: #include <stdio.h> #include <strings.h> #include <string.h> #include <stdlib.h> #include <stdint.h> #inc
15.
▲
by
protopete
11y ago
http://seed7.sourceforge.net/faq.htm#lisp_comparison
16.
▲
by
protopete
11y ago
Passing a null pointer to free() is perfectly safe, and in this case simplifies the cleanup code. Although the concern of a memory leak is valid. I would have expected the resources to be free'd regardless of the result.
17.
▲
by
protopete
11y ago
HTML5 video doesn't work with live video unfortunately, while flash RTMP streaming does. Alternatives include MPEG DASH and Apple HTTP Live Streaming, but not all browsers support them.
18.
▲
by
protopete
12y ago
Yet another technology lifted straight out of an anime: Eden of the East [ http://en.wikipedia.org/wiki/Eden_of_the_East ] where contestants compete to win a reality game with access to a concierge by phone backed by a s
19.
▲
by
protopete
12y ago
Still, s/Go/Golang/ would help clear up any confusion.
20.
▲
by
protopete
12y ago
AOT: ahead of time JIT: just in time Compiler applies to both of them.
21.
▲
by
protopete
12y ago
2310
22.
▲
by
protopete
12y ago
I was confused too, until I clicked all the links in the article and it was referring to this one: http://blogs.msdn.com/b/oldnewthing/archive/2009/10/21/99102...
23.
▲
by
protopete
12y ago
HFCS is metabolized primarily by the liver, unlike sugar. http://ajcn.nutrition.org/content/86/4/895.full
24.
▲
by
protopete
12y ago
I think it unlikely that pre-existing footage can be used, because HD video is almost always compressed, thus masking the minute vibrations in the pixels. The algorithm described in the article work best for uncompressed video directly fro
25.
▲
by
protopete
12y ago
Thanks, updated.
26.
▲
by
protopete
12y ago
Unfortunately the MP4 looks worse than the GIF, due to chroma compression in the YUV 420 colorspace. While each pixels luminance value is kept, the color information for a 4-pixel square is stored as a single CrCb pair, which is really obv
27.
▲
by
protopete
12y ago
You can also use "rlwrap" with any program to enable readline features.
28.
▲
by
protopete
12y ago
The language is currently without raw pointers, suitable for an object system like Python/Ruby/JS.
29.
▲
by
protopete
12y ago
Pointers don't have to be the exception. I'm working on a programming language runtime where objects are stored as a 32-bit value, with 3/4 of the range representing an integer, and 1/4 of the range (30 bits) representi
30.
▲
by
protopete
12y ago
To count the number of page faults during execution, use: perf stat <executable> Page faults occur after anonymous pages are mmap'ed for the heap, either mapping a common zero page, then faulted again for a memory write.
More ›