···2233hi this is my new git repo for my blog bubblegum. i wrote this based on the rails first app guide and then i added stuff. it's a fucking mess i know
4455-site to-do list
55+### site to-do list
66* make the index design less shit
77* make the post page less shit (i don't really care that much about this one but at least resize the text boxes that's annoying)
8899-completed to-do stuff
99+### completed to-do stuff
1010* make tags actually functional because i started adding them in prod like a fucking dumbass, got stuck, and never finished it because i was stuck and frustrated
11111212-also some manual rails console tagging commands are down here for me to remember and use:
1212+### also some manual rails console tagging commands are down here for me to remember and use:
13131414-```ruby
1515-t.articles = []
1414+new tags:
16151616+```ruby
1717t.articles << Article.find_by(id:"1")
18181919t = Tag.new(:name => 'tutorial')
···22222323t = Tag.find_by(name: "tutorial")
2424```
2525+2626+add tag to article:
2727+2828+```ruby
2929+t = Tag.find_by(name: "tutorial")
3030+3131+t.articles << Article.find_by(id:"1")
3232+```