Jump to content
MakeWebGames

SRB

Members
  • Posts

    785
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by SRB

  1. SRB

    McCodes V2 license

    Inbox me -msg2short-
  2. If you want members to help test it - how about some demo accounts? A lot here won't bother to sign up when the aim is to help you. Help others to help you and all that.
  3. You didn't see it on CNN and NewsWeekly? This shiz is securez!
  4. Would you believe they were from XDA and actually cyanogenmod? To be fair, the issue probably wasn't all the ROM, but android itself. Having to cater for so many different system configurations, it is hard to get it right on them all, hence them always seeming somewhat buggy. For an example, I had multiple HTC's in the past, all with varying 'droid versions AND custom roms, but all of them would require a restart every could days to release the memory fully and run at full capacity again. With my iphone 5S, I don't have that issue - I got it in December and haven't had to restart it yet -- that's a hell of a lot of days without a stall and restart. Of course, that is also the same issue with people claiming windows sucks. If you think about the wider picture, when people put windows against OSX, windows does quite a good job - it runs on millions of different system/hardware configurations without too many issues -- ok, same as android, needs restarts every couple days, but OSX has a very specific set of hardware it has to work with, so it should work better. /endOfComments
  5. Adminer baby! Files: FileZilla and PuTTy
  6. SRB

    Ciao, suckers!

    So, with the recent departure of Sniko, I figured it's the right time to close the curtains. This is my curtain call Like Sniko, I have decided to move away from anything game related and focus on expanding my knowledge further. Long story short, I was recently successful in gaining employment with a company that is proving to be able to push my abilities, so I'd rather focus my time on dealing with that. So for now, farewell.
  7. Knew you would approve, Dave! <3
  8. https://www.digitalocean.com/features/one-click-apps/ Bottom install option - LEMP discuss :D
  9. Yes, me. -msg2short-
  10. I have a licence I don't use... inbox me.
  11. Won't lie - for 1.5k, my ethics would have lowered >.<
  12. £50!? Damn, round where I am people give them away and if they sell them, they'll get £10-20 - nothing more.
  13. Ayern - inbox me with your Skype ID - want a chat :)
  14. I have one I wrote for v2 a while back - shouldn't be too hard to convert to redux - I'll look over it tonight. Now just to find someone to show me the main functions to use for redux (don't own it!)
  15. You are kind of getting it, I guess. We all (meaning a few people) know that random factors are not all that random. Shuffle shuffles the deck of data - then to add more randomness, you select a place in the shuffles array to select from.   In theory, this could be done quicker too, but I'm unsure on what resources would be used and you'd have to, in theory, query twice... But this is an option... Pull all rows in a query and get the count, then just randomly split it somewhere and use LiMiT xx, 3 in the secondary query. If there was no use in "over complicating" things, half the functions within the manual wouldn't exist as there are simpler methods to most things ;)
  16. First thing; RAND() at mysql level is pretty heavy on the resources. Second thing; Why can't I win twice? If I buy 2 tickets in the lottery and both win with 3 numbers, I am entitled to both! Third; I'd do it at PHP level, since you can manipulate the data and create the winners pretty easily (And you can edit to just 1 prize per person easily too)   <?php $array = array(); $res = $db->query("SELECT `userId` FROM `raffle_tickets`"); while ($user = $db->fetch_array($res)) { $array[] = $user['userId']; } shuffle($array); $split = mt_rand( 0, (count($array) - 3) ); $winners = array_slice($array, $split, 3);   That renders $winners[0] as first prize, $winners[1] as second and $winners[2] as third. Much easier to then issue events and whatnot. To limit the wins to once per player, add a group by in the clause - simples.   $res = $db->query("SELECT `userId` FROM `raffle_tickets`"); to $res = $db->query("SELECT `userId` FROM `raffle_tickets` GROUP BY `userID`");   As always, untested. Any problems, post here and somebody may help.
  17. Then if people choose to stay behind the scenes, they miss out. It's how the world works - the ones most known get most of the revenue.
  18. To save his sister and son from the evil he had become, he faked his death and moved to an island far away. Seems fair to me.
  19. SRB

    who to trust

    Me. #nuffSaid
  20. Dexter is awesome too!
  21. Buggy roms, having to restart every couple of hours because the system stalls -- a few con's too.
  22. Yeah, love it. Watched the first because of this thread - slowly getting through them as I lay in bed. 2 before I sleep each night, at least.
  23. Might be worth noting that when you migrate your account, the password you set will overwrite your forum one too.
  24. Mine is boring as hell. Pretty much a standard w7 install, with a background changed and nothing else. [ATTACH=CONFIG]1419[/ATTACH] That is mainly due to this just being the laptop, so I do very little work on here. With that said, my file structure is all contained on external drives so I can switch between laptop and desktop quickly [ATTACH=CONFIG]1420[/ATTACH] I'll post my desktop later - which boot would you like? The W7 or ubuntu 14.04.
×
×
  • Create New...