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 ... 28 29 [30] 31 32 ... 370
436
The Axe Parser Project / Re: Features Wishlist
« on: May 06, 2015, 04:01:18 pm »
Can you make it so..
A) program will always be backed up, regardless if they are archived or not, and
B) that all subprograms used by main program will also be backed up.
 Several times already I had my files deleated or lost for some reason or another,(in archive too) and axe backup is sorta shaky to compleatly rely on.
Thanks,
Why do you want to back up an archived program? It sounds like you have another issue if the one in the archive is being deleted.

437
Axe / Re: Specific Tutorials List (Axe)
« on: May 06, 2015, 03:45:58 pm »
The Pseudo-Huffman Compression by shmibs and the Huffman Compression by Runer112 tutorials are linked to the same page  :P

They link to different posts though. Wait for the page to completely load and it will take you to the correct place.

438
Site Feedback and Questions / Re: Sending PM
« on: April 29, 2015, 06:18:13 pm »
Looks like cloudflare decided to check to make sure you are a human. This shouldn't happen again at your current IP address. If it keeps on happening let me know and I can follow up with them about it.

439
News / Re: z80 and ez80 ASM Support Added to SourceCoder 3
« on: April 20, 2015, 03:02:43 pm »
Woo! Can't wait to play around with this!

440
Other / Re: TECHNOLOGY EMERGENCY!
« on: March 19, 2015, 04:25:45 pm »
I fail to see how the the subject of this topic applies to the actual content of this topic.

441
Axe / Re: Axe Q&A
« on: March 17, 2015, 03:47:39 pm »
Hey Alex Just an fyi, edit your posts instead of adding a second post. Adding a second post like that is called double posting and it's a bit of a no-no around here.
Thanks!

442
News / Re: New user mentions
« on: March 13, 2015, 01:54:30 am »
@Sorunome I like it!

443
Computer Projects and Ideas / Re: Ping meter
« on: March 04, 2015, 06:59:53 pm »
I just added a new "settings" window with the features that Eeems and Sorunome requested:

http://i.imgur.com/FLBzlN0.png

Download is attached to this post.
I noticed that you force the user to add http:// to the setting. You could probably do some url parsing to figure out if it's been added or not. It's best to make the user think less when you design things :)

444
Computer Projects and Ideas / Re: Ping meter
« on: March 04, 2015, 12:43:12 pm »
This is quite useful actually, may I suggest allowing the user to choose what host to ping?

445
OmnomIRC Development / Re: IRC Client Integration
« on: February 27, 2015, 08:28:57 pm »
Sorunome: Mind adding this info to the IRC page?

446
Web Programming and Design / Re: Corest web programming
« on: February 19, 2015, 01:35:23 pm »
Just like every programming language is compiled to Machine code, what is Web programming compiled down to?
Not every programming language is compiled to machine code. Most popular programming languages are interpreted.
Kind of same for Javascript, but that's indeed a programming language. The Javascript engine shipped with your browser would interpret and execute each line, line by line, or something like that.
Most JavaScript engines make use of bytecode to increase speed. Bytecode is almost like machine code, but it is still not run directly by the computer, instead it's more of just short-hand for interpreted code.


Aside from all that, the three languages (Programming, Markup, etc) you will want to familiarize yourself with are JavaScript, HTML and CSS. This is only for the in browser stuff. If you want to start looking into programming server side stuff (database etc) then there are a number of options. Most people start with php+mysql. I myself would recommend looking at node.js though.

A great resource for learning web programming is w3schools as Sorunome mentioned. If you want to look more in depth at HTML+CSS+JavaScript though, I'd recommend Mozilla's Developer Network.

447
Computer Programming / Re: x86 machine code
« on: February 19, 2015, 01:15:08 pm »
A quick google search will answer this question for you.
This forum is not a search engine, please use it for asking specific questions about the language, or about specific tutorials you have already found.

448
Introduce Yourself! / Re: DragonLord says hello to Omnimaga
« on: February 16, 2015, 11:48:58 pm »
Hi and welcome to Omnimaga!

I was taking a peek at the benchmarking test you wrote. I wrote something a little more optimized (size and speed) for the 84+ benchmark.
Code: [Select]
:1
:For(A,1,2499
:tan(tan-1(e^(ln(√(Ans*Ans
:Ans+1
:End
It ran in ~2:22.47 and resulted in 2.499.999992
I took another look and realized I could improve it a bit by merging two lines into this:
Code: [Select]
:1
:For(A,1,2499
:1+tan(tan-1(e^(ln(√(Ans*Ans
:End
This completed in 2:18.36 and returned the exact same result. I'm not sure if there is any way to optimize it more since I don't play around with BASIC much anymore.

449
What I mean by projector based is instead of converting from a pixel based computer to a projector, you program directly to the projector.
I don't understand how this is different than current implementations. We send the data directly to the projector to display.

450
Computer Programming / Re: How to make a IRC bot
« on: February 06, 2015, 09:48:18 pm »
Here's the one I use, with a few scripts I wrote. It's in Javascript (with Node.js), if you read the API it shouldn't be really complicated.

https://github.com/Eeems/EeeZorBot/tree/re-org
https://github.com/juju2143/EeeZorBot-scripts
Not to mention that version isn't fully released yet ;)
I want to program my IRC Bot in C
You might want to lead off with what language you want to work with at the start of the topic next time.

Pages: 1 ... 28 29 [30] 31 32 ... 370