Jump to content
  • Advertisement

Inquire Your Favorite Ginger


Guest hilaryfan80

Recommended Posts

Guest hilaryfan80
On 6/21/2017 at 6:58 PM, Renegade the Unicorn said:

warning: adult content (smirk) 

  Hide contents

If you could have a threesome with any fictional character, who would it be?

 

Adult content:

Spoiler

Oh that's easy: Old, Preg, and Señor Lime!

 

Link to comment
Share on other sites

Guest hilaryfan80
Just now, Renegade the Unicorn said:

The inevitable question:

  Hide contents

Do you have a soul?

Sorry, had to get that out of my system :Laugh: 

 

No! :P I sold it for 62 cents.

Link to comment
Share on other sites

Guest hilaryfan80
1 minute ago, Renegade the Unicorn said:

Easiest computer language to program?

PHP by far. In fact, PHP has been criticized because it is such a loose programming language. Most languages requires you to specify what the return result should be in every function, and PHP makes this completely optional. By doing so, there are far more problems on PHP simply because it is so loose and accepting.

For example, this coding normally does not work on other languages:

<?php
function test() {
  $hi = "hey world";
  return true;
}
if (test()) {
  echo "It works!";
} else {
  echo "It does not work.";
}
//"It works!" shows despite $hi not being used

You would get an error that says that $hi is not used at all, yet PHP allows it. Another thing PHP allows that other languages do not:

<?php
$number = "1"; //this is a string
if ($number == 1) { //this is a number
  echo "true";
} else {
  echo "false";
}
//"true" shows despite $number being a string and not a number, so why is it true? They're not equal.

PHP is easy because you can pretty much get away with murder and it will still work, but it does lead to bad practices. Still, it's a very easy language to learn if you're interested in learning how to code.

Link to comment
Share on other sites

Guest hilaryfan80
3 minutes ago, Renegade the Unicorn said:

Have you considered going into tech support?

Also, what do you think of tech support scammers? I love messing with them :P 

Nah that's a boring life. :P

And scammers are kinda boring for me.

Link to comment
Share on other sites

Guest hilaryfan80
12 minutes ago, Renegade the Unicorn said:

Fave drink (both alcoholic and non)?

Alcoholic: Kahlua White Russian

Non-alcoholic: Diet Pepsi

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...