Jump to content
MakeWebGames

Barrikor

Members
  • Posts

    36
  • Joined

  • Last visited

  • Days Won

    1

Barrikor last won the day on March 11 2014

Barrikor had the most liked content!

Personal Information

  • Location
    Phoenix

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Barrikor's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Wow! I was looking though my old stuff online, and I was surprised to see that this site is alive again. Awesome! Long time no see
  2. Barrikor

    BBGameZone

    For anyone who used to post over there, the BBGameZone forum apears to be back online. (http://community.bbgamezone.net/index.php)   (Hope this isn't considered spam, I know that there's a few people here who have accounts there)
  3.   Not necessarily true, if the owner has all the copyrights, then the owner can re-license future releases however they want. The only time you'd have to re-write parts of a project is if there are other people with copyrights over portions of the code other than the owner. This is why most projects make the contributors sign a CLA like this: https://www.openoffice.org/licenses/jca.pdf
  4. Outch :( not surprising though, since almost all of the stolen templates that the shady non-producers have been "selling" are actually yours.
  5. I've got a VPS with HostGator, only my less-important sites, and only because I haven't got around to moving all my sites to my other VPS at another company. They were a good hosting company at first, but last year there's been serious downtime. They swapped my IPs without any warning (on the 4th of July almost full year ago) which knocked my sites offline as a side-effect. They moved my site from a fast datacenter(SoftLayer) to a slow datacenter (the one in Provo :mad:) without warning. All their servers went offline all day on August 2nd. Then on New Years Eve their servers decided to take the day off, so instead of going off to a New Years Eve party I had to spend the evening moving the most important sites (from Backups) to my other host so that any business email would still go through. Making problems worse, whenever they have big problems they "lose" their phone connection at the same time.   Did I mention that by having a VPS, they said I'm getting much better service then the people on the shared hosting.... :eek:
  6. He'll have their email, so he can have it setup to send them a temporary password. "a uniquely generated character code that is e-mailed to them"   When the user can log in with their email address + temp password, you can easily have the user pick their username and password later.
  7. At least you've got an excuse. Most of the time the government doesn't know what the government is currently doing. O.o
  8. Gamble - That might be the logical way for it to work... that's how it works with strings. I myself would root for it being powers of 2.   Actually what the (11) does is: absolutely nothing at all!
  9. Then why do you post short little messages that people have to reply to in order to find out what you mean?   If you weren't looking for an argument then you could have put your objections/questions in your first post. I don't think you had a point, you just ride the conversation as it goes.   You started with: And in your last post you put:   No, you weren't just asking.
  10. I think what bloodless2010 means is that the source code for Devana is extremely hard to read, due to to being written a bit compactly and not having any comments at all.
  11. There's a slight difference between calling a function and defining it.
  12. The way Razor has it set up, all you have to do is not add check_travel() to that page.
  13. "File Jesus"? Is it like MegaUpload? :D   (Sorry for the off-topic)
  14. The main difference is that Mysqli has 2 big new improvements: prepared statements and built-in transactions.   Both of them have big flaws and gotchas, but at least they exist. The "it's more secure" thing is true, but over-hyped; people who wrote secure Mysql_ will write secure Mysqli, the people who wrote insecure Mysql_ will manage to write insecure Mysqli, you can be sure of that.   There's a lot of little things that I just don't like about Mysqli so I've been making a wrapper for Mysqli for my framework, I might make a post about it here sometime after I finish writing the online documentation for it.
  15. Also remember that <b> and <strong> aren't the same tag. Voice readers that blind people use will treat <b> as just styling on the page, and say the word like normal text. <strong> is actually for words in a sentence that you want to emphasize strongly, so that's what voice readers do when they read over them. If you put your navigation bar or a paragraph of text in <strong> it will sound ridiculous. Of course there's also CSS' font-weight:bold; too.
×
×
  • Create New...