enter image description here

the anti conjoined triangles

I want to try to code ruby on rails in my hosting, but it turns out I cannot because I choose the value pack in namecheap which is the basic plan and I need to upgrade my packages if I want to try to code in ruby gems or rails.

but I think it'd be much better if I code in vps instead, it's much more powerful and I can also host video on my site and able to create vpn and try installing ghost blogging platform.

so yeah, in the near future my life target is to be able to own a vps and code in it.

ruby programming has different syntax and we're gonna learn it.

A shortcut is to use an assignment operator. You already know one assignment operator: =, which sets a variable. You can update a variable with additional assignment operators, however, which include +=, -=, *=, and /=. For instance, when you type

counter += 1

You're telling Ruby: "Add 1 to counter, then assign that new value back to counter." This provides a succinct way of updating variable values in our programs.

Some languages have the increment operators ++ and -- (which also add or subtract 1 from a value), but Ruby does not. You'll have to make do with += and -=!

kalau di python utk elseif code nya elif

var = 100
if var == 200:
   print "1 - Got a true expression value"
   print var
elif var == 150:
   print "2 - Got a true expression value"
   print var
elif var == 100:
   print "3 - Got a true expression value"
   print var
else:
   print "4 - Got a false expression value"
   print var

print "Good bye!"

kalau di ruby utk elseif code nya elsif

if var == 10
print “Variable is 10”
elsif var == “20”
print “Variable is 20”
else
print “Variable is something else”
end

always remember that in python you need to put ":" after if, elseif or else statement or else the code won't run in ruby you don't need this however

I have been coding like crazy on codeacademy, I have been learning many new programming languages. programming is important if you have photographic memory. coding make you remember stuff and use this knowledge to solve problem in developing apps on the web.

you should notice that I have added many new website to my hosting and this was made possible by my infatuation of all things web.

so yeah, expect to see more useful website created by me.