• What are you working on? v6
    4,671 replies, posted
[url]http://www.gaming-mice.com/[/url] Going to try and use amazon API to automatically recover the latest prices off amazon and then i will try to add all the other things like navigation bar and sorting then more content.
[QUOTE=LiLBliNg;31875237][url]http://www.gaming-mice.com/[/url] Going to try and use amazon API to automatically recover the latest prices off amazon and then i will try to add all the other things like navigation bar and sorting then more content.[/QUOTE] interesting affiliate link scheme there...
[QUOTE=H4Z3Y;31876089]interesting affiliate link scheme there...[/QUOTE] I would be trying to resell them myself but i don't have that kind of budget to build up a stock and implement good e-commerce system... Who knows, if anyone likes this site and uses it i might aswell build up my own stock.
[QUOTE=LiLBliNg;31875237][url]http://www.gaming-mice.com/[/url] Going to try and use amazon API to automatically recover the latest prices off amazon and then i will try to add all the other things like navigation bar and sorting then more content.[/QUOTE] Mamba was listed at 9.99, my hopes skyrocketed. Then I clicked the link. :saddowns:
[QUOTE=EJay;31876373]Mamba was listed at 9.99, my hopes skyrocketed. Then I clicked the link. :saddowns:[/QUOTE] Yeah, sorry about that, i fucked something up in my table for price column, ended up changing all the prices to 9.99 :( Gonna put correct ones by hand until i find out how that amazon api works cause its some hard shit.
Fixed the prices, added rest of the amazon links and gonna add rest of the pictures. 10 more to go, then I have to keep adding more mice from companies i missed...
Fancy, pants time: [IMG]http://i.imgur.com/bSiet.png[/IMG] Here's my current WIP: [IMG]http://i.imgur.com/fI9du.png[/IMG] Also, still working out some kinks with the font. Started with a font and spent about 4-5 hours customizing it, here's the result: [img]http://i.imgur.com/4wu8b.png[/img]
[QUOTE=adamjon858;31882372][IMG]http://i.imgur.com/bSiet.png[/IMG] WIP: [IMG]http://i.imgur.com/fI9du.png[/IMG] Also, still working out some kinks with the font. Started with a font and spent about 4-5 hours customizing it, here's the result: [img]http://i.imgur.com/4wu8b.png[/img][/QUOTE] It's really nice! The 'G' doesn't seem to match the rest of the font though :( I don't see any places where you could add the stylizing on the G though but it still doesn't look right
[QUOTE=LiLBliNg;31875237][url]http://www.gaming-mice.com/[/url] Going to try and use amazon API to automatically recover the latest prices off amazon and then i will try to add all the other things like navigation bar and sorting then more content.[/QUOTE] Why is Crytek's Albino RAT not on there? :( Also designing some more...too minimal? [url]http://pdo.elementfx.com/[/url] Test it in Chrome btw, haven't browserised it yet.
[QUOTE=Alcapwne;31882433]It's really nice! The 'G' doesn't seem to match the rest of the font though :( I don't see any places where you could add the stylizing on the G though but it still doesn't look right[/QUOTE] We were trying to make the G look like an arrow originally but it is a bit disruptive. I think we're going to try and stylize it like the rest though now.
[QUOTE=SataniX;31882445]Why is Crytek's Albino RAT not on there? :( Also designing some more...too minimal? [url]http://pdo.elementfx.com/[/url] Test it in Chrome btw, haven't browserised it yet.[/QUOTE] It and Steelseries sensei came out after i made the initial database and i haven't had time to add them yet. I'm gonna do some more work on actual site, navbar and all, then i will be adding any other mice that i missed!
G9x
[QUOTE=TehWhale;31883194]G9x[/QUOTE] umm, its there on page 3 :)
I missed the whole page things sorry
[QUOTE=TehWhale;31883563]I missed the whole page things sorry[/QUOTE] Its my bad, i haven't made them visible enough yet :|
[QUOTE=SataniX;31882445]Why is Crytek's Albino RAT not on there? :( Also designing some more...too minimal? [url]http://pdo.elementfx.com/[/url] Test it in Chrome btw, haven't browserised it yet.[/QUOTE] Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/pdo/public_html/config.php on line 7 NICE ERROR YOU GOT THERE BUDDY
It was working yesterday, he must have changed the code and not bothered to fix it.
Battles now save/load, pokemon level and gain exp, you can heal the team also. So it's playable :) And a quick 1-file APC-powered chat also: [php] <?php /* PK Russet pkrusset.com a one-file chat server, over ajax using APC for storage */ //js! header( 'Content-Type: text/javascript' ); //modules global $mod_user; //login? if( !$mod_user->check_login() ) die( 'Chat.warning( "No login detected" );' ); //no update time set? if( !isset( $_GET['update_time'] ) or !is_numeric( $_GET['update_time'] ) ) die( 'Chat.warning( "No update time, invalid request" );' ); //load current chat stack if( apc_exists( 'pkr_chats' ) ) $chats = apc_fetch( 'pkr_chats' ); else $chats = array(); //add one? if( isset( $_GET['add_text'] ) ): //make it $add_text = substr( strip_tags( htmlspecialchars( $_GET['add_text'] ) ), 0, 30 ); //slap it on the end $chats[] = array( 'time' => time(), 'user_id' => $mod_user->get_userid(), 'name' => $_COOKIE[$mod_user->cookie_id . 'c_name'], 'text' => $add_text ); endif; //work out list to output $output = array(); foreach( $chats as $chat ) if( $chat['time'] > $_GET['update_time'] ) $output[] = $chat; //now trim 'ol chats if( count( $chats ) > 500 ) array_splice( $chats, 0, 10 ); //save the array apc_store( 'pkr_chats', $chats ); ?> //last update Chat.get_time = <?php echo time(); ?>; //add chats <?php foreach( $output as $chat ): ?> Chat.add( '<a href="<?php echo $chat['user_id']; ?>"><strong class="purple"><?php echo $chat['name']; ?></strong></a> | <?php echo $chat['text']; ?>' ); <?php endforeach; ?> [/php]
[QUOTE=RusselG;31887950]Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' in /home/pdo/public_html/config.php on line 7 NICE ERROR YOU GOT THERE BUDDY[/QUOTE] Yeah I r v confuzed. [editline]23rd August 2011[/editline] I hate the way a single missing comma can break your entire site.
[QUOTE=Fizzadar;31894354]Battles now save/load, pokemon level and gain exp, you can heal the team also. So it's playable :) And a quick 1-file APC-powered chat also: -snip-[/QUOTE] I had never heard of APC before, that's pretty snazzy.
[QUOTE=SataniX;31895116]Yeah I r v confuzed. [editline]23rd August 2011[/editline] I hate the way a single missing comma can break your entire site.[/QUOTE] That's coding for you. Most IDEs have debuggers built in though.
Working on a 2D MMO on the side (kind of similar to fizz but no relation to Pokemon or games like it). Right now we just need a domain name for it. We don't care what it is, and we'd prefer something bland that implies we have no name for it. Ideas so far: nonamegame.org blankproject.net inalpha.net blankity.com (our fave pick atm) Any thoughts?
[url]http://clients.v1creative.com/saturno/lenczner/LencznerSlaghtHome.html[/url] "wah wah wah flash sucks blah blah blah" Client requested flash, it performs well, and file size is only 106kb, so don't tell me flash is bad. It's all being loaded from an XML file and all that shit. I think it turned out pretty sexy. [editline]23rd August 2011[/editline] Oops. Read more link doesn't animate right if you mouse over it while it's changing slides. I'll fix that tomorrow.
I see a blank page.
That's just the html file that flash spits out when you hit publish so there shouldn't be anything broken and nothing is being done in that flash file that'd cause that to happen so I'm going to chalk that up to something being wrong on your end.
[QUOTE=SataniX;31904995]I see a blank page.[/QUOTE] Works fine for me. [editline]24th August 2011[/editline] [QUOTE=KmartSqrl;31904877][url]http://clients.v1creative.com/saturno/lenczner/LencznerSlaghtHome.html[/url] "wah wah wah flash sucks blah blah blah" Client requested flash, it performs well, and file size is only 106kb, so don't tell me flash is bad. It's all being loaded from an XML file and all that shit. I think it turned out pretty sexy. [editline]23rd August 2011[/editline] Oops. Read more link doesn't animate right if you mouse over it while it's changing slides. I'll fix that tomorrow.[/QUOTE] Loads nice, looks nice. I like it.
mhm, Flash/Ubuntu don't like it each other.
I'm trying to learn how to make websites, and right now I am trying to add in a simple background image but it wont for the life of me work. Any help on this? How to do it properly?
[QUOTE=Over-Run;31905616]I'm trying to learn how to make websites, and right now I am trying to add in a simple background image but it wont for the life of me work. Any help on this? How to do it properly?[/QUOTE] [noparse]background-image:url(http://host/path/to/file.png);[/noparse]
[QUOTE=Ac!dL3ak;31905656][noparse]background-image:url(http://host/path/to/file.png);[/noparse][/QUOTE] I think you need quotes around the file path
Sorry, you need to Log In to post a reply to this thread.