Live data from Hacker News

Twitter's missing manual

eev.ee

71–76 of 76 posts

Re: Twitter's missing manual

#71

Earlier quoted context omitted.

Nah, its messy because cloudcookoolander ui designers. Notice how if you click a tweet in the timeline, you do not get a overlay to show the conversation. Nope, it push away the tweets below to make room. Then when you click anywhere else on the site the conversation collapse back, shifting the position of surrounding tweets once more. Similarly, the only way to see a image full size is to basically drag and drop it…

When was the last time you used Twitter? The first concern you mentioned is something they fixed a few weeks back. I'm still trying to understand the rest.

Could have sworn it still behaved that way just the other day, but now it seems to use a overlay. Weird.

Re: Twitter's missing manual

#72
post #68

Earlier quoted context omitted.

They also constantly censor their own platform to fit the narrative of those running it. They've kicked out and muted multiple users for being conservative. They mute or remove 'problematic' hashtags like #JeSuiMilo Just recently they've also censored the #whichhillary hashtag. The fact that twitter execs fundraise for Hillary Clinton must have no bearing on this, right?

Do you have a link with some evidence of this political manipulation?

please google it, there are tonnes of articles and blogs talking about it

http://reason.com/blog/2016/02/20/did-twitters-orwellian-tru...

http://www.dailykos.com/story/2016/2/26/1491618/-Twitter-Exe...

Re: Twitter's missing manual

#73

> On one end of the spectrum you have tools like Notepad, where the only easter egg is that pressing F5 inserts the current time. I wonder how many people reading this just opened Notepad to try this.

It's a nice and simple way to log your activities. I use it all the time. I would use Notepadd++ if it had this as a native feature, without the need of mapping a shortcut.

I used this for a long time:

  alias log='(date; cat) >>'

  ~> log file.txt
  Some log lines.
  Followed by a control-D.
  ^D
  ~> log file.txt
  And some more.
  ^D
  ~> cat file.txt 
  Sat Feb 27 00:16:49 PST 2016
  Some log lines.
  Followed by a control-D.
  Sat Feb 27 00:17:04 PST 2016
  And some more.
But then I wanted to be able to write to the same logfile from a few terminals at once without interleaving the lines, so: (fish syntax)

  function log
    set --local the_log $HOME/incomplete-logs/$argv[1]-(date "+%Y-%m-%d-%H%M%S")
    date >> $the_log
    rlwrap cat >> $the_log
    and cat $the_log >> $argv[1]
    and mv $the_log (dirname $the_log)/../completed-logs/
  end

Re: Twitter's missing manual

#74

> On one end of the spectrum you have tools like Notepad, where the only easter egg is that pressing F5 inserts the current time. I wonder how many people reading this just opened Notepad to try this.

It's a nice and simple way to log your activities. I use it all the time. I would use Notepadd++ if it had this as a native feature, without the need of mapping a shortcut.

[deleted]

Re: Twitter's missing manual

#75
post #69
post #64

Earlier quoted context omitted.

I was just thinking of commenting about the lack of collapsing threads on HN as well. Nice to see I'm not the only one who's missing it here. (Especially if the most upvoted comment is not interesting to me, but resulted in a lot of conversation)

I use this [1], but if you click on a link and hit the back button, all the threads will expand back. [1] https://github.com/andrewheins/HN-Comment-Hider

Oh neat. Thanks!

Re: Twitter's missing manual

#76
post #72

Earlier quoted context omitted.

Do you have a link with some evidence of this political manipulation?

please google it, there are tonnes of articles and blogs talking about it http://reason.com/blog/2016/02/20/did-twitters-orwellian-tru... http://www.dailykos.com/story/2016/2/26/1491618/-Twitter-Exe...

The first article is about Gamergate, the second is a Daily Kos article with a title ending in a question mark.
Post reply on HN