Tag-Generator/tag_exporter.rb

19 行
425 B
Ruby
Raw 通常表示 履歴

2020-05-29 23:31:19 -04:00
time = time.new
date = "#{time.day}#{time.month}#{time.year}"
2020-05-29 23:31:47 -04:00
# Change your profiles here.
2020-05-29 23:31:19 -04:00
diaspora_node = "https://diasp.org/people/f7b134e080630138a53e047d7b62795e"
mastodon_node = "https://mastodon.social/@LWFlouisa"
print "Your Post >> "; post = gets.chomp
2020-05-29 23:32:41 -04:00
public_post = "#{date}
2020-05-29 23:31:19 -04:00
#{post}
If you want to see my full posts: #{diaspora_node} #{mastodon_node}, some nice people here.
2020-05-30 00:01:18 -04:00
"
2020-05-29 23:31:19 -04:00
2020-05-29 23:32:41 -04:00
system("clear")
puts public_post