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

Pages: 1 ... 7 8 [9] 10 11 ... 71
121
Other Discussions / Re: 1 OnePlusOne invite
« on: July 25, 2014, 08:26:53 am »
CPU of this phone: 2.5GHz Quad Core
CPU of my laptop: 2.6GHz Dual Core
So CPU-wise it's more powerfull than my laptop? That is one powerfull phone. The screen also has a better resolution than the screen of my laptop.

But since I only use my phone to make phone calls, for texting and as MP3 player, $299 is too expensive to me.

122
Gaming Discussion / Re: Zelda discussion
« on: July 24, 2014, 06:34:24 pm »
There is a real timeline. It splits into 3 alternate universes, though:

123
Depending on what version of linux you use, there may be a software center application (which is basically the linux version of the appstore). You can easily install tilem from there.

124
Miscellaneous / Re: Awesome pictures thread
« on: July 20, 2014, 06:52:24 pm »
Are you using your nspire's battery to charge your DS?

125
Humour and Jokes / Re: Cashews
« on: July 18, 2014, 05:35:59 pm »
yeah, paint is meant to be replaced by a better image editor as soon possible, just like internet explorer is only meant to download a better browser  :P

126
Humour and Jokes / Re: Cashews
« on: July 18, 2014, 05:28:31 pm »
Well, considering he used paint, I'd say it is indeed quite realistic.

127
Humour and Jokes / Re: Weird/funny pictures thread
« on: July 01, 2014, 06:42:58 pm »
Chromium just cropped the title of a youtube channel in a kinda trollish way:

* ben_g lost

128
I have used Game Maker, and I think it's a very good tool to get started with progamming. There are a lot of tutorials online, for the complete beginners, for the experts, and everything inbetween. But I wouldn't reccommend it for full games, especcially if they rely on complex mechanics or 3D graphics, because the performance is not that good. But since it's very quick and easy to get some basic things working, it's still very usefull to test algorithms for games. (the performance of Game Maker Studio (the current version of Game Maker) can be improved by upgrading to the pro edition though, as it has the ability to compile it's normally interpreted included scripting language, but this is very expensive and still doesn't handle 3D very well, so if you need more performance, you're better off using a different programming language anyway.)

129
Axe / Re: Using the link port in Axe?
« on: June 24, 2014, 06:29:40 pm »
Well, not written in axe != impossible in axe. It is possible in assembly, and you can use assembly in axe. The USB port is very complicated and not fully documented (because it's not fully known) though, which makes it quite hard to get it to work. I'd reccomend you to ask thepenguin (if he still visits this forum) for more information if you're interested.

130
Axe / Re: Using the link port in Axe? :/
« on: June 24, 2014, 07:51:25 am »
Code for calculator 2:
.RUN2
ClrHome
While 1
Disp "WAITING...",
While Get=~1
ReturnIf getKey(15)
End
Disp "RECEIVED! ",Get>Dec,
End
I think that the last Get is wrong, it isn't a variable, so if it recieves something, it tries to recieve something else and display that, so you should store the first Get into a variable, and display that variable instead.

131
Axe / Re: Axe Parser Picture Issues
« on: June 22, 2014, 02:13:32 pm »
Oh, apparently I did miss a huge part of your post. But you should be able to just use Copy(PTR_to_pic) and Copy(PTR_to_pic,L3) for the black and grey layers respectively.
But it probably compiles into the exact same binary as your code.

132
Axe / Re: Axe Parser Picture Issues
« on: June 22, 2014, 02:07:53 pm »
Can't you do:
Code: [Select]
Copy(Pic1)

[long hex]->Pic1

instead of:
Code: [Select]
Bitmap(0,0,Pic1)

Data(96,64)->Pic1
[long hex]
iirc it's much more optimized.

133
Gaming Discussion / Re: Steam Summer Sale Confessions
« on: June 20, 2014, 09:29:16 am »
I have negative money. You can't really buy anything with that...
Well, Farm your life is negative one cent...

134
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)
« on: June 20, 2014, 08:39:25 am »
This isn't an IRC quote, but i found this one worth sharing anyway. It's kinda NSFW, but this thread is already tagged as NSFW anyway.

Quote from: someone on facebook
Last night, I was having sex, and I suddenly stopped moving. My girlfriend was suprised and asked me: "What's wrong?" Then I said: "Shhh I saw it on YouPorn. It's called Buffering."

135
ASM / Re: Need help with ExecAns//NikProgrammer
« on: June 16, 2014, 06:38:26 pm »
I can't really help you with the HEX program, sorry, but maybe there is an other way of doing what you want to do.
For what do you need custom-named lists? They are hard to create, and it's hard to know which ones are used by your program. If you need to remember names or other text, then you might want to save it in a different way than in custom-named lists.
If you really need them though, then you should try running it in an emulator that has a debugger. (an example of this is wabbitemu)Then you can see what the program does step by step, and track down the orgin of your problem. To make debugging easier, you can add F376 to the start of the (assembly) program (ONLY WHEN YOU4RE EMULATING IT) which basically freezes the calc, but you can disable the halt mode of the CPU from within the debugger to make it continue executing the program.

Pages: 1 ... 7 8 [9] 10 11 ... 71