just going to use Virtual PC.
Also, the microsoft one or VMware?
[QUOTE=ddrl46;18484871]I got a error while install it:
[code]
Could not populate the database, reason: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE IF NOT EXISTS `actiontypes` ( `id` int(11) NOT NULL AUTO_INCREMEN' at line 6
[/code][/QUOTE]
I've just had the same error.
System as follows:
Win Server 2003 using IIS
PHP 5.2.9
MySQL 5.0.51
Remember my Physics engine... It's about 5 posts up from here... Well I went off and implemented friction
[media]http://www.youtube.com/watch?v=28WT-uGQAmg[/media]
Next I hope to add mass, that way I can have 2 objects one small and light, 1 lager and heavier. This physics proggramming has been quite an experience so far. Also for the record I am taking no tutorials, working this out off the top of my head. I don't have much time tommorow, got some History work to hand in, but untill then.
[QUOTE=Wickedgenius;18496960]I've just had the same error.
System as follows:
Win Server 2003 using IIS
PHP 5.2.9
MySQL 5.0.51[/QUOTE]
Could you open install/index.php and find
[code]$arr['message'] = 'Could not populate the database, reason: '.mysql_error();[/code]
and replace it with
[code]$arr['message'] = mysql_error().'<br />'.$dumpquery;[/code]
And paste the error message here (it'll most likely be cut off in the design so just Ctrl-A and cut it out)
-----------------
And just so ddrl46 will actually see this
[quote=a2h]
[media]http://filesmelt.com/downloader/hmm1.png[/media][/quote]
Real noob question here, bu what is the term for numbers in the format of 0xYY?
Hexadecimal?
[QUOTE=VoiDeD;18497501]Hexadecimal?[/QUOTE]
That's it, thanks. However, what's the '0x' for? The conversion calculator just said 12345 was 3039, not 0x3039.
[editline]06:06PM[/editline]
Nevermind, I'll just read the wikipedia article now that I know what I'm looking for.
It's just a common prefix that denotes the value as hex.
Well I think I just lost my innocence. I saw a picture on wikipedia about how to count in hex on my hands and I had moment of clarity where I realized how meaningless base ten is.
It was kinda trippy.
[QUOTE=ryandaniels;18497793]Well I think I just lost my innocence. I saw a picture on wikipedia about how to count in hex on my hands and I had moment of clarity where I realized how meaningless base ten is.
It was kinda trippy.[/QUOTE]
What?
[QUOTE=nos217;18498154]What?[/QUOTE]
Base 10 has always seemed "magical" to me. But while looking at that picture, I realized that there's nothing magical about 10, it's just a value that, like all other values, has no intrinsic meaning.
[QUOTE=Loli;18497051]Remember my Physics engine... It's about 5 posts up from here... Well I went off and implemented friction
[media]http://www.youtube.com/watch?v=28WT-uGQAmg[/media]
Next I hope to add mass, that way I can have 2 objects one small and light, 1 lager and heavier. This physics proggramming has been quite an experience so far. Also for the record I am taking no tutorials, working this out off the top of my head. I don't have much time tommorow, got some History work to hand in, but untill then.[/QUOTE]
You have [i]forces[/i] like friction, but no mass?!
[QUOTE=Loli;18497051]Remember my Physics engine... It's about 5 posts up from here... Well I went off and implemented friction
[media]http://www.youtube.com/watch?v=28WT-uGQAmg[/media]
Next I hope to add mass, that way I can have 2 objects one small and light, 1 lager and heavier. This physics proggramming has been quite an experience so far. Also for the record I am taking no tutorials, working this out off the top of my head. I don't have much time tommorow, got some History work to hand in, but untill then.[/QUOTE]
This is like "Check out my fractions calculator, I'm implement denominators next."
[QUOTE=ThePuska;18499565]You have [i]forces[/i] like friction, but no mass?![/QUOTE]
I'd bet it assumes m is 1. Typical way to get something working when you don't have one part of a system included. Although not necessarily the best way.
I was bored a2h, not working on that website anymore.
[editline]11:23AM[/editline]
To a2h:
[code]
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE IF NOT EXISTS `actiontypes` ( `id` int(11) NOT NULL AUTO_INCREMEN' at line 6
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `actiontypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `color` varchar(6) NOT NULL, `img` varchar(32) NOT NULL, `title` varchar(24) NOT NULL, `logdescription` varchar(24) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; INSERT INTO `actiontypes` (`id`, `color`, `img`, `title`, `logdescription`) VALUES (1, 'BFFFBF', 'open.png', 'issue-open', 'opened an issue'), (2, 'FFBFBF', 'close.png', 'issue-close', 'locked an issue'), (3, 'BFE9FF', 'comment.png', 'issue-comment', 'commented on an issue'); CREATE TABLE IF NOT EXISTS `assigns_userproject` ( `userid` int(11) NOT NULL, `projectid` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `assigns_userproject` (`userid`, `projectid`) VALUES (1, 1); CREATE TABLE IF NOT EXISTS `categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(16) NOT NULL, `color` varchar(6) NOT NULL, `projects` varchar(128) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; INSERT INTO `categories` (`id`, `name`, `color`, `projects`) VALUES (1, 'suggestion', 'F8FFBF', ''), (2, 'bug-severe', 'FF3F3F', ''), (3, 'bug-medium', 'FF7F7F', ''), (4, 'bug-low', 'FFBFBF', ''); CREATE TABLE IF NOT EXISTS `comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `author` int(11) NOT NULL, `issue` int(11) NOT NULL, `content` text NOT NULL, `type` varchar(16) NOT NULL, `when_posted` datetime NOT NULL, `when_edited` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC ; CREATE TABLE IF NOT EXISTS `groups` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `global_admin` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; INSERT INTO `groups` (`id`, `name`, `global_admin`) VALUES (1, 'Member', 0), (2, 'Admin (Global)', 1); CREATE TABLE IF NOT EXISTS `issues` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, `description` text NOT NULL, `author` int(11) NOT NULL, `when_opened` datetime NOT NULL, `project` int(11) NOT NULL, `closereason` varchar(64) NOT NULL, `discussion_closed` tinyint(1) NOT NULL, `category` int(11) NOT NULL, `tags` varchar(128) NOT NULL, `status` int(11) NOT NULL, `assign` int(11) NOT NULL DEFAULT '0', `num_comments` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; CREATE TABLE IF NOT EXISTS `log_issues` ( `id` int(11) NOT NULL AUTO_INCREMENT, `when_occured` datetime NOT NULL, `userid` int(11) NOT NULL, `actiontype` int(11) NOT NULL, `issue` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; CREATE TABLE IF NOT EXISTS `projects` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; INSERT INTO `projects` (`id`, `name`) VALUES (1, 'Example Project 1'); CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(24) NOT NULL, `displayname` varchar(24) NOT NULL, `password` varchar(128) NOT NULL, `password_salt` varchar(128) NOT NULL, `group` int(11) NOT NULL DEFAULT '1', `when_registered` datetime NOT NULL, `banned` tinyint(1) NOT NULL DEFAULT '0', `email` varchar(128) NOT NULL, `email_show` tinyint(1) NOT NULL DEFAULT '0', `website` varchar(128) NOT NULL, `avatar_type` int(11) NOT NULL, `avatar_location` varchar(128) NOT NULL, `num_posted_issues` int(11) NOT NULL, `num_posted_comments` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
[/code]
Sorry, I'm just trying to get my head round physics.
[QUOTE=ryandaniels;18498343]Base 10 has always seemed "magical" to me. But while looking at that picture, I realized that there's nothing magical about 10, it's just a value that, like all other values, has no intrinsic meaning.[/QUOTE]
I know right?
Alternate number systems blew my mind when I learned about them.
Once, I thought I was really clever making up a way to compress numbers into ASCII strings, then I realised I was just changing base to make use of all the available characters. Apparently I'm not a genius after all.
[QUOTE=ryandaniels;18497793]Well I think I just lost my innocence. I saw a picture on wikipedia about how to count in hex on my hands and I had moment of clarity where I realized how meaningless base ten is.
It was kinda trippy.[/QUOTE]
Can you link the said picture?
I wish to be enlightened, (although I already know our numeric system is just human interpretation of values). :smile:
I tried to make simple 2D fluid physics, but I kinda failed:
[media]http://www.youtube.com/watch?v=QMaAUDXpj5E[/media]
If you want I can upload the applet.
Are they really really bouncy or what?
Struggling to get Box2D working, everythings right but the box wont fall.
Have you set the mass of the body from the shapes?
[code]b2Body.SetMassFromShapes()[/code]
Decided to make a PHP stats-tracker script open-source thing, because most current ones (free) suck massively.
[url=http://ibutsu.net/blog]Wordpress Blog Theme[/url]
As you can, all that exists right now is the very background structure. :sweatdrop:
[QUOTE=Ibutsu;18506426][url=http://ibutsu.net/blog]Wordpress Blog Theme[/url]
As you can, all that exists right now is the very background structure. :sweatdrop:[/QUOTE]
[url]http://www.facepunch.com/showthread.php?t=576232[/url]
[QUOTE=r4nk_;18506447][url]http://www.facepunch.com/showthread.php?t=576232[/url][/QUOTE]
What he said is actually programming related, as it's not the design side of the code, but the PHP behind the scenes.
[QUOTE=r4nk_;18506447][url]http://www.facepunch.com/showthread.php?t=576232[/url][/QUOTE]
PHP isn't HTML. :smile:
[editline]01:27PM[/editline]
[QUOTE='-[ Fizzadar ]-;18506488']What he said is actually programming related, as it's not the design side of the code, but the PHP behind the scenes.[/QUOTE]
Thank you. :h:
So I took my Basic Physics and added Mass. Please don't rate me dumb, I'm only showing these because this is the first time I have really proggrammed any physics.
[media]http://www.youtube.com/watch?v=fBa-603UAds[/media]
Next I hope to add Collisions and maybe rotations.
Anyone interested in Windows shells, as in explorer replacement?
[QUOTE=MakeR;18506157]Have you set the mass of the body from the shapes?
[code]b2Body.SetMassFromShapes()[/code][/QUOTE]
Yes, I even checked that the body was in the world and it was dynamic yet it refuses to move. The only diffrence from the hellow world example there is is that the body was defined and created inside the init of a class, but that shouldn't matter. Maybe my upperbounds and lowerbounds are the wrong way round.
[b]Oh shit yeh, my bounds were the wrong way around.[/b]
Sorry, you need to Log In to post a reply to this thread.