Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
nakkaya
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
31 ms
·
1.
▲
by
nakkaya
2y ago
Yes there are. I would suggest going through the subreddit mentioned /r/selfhosted. There are GUI tools and NAS products that would let you host docker images. As for CLI ask an LLM, for simple common commands you are going to be
2.
▲
by
nakkaya
3y ago
The thing most people on the West doesn't seem to get is, there are issues that predate Erdogan. Such as this one, whoever replaces him will make similar requests in a less childish more diplomatic way. There is legitimate concern acro
3.
▲
by
nakkaya
7y ago
At work one of the projects I work on is the telemetry system for a solar race car. I have pretty much the exact setup. We grab the data from the CAN bus transmit it over the radio to the chase vehicle. Data needs to be logged so you can cr
4.
▲
by
nakkaya
8y ago
I maintain a programming language called Ferret [1]. You can read through the manual, it is a literate program, covers everything you need to implement your own lisp. Compiler, optimizations, runtime, garbage collection etc. [2] overlaps wi
5.
▲
by
nakkaya
8y ago
If I were to go with C I would have to reimplement OOP machinery required for an object system. OOP also makes memory management a non issue. Functions are first class citizens in Lisp so functors/lambdas makes it real easy to create c
6.
▲
by
nakkaya
8y ago
You are right. It is due to limitation of writing for embedded systems. I try to keep everything as close to Clojure as possible but some stuff is just not possible on embedded systems or behave a little bit different.
7.
▲
by
nakkaya
9y ago
Author here. Did not knew about Céu till now, just watched the intro video. I maintain a behaviour tree [1] library called alter-ego [2] (code needs cleanup) which already contains some of the constructs. In behaviour tree terms par/or
8.
▲
by
nakkaya
9y ago
Author here. I am actually curious about this myself. I originally released it under GPL but then on another HN thread someone said anything compiled with it also ends up being GPL, so I switched to BSD 2 Clause. I have not copy pasted code
9.
▲
by
nakkaya
9y ago
Author here. It is the Half-Life logo. I wanted a lambda symbol for a favicon, love the game too so I settled on a open licensed logo.
10.
▲
by
nakkaya
9y ago
Author here. If I am not mistaken (I don't do web development.) very early versions of ClojureScript repl compiled code on the JVM side then piped the output to the browser. (Maybe it still does idk) I am thinking of doing something si
11.
▲
by
nakkaya
9y ago
Author here. As derefr said with Clojure semantics you can not create cycles.
12.
▲
by
nakkaya
9y ago
All clients has a copy of the git repo plus a server on Digital Ocean.
13.
▲
by
nakkaya
9y ago
For backups, I have two git-annex [1] repositories, - Personal files, stuff I can not afford to lose (photos,documents etc.) - Full archive on S3, full archive on a home server, 4 clients with partial copies. - Big data stuff I can afford t
14.
▲
by
nakkaya
10y ago
I maintain a project called Ferret [1], which compiles a subset of Clojure to C++11. No VM no dependencies you get a single cpp file that can be compiled to native code. Supports any platform with a C++11 compiler. (atmega, arm, x86 etc.) [
15.
▲
by
nakkaya
10y ago
It is possible. Some scheme compilers use C as their intermediate language. Scheme to C to binary. (Gambit/Chicken/Stalin etc.). I have a project [1][2] that compiles a subset of Clojure to C++11 that is written using literate pro
16.
▲
Show HN: Ferret – A Hard Real-Time Clojure for Lisp Machines
(nakkaya.com)
7 points
by
nakkaya
10y ago
|
0 comments
17.
▲
by
nakkaya
13y ago
I'll begin by saying I do not believe in a personal god. Well Imams as guidance counsellors are extremely dangerous because unlike Christianity Islam never had the enlightenment period it is still stuck in middle ages. That's why you have p
18.
▲
by
nakkaya
13y ago
After WWI Turkey was divided between Christian countries France Greece England etc.
19.
▲
by
nakkaya
13y ago
But this is not about Istanbul. It is not about a park or a shopping mall, you hear about Istanbul because that’s where 1/4 of the country lives in there are protests in Ankara Izmir Eskisehir Adana etc. > but your particular examples a
20.
▲
by
nakkaya
13y ago
Forcing Religion on children: No I mean Imams acting as guidance counsellors. Children refusing to take religion classes not given their grade cards. Restrictions on TV: You do not /can not threaten to cancel a TV show as a prime minister b
21.
▲
by
nakkaya
13y ago
> He was thrown into prison And the same guy, now prime minister jailed a world renowned pianist because he quoted a poem criticizing Islam (for foreigners technically court jailed him but they basically control that too) . Repeat after
22.
▲
by
nakkaya
13y ago
Park protest was just the tipping point. Current government has been slowly transitioning the country into Islamic rule. There were numerous things that preceded this, ban on abortion, ban on alcohol, jailing journalists/MPs, forcing relig
23.
▲
by
nakkaya
13y ago
> the police reaction isn't more violent than say the crack down on the Occupy protests Really, so in the US people got beaten up up by the police [1], thrown tear gas from police choppers, multiple people ran over by police armoured pe
24.
▲
Controlling an A.R. Drone with the Kinect and Clojure
(nakkaya.com)
5 points
by
nakkaya
14y ago
|
0 comments
25.
▲
by
nakkaya
15y ago
http://nakkaya.com/2010/08/24/a-micro-manual-for-lisp-implem...
26.
▲
by
nakkaya
15y ago
No, I didn't know there was a llvm backend for avr.
27.
▲
by
nakkaya
15y ago
This is how most Lisp compilers work. Gambit, Stalin, Chicken they all use C as the intermediate language. Currently this works on my MacBook, beagleboard and any avr microcontroller with enough ram and flash memory. If I were to use machin
28.
▲
by
nakkaya
15y ago
The reason I used ref counting instead of a proper garbage collector is that, most microconstollers have couple kilobytes of ram (a ATmega328 has 2KB) every garbage collection scheme I've looked at was using a lot of ram, plus ref counting
29.
▲
by
nakkaya
16y ago
In addition to the links _delirium provided, http://chrishecker.com/My_Liner_Notes_for_Spore/Spore_Behavi... http://aigamedev.com/insider/presentations/behavior-trees/#r... http://books.google.ru/books?id=1OJ8EhvuPXAC&lpg=PA370&#..
30.
▲
by
nakkaya
17y ago
My mistake linked to the wrong page, formula I used is from L-System article, example 4.
More ›