• Web Development - WAYWO - #8
    5,514 replies, posted
I realized I posted this in the wrong thread: [QUOTE=TerabyteS_;44135027][img]http://pictures.gabrielecirulli.com/2048-20140305-130212.png[/img] This game is so addicting. It needs animations though.[/QUOTE] Saming, would you get mad if I attempted to make a version with animations and sounds?
[QUOTE=Moofy;44134089]For fucks sake Saming your game is too addictive.[/QUOTE] [IMG]http://www.facepunch.com/fp/ratings/heart.png[/IMG] [editline]5th March 2014[/editline] [QUOTE=TerabyteS_;44135635]Saming, would you get mad if I attempted to make a version with animations and sounds?[/QUOTE] I'm going to get it on Github so people could make contributions
[QUOTE=saming;44136567][IMG]http://www.facepunch.com/fp/ratings/heart.png[/IMG] [editline]5th March 2014[/editline] I'm going to get it on Github so people could make contributions[/QUOTE] Nice! My version is also going to be on GitHub so that anyone who cares can have a look at the code: [url]https://github.com/gabrielecirulli/2048[/url] (not much going on right now, and the code is still a bit rough). [img]http://pictures.gabrielecirulli.com/2048-20140305-170629.png[/img]
[t]http://i.imgur.com/SwwZPli.png[/t] I added a controls help because I get so many questions about adding touch controls when they're already there :v However the gameplay explanation is really bad... EDIT: [URL="https://github.com/Saming/2048"]Here's the Github repo![/URL]
Oh god [img]http://pictures.gabrielecirulli.com/2048-20140305-173515.png[/img]
This thread is now show your 2048 games :v:
Holy titfuck [img]http://pictures.gabrielecirulli.com/2048-20140305-180014.png[/img]
saming, as I've said before, I love your design style. It's awesome.
Someone make a multiplayer version. Turn based and the person who combines them on his turn gets the points. Person with most points at the end wins. [editline]5th March 2014[/editline] Also I prefer this version over the mobile one. That star is a stupid mechanic.
[QUOTE=Miljaker;44137903]Someone make a multiplayer version. Turn based and the person who combines them on his turn gets the points. Person with most points at the end wins. [editline]5th March 2014[/editline] Also I prefer this version over the mobile one. That star is a stupid mechanic.[/QUOTE] Nice idea! I'll try making mine multiplayer.
Oh and getting a 512 is quite easy once you figure it out. Much like a rubic cube. Only the random spawning of the 2s messes you up a lot.
[img]https://vault.skarphet.com/a4nYa9[/img] finally got it above 2048
Damn it Saming, your game completely destroyed my productivity.
Here is an in progress screen of my best game so far. Didn't take ending screen because I raged and pressed retry instantly. I got it up to 2x 512 and 6000 something score. [IMG]http://i.imgur.com/PxHPhpL.png[/IMG]
[url=http://asantos3.github.io/plug2youtube/] That thingy now available [img]http://i.imgur.com/Cx6PS3T.png[/img] [/url] First time working with github too, if you want a .txt for testing purposes use [url=https://dl.dropboxusercontent.com/u/5169714/Outros/plug2youtube.txt]this one[/url].
[QUOTE=TerabyteS_;44139575]Damn it Saming, your game completely destroyed my productivity.[/QUOTE] I wanted to read some laravel documentations, but then this game ruined my time management.
[img]http://pictures.gabrielecirulli.com/2048-20140305-231246.png[/img] Now the bigger challenge will be putting this off until the weekend and getting some [b]actual work[/b] done. [editline]6th March 2014[/editline] got the mythical 4096 tile [img]http://pictures.gabrielecirulli.com/2064-20140306-000742.png[/img]
[url=https://github.com/Saming/2048/pull/1]pull request for an endgame screen[/url]
8192 [IMG]http://pictures.gabrielecirulli.com/2064-20140306-001105.png[/IMG] [editline]6th March 2014[/editline] My job here is done [img]http://pictures.gabrielecirulli.com/2064-20140306-003529.png[/img]
-snip-
-- Time to make the new WAYWO, I mean this is 90 pages round now.. -- (I hope this post dont make it 91)
[QUOTE=ryankingstone;44145811]-- Time to make the new WAYWO, I mean this is 90 pages round now.. -- (I hope this post dont make it 91)[/QUOTE] Why would you make a new one? Some threads are even at 1000 pages?
[QUOTE=Killervalon;44145863]Why would you make a new one? Some threads are even at 1000 pages?[/QUOTE] Bigger threads, more fun
Trying out a simple static website. [url]http://raisum.co.nf/test2/[/url]
The 64 version is currently an abomination, I'll make a new one with another [I]proper[/I] gameplay.
I did a little userscript for Steams Webchat that hides the friendlist and expands the chat window [url]https://github.com/inabahare/SteamChatSize[/url]
Writing a phpbb topic grabber for displaying in a news feed on the front page of my website for MTA's DayZ gamemode. Most of the code was written by the phpbb team, but it still needed finishing touches. I've written it to grab from forum id 2 and it will also automatically get the post text from the posts table too. It's fairly simple, but finding something like this seemed near impossible. I figured I'd share the code for anyone else who might be working on something for phpbb, it could be handy. Here's how it displays currently. [t]http://i.imgur.com/AJ46K0K.png[/t] [code]<?php /* * home.php * Description: example file for displaying latest posts and topics * by battye (for phpBB.com MOD Team) * September 29, 2009 */ define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forum/'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); include($phpbb_root_path . 'includes/bbcode.' . $phpEx); include($phpbb_root_path . 'includes/functions_display.' . $phpEx); // Start session management $user->session_begin(); $auth->acl($user->data); $user->setup('viewforum'); // Grab all topics from the news forum (ID 2) $topics = 'SELECT * FROM phpbb_topics WHERE forum_id = 2 ORDER BY topic_id DESC'; //Limit the results to 5 topics $topics_result = $db->sql_query_limit($topics, 5); //Create an array to store the data $topic_results = array(); //While loop to gather the data and organize into a table while ($topics_row = $db->sql_fetchrow($topics_result)) { $topic_id = $topics_row['topic_id']; $forum_id = $topics_row['forum_id']; $topic_title = $topics_row['topic_title']; $topic_poster = $topics_row['topic_poster']; $topic_time = $user->format_date($topics_row['topic_time']); $topic_replies = $topics_row['topic_replies']; $topic_first_post_id = $topics_row['topic_first_post_id']; $topic_first_poster_name = $topics_row['topic_first_poster_name']; $post_text = "string"; $posts_result = $db->sql_query('SELECT post_text FROM phpbb_posts WHERE post_id = '.$topic_first_post_id.' ORDER BY post_id DESC'); while ($posts_row = $db->sql_fetchrow($posts_result)) { $post_text = $posts_row['post_text']; } $topic_results[] = array($topic_id,$forum_id,$topic_title,$topic_poster,$post_text,$topic_time,$topic_replies,$topic_first_post_id,$topic_first_poster_name); } ?> <html> <style> body { font-family:'Neue Helvetica', Calibri; } #news { box-shadow: 1px 1px 0px #000; width:1000px; margin:auto 0; } .news-post { background-color:#ffa; } .news-post-header { background-color:#faf; } .news-post-body { background-color:#aff; } </style> <head> <title>MTADayZ.net - The Official MTA DayZ Gamemode Site</title> </head> <body> <div id="news"> <?php //Get the post text foreach ($topic_results as $topic) { echo '<div class="news-post">'; echo '<div class="news-post-header">'; echo $topic[2].' by '.$topic[8].' on '.$topic[5]; echo '</div>'; echo '<div class="news-post-body">'; echo $topic[4]; echo '</div>'; echo '</div>'; } ?> </div> Copyright 2013-2014 MTA DayZ Team </body> </html>[/code]
Come in to work today and all the category pages on our store are just blank. Not showing any products or subcategories. Everything was working fine last night and no code changes have been made. Fucking Magento... [editline]6th March 2014[/editline] And everything still works on my dev machine...
[IMG]http://puu.sh/7liV6.png[/IMG] Finally getting around to adding server related items to WebMin.
"Voltz Gaming's Servers" and "Voltz Gaming's Mission Control" - the "Voltz Gaming's" part is unnecessary. Otherwise I like it
Sorry, you need to Log In to post a reply to this thread.