Attaches a Diaspora and Mastodon promotion in your posts exported to places like Twitter and Facebook.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

19 rindas
431B

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