Readit News logoReadit News
markharper commented on Minitel: The Online World France Built Before the Web (2017)   spectrum.ieee.org/minitel... · Posted by u/adrian_mrd
markharper · 4 years ago
Notably a core plot device in the French Home Alone style film Deadly Games (aka Dial Code Santa).

https://en.wikipedia.org/wiki/Deadly_Games_(film)

markharper commented on Thomas Sowell interview   city-journal.org/thomas-s... · Posted by u/RickJWagner
markharper · 5 years ago
I'd second the other response's recommendation of Richard Wolff's work. He's a marxist and democratic socialist, so read his work understanding his perspective in relation to your own, whatever that might be. That being said, I found his book Competing Economic Theories on neoliberalism, keynsianism, and marxism to be very fair to all sides.
markharper · 5 years ago
one correction: neoclassical economics, not neoliberal economics
markharper commented on Thomas Sowell interview   city-journal.org/thomas-s... · Posted by u/RickJWagner
ralusek · 5 years ago
Richard Wolff's primary argument in favor of socialism is that your employer is stealing from you by making a profit off of your labor. He fundamentally does not understand how markets work.

I am a software engineer. I have a rate of pay that I consider to be more valuable than my labor, for which I will gladly exchange my labor and feel as though I have profited from the transaction. Prospective employers have an amount of labor output that they value more than a rate of pay, for which they will gladly exchange in an attempt to profit from the transaction. We engage in a mutual arrangement, wherein we both walk away having benefitted from the transaction. The fact that the employer has the capacity to profit from my output is not theft. In fact, I would feel absolutely horrible if my employer didn't profit from me at all, because I ALWAYS profit from them.

markharper · 5 years ago
> He fundamentally does not understand how markets work. I am a software engineer.

I can assure you that the Harvard and Yale educated professor that's written textbooks on the subject knows how markets work. He might be heterodox in his adherence to marxist economics, but he fully understands the orthodox position, almost certainly in more detail than you or I ever will.

markharper commented on Thomas Sowell interview   city-journal.org/thomas-s... · Posted by u/RickJWagner
alexarnesen · 5 years ago
I see you recommended the heavy work, not just the propaganda pamphlet - good. I haven't read Das Kapital and I should. However...

My question: an oft repeated refrain, when Marx is touted as a reasonable alternative, is that any time anyone tried his ideas out, it was a total disaster (Stalin, Mao, Pol Pot, Chavez).

I have watched some Wolff on Youtube, as well as other lectures on Marxism, because I'm interested and relatively agnostic on the economic spectrum. But I never see this point (tens of millions dead due to internal issues, in these societies, in the 20th century) refuted with any scholarly heft - do you have any recommendations?

I think Steven Pinker is dead on about why Marx (and other interpretations of far left economic thought such as Chomsky's flavors of anarchism) are dead in the water - they fundamentally misunderstand human nature. I'm looking for someone who sounds as clear as Pinker, that can counter this take. Any suggestions?

markharper · 5 years ago
> My question: an oft repeated refrain, when Marx is touted as a reasonable alternative, is that any time anyone tried his ideas out, it was a total disaster (Stalin, Mao, Pol Pot, Chavez).

A couple things. Chavez is of a different category from the other three just on the amount of death under the other regimes. The question of the results of socialism and capitalism is complex. It's worth reading both historical and economically focused works to get a more nuanced view than the one that you've laid out. For a few suggestions:

On historical critiques of the US-centric perspective:

The Jakarta Method, Vincent Bevins

The Darker Nations, Vijay Prashad

A People's History of the United States, Howard Zinn

Economic works:

Competing Economic Theories, Richard Wolff

Seventeen Contradictions and the End of Capitalism, David Harvey

There are more authors (Kliman, Moseley, Shaikh, etc.), but these two would be a good start.

These are works with particular perspectives and should be read as such. If you want competing ideological works, read a standard history book and Hayek, Mises, Friedman, etc.

markharper commented on Thomas Sowell interview   city-journal.org/thomas-s... · Posted by u/RickJWagner
francisofascii · 5 years ago
Any other book recommendations for a counter to Sowell's Basic Economics? It would be a good exercise to read his book and an alternative.
markharper · 5 years ago
I'd second the other response's recommendation of Richard Wolff's work. He's a marxist and democratic socialist, so read his work understanding his perspective in relation to your own, whatever that might be. That being said, I found his book Competing Economic Theories on neoliberalism, keynsianism, and marxism to be very fair to all sides.
markharper commented on Thomas Sowell interview   city-journal.org/thomas-s... · Posted by u/RickJWagner
jakebasile · 5 years ago
But that's not saying only the rich earn their wages which is what you claimed he said. He's saying everyone earns the wages they work for.

Claiming that something is true simply because of law is fairly short sighted. There have been and continue to be unjust laws worldwide.

markharper · 5 years ago
Claiming that something is right because it exists as it is under the current system without further justification is equally, if not more short sighted. It's where "plainspeaking" and begging the question combine into a kind of catnip for people that want reinforcement for their impulse towards the status quo. I'm not familiar with this particular quote, but I've read one of his recent books and it was full of this sort of thing.
markharper commented on React Native for Windows and Mac   microsoft.github.io/react... · Posted by u/ed
markharper · 5 years ago
What would be the benefit over electron?
markharper commented on U.S. airlines want a $50B bailout. They spent $45B buying back their stock   stamfordadvocate.com/busi... · Posted by u/spking
brockwhittaker · 5 years ago
Sure — what are your other options if you have lots of cash?

1. Keep it in cash and get sub-inflationary levels on it, and perform poorly due to your lack of leverage.

2. Invest it in other market securities, effectively running some hedge fund. Not a great idea, distracting from your core biz, and shareholders may not appreciate the exposure to outside risk.

3. Buy back your own stock, which gives back to shareholders.

I'm not saying it was the best thing companies could have done with their money, but there aren't a ton of amazing ways to deploy billions of dollars in cash unless you're expanding operations outside your area of core competency.

I think that lots of people here are creating a lot of revisionist history right now. Almost nobody had any problem with share buybacks for the past five to ten years. The biggest note was that it would increase stock price over time due to the lower availability of shares and higher earnings per share, but hardly the critique most people have these days.

markharper · 5 years ago
There's also option 4:

- Increase worker pay and benefits

markharper commented on Virtual DOM is pure overhead (2018)   svelte.dev/blog/virtual-d... · Posted by u/nailer
osrec · 6 years ago
We implemented a library at my company that does not use a virtual DOM, but instead captures reactive "change functions".

The framework captures dependencies between the reactive "change functions" and underlying variables, and executes the functions whenever a variable's value changes. You can also have dependencies between variables (like computed vars in Vue), and the lib works out the correct order for calculation and execution. All the change functions get queued up and applied in order before the next repaint.

Everything is component based, and there is even a nice kind of inheritance (with lazy, async component loading).

It works rather well. I'd be happy to share it with anyone that's interested! Not open sourcing it yet, as I envisage it would be a full time job to support it!

Edit: the upside of the change functions is that YOU decide how the DOM is updated. It's really quite cool to be able to implement a function like the following and have it run to update this.$dateOfBirth whenever this.data.dateOfBirth changes:

  function()
  { 
    this.$dateOfBirth.val(this.data.dateOfBirth);
  }
That is of course a simple example, but when you need even more control, reactive change functions have proven to be super useful (for us anyway!).

markharper · 6 years ago
That sounds similar to the incremental lambda calculus described in this paper: https://arxiv.org/abs/1312.0658 There's an implementation for DOM updates in Purescript (https://blog.functorial.com/posts/2018-04-08-Incrementally-I...), but I haven't come across a similar approach in Javascript yet.

u/markharper

KarmaCake day49June 18, 2015View Original