HackerTrans
TopNewTrendsCommentsPastAskShowJobs

lfischer

no profile record

Submissions

Corporate Interests Are Inflaming US-China Tensions

jacobin.com
3 points·by lfischer·4 года назад·0 comments

What Chinese Capitalists Owe to Mao Zedong

jacobin.com
3 points·by lfischer·4 года назад·1 comments

Microserfs

en.wikipedia.org
2 points·by lfischer·5 лет назад·0 comments

TSMC tackles Taiwan drought with plant to reuse water for chips

asia.nikkei.com
8 points·by lfischer·5 лет назад·0 comments

comments

lfischer
·5 лет назад·discuss
Often logging libraries allow you changing the logging level at runtime, without restarting or recompiling the application, as well as turning logs or off at runtime for different parts of the application. They let you organize logging levels so that when, for example, you turn the level to INFO in one part of the applications, all of the connected code also gets its own log level turned to INFO and you can define which parts of the application should change their log levels in sync. There's also performance considerations, often log libraries claim to implement tricks so that logging is supposed to be faster than naively writing strings to a file.
lfischer
·5 лет назад·discuss
I've found a few of these companies in the Netherlands.
lfischer
·5 лет назад·discuss
My impression is that in China it varies a lot by industry and location. Even in Shanghai, I've come across offices closing at 4PM with a 2 hours lunch break.
lfischer
·6 лет назад·discuss
Docker images package the entire environment that an application needs to run, but to do that they contain precompiled software for a specific CPU architecture, so they can't help you jump across architectures. Not even a full VM allows that by itself, for running software for a different architecture you need emulation.
lfischer
·6 лет назад·discuss
One issue is that your comment sounds a bit hyperbolic. For example, China criminalizes thought? It certainly does not criminalize thought as such.

About 'working together with our allies'... Some will argue the 'West' has developed a somewhat abusive relationship with a lot of the world over the last two hundred years. It's not surprising some would look favourably to a competitor, if only to take advantage of that competition to make a better deal for themselves.

Finally, if other parts of the world develop a more advanced IT industry instead of China, how does that preserve Western developers salaries? Are the Chinese uniquely inclined to work long hours for low salaries? Or are you implying that the 'West' would need to prevent nations under 'our sphere of influence' to develop an IT industry so developers in the 'West' can continue to receive their current salaries?
lfischer
·6 лет назад·discuss
I believe an example of where binding differs from assignment is if you define a function which references a binding in the outer scope, the create a new binding with the same name in the outer scope, the value inside the function does not change: a = 1 f = fn -> a end f.() # returns 1 a = 2 f.() # still returns 1
lfischer
·6 лет назад·discuss
Imagine a CSV parser written in Java. I can imagine quite well that it would rarely need updates, as CSV does not evolve and I find it reasonable to write such code with no external dependencies except the Java standard library, which almost never breaks backward compatibility.