Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Scipi

Pages: 1 ... 3 4 [5] 6 7 ... 139
61
News / Re: Smf Upgrade - The Dawn of a New Era
« on: March 03, 2014, 01:49:16 am »
Woo, I wondered when you guys were going to finish this (ever since we found the secret test environment) :P

Quick question though, is the karma system reset or is it possible to recover the karma values from the old version?

62
Humour and Jokes / Re: If there was tech support in botswana...
« on: March 02, 2014, 09:39:14 pm »
Praise the Sun and summon Solaire of Astora. He'll help you out.

Solaire of Astora went crazy on me thinking he is the Sun.

63
Humour and Jokes / Re: If there was tech support in botswana...
« on: March 02, 2014, 07:11:04 pm »
No, physical connection to continental landmasses is hazardous for your health.

Up up down a b a start start anarchy democracy anarchy anarchy ༼ つ ◕_◕ ༽つPraise the Dome༼ つ ◕_◕ ༽つ democracy left right start.

64
Humour and Jokes / Re: Re: Weird/funny pictures thread
« on: March 02, 2014, 02:18:57 pm »
There's no part where it will say There is no running around (just there is no running from a trainer battle)

So I'd say it's shopped :p

65
Humour and Jokes / Re: If there was tech support in botswana...
« on: March 01, 2014, 08:47:53 pm »
Become LV3

I'm Lost (In Lost Town)

66
Humour and Jokes / Re: If there was tech support in botswana...
« on: March 01, 2014, 05:11:07 pm »
Invest your 10c in Dogecoin

Such jokes. Need help. Wow.

67
Computer Projects and Ideas / Re: Quadratic Burd Solver
« on: February 28, 2014, 12:17:01 pm »
I'll take a look and refactor my code later on. Thanks ^_^

Why do you need a quadratic solver? The equation is simple enough.

Code: [Select]
private static void quadEqu(){
    results = new String[2];
    if(b*b - 4 * a * c >= 0){
results[0] = "" + (float)(-b + Math.sqrt(b*b - 4 * a * c))/(2*a);
results[1] = "" + (float)(-b - Math.sqrt(b*b - 4 * a * c))/(2*a);
    }else{
negRoot = true;
results[0] = "" + (float)-b/(2*a) + " + " + (float)Math.sqrt(Math.abs(b*b - 4 * a * c))/(2*a) + "i";
results[1] = "" + (float)-b/(2*a) + " - " + (float)Math.sqrt(Math.abs(b*b - 4 * a * c))/(2*a) + "i";
    }
}

68
Computer Projects and Ideas / Re: Quadratic Burd Solver
« on: February 28, 2014, 10:15:40 am »
What if you want to set one of the vars a negative value :P

I'm probably going to have a flag to where you start going in reverse.

If I wanted to be REALLY evil, I'd do it as the difference between your score and high score :P

Edit:
How to run it btw? I get "A java exception error has occured" ???

You need to make sure you run the jar with all the contents of the zip file extracted. It needs both the lib folder and res.

69
Humour and Jokes / Re: Omnimaga in 2015
« on: February 27, 2014, 11:12:37 pm »
Quadratic solver and flappy bird clone combined? Sounds like a great, evil idea  :evillaugh:
This exists now...
http://ourl.ca/18193/323543
much prediction DJ

I took it as a challenge, so I wrote a quick and dirty clone to implement it :P

70
Computer Projects and Ideas / Re: Quadratic Burd Solver
« on: February 27, 2014, 11:05:37 pm »
I would have done it, but I don't know enough with Z80 or Axe.

Can do it for the Nspire, though.

71
Computer Projects and Ideas / Quadratic Burd Solver
« on: February 27, 2014, 10:38:39 pm »
Does your teacher hate it when you play Flappy Bird because you are not doing enough work?
Ever wish you could do your math homework while playing your favorite handheld game?
Ever feel solving quadratic equations is just too easy and boring?

Well look no further than the Quadratic Burd Solver.

Using the latest Quantum Technology, I have merged together both a Flappy Bird clone and a Quadratic Solver.

Score points to set your A, B and C variables.

Die three times to see your answer.

Supports imaginary values, because we all have ADHD and imaginary things are just SO much better :D

(Disclaimer, graphics are in progress)

Jokes aside, some known issues so far:

-You do not yet die when you go above or below the map
-Graphics are barebones
-Acceleration is a work in progress (if someone could supply me with getting the physics nailed down, that's be amazing)


So what are you waiting for? Download today and solve all your Flappy Bird and Quadratic needs!

72
Miscellaneous / Re: Koding
« on: February 27, 2014, 03:56:13 pm »
The thing is, does it run 24/7 and do they allow big bandwidth ? :P
Also build chroot yourself. >:D

They run 24/7, although when it's overloaded you sometimes can't access your VM.

73
Miscellaneous / Re: Random YouTube Videos
« on: February 27, 2014, 10:47:26 am »

74
Miscellaneous / Koding
« on: February 27, 2014, 10:28:41 am »
For those of you that don't know what it is, Koding.com is site for developers where each member is given root access to a Ubuntu Terminal to play around with. You can install software packages and develop software remotely. It also provides it's own G+/FB-like social media features to share code snippets and such.

Koding is also giving away memory space, 1 GB per signup up to a max of 20 for referrals. It'd be great if you guys could help me out and I think many of you would find the site interesting (if you don't already know about it, since I know some of you do).

https://koding.com/R/scipi

75
Humour and Jokes / Re: Omnimaga in 2015
« on: February 27, 2014, 12:34:43 am »
That's a lot of Flappy Birds :P

Pages: 1 ... 3 4 [5] 6 7 ... 139