Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. Maybe all this could be a v3 request haha. I was thinking of forking it and possibly cleaning it up a bit like formatting and class names to match file names. The former also hurts my eyes
  2. I was going to ask the same thing about possibly adopting some PSR-2 standards and going a bit further and adopt PSR-4. I understand that this is more of an engine and not a framework but inheritances and DI can go along way in assuring that things work/run as expected. Hell, you could have your own "service container" and rid the source files of globals and just inject them into the app itself
  3. KyleMassacre

    Editor

    There are other things like File Zilla which is a FTP program itself and you can set it to upload on save automatically. But, if you wanted to be safe you would develop locally with a git repo and stage all your changes so you know nothing will break. Then you can create a webhook when you push to a particular branch of your repo that will notify your server and pull all the changes you made.
  4. KyleMassacre

    Editor

    Most common IDEs allow for FTP
  5. Luckily for me it’s not my job. Plus it’s pretty quiet because I am an early bird doing everyone is still sleeping
  6. I actually don’t listen to music while I program. I find it distracting because the rest of my air band comes over for practice it seems
  7. KyleMassacre

    Anime

    Haha that is classic because I believe @Djkanna actually said that a long time ago too. well whatdaya know, it’s in my sig
  8. Or install barryvdh/laravel-ide-helper nvm I realized it’s in HTML and probably highlighting due to HMTL errors
  9. Not bad but I would like to add a few suggestions if at all possible. All my suggestions are basically my preference: 1. In your JS change “var” to “let” or “const”. For most of them at least you would be safer with “let”. Preface: Over time every bit counts and I only get this from my little time with Laravel. With Eloquent in Laravel there is a handy method called “withTrashed()” and couple with “$table->softDeletes()” in the migration it creates a “deleted_at” column in the table. On your model when you use “withTrashed()” it will query all rows where the “deleted_at” column exists and != null and by default will just skip over those. Now #2 Taking what I mentioned above, you can trash your logs table and add some sort of Boolean column in your modules table and query everything except for what you don’t want. Then in the staff logs portion you can query everything or just the ones that you want to see. I hope that makes sense and do with what I said as you will.
  10. I think you would just need to look into media queries with CSS/SCSS/LESS or whatever you want to use like this: https://www.w3schools.com/css/css_rwd_mediaqueries.asp This way you could basically set your elements like to include all your classes you need for that particular element. On mobile you may want your stat bar’s parent container to be basically 100% for example and on a tablet you’d want it to be about 33% and on desktop maybe like 16%. This way you have one style for all devices
  11. No worries. I just didn’t notice a tag for it so I thought I would help clear the air.
  12. Yeah me too. Sometimes it’s rough but not too bad
  13. Not bad but just a few things I noticed. I will assume this is GRPG??? If it is, I’m not in tune with it too much but last I checked, did they have a database class or was it straight procedural? This does look like it could be MTG’s PDO class. Also in your Message function, is that a default constant that is being used or is that an added feature as well?
  14. KyleMassacre

    Nostalgia

    The shoe on the head bit was great. Remember that dude @SHPXLBH? He was pretty funny
  15. Is it any consolation that I am glad that you are back as well? I can’t wait to see what’s in store for the future.
  16. Would it be possible to get it on the mobile layout? Or what’s the tag exactly? I am assuming it’s like: $db->query("select * from users"); Moment of truth to see if that actually worked -EDIT- Ugh that looks ugly; maybe with quotes in the language? -EDIT #2- Nope, no change, oh well I’ll figure it out when I get on a computer $db->query("select * from users");
  17. I’m getting ready to delete everything right now. Majority of the stuff was from when I was a Moderator and wanted the read receipts from when I issued warnings just so I can CYA
  18. Here is my first message ever. And it seems that I have a problem deleting things
  19. Haha yep, I’m sure that’s what it was ?
  20. On the contrary ?
  21. I checked the headers in gmail and DKIM and the SPF?? both passed. I believe I started having this same problem back in the day as well.
  22. Thank you. Glad to be back!
  23. Hi! The names Kyle, been here a while and hopefully some of you remember me. I just so happened to check my spam folder and got the email that MWG was back up so @Dave, you may wish to look into that
  24. KyleMassacre

    reset

    truncate table users
×
×
  • Create New...