Author Topic: Levi's Corner - Programming Projects  (Read 5155 times)

Levi's Corner - Programming Projects
« on: May 29, 2012, 01:06:16 pm »
This topic is to just kinda show off my projects. Some are completed, most are incomplete.
There are some complete projects I am bound by law not allowed to share because of licensing. So some of those projects may seem
incomplete but that's just because I removed the copyright sections. If there is an interest in a specific project I could reprogram it without the license and release it as some kind of open source GPL license.

Completed List:
Server Status Checker
Description: This little tool in lamens terms is a server status checker.
Screenshot: http://ez1networks.com/bugs181/status/ServerStatus.PNG
Download: http://ez1networks.com/bugs181/status/status.html

Spotify Now Playing for Growl
Description: SpotifyNowPlaying allows you to send notifications to Growl about song information from Spotify when the song changes.
Screenshot: http://ez1networks.com/bugs181/screenshots/SpotifyNowPlaying.png
Download: http://code.google.com/p/spotify-now-playing/

more to be added later when I get some time.

teknophyl

Re: Levi's Corner - Programming Projects
« Reply #1 on: May 29, 2012, 01:08:32 pm »
This topic is to just kinda show off my projects. Some are completed, most are incomplete.
There are some complete projects I am bound by law not allowed to share because of licensing. So some of those projects may seem
incomplete but that's just because I removed the copyright sections. If there is an interest in a specific project I could reprogram it without the license and release it as some kind of open source GPL license.

Completed List:
Server Status Checker
Description: This little tool in lamens terms is a server status checker.
Screenshot: http://ez1networks.com/bugs181/status/ServerStatus.PNG
Download: http://ez1networks.com/bugs181/status/status.html

Spotify Now Playing for Growl
Description: SpotifyNowPlaying allows you to send notifications to Growl about song information from Spotify when the song changes.
Screenshot: http://ez1networks.com/bugs181/screenshots/SpotifyNowPlaying.png
Download: http://code.google.com/p/spotify-now-playing/

more to be added later when I get some time.

Checked out Spotify for Growl and saw Lifehouse was Now Playing. Only thing worse is Nickleback :D

What do you develop in?

Playing - KOTOR, Mario & Luigi Superstar Saga

Re: Levi's Corner - Programming Projects
« Reply #2 on: May 29, 2012, 01:17:17 pm »
Checked out Spotify for Growl and saw Lifehouse was Now Playing. Only thing worse is Nickleback :D

What do you develop in?

lol, I guess we have different taste in music. I basically like any pop music..
I know several languages. html is my Kryptonite.

C/C++, C#, .NET framework, VB, javascript, PHP, my ASM is rusty but I can manage my way around.
I prefer PHP for web and C++ for application development though.
I've been meaning to pick up Ruby on Rails but havn't had time.
theres probably a few i'm forgetting but you get the point, i'm well diversed.

teknophyl

Re: Levi's Corner - Programming Projects
« Reply #3 on: May 29, 2012, 03:49:25 pm »
Checked out Spotify for Growl and saw Lifehouse was Now Playing. Only thing worse is Nickleback :D

What do you develop in?

lol, I guess we have different taste in music. I basically like any pop music..
I know several languages. html is my Kryptonite.

C/C++, C#, .NET framework, VB, javascript, PHP, my ASM is rusty but I can manage my way around.
I prefer PHP for web and C++ for application development though.
I've been meaning to pick up Ruby on Rails but havn't had time.
theres probably a few i'm forgetting but you get the point, i'm well diversed.

Nice to meet another developer. Interesting how gaming and development go hand in hand, even when youre not a game developer.

Playing - KOTOR, Mario & Luigi Superstar Saga

foxhack

Re: Levi's Corner - Programming Projects
« Reply #4 on: June 07, 2012, 04:22:07 pm »
I've been thinking of learning a programming language but don't know which one to go with. Any suggestions?

Re: Levi's Corner - Programming Projects
« Reply #5 on: June 07, 2012, 04:35:14 pm »
I've been thinking of learning a programming language but don't know which one to go with. Any suggestions?

Ohh jeez. That's actually a hard question. Heres an example.
Lets give your question some comparison. I'v been meaning to take up cooking but dunno what to cook. Any ideas?

The answer comes down to what you want to accomplish, what you enjoy, and how difficult it would be for you.

With me, my first language - I started out with VB probably like any other new person would.
After getting stuck with that for several years (although there have been some advances - especially with the .NET framework) I should of saved myself some time and lots of grief. VB.NET is a VERY easy syntax language to learn however it comes at a cost and that's application speed. You don't want your end users/clients to suffer from this. If I were to do it all over again, i'd learn C/C++ from the start. I'd have to suggest C++ over C because you could create classes and reuse your code or find multitudes of classes online so your not reinventing the wheel. The thing is with C++ (for user applications on a desktop pc or laptop) your existing knowledge and syntax can then go right over to PHP which is a C++ like syntax for the web. You can then develop web applications and web technologies with ease. If you want to go purely the web application route, i'd pick up javascript (for the client side) while your at it. PHP is a server-side language. Learn the difference between the 2 and try not to get the two mixed up. Each accomplishes their own thing and it'd be hard to go hand in hand without one or the other.

Hope some of this helps. Let me know if you have any more questions.