Jump to content
MakeWebGames

HazardBoy

Members
  • Posts

    46
  • Joined

  • Last visited

Everything posted by HazardBoy

  1. Your eyes will suffer :)
  2. Great, can you help me fix them ?   Initially we developed it for personal use, and then decided to go public. It does come in handy when you want to make savings. You plan a goal and keep track of the expenses. For example: You earn 1000, and you want to make sure the money will suffice for one month. So you start by planning ahead were you will spend them. (ex: 100 to Gym, 200 for rent, 300 food, etc. ) And every time you spend some of them you input the value and the app will alert you if you are getting close to the limit you specified at the start.
  3. Hi guys, I just took part in development of a simple mobile web application, that can be installed on devices or run in browser. The app is free and you can use it to plan your incomes and expenses. More information on website: http://freemoneyplanner.com/ Let me know what you think, Cheers.
  4. You have 2 arrays: - Texts - Images How do you relate them ? In your code it looks like the first text match the first image and so one. Am I right ?   If yes, then the length of those arrays is the same and you can do one loop. If not, How do you know that text a has image b ?
  5. you can do it with one loop. Or do one loop and inside that loop search for the image you need. There's allot of ways to do this. But if you insist on keeping two loops just don't output the table in the loop and build it as a template. here is a an example. Witch is a crappy way to do it.   $table = '<table>'; $i = 0; foreach($texts as $text){ $table .= ''<tr> <td style="vertical-align:middle"> <input type="radio" name="episode" value="'.$texts[$i].'"> </td> <td>'. $text .'</td> <td> {'.$i.'} </td> </tr>'; $i++; } $i = 0; foreach($image as $img){ $imgTpl = '<img src="'.$img.'" />'; $table = str_replace('{'.$i.'}',$imgTpl); $i++; } $table .= '</table'> echo $table;
  6. NSA maybe :) I know if multiple people mark the mails as spam, they will eventually get blocked by some ISP.
  7. To achieve that you need one table that has rows with 3 columns (radio, label, image). And not multiple tables!   the final output should look like this:   <table> <tr> <td style="vertical-align:middle"><input type="radio"></td> <td>My episode title</td> <td> <img src="myImageSrc" /> </td> </tr> <tr> <td style="vertical-align:middle"><input type="radio"></td> <td>My episode title</td> <td> <img src="myImageSrc" /> </td> </tr> <tr> <td style="vertical-align:middle"><input type="radio"></td> <td>My episode title</td> <td> <img src="myImageSrc" /> </td> </tr> </table>   if the index of $text is linked to the index of $image you can do one loop and get the above result;   echo '<table>'; for($i = 0; $i < sizeof($texts); $i++){ echo '<tr> <td style="vertical-align:middle"><input type="radio" name="episode" value="'.$texts[$i].'"></td> <td>'.$texts[$i].'</td> <td> <img src="'.$image[$i].'" /> </td> </tr>' } echo '</table>';
  8. iamsilviu - Roll on: Dota 2, ARMA II, DayZ, Leauge of Legends, Dawngate, Battlefield Play4Free
  9. Pretty sick, incredible fast development. And if you love JavaScript you will feel at home. I started with Node JS, then got the hang of Express JS (node.js framework) and Mongodb (JSON db awesome!). The best of: is the code unification. Backend - frontend talk JS :). You can build real-time applications/game (with socket.io) and many more features. The only downside I think is the hosting. You will probably need your own server as the node hosting servers are not that configurable.
  10. What a mess. :) Maybe tell us what you want to achieve ? How should it look like ? first of all give up the tables or keep them if you try to align stuff vertically. Give the "expected result" and we can help you.
  11. You need to rethink the way to draw the map. Right now the map has more than 2000 DOM nodes and all are in % and the browser has to calculate a lot plus if you re-size the browser: calculations for 2000+ elements happens and a weird disproportion as the height is not in percent. Here is my suggestion: For size: 1. Define a base class and use it to specify the children the size and block-inline (or span element) to avoid using float. ( so you don't have to style every element ) 2. Define child classes that you can use to make a tile distinct. Note that dynamically changing the parent class you can change the size of all the child elements. like: .map { border : 2px solid blue; background-color: green; } .map.size-x { width: 1000px; /*fit 100 elements of 10px in a row */ } .map.size-x div { width: 10px; height: 10px; display: inline-block; } .map div.army { background-color: red; }   For usability: 2000 tiles at once it's allot of information. Go for a sub-matrix and just display an area from that big matrix. Not only that you can make the tiles bigger and document lighter, you can adjust the size of the matrix based on the device size ( desktop/phone etc. ) if you decide to go with sub-matrix and need help how to do it, let me know. [ATTACH=CONFIG]1551[/ATTACH] Notice the bars and the gray space (left-right) wasted.
  12. What OS you need for minecraft server ?
  13. I recommend in Romania for cheap and speed, Germany or Sweden - Stability, Ireland - balance. For 8Gb ram don't think you will find lower than 25euros/m. Ireland : https://www.servebyte.com Build your own (this one I used in the past. cheep and ok): https://www.transip.eu/vps/
  14. I guess the Military RPG comes from Military Rocket-propelled grenade? :) As it is nowhere near an RPG genre. If you made your url's friendly you might as well take out the index.php. I like the map and the Facebook-like chat. You may want to use a censor before a message is broadcast. +18: This is the list of words I use for censor *****: https://github.com/shutterstock/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words +18: Here to make it easy just use this: http://plnkr.co/edit/OJ8zqDELdTsdKpPpLeEr?p=preview You should also do this filter on the server side
  15. Hi, I've been playing for some time, got the user Hijack3r. I like your game and so far the only problem I found is on the gogrind.php. If I have like 200 mobs to kill and I start pressing the button to kill them "submitting" for every mob after a while the server returns time out and the website stops responding. Error: ' The connection to 'www.simplerts.netai.net' failed. Error: TimedOut (0x274c). System.Net.Sockets.SocketException A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 31.170.161.116:80'   Plus my finger starts to hurt for that much clicking :) I suggest you change the mob killing mechanism for something like this: 1. As a user I would like to specify how many mobs I want to kill. 2. For 1 mob to kill takes 1 second, if I want to kill 100 mobs I must wait 1 minute and 40 seconds. Hope you like my suggestion. Keep you updated once you get the website back online :)
  16. Programming language is a general term. This page should categorize and make everything clear: http://www.computerhope.com/jargon/p/proglang.htm Plus you can create your own programming language. http://en.wikipedia.org/wiki/Non-English-based_programming_languages
  17. I'm been playing around with CSS using as base a theme I brought form themeforest to make a theme for me but I change my mind and if anyone wants it here is the demo and below that the download link http://screencast.com/t/px5lVH9F1b Download source four free: http://goo.gl/IVNuwF You can modify or manipulate the Item aka theme, use or distribute it for free. You cannot sell it even as a derivation work.
  18. The separation of UI form action code is one of the best things that MVC has to offer. No more echo 'my_ulgly_html'. Can use html highlight syntax. theming, UI components reuse, etc. For beginners I recommend Code Ignite as it is easy, lightweight and fully documented. I also made in past my own php MVC framework and websites like agendaturist.ro and atestatelainformatica.ro are using it.
  19. You should have something like this https://server50.your-hosting-domain-name.com:2083 just open a ticket and ask for for a recovery.
  20. Good resource for lazy people. No offense :) Here's some other time saving sites: Build Icon fonts: http://icomoon.io/app/ Go responsive: http://getbootstrap.com/ Go fixed: http://960.gs/ Go scale responsive: http://unsemantic.com/
  21. I have and like Windows 8.1, Nokia Lumia 620 -100eur phone with awesome case colors + Nokia apps. Affordable and reliable phone. got 4 to 5 days up-time with WIFI on and battery saver on. Browsing without scroll lag and impressive response speed. Brought it with this case [ATTACH=CONFIG]1414[/ATTACH] Sometimes I like playing games on my Nokia n-gage. It gives you that feeling like driving a mustang from 67'. My love goes to Symbian OS RIP.
  22. You have nothing to fear of we all had it worst and some are still in the pit hole. Once I got an interview request at a company on the other side of the country. I borrowed some money (pretty broke back then) and got on a two day journey. I took a series of tests and failed. Someone else was better. But now I knew the questions and got prepared. Next time I got an interview request in the capital I borrowed again money and this time was different. Not only that I pass the test they wanted me to sign the contract the same day and in 5 days I was on plane to Holland. If you truly desire to work for some company it will happen have no doubt. I would suggest to go into a business mindset instead of an employee. Now that you have some interview experience, you know what is required. Work on improving that. Listen to this: https://www.youtube.com/watch?v=2sa2AmQortk also Search for Anthony Robbins seminars. He helped me allot. Good luck.
  23. Suits is the reason I'm changing my look. Something similar is Mad Men.
  24. Fantastic job. How hard it will be for an average programmer to get the code alter and publish it. And does he need to learn cucumber or install additional software ? Kind regards.
  25. HazardBoy

    Spam PM's

    assumption and curiosity.
×
×
  • Create New...