Jump to content
MakeWebGames

Magictallguy

Administrators
  • Posts

    2,142
  • Joined

  • Last visited

  • Days Won

    148

Everything posted by Magictallguy

  1. You certainly have a flair for diplomacy..
  2. Ah, that's your angle. In that case, yes! There's almost always a call for content creators in this world πŸ˜‰
  3. On the rare occasion that I need content for projects (freelancing in primarily backend dev), I'll just write it myself - doesn't mean it's any good, mind!
  4. You are [loved/stalked] by many here! (Pick the adjective that best fits)
  5. Magictallguy

    Smart rings

    The only footprint I leave is the one I don't mind leaving. You can keep your tracking device to yourself, kthx!
  6. One well-done derail later.. Hi there! Welcome (back) to MWG πŸ™‚
  7. From reading the code originally posted in 2015 and if I understand correctly (edit: I did not) See this post for the fix
  8. That is a considerable upgrade on your previous theme. Nicely done! Pet peeve of green on red (or vicΓ© versa), but you aren't catering to me πŸ˜‰
  9. Both directly to @m1ll1k3n and in general to anyone using a framework - it it's there and it's supposed to be; use it!
  10. As do you! Why should @MNG explain why @Paulvanegmond should explain?! .. Yeah!
  11. Great attempt and interesting approach to things. However, I strongly recommend that you use the framework readily available to make any additions like this; not only is it "the proper way" (debate in a different topic if you wish), but it usually eases future maintenance
  12. #allLimesMatter With PDO, you can pass an array of key-pair parameters to an execute() call. $stmt = $pdo->query('INSERT INTO users (username, level) VALUES (:name, :level)'); $stmt->execute([ ':name' => $someName, ':level' => $nextLevelMaybe ]); Alternatively, you can also use question-mark placeholders and pass parameters in the same order $stmt = $pdo->query('UPDATE some_table SET some_value = ?, some_other_value = ? WHERE some_criteria = ?'); $stmt->execute([$firstVal, $secondVal, $criteriaVal]); Perhaps this information may be useful to you during your wrapper writes
  13. Just gonna direct you here And you, stop flaming people for the shit of it. If you have a professional review of someone, you are welcome to share it in the relevant area.
  14. Is GL rogue-like?
  15. How did we go from "OMFGNODON'T" to "meh, wutever, you go right ahead"?
  16. Debatable. This is a blacklist for URIs, including various workaround attempts. It is not the be-all-and-end-all of patches
  17. The Spam Block Fool <?php $blocklist = ['unistreets']; preg_match_all('#\bhttps?://[^,\s()<>]+(?:\([\w]+\)|([^,[:punct:]\s]|/))#i', $_POST['msg'], $matches); if (count($matches) > 0 && !empty(array_intersect($matches, $blocklist))) { // blackhole it }
  18. I'm in support of silently blackholing them! Note: There are multiple ways to get around this, dependent on how restrictive you write your block. Just catch 'em as you go
  19. Not to be that guy, but I feel it must be stated that we are not responsible for handling drama within your site. We definitely agree that something should be done, but our jurisdiction lies within MakeWebGames only
  20. Yesterday alone, I spent almost every waking moment coding. Love it!
  21. One of the resident retards here. It's just a word, guys πŸ˜‰
  22. Apologies on the delay for that; I didn't receive a notification that you'd posted an update - normally I do. Approved πŸ™‚
×
×
  • Create New...