The Sato

Daily routine in a couple of words

We gonna handle that later

Alright, back to coding and the beautiful life of mine. There still hasn’t been anything new really seeing as I’m stuck in the house… Or at least I haven’t left it in quite a while, but this Friday a new movie comes out that is a must watch… God writing about my life seems hard, I need a camera for sure, so much easier to update life then.

No life? What about it?

I’m in college like a pro, but then I received my homework for today, and it made me miss high school. I’ve never seen so much physics homework in my life! I mean fuck! My major is computer science, pretty sure physics has no involvement in it… If it does then fuck you physics.

Anyhow, I have to put coding in hiatus until I finish this… Tuesday at most late.

Oh html… Why must you bore me?

Alright, well I figure its retarded for me to try going at something complicated like Java when I don’t even know simple html… So lets start with what I know.

Html stands for Hyper Text Markup Language and it isn’t for programming… Mostly to describe or show stuff in a page.

Shit in html is usually locked by these weird things < > called tags. You also have to sort of end whatever you begin, so if you do something like  <center>, which by the way is used to center something, it has to end by adding a simple / between the word and the starting <

The ending result would be like  </center>

So we start something <center> and then we end it </center>.

The first tags when coding an html page is the tag letting the page know it contains html… Which oddly enough is <html>. You have that at the beginning of your page and when you finish putting more tags and codes inside you end it with </html>.

So <html></html> lets the website know what it is, but <body> tag shows what it actually contains… The goods of the website. You put stuff after the body tag that you want to show, and when you’re done you end it </body>

Anyhow moving on, it seems the first thing to start is with a heading for your website… Headings use the tags <h1></h1> and can go all the way up to <h6></h6>. So that’s 1 through 6… Also remember to close these tags and all the rest. <h1> and </h1> makes it complete. A heading is like the title by the way…

Not quite sure why they have it 1 to 6, but it seems 1 is the biggest type of heading and it gets smaller as you get to 6..

The other thing I read about are paragraphs… Its tags are <p></p>, but it doesnt seem to do much other than skip a line down if you have more than one.

so it would look like this

<p>text</p>

empty random space

<p>text</p>

Weird shit, lets your site know there is text, but easy enough do.

Links are… Well links… Like stuff that links/takes you to another place.  These are easy enough to remember since I’ve used them a lot before.

They look like so;

<a href=”http://thesato.com”>  insert text here </a>

They start with the letter a and quick add the word href which i do not know what it stands for… It then has the = equal sign which is what your link amounts to or is showing. You want to put your link after the equal sign but quote it… with the ” quote signs. One on each side. Then end the link with the letter you started with. In this case, the letter a is our tag.

Whatever you put inside those two tags will be what the link looks like… So if you write “here” between those two tags it will make the word blue and allow you to click it. When clicked it will then take you to your link.

The last thing I will review for the day is images… They’re what makes the internet and are easy to post as it only has 1 tag.. No need to end it like the other stuff covered. An image tag looks like this:

<img src=”image.png”/>
Simple enough to do if you remember that this image tag starts with the short abbreviation for image, which is img. short after starting img you have something like the link tag did, but this one is src, which i dont know what it stands for at the moment either, but  I’ll get to it eventually. Anyhow once you have the <img src you add an = sign just like the link tag which will equal to the image you want to show… = equals means show in html… I believe.
So you post a link to the image, which there are different image types, but i wont go over that. It will then show it… Remember the link goes inside quotation marks and after the = sign. The new thing on the image tag is that it doesnt have a second tag to end it, but instead closes its self with one tag, so we can just ad /> after the quoted image link to end the tag and have it show.
The ending result is
<img src=”image.png”/>
and done!
There is other stuff you can do with it, but I haven’t gotten to that part yet, so I will leave it for another day.
In the mean time I’m done for the day! Finally know some of this stuff. Also the text keeps showing up as small now, not sure why… Don’t know enough to fix it, but i memorized it so ill come back and fix it later… if not fixed by when this read.

So it begins…

Today I found my self lacking sleep from the previous night due the Jagex and their crap updates. I’d hoped they had setup some kind of challenge for the botting community, so that I’d may profit, but instead we were told it was a simple fix.

Anyhow, nothing else to talk about… Well porn, but I’ll pass on it for today.