Live data from Hacker News

Pushing the whole company into the past on purpose

rachelbythebay.com

91–100 of 139 posts

Re: Pushing the whole company into the past on purpose

#91

Earlier quoted context omitted.

Ridicule my words all you want, we both know full well that there are legal definitions of slander and that I did not mean censoring anything but legally valid infringements. That's what a (functioning) court system is there for. What's heavy is blowing up a nothingburger in so many words. :D Good luck with your lawsuit!

Ok so if a court system is what matters why do you support abusive censorship from private platforms that go well beyond what the law typically requires.

Their platform. As long as they are transparent on what they are doing, they should be free to do this. You are also free to not use it.

Being deceptive is more questionable than doing your own censorship on your own platform.

Removing things you don't like without justification while claiming your platform is freedom-land would be much more problematic. Same with shady algorithm favouring specific content without transparency.

Re: Pushing the whole company into the past on purpose

#92
post #83

Earlier quoted context omitted.

There's still a delay with that, as date takes time to run. You need a program that gets the current time, waits an appropriate amount, prints, and repeats. It'll still be slightly off unless you can measure the printing and flow control accurately. I have a program I use in shell scripting called sleepuntil that does something like this, but it doesn't try to be millisecond-accurate.

The problem that I noticed is if you open two terms on different hosts (say by ssh) and run watch commands then, regardless of resolution, they'll be out of sync. There's no hard tick event common to both kernels. And as someone already said, you introduce sampling effects. So I figured you need a time "diff", a single command that updates from both timeservers and then presents the offset in a single operation. So (…

Right, as I said, watch is the wrong tool here. The event in common is the synchronised clocks, or an NTP server.

To see the NTP offsets of a machine you can run something like:

  ntpq -pn
ntpdate -q doesn't seem very consistent to me, even pointing it at a nearby server.

To see the clocks ticking visually you can do something like the following and run it on each machine (assuming they have the same ping).

  #include 
  #include 
  #include 
  
  void main() {
      struct timeval tv;
      struct timespec ts;
      ts.tv_sec = 0;
      while(1) {
          gettimeofday(&tv, NULL);
          ts.tv_nsec = 1000000000 - 1000*tv.tv_usec; //number of nanoseconds left in the current second
          nanosleep(&ts, &ts);
          gettimeofday(&tv, NULL);
          printf("%lu.%06lu\n", (unsigned long) tv.tv_sec, (unsigned long) tv.tv_usec);
      }
  }
Note that the sleep and second gettimeofday call take a little time (between 70 and 300 μs for me, but it depends what else is running), so the tick times reported won't be exactly on the second.

Re: Pushing the whole company into the past on purpose

#93
post #71
post #67

Earlier quoted context omitted.

I think singleshot_ is saying the slurs do not make sense but drewbug01's explanation of the article's meaning is clear

[flagged]

This is why people are strongly disagreeing with you. Apologies in advance for copy and pasting a meme, but I think it applies directly to the way you’re attempting to shape this discussion:

> Twitter is the only place where well articulated sentences get misinterpreted.

> You can say “I like pancakes” and somebody will say “So you hate waffles?”

> No bitch, that’s a whole new sentence wtf is you talkin bout

Re: Pushing the whole company into the past on purpose

#94
post #65

Earlier quoted context omitted.

A functioning government is not possible as long as money is speech, corporations are people, etc. That directly translates to government by the wealthiest people.

I've noticed a distinct trend in the last month where even the most casual mention of the oligarchy attracts a bunch of downvotes. I'm trying to decide if this is an indication that some cohort of users here are deeply and passionately delusional about the political state of play, or merely uncomfortable about having it pointed out.

It could be bots as well

Re: Pushing the whole company into the past on purpose

#96
post #43

Earlier quoted context omitted.

The "right to not be insulted" is literally censorship.

If you look up the definition of censorship, you'll find that it is not. Censorship is suppression. Insulting someone or discriminating against them is not supression, it's unlawful. If that's not your cup of tea, I'd challenge you to forego any and all (!) ameneties of modern civilized society to enjoy your anarcho-freedom. Don't pretend to be a tough one by sitting in a comfy chair and picking the raisins out of th…

You seem to be very confused. Even in countries like the UK with weaker freedom-of-speech laws, there are specific exceptions to slander law for insults.

Re: Pushing the whole company into the past on purpose

#97

The guy isn't sending the company 50 years back. I come from a post-communist country which had a lot of censorship. It was happening 50 years ago as well (it was happening since the end of 40s to the end of 80s). Call me sensitive. ;) The guy is removing the company from 50 years back.

No no, the guy is definitely sending the company back 50 years, to a time when free speech actually meant something, and when a single party didn't control 90% of all media outlets, social media, institutions and controlling policy at most Fortune 500 companies.

Re: Pushing the whole company into the past on purpose

#98

The guy isn't sending the company 50 years back. I come from a post-communist country which had a lot of censorship. It was happening 50 years ago as well (it was happening since the end of 40s to the end of 80s). Call me sensitive. ;) The guy is removing the company from 50 years back.

No no, the guy is definitely sending the company back 50 years, to a time when free speech actually meant something, and when a single party didn't control 90% of all media outlets, social media, institutions and controlling policy at most Fortune 500 companies.

50 years ago when there were like 3 television channels? Do we really want to return to the “free speech” when no one had a voice

Re: Pushing the whole company into the past on purpose

#100
post #84
post #50

Earlier quoted context omitted.

With this comment you seem to be putting the Overton window farther right than I’ve seen it in recent memory —- outside of very rural areas.

> farther right than I’ve seen it in recent memory —- outside of very rural areas. https://www.statista.com/statistics/985183/size-urban-rural-... >>In 2023, there were approximately 55.94 million people living in rural areas in the United States, while about 278.98 million people were living in urban areas If Trump won, it couldn't have been solely because of people in the boonies, who represent a much smaller propo…

Urban voters represented 20% of voters. Sub-Urban 45%. Rural 35%

63% of Urban voters went Harris, 35% Trump. 63% of Rural voters went Trump, 35% Harris. Suburban went 52% Harris and 47% Trump

The 15% more Rural than Urban voters, combined with gerrymandering and state vote power differences offset the 5% Democrat lean of Sub-Urban voters.

If we look at who ACTUALLY voted from the voting age population, then the boonies certainly did win it for Trump despite the other 65% being pro Harris to varying degrees. If we consider people who didn't vote at all that could have, and assume the majority of those would have voted for Harris, then we can likely blame those that didn't vote for leaving the power in the hands of those in the boonies.

Post reply on HN