Users browsing this thread: 1 Guest(s)
and It's GAMER404!
#1
And gamer404 is here!

Hi. I'm gamer404(Bet you didn't figure that out). I'm more of a programmer/web designer/ graphic artist than a spriter(I know 10 programming languages), but I'm getting better Smile

Hope this place is better than Pixeltendo, where I go flamed on everyone of my works Rolleyes


cya around,

~Gamer404~
GML | C# | C++ | XHTML | CSS | Javascript | SVG | XML | SQL
[Image: gamer404sigqh9.png]
Proud member and moderator of XSoft Games.
Thanked by:
#2
=D

Lets talk shop then comrade. How long have you programmed, what have you programmed, can I see examples [snippets of code] and can you explain how a doubly-linked-list structure format is done in C?

By the way. I've got about 9 years of programming expierence under my belt, don't try to fool me with hello world examples, I expect something more intricate.


Thanked by:
#3
I don't know C, just C++ and C#, and I have know idea what a doubly-linked-structure set is.
Your scaring me zee Tongue And I have about 2-3 years experience- I'm 13 dude.

Let's see what I have on this harddrive...

Quick PHP database setup script I wrote today:
PHP Code:
<?php
//connect
$con mysql_connect("$_POST[host]","$_POST[user]","$_POST[sqlpass]");
if (
$con)
  {
  echo 
"Connected to Host";
  }
else
  {
  die(
'Could not connect: ' mysql_error());
  }
//create cocoa database
if (mysql_query("CREATE DATABASE livefire",$con))
  {
  echo 
"Database created";

  }
else
  {
  echo 
"Error creating database: " mysql_error();
  }
//create user table
mysql_select_db("livefire"$con);
$table" CREATE TABLE users
(
Name varchar(15)
Pass varchar(15)
Email varchar(50)
AccType int(2)
)"
;
mysql_query($table$con);
echo 
"Table Intialized";
//create Admin Account
$admin" INSERT INTO users (Name,Pass,Email,AccType)
VALUES ('
$_POST[name]','$_POST[pass]','$_POST[email','2') ";
mysql_query($admin,$con);
echo 
"Administrator Account Created";
//Finish
mysql_close($con);
unset(
$con,$table,$admin);
echo 
"Process Complete!":
?>

Here's an SVG button:
Code:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#9FE2F4;
stop-opacity:1"/>
<stop offset="100%" style="stop-color:#3EA0BB;
stop-opacity:1"/>
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;
stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#C1C1C1;
stop-opacity:0.8"/>
</linearGradient>
<filter id="screen">
  <feBlend mode="screen" in2="BackgroundImage"/>
</filter>
</defs>

<ellipse cx="110" cy="110" rx="100" ry= "100"
style="fill:url(#grad1)" stroke="black" stroke-width="1"/>

<circle cx="110" cy="80" r="70" style="fill:url(#grad2)"/>

<text x="110" y="110" font-family="Impact" font-size="32" style="text-anchor:middle">CLick Here!</text>
</svg>
I'm on a mac right now, so I don't have any C*/GML snippets. Plus, I'm a web junkie Big Grin
GML | C# | C++ | XHTML | CSS | Javascript | SVG | XML | SQL
[Image: gamer404sigqh9.png]
Proud member and moderator of XSoft Games.
Thanked by:
#4
Hmm, the PHP database code is pretty common and simple stuff, and you didn't deviate too much fromt he standard. The and SVG button looks alright, I would suggest getting a consistant formatting style.

Also, if you have any hopes of getting a job involving programming, comment and indent are almost as important as the actual code. After all, it's good form, good practice and self-assisting when you invariably mess up. [It happens to everybody, I'm not being rude here]

You do seem very web-focused. Though, I prefer C# and ASP.NET with SQL where needed more effective myself. Then again, I just like C# more than I like PHP.


Thanked by:
#5
Hey, I'm not the only one! I started C# at the age of...12. Nowadays I spend my free time programming with XNA (a C# game creator tool for Windows, Xbox 360, and Zune). I don't do much web development though...so you got me there. I'm fluent in C#, know basic JavaScript, and very, very, very little VB. But that's enough about me, what do you program for fun? Like, any projects that you are working on that would intrest us?
I don't get it, either.
Thanked by:
#6
Guy's cool in my book.


Sup.
Thanked by:
#7
Thanks for the tips Zee. I've looked at ASP, but I'm a mac guy, so that doesn't work out real well. I am pretty web-focused, and I need to work on formatting Big Grin, but when I think of "Programming Job", that's in like 9 years.

@Piggyman- I would LOVE to do XNA, but my dad's work laptop(The only windows we have) doesn't have a good enough graphics card Sad Let's see, nowadays, I'm part of [url="www.xsoftgames.com"]Xsoft Games[/url] and Have a few projects there. I"ll tell you a little more later(Storming right now).

THanks Geo!
GML | C# | C++ | XHTML | CSS | Javascript | SVG | XML | SQL
[Image: gamer404sigqh9.png]
Proud member and moderator of XSoft Games.
Thanked by:


Forum Jump: