Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
is_taken
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Felix "fx" Lindner has died
(blog.recurity-labs.com)
133 points
by
is_taken
7mo ago
|
35 comments
2.
▲
by
is_taken
9mo ago
As usually the schematics were available in the manual it was not too hard to add some additional static ram. There were unused address lines available which could be used for chip select.
3.
▲
by
is_taken
9mo ago
a) Do these inode issues also happen with the supplied (v4) kernel? b) Do these inode issues also happen with a rebuilded kernel which uses the original lib1 and lib2? I once had strange effects on V6 if lib1 and/or lib2 were rebuild b
4.
▲
by
is_taken
10mo ago
Seems to redirect to some online casino?
5.
▲
by
is_taken
2y ago
Jetbrain's CLion with the pico sdk. Yeah, that means C.
6.
▲
by
is_taken
2y ago
If you want to use multiple technologies in a single project you should not run Goland, PhpStorm etc. but IntelliJ with plugins. Then you don't need to switch IDEs.
7.
▲
by
is_taken
2y ago
You could checkout void and alpine.
8.
▲
by
is_taken
2y ago
Maybe wrapfs.WithModTime(... should not use time.Now() but get the mod time of the running binary?
9.
▲
by
is_taken
2y ago
Try this: find / -name '*core*'
10.
▲
by
is_taken
2y ago
Are you sure the memory in this system is ok? As it dumped core, could be interesting to "gdb it" and get a stackframe.
11.
▲
by
is_taken
2y ago
Maybe this already helps: https://github.com/tldr-pages/tldr
12.
▲
by
is_taken
3y ago
Have a look at the Teensy 4.1, it comes with 7936K Flash, 1024K RAM and you can even add up to 2x8Mb PSRAM iirc. Of course it's a bit more expensive but not much.
13.
▲
Go 1.21.6 Released
(go.dev)
19 points
by
is_taken
3y ago
|
15 comments
14.
▲
by
is_taken
3y ago
Thanks for this. Actually helpful. Just cleaned my mbp. Feature request: create a maximized window with as little decorations as possible using a black background so we can clean the display too.
15.
▲
by
is_taken
3y ago
I use - Alfred - Cheatsheet - Bartender - 1Password - iTerm2 - Moom (you could also check Rectangle) - Some IDEs from Jetbrains
16.
▲
by
is_taken
3y ago
A PDP11/40 emulator for the Teensy 4.1 development board. https://github.com/gounselor/Teensy11
17.
▲
by
is_taken
3y ago
Other code quality issue encountered on a quick review: - use of utils package - use of models package - naming of receivers (too long) - returning empty structs instead of (nil) pointers - too much log.Fatal scattered around th
18.
▲
by
is_taken
3y ago
And i would actually rename cmd/digger/main.go to cmd/digger/digger.go (_test.go too) Why? If you go build cmd/digger/main.go you end up with main, if renamed you end up with digger. Without using additional -o
19.
▲
by
is_taken
3y ago
I recommend run a linter against your codebase. https://golangci-lint.run https://github.com/go-critic/go-critic https://github.com/mgechev/revive
20.
▲
by
is_taken
4y ago
Interesting, but i don't get the difference between str and stur. To me it looks basically the same. Can someone ELI5?
21.
▲
by
is_taken
4y ago
Stopped after reading that CopySlice example, seems the author is unaware of https://pkg.go.dev/builtin#copy but yeah let's reinvent that wheel. And an option type too.
22.
▲
by
is_taken
4y ago
I have the keyboard settings to use F1, F2 as standard fn keys. If i really need the mac functions (not so often) i can press Fn+F1 etc.
23.
▲
by
is_taken
4y ago
Forgot to mention https://rectangleapp.com
24.
▲
by
is_taken
4y ago
https://www.mediaatelier.com/CheatSheet/?lang=en
25.
▲
by
is_taken
4y ago
I agree that iterm2 password manager is great (i use it too). I just wanted to mention the sudo-fingerprint feature for the local machine in case someone did not know.
26.
▲
by
is_taken
4y ago
I you want to try Alfred anyway, it has this multi clipboard functionality included.
27.
▲
by
is_taken
4y ago
On Macs with touch id, you can enable sudo via fingerprint reader for the local machine. https://apple.stackexchange.com/questions/259093/can-touch-i...
28.
▲
by
is_taken
4y ago
One could consider using https://github.com/caarlos0/env instead of the hand-woven env var handling.
29.
▲
by
is_taken
4y ago
Have a look at https://github.com/caarlos0/env
30.
▲
by
is_taken
4y ago
Why not writing a small wrapper around time.Parse? func ParsedTimeOrNil(s string) *time.Time { t1, err := time.Parse(time.RFC3339, s) if err != nil { return nil } return &t1 }
More ›