Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Djkanna

  1. Djkanna

    Merry Christmas

    Happy Festive season to you all and all the best for 2021, hopefully a better year to come!
  2. You're a sweet bastard!
  3. Yes definitely if there's bits you want to learn how to do, just ask on the forums, chances are multiple people will give you multiple ways of achieving it and most will describe in detail. - I imagine most of us don't have the spare time to dedicate a couple of hours discussing with an individual due to work/life balance etc but if you post something this way more than just yourself would benefit from the experience of members - that's not limited to programming either.
  4. It takes a little bit more effort for safety of uploading images, but certainly possible to do. I wrote one for MCCodes that could be converted but I don't think it's still on here now. - if I can find it I will pop it up. πŸ™‚
  5. Really nice looking. One thing that bugged me all your clickable links have a cursor but your "Get a quote" button doesn't. ( it's just odd ha ) Best of luck with your services.
  6. I've not really had a look at the game itself, but if it's set in Italy, why is the background from I want to say Guangzhou, China? - Doesn't really make sense?
  7. Djkanna

    JS get tr ID

    Very true, it's been a while since I've used jQuery but prior .on allowed for event delegation, whereas .click does not - so often opted to use .on opposed .click. Appreciate it may not be necessary here depending on the way Sim is loading in the info, equally may no longer be the case in jQuery *shrugs*
  8. Djkanna

    JS get tr ID

    A jQuery way
  9. Done πŸ™‚
  10. Going by his name, the dude is 28(ish), surely should know better. Sorry you've had to experience this @ags_cs4 but equally thanks for the heads up.
  11. Djkanna

    Cash APP

    Yeah I did do that bit, but I still don't think it's worked. No need don't use GL/etc - consider your next beer/coffee on me - keep up the good work.
  12. Djkanna

    Cash APP

    Don't know if it's registered your ref link, maybe the mismatch in countries it doesn't like, on upside Β£15 heading your way ( $19 as per currency conversion ). - just to be nice. πŸ™‚
  13. Djkanna

    Cash APP

    Shh don’t tell anyone πŸ˜‹
  14. Djkanna

    Cash APP

    Signed up, but I don't know anyone who actually uses it, so I mean I could send you 5, then you'll get 15? πŸ™‚
  15. SOSFactory? - best of luck matey, looks visually appealing!
  16. What about a tablet/keyboard combo? (Easier on the eyes) - Microsoft Surface is pretty decent they have a β€˜GO’ version which is a lighter (read:cheaper) option. Or just a basic android tablet? Like $50.
  17. Especially since you can now get a relatively low end, but suitable for dev notebook for <Β£100. Sure beats Β£1200 ish for a phone. Surprisingly though there must be a market for doing this, just by the looks of the Play Store search results for HTTP server. Quite an interesting idea, but from a personal standpoint, I'd much rather stick the the desktop/laptop. - Bought a Surface Pro for on-the-go work/dev work but yet still fallback to the main PC, the surface is now a fancy albeit expensive web cam for Zoom/Microsoft Teams meetings and that's about it, makes the additional Β£250 keyboard (MS:Money Grabbers) seem a little bit pointless ha...
  18. Wasn't letting it get the best of me after a little browsing/trial and error, providing you use the SVG as the image preview - Pure JS method of download SVG as png. πŸ™‚ *Works in most decent browsers, the 'download' attribute is hit and miss. https://codepen.io/MrDJK/pen/ZEWyPMa Alternatively, combine both solutions: instead of creating download link do*: window.location.href = 'download.php?img='+dataURL.replace('data:image/png;base64,', ''); if ( $_GET['img'] ) { header( 'Content-type: image/png' ); header( 'Content-Disposition: attachment; filename=avatar_download.png' ); echo $_GET['img']; } *Probably have to increase the URI limit, or do post request instead of get.
  19. The jQuery was purely to demonstrate the counter πŸ™‚ - enjoy!
  20. Do you store the raw SVG data? or the link to the image based on the options supplied? Could you do something like: $img = file_get_contents ( 'https://avataaars.io/?avatarStyle=Circle&topType=LongHairStraight&accessoriesType=Blank&hairColor=BrownDark&facialHairType=Blank&clotheType=BlazerShirt&eyeType=Default&eyebrowType=Default&mouthType=Default&skinColor=Light%27' ); if ( $img ) { header( 'Content-type: image/svg+xml' ); header( 'Content-Disposition: attachment; filename=avatar_download.svg' ); echo $img; } It's been a really loooong time, so if I'm way off, sorry πŸ™‚ Edit: Realised SVGs aren't useful to the normal folk for use as images, scrap the above.
  21. Something like this: https://codepen.io/MrDJK/pen/XWdgWqY I note you use jQuery in all your code, so have used it here for the "click" function.
  22. When you say dialog screen, do you mean in a similar method of a modal?? - or flush within the page?
  23. Looking good both @Magictallguy @peterisgb
  24. No problem if it's tabular data? πŸ™‚
  25. Looking good, I would take use of what milligram provides they do quite a nice table styling for your tables πŸ™‚
×
×
  • Create New...