• What are you working on? V3
    2,001 replies, posted
Fuckin' cubeupload is down, let's see how filesmelt works. [img]http://filesmelt.com/downloader/orbit2.gif[/img] Anyway, really close to full a fully traversible(?) belt, sans interiors. Just need to get event/control streams working, and make it so you can leave an asteroid after you landed on it.
Nice! :) I'm adding companies and brew, not that that would make any sense.
i'm working on a little php class that takes care of pagination, would be used something like [php] $pg = new Paginate; $pg->build_from_sql($db, 'SELECT email, user FROM accounts'); // Set the range of data; an offset of 10 and limit the results to 20 $pg->set_range(10, 20); // Build data and assign to $data_array and reset the array's keys $data_array = $pg->build_data(true); foreach ($data_array as $info) printf('Username: %s Password: %s', $info['user'], $info['pass']); // Set a new range $pg->set_range(5, 30); // Reassign data (with preserved keys) $new_data_array = $pg->build_data(); echo $new_data_array[1]['user']; // Print out the page links, limit them to 3 results either end of the data and show foward and back links echo $new_data_array->pagination(3, true); [/php]
[img]http://www.cubeupload.com/files/b00e00orbitandescape.gif[/img] Tomorrow is cleanup day, this code is crazy as shit now.
And I'm back! Working on brew again :) Also, lookin' good ryandaniels :)
[QUOTE=qurl;17485897]Pseudoform is looking amazing. (I can never remember the name though)[/QUOTE] I first thought "what the hell isn't he working on portalized" then I check the site :v:
Pseudoform is a [B]terrible[/B] name.
not as bad as portalised
[QUOTE=NovembrDobby;17495879]not as bad as portalised[/QUOTE] It's a good thing nullsquared called his project portalized then. Wait shit he changed the name what.
I remember someone posting a good protect function in PHP that strips tags and add slashes and all of that, but I can't find it. Do I only need strip_tags() and add_slashes()? What other functions would I use to protect the data entering the database?
[QUOTE=Jallen;17496015]It's a good thing nullsquared called his project portalized then.[/QUOTE] it's a silly american spelling anyway they think they can speak english better than the english
snip nevermind
[QUOTE=NovembrDobby;17496040]it's a silly american spelling anyway they think they can speak english better than the english[/QUOTE] I speak AMERICAN :911:
[QUOTE=The Inzuki;17496026]I remember someone posting a good protect function in PHP that strips tags and add slashes and all of that, but I can't find it. Do I only need strip_tags() and add_slashes()? What other functions would I use to protect the data entering the database?[/QUOTE] mysql_real_escape_string()
Im doing a basic ascii graphics engine for my game, but the god damn Visual studio thinks my fucking lolscr char array is a fucking undefined function, fucking horrible.
[QUOTE=The Inzuki;17496026]Do I only need strip_tags() and add_slashes()? What other functions would I use to protect the data entering the database?[/QUOTE] PDO + Prepared Statements
[QUOTE=The Inzuki;17496026]I remember someone posting a good protect function in PHP that strips tags and add slashes and all of that, but I can't find it. Do I only need strip_tags() and add_slashes()? What other functions would I use to protect the data entering the database?[/QUOTE] No no! tags won't effect the database, it's SQL injection like using characters such as ' OR 1 ==1 for example to login, just use mysql_real_escape_string() on _EVERYTHING_ you put into the database, as that will escape you out of any bad code. strip_tags() is useful if you want to limit the tags people can use when adding to the database.
Posting from Ubuntu ;D I haven't installed it yet but just trying it, at the moment I am enjoying it alot. I might switch over, it also means that I can now develop my applications for linux :D
I'm working on a Roguelike but instead of using curses or anything like that I'm doing it with SFML. Got custom font's colours etc working and I'm just working on tidying what I have done up. It almost looks like a console screen as well: [img]http://img147.imageshack.us/img147/1219/roguew.jpg[/img]
[QUOTE=Wickedgenius;17500018]I'm working on a Roguelike but instead of using curses or anything like that I'm doing it with SFML. Got custom font's colours etc working and I'm just working on tidying what I have done up. It almost looks like a console screen as well: [img]http://img147.imageshack.us/img147/1219/roguew.jpg[/img][/QUOTE] :3: Your engine name is adowable.
Thank you. I'm usually shit at naming stuff.
Thanks to everyone who's taken the survey so far, the results have been very helpful. One question that had a wide range of answers was on SSL support. I wasn't aware that people used it. Any thoughts? Would lack of SSL alone prevent you from switching?
Personally I don't see why you would need SSL on IRC at all. IT makes little sense. The only thing I can think of is identifying nicknames, where you want you password to be secure.
[QUOTE=Wickedgenius;17501970]The only thing I can think of is identifying nicknames, where you want you password to be secure.[/QUOTE] SSL is useful for that... and if you're paranoid that the FBI is watching your chat. :tinfoil:
[QUOTE=Ortzinator;17501665]Thanks to everyone who's taken the survey so far, the results have been very helpful. One question that had a wide range of answers was on SSL support. I wasn't aware that people used it. Any thoughts? Would lack of SSL alone prevent you from switching?[/QUOTE] I always use it, when IPV6 is widely used it isn't needed anymore. So it is your choice.
I am working on a bugtracking script for PHP. [media]http://i38.tinypic.com/hst004.png[/media]
[img]http://img30.imageshack.us/img30/5131/calculatorl.png[/img] Simple, but it works :/
[QUOTE=a2h;17508135]I am working on a bugtracking script for PHP. [media]http://i38.tinypic.com/hst004.png[/media][/QUOTE] I like this.
a2h, looking good. How do you get the query-count at the bottom of the page? I've tried doing that before using an easy method but it seems the only way you can actually do it is just increment a counter after every query. How long have you been working on that for? It looks pretty good. Plastical, what are you writing your calculator in? By the looks of the icon, it'd be Visual Studio\Express. It's a good starting point, you should be able to add extra stuff from there (things like squared, cubed etc are easy, factorials less easy but still not that difficult). As for my own development, I'm struggling trying to get this XSLT thing working for me but it's going okay. Now I've got a stylesheet and some XML to display in it, I can start working on a PHP backend to send back useful data.
[QUOTE=a2h;17508135]I am working on a bugtracking script for PHP. [media]http://i38.tinypic.com/hst004.png[/media][/QUOTE] I hope you release this, I could use something like this.
Sorry, you need to Log In to post a reply to this thread.