Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ahrjay
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
ahrjay
1y ago
I had a go at this using the on-device models in edge and chrome, phi4-mini and gemini nano, worked surprisingly well for such small models. https://ryanseddon.com/ai/how-to-build-an-agent-on-device/
2.
▲
by
ahrjay
2y ago
Yeah the instructions are not clear. They're on the github repo[1] linked in the header. 1. Install Chrome Dev: Ensure you have version 127. [Download Chrome Dev]( https://google.com/chrome/dev/ ). 2. Check tha
3.
▲
by
ahrjay
2y ago
I built https://ffprompt.ryanseddon.com using the chrome ai (Gemini nano). Allows you to do ffmpeg operations on videos using natural language all client side.
4.
▲
by
ahrjay
2y ago
Ah bummer I've been posting my earthin24 timelapses[1] to this for quite a while now. [1] https://botsin.space/@earthin24
5.
▲
by
ahrjay
3y ago
In my home state of Victoria Australia the government had a program to give out these powerpal[1] units for free that could measure your usage in realtime using the flashing led on our smart meters, we also require all energy grid operators
6.
▲
by
ahrjay
5y ago
I've got an oven and induction cooktop freestanding unit[1] that has big chunky knobs to change the induction power levels. Would never bother with gas again. [1] https://www.fisherpaykel.com/au/cooking/free
7.
▲
by
ahrjay
6y ago
I did something similar using filter_complex to create a 14x14 grid showing 196 days of earth full disc shots for my earthin24 Twitter bot. It's truly impressive what ffmpeg can do https://ryanseddon.com/javascript/
8.
▲
by
ahrjay
7y ago
I combine this and 3 other satellites on my twitter bot into daily videos if you're interested. https://twitter.com/earthin24
9.
▲
by
ahrjay
7y ago
I have an original copy of this game in my garage! Including the vmu microphone.
10.
▲
by
ahrjay
13y ago
Hopefully the next step is to take image decoding off the main thread.
11.
▲
by
ahrjay
13y ago
According to a few people both IE11[1] and Firefox[2] disable hit testing on scroll if you don't move your cursor while scrolling. [1] http://www.thecssninja.com/javascript/pointer-events-60fps/c... [2] http
12.
▲
by
ahrjay
14y ago
It's supported in WebKit nightly too.
13.
▲
by
ahrjay
14y ago
Source maps recommend a similar technique to mitigate against XSSI attacks by prepending ")]}" to your source map http://www.html5rocks.com/en/tutorials/developertools/source...
14.
▲
by
ahrjay
14y ago
I couldn't even use it on my phone, I think the viewport meta set to device-width makes it load zoomed in and the interaction with the content makes it impossible to zoom out.
15.
▲
by
ahrjay
14y ago
I built something along the same lines a while back that allows you to drag and drop font files into the browser. http://fontdragr.com Also has a bookmarklet so you can test them on your own site.
16.
▲
by
ahrjay
14y ago
Don't forget source map support, that is a huge plus to have from day one.
17.
▲
by
ahrjay
14y ago
I built a simple cli tool to do cross browser unit testing. bunyip: http://ryanseddon.github.com/bunyip/
18.
▲
by
ahrjay
14y ago
The ontouchstart issue can be avoided by using the ontouchmove/end to check of the user is scrolling. Infact zepto.js has a custom event called "tap" which does exactly that.
19.
▲
Bunyip: client-side unit testing through the command line in real browsers
(thecssninja.com)
4 points
by
ahrjay
14y ago
|
0 comments
20.
▲
by
ahrjay
14y ago
Nice source map support will be huge.
21.
▲
by
ahrjay
15y ago
Firefox and Opera support the APNG format and there is a clever polyfill[1] to add support to all other browsers. [1] https://github.com/devongovett/png.js
22.
▲
by
ahrjay
15y ago
Of course web devs use them, but like you said it's a waste of bandwidth so the production version should be minified and combined.
23.
▲
by
ahrjay
15y ago
There is the do not track initiative[1] but it's kind of a pretty please solution. [1] http://dnt.mozilla.org/
24.
▲
by
ahrjay
15y ago
It's not being "ultra-strict" it's a requirement of the spec[1] that the file be served with the correct mimetype. [Edit] It doesn't work in firefox, the attribute triggers the permission bar but because it's the wrong mimetype it doesn't a
25.
▲
by
ahrjay
15y ago
Valeri Vladimirovich Polyakov spent 437 days in the Mir space station in a similar experiment.
26.
▲
by
ahrjay
15y ago
Looks good, I did notice that the appcache has the wrong mime type it's text/plain and needs to be text/cache-manifest.
27.
▲
by
ahrjay
15y ago
Author here. If you're interested in hacking on this project it's available on github to look at. https://github.com/ryanseddon/font-dragr
28.
▲
by
ahrjay
15y ago
You may be the same person who mentioned on twitter about this. That error should only happen when dropping some data that isn't in the correct format, it should never get to that part of the code if you're dropping a font file from your fi
29.
▲
I scope, you scope, we all scope for NoScope JS style element injection quirks
(thecssninja.com)
1 points
by
ahrjay
15y ago
|
0 comments
30.
▲
by
ahrjay
15y ago
Block scoping is part of ES5 using let https://developer.mozilla.org/en/JavaScript/Reference/Statem...
More ›