00:00
00:00
View Profile djconnect
"Computers are incredibly fast, accurate, and stupid; humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination." - Albert Einstein

Age 33, Male

Student of InfoTech

High School - Junor

The Gates Of Hell

Joined on 1/13/07

Level:
18
Exp Points:
3,300 / 3,600
Exp Rank:
16,395
Vote Power:
5.97 votes
Rank:
Pvt. First Class
Global Rank:
2,513
Blams:
565
Saves:
2,922
B/P Bonus:
20%
Whistle:
Garbage
Medals:
27

djconnect's News

Posted by djconnect - July 16th, 2009


A child's skeleton ripping out of my skin with the name Johnathan on it somewhere. The skeleton a baby blue, and its gonna be on my shoulder blade.

If some one could draw me something like this it would really be fantastic. I would be sure to send you a pic of it on me if I use your drawing.


Posted by djconnect - June 29th, 2009


Being a Nu-Aira Hacker means you are apart of a unique group of people. A group of people who take nothing at face value, and are always questioning authority. A group of people who decide there own rules, ethics, and destiny's. A group of individuals, learning individual skills. This makes us versatile, flexible and adept to any task. We are a group with no leadership, no single direction. Not because we are incapable of doing so, but because we like it that way. When power in numbers is needed we will band together and tower over our opponents.


Posted by djconnect - April 1st, 2009


This shit is fucked up, I can't play any flash games nor post in the forums! I love newgrounds but I hate this china bullshit.

Fucking china sucks large American dick.

sweatshops are for communist that have small dicks.

I AM AN AMERICAN AND I HATE COMMUNISM!!!!!

Kind of ironic, but I was suspended from school today for having an option about my teacher that I expressed in class. I said she had no common sense and just because she has a degree does not make her intelligent.

EDIT: I can not believe that the above post has been edited


Posted by djconnect - March 29th, 2009


When life gives you lemons make grape juice, then sit back and watch the world wonder how you did it.

Failure is not an option, it is bundled with windows.

You can do anything -- but not everything.


Posted by djconnect - March 14th, 2009


This is the NG version of a article I have been writing. You can find the full version that is updated all the time at: Coder Profile

Many times on forums and in chat rooms I hear the same question over and over. "What programming language should I learn?" The answer is different for every person out there that wants to pick up programming. These tips are here to help people who would like to start programming pick out there first language. So go grab a pen and some paper and get ready to think and jot down some notes.

First you must really sit down and think about what you want to accomplish when programming. Do you want to make cool web apps, or maybe a quick windows app to calculate the amount of paint needed for a room? How about creating video games, or your own operating system. Maybe you want the option to try all these things, and if you want any of these things there is a programming language for you. You just need to figure out what your needs and wants are. Do some of your own research on some popular languages and find out what they offer.

Next you must decide on the level of difficulty you are willing to try. Never be afraid to try something harder then you think you can handle. If it is too much for you, you will know early enough to pick out a new language and not waste too much time. Most languages are the same at there roots anyways. You will find this out once you learn how to program.

Another thing you want to consider before picking out a language is compatibility. Do you need or want your app to work on Windows, Linux, and Mac? Or are you comfortable with just running on Windows or another environment? Most of the time this will be an easy choice. Since you are just starting out you will most likely just pick a language that will run on your current operating system.

Are you going to be able to find a lot of information about your language? What types of books, web tutorials, and documentation are there available for your language? You are going to need something to learn from and documentation is the main thing you will be looking to. Though it is always nice to have a good community around the language as well, most on-line communities are on forums or IRC. Remember that Google is your friend. Just look up your language on Google to find tutorials, and on-line community's, check Borders or Amazon dot com for books.

Type of language is also important. There are three main types of languages (there maybe more). First is web languages. Web languages are the code that makes up the web. When you open your Internet browser such as IE or FireFox it reads this code and then displays the sites based on the instructions that are written behind the scenes. Next are interpreted languages. Many web languages also fall in this category. When a language is interpreted it means that the code is read by the computer as it is executed. This is unlike our next type called a compiled language. When a language is compiled it means that you must first pass the source code threw a special program called a compiler. The compiler takes the human readable source code and turns it into computer readable code of ones and zeros. The program can now be ran and tested.

We will talk quickly about the level of a language. Computer do not understand source code they only understand 1s and 0s. When a language is said to be a low level language it means that the source code is more closely related to the ones and zeros. If a language is high level it means it is closer to human readable language. The benefits of a lower level language is speed and power. The problem is you wouldn't want to write an entire game in a low level language because it would be large and hard to understand.

Also do not stress to much over what language to pick. If you are just a hobbyist then pick whatever language you enjoy the most. Don't worry about what's cool or the newest thing go with what works for you. If you want to become a programmer or get into the information technology field pick a language that is going to let you learn the most about programming. Odds are you are going to be learning new languages later on anyways. So as long as you have programming basics, and techniques down you will be able to learn a new language very easy. The most important part is to have fun! Enjoy what you are doing or why do it at all?

~Language Reviews~

Now I will give some language reviews for some popular languages out there. To be noted this is not a full review of these languages. You should do more research on a language that might interest you in order to find out more. There are also many other languages other then the ones listed
Computer Applications

Python
Type: Interpreted - Scripting
level: Very High
Geared for: Everything
Difficulty: Easy
Compatibility: Cross-platform
Documentation: Great Documentation, many books, and on-line tutorials.
Links: www.python.org
Side notes: easy to learn, and very powerful. You can do just about anything with this language. Great for beginners.

Perl
Type: Interpreted
level: High
Geared for: General Purpose, Text Processing, CGI scripts, Automating Tasks
Difficulty: Mild
Compatibility: Cross-platform
Documentation: Many books, and on-line tutorials.
Links: http://www.perl.com/

VB / VB.net
Type: Compiled
level: High
Geared for: Windows applications
Difficulty: Easy
Compatibility: Windows
Documentation: Well supported by Microsoft and many books.
Links: http://msdn.microsoft.com/en-us/vbasic /d efault.aspx
Side notes: Not a great language, but easy to use and whip up a quick app. Not well respected by other programmers. Dot net is compiled differently. Research the dot net platform for more information.

C / C++
Type: Compiled
level: Middle
Geared for: Everything
Difficulty: Mild - Hard
Compatibility: Cross Platform
Documentation: Tons!! Books, on-line, people, just tons!
Links: http://www.cplusplus.com/doc/tutorial/

http://www.cprogramming.com/
Side notes: Well respected language. Take the time to understand this language, it will pay off. There is a reason it is the industry standard.

C#
Type: Compiled
level: High
Geared for: General, The Dot Net Platform
Difficulty: Mild
Compatibility: Native to Windows, Cross Platform
Documentation: No lack of books or developers to speak with.
Links: http://msdn.microsoft.com/en-us/vcshar p/
aa336809.aspx
http://www.microsoft.com/express/vcsha rp /
http://mono-project.com/Main_Page
Side notes: Not directly compiled to machine code. The mono project is working on making the language cross platform but does not have all features of the Microsoft dot net platform.

Java
Type: Compiled
level: High
Geared for: Everything and portablity
Difficulty: Mild - Hard
Compatibility: Cross platform
Documentation: Well documented
Links: http://java.sun.com/docs/books/tutoria l/

Side notes: I have heard good and bad things about this language. Not a choice I would pick for a beginner.

Assembly
Type: Compiled
level: Low
Geared for: Special niches when needed
Difficulty: Very Hard
Compatibility: Each processor architecture has Its own version.
Documentation: Normal
Links: http://webster.cs.ucr.edu/
Side notes: Has a big purpose in the programming of embedded systems (you name it, anything from washing machines to tv's). If you learn assembly for one architecture, than it isn't too difficult to code on different ones. You just have to learn a new instruction set.

Remember to have fun and learn all you can. This is the most important part of life.


Posted by djconnect - February 20th, 2009


This list is in no real order, mostly just when I seen your name first pop up on the thread when writing this post. If I for got your name or you think some one has been inactive for to long please comment and let me know.

~Newgrounds Literature Lovers~

1 - djconnect Think's silverrose516 is beautiful.
2 - thelittleemo
3 - tanshirtman
4 - Nev
5 - gamerpeepinpa
6 - chime
7 - loogiesquared
8 - kittenclock
9 - chumbawamba
10 - godofthegodless
11 - zer0gravity1
12 - patton3
13 - theautocrat
14 - valjylmyr
15 - akkere
16 - silverrose516
17 - sebtheemo
18 - csanimations
19 - facyathorn-ii
20 - diggorylost
21 - enjoilove
22 - akaccmiof
23 - marksmen786
24 - podburrys
25 - overcynicalblasphemy
26 - tankou001
27 - thewolfe
28 - soldierofhentai21
29 - monkeyshizznick


Posted by djconnect - February 17th, 2009


So I finaly said fuck it and deleted my XP partion and installed ubuntu. It is working fine so far and I am just getting use to the new enviroment. I will write a more detailed post later when I feel up 2 it.


Posted by djconnect - February 13th, 2009


So I have this entire week off from school and I plan to get some work done. School gets in the way of code time and studying. That might sound like a odd statement but I would rather study Technology then History, or Science. So this is just a list of things I would like to accomplish in the coming week (I am really fucking board right now).

Have a good time tomorrow with the girlfriend.

Finish a byte of python. It is a short book (110 pages) so it will go quickly.

Restart Steal This Computer Book 4.0

Add to my 'How To Pick A Programming Language' article on coderprofile.com and fix some minor bugs.

Research more about certification exams and maybe begin study.

programming, programming, programming

ummmm.....

more programming

?web design?

programming lots of programming.

Buy new locks to pick

record a new track, maybe

wow im board


Posted by djconnect - January 24th, 2009


Harry Potter and the Sorcerers Stone - J.K.Rowling
Harry Potter and the Chamber of Secretes - J.K.Rowling
Harry Potter and the Prisoner of Azkaban - J.K.Rowling
Harry Potter and the Goblet of Fire - J.K.Rowling
Harry Potter and the Order of the Phoenix - J.K.Rowling
Harry Potter and the Half-Blood Prince - J.K.Rowling
Harry Potter and the Deathly Hallows - J.K.Rowling
The Tales of Beedle The Bard - J.K.Rowling
The Magician: The secrets of the immortal Nicholas Flamel - Michael Scoot
What Ever You Say I Am: The life and times of Eminem
E.A.R.L: The autobiography of DMX - DMX
Prisoner of the American Dream
A Child Called It
Resident Evil: Zero Hour
Resident Evil: The Umbrella Conspiracy
Resident Evil: Caliban Cove
Resident Evil: City of the Dead
Resident Evil: Underworld
Pendragon: The Merchant of Death
Green Rider
First Rider's Call
Eragon
Eldest
Gerald's Game
Spider Man2
Freddy vs Jason
Freak the Mighty
Max the Mighty
of Mice and Men
The Pirate's Son
Dakota Dream
My Brother Sam Is Dead
Hitler's Daughter
Night
Ender's Game
Dr.Jekyll and Mr.Hyde
Tuck Everlasting
Angels & Demons
Against the Odds: Buzzards Feast
Hole's
Survival Guide to Camp Green Lake
Beginning VB 2008
The Missing Manual: CSS
Hacking The IT Cube
Steal This Computer Book 4.0
The Art Of Deception
The Art Of Intrusion
Easy Pickings