Jump to content

KyL

Members
  • Posts

    492
  • Joined

  • Last visited

Everything posted by KyL

  1. OH no I forgot I won't be able to make it to the imaginary pool party today, I have a job interview at 3 so Mordred is there in spirit as the chief lifeguard, ok?
  2. sorry that was a bit confusing... I can work on a code and see if it will work on here, I just gotta get my sister who actually is good at it @bruh
  3. <div id="clock"> /* Google font */ @import url('https://fonts.googleapis.com/css?family=Orbitron'); body { background-color: #121212; } #clock { font-family: 'Orbitron', sans-serif; color: #66ff99; font-size: 56px; text-align: center; padding-top: 40px; padding-bottom: 40px; } </div> <div> function currentTime() { var date = new Date(); /* creating object of Date class */ var hour = date.getHours(); var min = date.getMinutes(); var sec = date.getSeconds(); } </div> function currentTime() { hour = updateTime(hour); min = updateTime(min); sec = updateTime(sec); } function updateTime(k) { if (k < 10) { return "0" + k; } else { return k; } } document.getElementById("clock").innerHTML = hour + " : " + min + " : " + sec; /* adding time to the div */ function currentTime() { var t = setTimeout(function(){ currentTime() }, 1000); /* setting timer */ } currentTime(); /* calling currentTime() function to initiate the process */ So you'd want it something like that, but change out the getHours() and add more divs to seperate them (you can never have enough)
  4. I've never actually read any brandon sanderson books so sorry I don't know real anatomy
  5. Literally too much zinc leads to not enough copper which can lead to death don't go chugging zinc bottles, kids
  6. "That's even better!!!" "I'll sleep on the ground, them things wouldn't make sleeping in armour any softer."
  7. "Alright!! I've taken part in a few rebellions, I could probably help shut one down."
  8. “It means exactly that. I am really just a spirit, Herate woke when she summoned me. Her catalyst (a shard of the weapon that killed me in life, I believe) along with her magic created my body and her will bound me to this world. I dunno if that makes sense, there’s a few more minor details but those just make explaining more complicated, so I’ll leave them out. But yeah, that’s pretty much it.”
  9. "Yeah, yeah. I thought You (@Channelknight Fadran) of all people would understand, but eh whatever.. I'm just gonna pretend you said 'yes' though.." Mordred sits next to Fadran
  10. "Hey, Fadran, can I sit by you?" asks the knight of treachery, walking over to the... pondering figure. "I don't really know anyone here, and I don't think those I've met like me too much." @Channelknight Fadran
×
×
  • Create New...