Author Topic: Blockland Javascript Scripts V2 - New Scripts Directory!  (Read 12006 times)

And also, making text small to 'hide' it is kinda like a stylistic joke, y'know? It adds a certain emotion to the sentence. I like having the emphasis. When I read the 1pt text, I read it in my head with a quiet voice.
This is how I think of it too sometimes.

https://docs.google.com/spreadsheet/viewform?hl=en_US&formkey=dFVTRlNKLXV6VTZ2bk14eHdLTkJkOFE6MQ#gid=0

i've made a google form for submitting scripts to a directory:

https://docs.google.com/spreadsheet/ccc?key=0Atv3JinFrdeOdFVTRlNKLXV6VTZ2bk14eHdLTkJkOFE&hl=en_US#gid=0
« Last Edit: January 21, 2012, 07:25:56 PM by Kingdaro »




the youtube script is lovey

alright so the form and directory works well, i'll go ahead and add them to the OP.

obviously I'll have to slap a couple bitches but that's part of public domain, i guess.

The YT embed is the only thing I use, because there are situations where I want to see snipped images. :o
And also, making text small to 'hide' it is kinda like a stylistic joke, y'know? It adds a certain emotion to the sentence. I like having the emphasis. When I read the 1pt text, I read it in my head with a quiet voice.
I absolutely agree that large and tiny font is great for expressing what you want to communicate. But you don't need to use 1pt to indicate a whisper when you could just use 6pt, and you don't need to use 72pt to show that you're yelling when 24pt should be big enough for everyone.

I think font size floors and caps are a good compromise that will let you save the author's expression without the inconvenience of having to highlight, zoom, copy and paste, or quote text to read it.

hey guys

how about a [ code=ScriptingLanguage] syntax highlighter?

hey guys

how about a [ code=ScriptingLanguage] syntax highlighter?

...
Yes.


What's funny is we have php syntax highlighting.

Code: [Select]
<?php
class Person {
   public 
$firstName;
   public 
$lastName;
 
   public function 
__construct($firstName$lastName '') { //Optional parameter
       
$this->firstName $firstName;
       
$this->lastName $lastName;
   }
 
   public function 
greet() {
       return 
"Hello, my name is " $this->firstName " " $this->lastName ".";
   }
 
   public static function 
staticGreet($firstName$lastName) {
       return 
"Hello, my name is " $firstName " " $lastName ".";
   }
}
 
$he = new Person('John''Smith');
$she = new Person('Sally''Davis');
$other = new Person('Joe');
 
echo 
$he->greet(); // prints "Hello, my name is John Smith."
echo '<br />';
echo 
$she->greet(); // prints "Hello, my name is Sally Davis."
echo '<br />';
echo 
$other->greet(); // prints "Hello, my name is Joe ."
echo '<br />';
echo 
Person::staticGreet('Jane''Doe'); // prints "Hello, my name is Jane Doe."
?>

but none for torquescript

that's hilarious.

maybe it came with SMF with web development in mind over blockland.

php's syntax is handicapped and too needy.
« Last Edit: January 21, 2012, 09:52:31 PM by Kingdaro »

that's hilarious.

maybe it came with SMF with web development in mind over blockland.

php's syntax is handicapped and too needy.
yeah it's an smf feature

on the subject of whoever's making it, i can't since i don't know stuff about torque

i'd make one for lua but nobody gives a stuff about that, lol

on the subject of whoever's making it, i can't since i don't know stuff about torque

i'd make one for lua but nobody gives a stuff about that, lol
Here's a syntax file for notepad++
http://scatteredspace.com/forum/index.php?topic=2054.0