Attaches a Diaspora and Mastodon promotion in your posts exported to places like Twitter and Facebook.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

18 Zeilen
402B

  1. time = time.new
  2. date = "#{time.day}#{time.month}#{time.year}"
  3. diaspora_node = "https://diasp.org/people/f7b134e080630138a53e047d7b62795e"
  4. mastodon_node = "https://mastodon.social/@LWFlouisa"
  5. print "Your Post >> "; post = gets.chomp
  6. promotion = "#{date}
  7. #{post}
  8. If you want to see my full posts: #{diaspora_node} #{mastodon_node}, some nice people here.
  9. "
  10. open("output.txt", "w") { |f|
  11. f.puts
  12. }