Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
belgesel
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
belgesel
2y ago
If you try to translate "gelato" to English literally, you can say it means "frozen". While "dondurma" also can be translated as "frozen" to the English. I don't know why Americans called it &quo
2.
▲
by
belgesel
3y ago
IIRC the main reason to use FreeBSD instead of Linux was BSD being a lot simpler and have a lot more room to optimize their specific use case.
3.
▲
C Structure Padding Initialization
(interrupt.memfault.com)
2 points
by
belgesel
3y ago
|
0 comments
4.
▲
by
belgesel
4y ago
Can you elaborate on that, couldn't find the proposal, I want to learn more about it.
5.
▲
by
belgesel
4y ago
I was expecting some form of benchmark to see if claims about better performance is true.
6.
▲
by
belgesel
5y ago
even echo has it $ echo -e "hel\x70"
7.
▲
by
belgesel
5y ago
Just out of curiosity, how much time you have before taking the shot? (seconds or minutes)
8.
▲
by
belgesel
5y ago
I believe it is their new rule. But it shows up only if you are using twitter for a while as logged out. Clear data from browser and it goes away, but will eventually show up again.
9.
▲
by
belgesel
5y ago
Isn't that the other way around? I thought clang was trying to support all gcc extensions to be able to build Linux kernel. I would rather see both of these compilers to stay competitive to push themselves higher.
10.
▲
by
belgesel
5y ago
For those who don't know, this is a follow-up story of A Teenager's Guide to Avoiding Actual Work which got the attention on HN lately. https://news.ycombinator.com/item?id=27206552
11.
▲
A Teenager's Guide to Workplace Ethics
(madned.substack.com)
3 points
by
belgesel
5y ago
|
1 comments
12.
▲
by
belgesel
5y ago
I do use 1000^n, but I agree that most people tend to use 1024^n. 1000^n kind of makes more sense since "kilo, mega" etc. are the actual SI prefixes for multiples of 1000s. I don't know who or what caused this chaos but 1000^
13.
▲
by
belgesel
5y ago
You are right. In 5G, data packets goes through less tunneling than it was before. Although there is less tunneling, 1ms latency for "end to end" or from user device to the Internet doesn't sound realistic. I have no real lif
14.
▲
by
belgesel
5y ago
I didn't want to whine about the changes. But why did they move "Restore Previous Session" button into History in the menu. That was by far the most used button in the menu for me. Now I have to click 2 buttons.
15.
▲
by
belgesel
5y ago
Suppose I have the following struct and functions. struct my_struct{int a; char private[10];} void * get_struct_field_nonconst(struct my_struct *ptr) { return &(ptr->private[0]); } With these elements you are only allowed
16.
▲
by
belgesel
5y ago
Presenter doesn't give any information about it. But I think it is not a type defined in C standard and presenter's own implementation.
17.
▲
by
belgesel
5y ago
Although I disagree with some part of the presenter's ideas. I learned struct initializers and _Generic keyword from the presentation. So that is a great win for me. Now I can write safer code with the const and non-const pointer types
18.
▲
by
belgesel
5y ago
The guy has an article discussing 5G Telco business. 5G: The outsourced elephant in the room - https://berthub.eu/articles/posts/5g-elephant-in-the-room/ And also HN Discussion - https://news.ycomb
19.
▲
by
belgesel
5y ago
I think people need another 100 years to forget about it. It's just a toy in the hands of politicians. And now they choose to use it against Turkey. Some day this whole thing will be forgotten. Nobody living today are responsible or sh
20.
▲
by
belgesel
5y ago
I want to know what will this recognition does to your own country both in short and long term. Will Turkey pay a fee for the genocide or will they have to just give up from Ağrı? This subject was always used against Turkey in political con
21.
▲
by
belgesel
5y ago
I believe before Discord got the high ground there was a program called Curse. I wonder if it is still functional.
22.
▲
by
belgesel
5y ago
Well, most of them includes heavy macros that is designed to be optimized by the compiler. So calling a macro from another language with different syntax does not sound easy.
23.
▲
by
belgesel
5y ago
Rust is catching many developer communities' (kernels, game engines, browsers etc.) attention lately. I have never used it but considering to use it in the future. But I am wondering how will they make it work with underlying Linux mec
24.
▲
by
belgesel
5y ago
A question to parallel programming experts. Can we assume that a task that is well seperated to perform on single core is always better than multi-core? I meant using multiple instances working on single core vs. single instance with multi
25.
▲
by
belgesel
6y ago
this is nice. Just like bash, emacs has so many features hidden under it's hood.
26.
▲
by
belgesel
6y ago
Anybody with intention to work on older systems can work with older releases of Autotools, while newer releases can focus on much more needed features.
27.
▲
by
belgesel
6y ago
I believe it is still true. OpenSSL uses dirty stack bytes for randomness and it causes valgrind to warn for invalid access.
28.
▲
by
belgesel
6y ago
I think authors also taught about that and wrote the paper for newbies. Almost every new researcher is reading from top to bottom.