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 - Eeems

Pages: 1 ... 76 77 [78] 79 80 ... 370
1156
TI-Nspire / Re: nspire Linux Questions
« on: November 17, 2012, 02:08:25 pm »
Admin, please split this into a separate topic. This topic gets hijacked too much and it gets pretty annoying. x.x
Done

1157
WabbitStudio Software Suite / Re: Wabbit not working...
« on: November 16, 2012, 09:50:15 pm »
So I'm guessing you are talking about wabbitemu.
How old is the rom? Did you just try to make the rom? Could you try running wabbitemu from the command line and see if it throws any errors?

1158
Site Feedback and Questions / Re: Extreme spambot rush last night
« on: November 16, 2012, 05:47:15 pm »
Quote
Actually Eeems if it's StopForumSpam that is down the site will still work. It will simply let you register anyway regardless of if you are a bot or not (unless you changed it to set members on approval)
I wasn't talking about StopForumSpam, I was talking about CloudFlare which blocks a lot more then StopForumSpam does.

1159
Site Feedback and Questions / Re: Extreme spambot rush last night
« on: November 16, 2012, 05:38:18 pm »
If it was down our site would be down. You go through cloudflare to get to Omnimaga itself. Cloudflare has pretty much no downtime at all.
It must just be a new set of bots out there that found our site and have not been blocked by cloudflare yet. The ones I looked at don't even have an ip address apparently x.x

1160
Ash: Phoenix / Re: Ash: Phoenix- Reboot
« on: November 16, 2012, 02:20:42 pm »
looking good!

1161
Humour and Jokes / Re: Weird/funny pictures thread
« on: November 15, 2012, 11:11:03 pm »
PAY NO ATTENTION TO THE TABS BEHIND THE BLACK.
What tabs? What black? ;P

1162
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)
« on: November 15, 2012, 09:20:42 pm »
Quote
21:17 <@Netham45> oh, Eeems, not sure if IE9 or lower have it, but IE10 has an adblock built in.
21:18 <@Eeems> I use Firefox :P
21:18 <@Eeems> nightly
21:18 <@Netham45> You said you were at school
21:18 <@OmnomIRC> (O)<Builderboy> freyaday check to see what r2 is
21:18 <@Eeems> they have macs (ew) with firefox on it
21:18 <@Eeems> and safari, but yeah using Fx
21:18 <@Netham45> I'm sorry.
21:18 <@OmnomIRC> (O)<Builderboy> if its too large, the second 4 loop will have a negative number as its 3rd argument
21:18 <@OmnomIRC> (O)<Builderboy> causing bad things
21:18 <@Eeems> I think I'll survive :(
21:19 <@Eeems> no classes next week, so I'll have time to detox from using a mac
21:19 <@Netham45> Drink lots of water.
21:19 <@Eeems> I will
21:19 <@OmnomIRC> (O)<Freyaday> lemme check what it is...
21:19 <@Eeems> lets hope it helps
21:20 <@Netham45> lol

1163
General Calculator Help / Re: TI connect is acting really weird.
« on: November 15, 2012, 08:40:18 pm »
Good Point!

It sends, but it doesn't receive.  Receive is shaded out...

From console: unknown property for 'orientation' for class 'GtkVbox'

I don't know what this is, but maybe it has something do with it.
Probably not. I'd say ask someone to help you on IRC. I'd poke Jonimus I think. I believe he is knowledgeable about getting it to work.

1164
General Calculator Help / Re: TI connect is acting really weird.
« on: November 15, 2012, 06:34:37 pm »
Please don't double post.

Did you have tilp set to the correct calculator type?

1165
TI-Nspire / nspire Linux Questions
« on: November 15, 2012, 02:34:23 pm »
Quote
still not found.... T.T
Did you do what was said before your post first?

1166
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 15, 2012, 02:18:38 pm »
If it's compiled for the right arm chip I would assume so

1167
TI-Nspire / nspire Linux Questions
« on: November 15, 2012, 02:13:58 pm »
Quote
it says " -sh :links: not found "
Well try what was said before your post. If trying to run links still says command not found try running this: /usr/bin/links

1168
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: November 15, 2012, 02:05:54 pm »
From what I can tell it's already in the image. Just type links in the command line, press enter and it should work.

1169
TI-BASIC / Re: Number inversion
« on: November 15, 2012, 12:02:39 pm »
Code: [Select]
Local final,reps,next,a
f=103
while f!=998
num=f
final=0
reps=int(log(num,10))+1
For a,0,reps
next=int(((num)/(10)))
final=final*10+num-10*next
num=next
EndFor
resulti=((final)/(10))
num=resulti-f
l=num
Disp "O Inverso de ",f," é ",resulti," logo"
Disp resulti,"-",f,"=",l
Local final,reps,next,a
final=0
reps=int(log(num,10))+1
For a,0,reps
next=int(((num)/(10)))
final=final*10+num-10*next
num=next
EndFor
resultii=((final)/(10))
Disp "O inverso de ",l," é ",resultii," logo"
Disp resultii,"+",l,"=",resultii+l
while !<reasons>
f=f+1
EndWhile
EndWhile
This would probably work. replace <reasons> with all the checks. Also, keep in mind this is psuedo code, it might need some altering to work.

1170
TI-BASIC / Re: Number inversion
« on: November 15, 2012, 11:40:14 am »
I would condense all your if/elseif <condition> goto g's into one large if statement. So
Code: [Select]
if <contition> or <condidtion> ...
goto g
else
goto e
end
I would also suggest not using goto/label, they can cause memory leaks in most languages.

Pages: 1 ... 76 77 [78] 79 80 ... 370