CODE WITH ME | Python Snake Game

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ต.ค. 2024

ความคิดเห็น • 256

  • @CSJackie
    @CSJackie  8 หลายเดือนก่อน +48

    The silly game code is available on GitHub: github.com/carmensantos/snake-game
    Code CSJackie15 for 15% off Code Chrysalis' immersive coding course in Japan 🤩
    p.s. please don't show this code to my boss

    • @ukaszbaczek7266
      @ukaszbaczek7266 7 หลายเดือนก่อน

      "Please, don't show this code to my boss." It would be worthwhile to rewrite this code in an object-oriented manner in the next episodes - it would be a great learning experience for the viewers and good material for a video or several videos.

    • @FredyantonioPelaezcastan-tv3nd
      @FredyantonioPelaezcastan-tv3nd 7 หลายเดือนก่อน

      You are novice , you video Is shit , the people saw the video , because you are women but your proyect Is Boring, Is Easy , a child the 5 Years able make the same proyect

    • @FredyantonioPelaezcastan-tv3nd
      @FredyantonioPelaezcastan-tv3nd 7 หลายเดือนก่อน

      You proyect Is shixt

    • @FredyantonioPelaezcastan-tv3nd
      @FredyantonioPelaezcastan-tv3nd 7 หลายเดือนก่อน

      You proyect Is boring

    • @com.youtube1
      @com.youtube1 6 หลายเดือนก่อน

      I've been trying to learn coding and I wanted to program a snake game, but unfortunately when I use pre-built shared libraries from internet, it becomes a frog game :)

  • @themichaelw
    @themichaelw 8 หลายเดือนก่อน +134

    1:34 You clearly haven't seen the spaghetti I'm able to produce in Java. Spaghetti code knows no boundaries; it transcends design patterns and exists in a higher dimension than we can never possibly understand.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +12

      i laughed out loud at your comment

  • @santiagoseijas9217
    @santiagoseijas9217 8 หลายเดือนก่อน +18

    It's really nice watching you doing some coding just for fun! I enjoyed the way you went through the problems since that is actual coding.

  • @akshat2002ap
    @akshat2002ap 5 หลายเดือนก่อน +3

    Dude you're the coolest tutor I've got! The way you're explaining makes so much more easier at least for my understanding.♥

    • @CSJackie
      @CSJackie  5 หลายเดือนก่อน

      Awesome, thank you so much!

  • @Steve-tk7vi
    @Steve-tk7vi หลายเดือนก่อน

    I'm really glad I found this channel, I really like these coding videos.

  • @pawlkoech8541
    @pawlkoech8541 6 หลายเดือนก่อน +2

    i loved watching you solve the problems and being happy when something works.

  • @JohnBarratt2750
    @JohnBarratt2750 7 หลายเดือนก่อน +1

    I was born in 1963, so I was taught nothing whatsoever about computing at school . And only very superficially in Fortran at Uni.
    I am lost, watching this video, Jackie! But impressed.

  • @perlhacker
    @perlhacker 8 หลายเดือนก่อน +12

    always nice to do snake in some language. Awesome that you made us watch you doing it. And im Happy that it's same "struggle" on you side as it was on mine, it's always good to do a little thing outside the box of the normal "work" related programming work. Nice video.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      haha for sure! thank you so much :)

  • @adam-xt8te
    @adam-xt8te 7 หลายเดือนก่อน +6

    I don't have idea what you're talking about but I'll watch and listen

    • @JohnBarratt2750
      @JohnBarratt2750 7 หลายเดือนก่อน

      I feel the same!

    • @CSJackie
      @CSJackie  7 หลายเดือนก่อน +1

      🤣

  • @TheTrienco
    @TheTrienco 7 หลายเดือนก่อน +1

    In a weird way, Snake is a good starting point to think about common data structures. How do you represent it? A double linked list is the easiest (add new position to head and pop last position at the tail, skip the second step when eating a fruit). But it's not an efficient structure (chasing pointers to find the next element can be slow). An array would be better, but then you'd have to grow (possibly reallocate and copy) and shift (copying everything by one position). A ring buffer would be perfect, but they usually aren't meant to grow. It could be a fun exercise to see how much you can "over engineer" the problem for best performance (which is of course very silly and pointless for a Snake game, but something AAA devs will have to worry about).

  • @KaiagaAg
    @KaiagaAg 3 หลายเดือนก่อน

    Hello my best instructor. Congratulations on this incredible tutorial!

  • @Andy-il7kf
    @Andy-il7kf 8 หลายเดือนก่อน +5

    This is great Thank you :) it really helps to see a professional going through the same process of finding mistakes, debugging etc and sticking at it until they get the project where they want it. It inspires me to keep going/learning when I get stuck on my owm stuff

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      thank you so much :)

    • @Andy-il7kf
      @Andy-il7kf 8 หลายเดือนก่อน

      @CSJackie PS It would also be great to see how you approached this OO in python too, as a comparison

  • @bumbam123
    @bumbam123 8 หลายเดือนก่อน +36

    Oh that's funny. "I won't do object-oriented, I will do spahetti-code instead". There is a huge world of procedural programming, some years back it was the way to write code. Procedural code is still a big part of your operating system. Not being object-oriented is not inherently bad, it's a completely normal way of doing things done

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +6

      yes I like your point of view!

    • @ShinigamiAnger
      @ShinigamiAnger 7 หลายเดือนก่อน +1

      @@CSJackieit’s a fact not just a pov, it’s how things work….

    • @Shr11mp
      @Shr11mp 6 หลายเดือนก่อน +2

      Yeah, I took that as a personal attack when she said that 😆 OO is 90% of the time doodoo. A blend of procedural and functional is the way to go with sooo many scenarios. I can’t remember the last time I wrote OO, probably did a little bit right out of college, but that’s about it.

  • @CodeChrysalis
    @CodeChrysalis 8 หลายเดือนก่อน +5

    Awesome Video!
    Really clever how you coded this Snake Game with another kind of snake! ;)
    Thank you so much for featuring us in the video, we look forward to working with you 🤝
    Keep up the good work 💪

  • @bobina_artz
    @bobina_artz 8 หลายเดือนก่อน +4

    Welcome back, MISSED YOU SOOOO MUCH😘

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน

      🥹 I missed you guys

  • @trex6142
    @trex6142 6 หลายเดือนก่อน

    Well done. I find it humbling to realize that I put in all of the errors in my code.

  • @Laura-nt3nd
    @Laura-nt3nd 8 หลายเดือนก่อน +6

    this video is so wholesome 😂

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      thank you

  • @sajadghamari4748
    @sajadghamari4748 5 หลายเดือนก่อน

    loved this problem solving challenge

  • @ricardoschenk5113
    @ricardoschenk5113 4 หลายเดือนก่อน

    Hey Jackie, Going to watch all your content! just finished my course of basic python and hope to get as good as you.
    greetz
    Ricardo

  • @pulledporksammiches
    @pulledporksammiches 6 หลายเดือนก่อน

    Loved learning this and coding along. I also love your random trail of thoughts ♥

  • @DJRanoia
    @DJRanoia 8 หลายเดือนก่อน +1

    Glad you made it through Amazon video layoffs. Go Jackie! Another relaxing video, thanks!

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +2

      I don’t know yet (European laws delay the process) so please pray for me 😃

  • @FitNiket
    @FitNiket 7 หลายเดือนก่อน

    you're coding skills are really good really looking forward for more of youre videos

  • @artemKraft
    @artemKraft 6 หลายเดือนก่อน

    thank you for sharing your knowlage. It is amazing to see how the time is chaning. So thank you for sharing your knowlage with all other people.

  • @Antal46
    @Antal46 8 หลายเดือนก่อน +1

    I joined uni in London at 34, now doing my 2nd year of Computer Science. I just wish they were focusing more on practicing the actual useful skills and not just writing report, reference, academic style bla bla.
    You making some cool videos, giving me some ideas to be more efficient!

  • @robertorguez8148
    @robertorguez8148 6 หลายเดือนก่อน

    Coding is the best plan for a saturday evening! Period.

  • @thejannzer882
    @thejannzer882 7 หลายเดือนก่อน

    Please do more of this stuff... it helps me so much

  • @kpm25
    @kpm25 7 หลายเดือนก่อน

    Thanks so much, I used this to get refreshed back into python, appreciated!

  • @serloinz
    @serloinz 8 หลายเดือนก่อน +1

    from what i remember about programming the delay from your keyboard to the snake (where it feels like it's not responsive) it's probably from your tick rate ..clock.tick(10) ..as it's not polling the keyboard as often. 60 would feel more responsive but you would obviously have to find another way to slow down your snake. I could totally be wrong but that's what my instinct tells me it is :)

  • @Deepak-ji3cx
    @Deepak-ji3cx 2 หลายเดือนก่อน

    Keyboard giving really good ASMR

  • @King56847
    @King56847 5 หลายเดือนก่อน +1

    why you look so beautiful when wearing glasses?🥹
    Edited :- Your coding thinking is so good btw great video ❤️

  • @adebayoemmanuel911
    @adebayoemmanuel911 8 หลายเดือนก่อน +1

    People like you make me fall in love with Programming ❤
    Thank you so much ❤

  • @seanwcom
    @seanwcom 6 หลายเดือนก่อน

    Fun evening project, thanks for sharing! I was just looking at your generate_starting_position() function and I think the reason your snake and target were originally appearing offscreen is because you aren't taking Y into account. You're creating a position_range based on screen width (1280), then returning both a random X and Y coordinate that are based on the screen_width pixels. This is causing you get sometimes land outside the height which is only 720 pixels. A quick change to turn position_range into position_range_x and then create position_range_y based on screen_height. Then be sure to use both position_range_x and position_range_y in the return. Not sure if TH-cam will format this weird or not, trying anyway:
    def generate_starting_position():
    position_range_x = (pixel_width // 2, screen_width - pixel_width // 2, pixel_width)
    position_range_y = (pixel_width // 2, screen_height - pixel_width // 2, pixel_width)
    return [random.randrange(*position_range_x), random.randrange(*position_range_y)]

  • @sergeys7603
    @sergeys7603 4 หลายเดือนก่อน

    Very Nice and Helpful Tutorial. Thank You

  • @oreonengine9444
    @oreonengine9444 8 หลายเดือนก่อน +1

    I can remember, did this a my first university project, ASCII snake in the terminal haha, lots of fun :D

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน

      it's so fun!! my comp sci colleagues said they also coded this at uni haha

    • @matteoZattera
      @matteoZattera 7 หลายเดือนก่อน

      Lol, I also coded snake in the terminal with C++ and I uploaded a video on my channel

  • @mustafa02-c6x
    @mustafa02-c6x 7 หลายเดือนก่อน

    Seeing the result of your work in front of you is amazing
    Nice work

  • @rockinvegan1765
    @rockinvegan1765 8 หลายเดือนก่อน +4

    Haha, I tried to program this game 35 years ago in Turbo Pascal.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      😭 👑

  • @lancemarchetti8673
    @lancemarchetti8673 8 หลายเดือนก่อน

    Great upload! I'm definitely sending this to Matthew Berman.. he's gonna love it. He literally tested about 20 different LLMs, instructing them to create a simple snake game in py... and AI is still trying to get it right... lol.

  • @abednashif3733
    @abednashif3733 8 หลายเดือนก่อน +4

    14:41 is the face i make when something really simple that is not working for me 😂😂😂
    Sudoku or Chess might be a good challenge by the way

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +3

      haha we're the same. oh my, challenge accepted! :D

  • @contaassinante5984
    @contaassinante5984 8 หลายเดือนก่อน +1

    I didn't like seeing Procedural programming used, but I thought the result and the programmer were really beautiful.

  • @raquelsilver21
    @raquelsilver21 6 หลายเดือนก่อน

    This is what I was looking for months! Just a ''code with me'' with simple exercises like a snake game! Please do more since since this helps so much people who wanna start coding but are stuck on the ''tutorial lane'''. What we are missing are projects and 'code with me' is perfect! Are you thinking about making a series of this? (Already Subscribed)

    • @CSJackie
      @CSJackie  6 หลายเดือนก่อน

      Thank you! Yes? the next one will be tic tac toe 🥹

    • @CSJackie
      @CSJackie  6 หลายเดือนก่อน

      Yes*

  • @alexeykhrapko401
    @alexeykhrapko401 8 หลายเดือนก่อน

    I expected to see usage of Sliding window algorithm for the snake cause it fits here perfectly. But that is a bit more advanced approach for this video.

  • @super-8
    @super-8 7 หลายเดือนก่อน

    Very Nice. Good Work and this is the beginning.

  • @Velvetskyy
    @Velvetskyy 8 หลายเดือนก่อน +2

    Oh greate usefull video we miss uh and pls try to upload video daily lot's of ❤😊

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      Thank you so much!

  • @com.youtube1
    @com.youtube1 6 หลายเดือนก่อน

    I Loved You~r Desktop monitor 🤩
    I Not engineer but loveed your content

  • @MudasirChanna-m3d
    @MudasirChanna-m3d 7 หลายเดือนก่อน +1

    You are a pretty good teacher like a lecturer, I love you so much !!

  •  7 หลายเดือนก่อน +2

    Jackie, weird question but where did you get your vest/sweater? My wife has always cold hands and this looks like half the solution of a sweater and hardwarmer in one 😆. Your content is very relaxing, keep it up 👍

    • @CSJackie
      @CSJackie  7 หลายเดือนก่อน +2

      Thank you so much! This one is from Amazon but I have a similar one from lululemon which also has the thumb slots lol 😄 the lululemon define jacket is amazing you can have a look!

  • @Stephen_2330
    @Stephen_2330 7 หลายเดือนก่อน

    Look who I found because of TH-cam 🎉, and as a student of CS, I’m doing my thesis about a Web app😊

  • @Netryon
    @Netryon 7 หลายเดือนก่อน

    One thing you wished to do is HTML CSS animating, because you know how easy is to move absolute square inline-block with arrows changing the x,y value as modern react/angular renders website not having to reload it or save and preload reinstalled graphics driver. Can build it, but from my experience I know must have that Laravel/symfony/.net core framework and don't spend your time on easy tasks already build by everybody else, which every empty youtube channel is obviously not and I can't paly it on fb.

  • @jorgeraymason
    @jorgeraymason 8 หลายเดือนก่อน

    Not a huge fan of Python but your problem solving skills are on P O I N T.

  • @minskwatcher
    @minskwatcher 8 หลายเดือนก่อน +1

    As a dev with 10+ yr experience, I'd like to just say thank you.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +3

      thank you for watching! :)

    • @minskwatcher
      @minskwatcher 8 หลายเดือนก่อน +1

      @@CSJackie it is suddenly way more relaxing to watch someone else code, especially when they do it nicely :)

  • @astralnomad
    @astralnomad 6 หลายเดือนก่อน

    Snake game actually goes back much farther than the Nokia.. it came out in the late 70s for simple home computers..

  • @wartyrant8627
    @wartyrant8627 7 หลายเดือนก่อน

    11:22 ASMR segment 🚶🏼‍♀️🥤🫧

  • @moonshadows11
    @moonshadows11 5 หลายเดือนก่อน

    You are a good programmer 💜

  • @qayyax
    @qayyax 7 หลายเดือนก่อน

    I really love this video

  • @diya.codes93
    @diya.codes93 8 หลายเดือนก่อน +2

    Hey Jackie, you plan to do more videos like this one? For example showing some backend or full stack?

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +4

      If that’s what you guys want, then absolutely 😊 I did a few in the past

  • @andy_palms
    @andy_palms 7 หลายเดือนก่อน

    python is so cool! good video, greetings 🙂

  • @tamantije2463
    @tamantije2463 6 หลายเดือนก่อน

    Do you have any python tutorial for beginners? I would love to see that.

  • @Jibril_Abdulkadir
    @Jibril_Abdulkadir 8 หลายเดือนก่อน

    Great vid Jackie 🩵

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      Thank you 🥹

  • @The.love1
    @The.love1 5 หลายเดือนก่อน

    amazing video ...plz continue and can you advice me what should i learn next i have just finished learning all python sntax and now i feel can not create this py game by my self ..plz tell me and thank you

  • @Den-zt4ry
    @Den-zt4ry 5 หลายเดือนก่อน

    nice video. good job

    • @CSJackie
      @CSJackie  5 หลายเดือนก่อน

      Thanks! :)

  • @nunoalexandre6408
    @nunoalexandre6408 8 หลายเดือนก่อน

    Love it!!!!!!!!!! Sooooo Beautifulll...Code....

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน

      Thank you!!

  • @question2779
    @question2779 6 หลายเดือนก่อน

    as i work a lot doing hard stuffs like automations, softwares and things like this, when i reach at home i can´t even think about programming, i need plays video games

  • @pflagler
    @pflagler 6 หลายเดือนก่อน

    The game is delayed in responding to your keyboard inputs because you lowered the framerate of your main loop to 10 FPS. If a keystroke happens between frames, the loop doesn't catch it. Instead, I would recommend setting the framerate back to 60 and limit the speed of your snake a different way, like only moving it once every 3 frames, for example. You can use a variable to modify the speed, which you would want to do if you plan to accommodate multiple difficulties.

    • @CSJackie
      @CSJackie  6 หลายเดือนก่อน +1

      Ah makes sense, thanks so much!!

  • @marcoio8742
    @marcoio8742 8 หลายเดือนก่อน +2

    A file with 600 lines of code? I have seen functions with 800 lines of code in files with >3k lines. Oh no comments nor docstrings. That was hardcore

    • @michaeltse321
      @michaeltse321 6 หลายเดือนก่อน

      no problem. chatgpt please refactor lol

  • @freepythoncode
    @freepythoncode 7 หลายเดือนก่อน

    Thank you so much 🙂❤

  • @mrflexii2067
    @mrflexii2067 8 หลายเดือนก่อน

    Even the simple games can take hours to code :D

  • @rafinayel-r2q
    @rafinayel-r2q 7 หลายเดือนก่อน

    very cool video 💯

  • @justplayinggames963
    @justplayinggames963 6 หลายเดือนก่อน +1

    I don't know why coding looks so HOT

  • @oscarmacho2798
    @oscarmacho2798 5 หลายเดือนก่อน +1

    What font do you use in VS Code? It looks very neat and clear

  • @draoi99
    @draoi99 8 หลายเดือนก่อน +2

    Well, I played Tetris for the most part.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      I'll try that one next!!

  • @sciutosat6959
    @sciutosat6959 6 หลายเดือนก่อน

    im in love with you after watching this video

  • @PointEndClick
    @PointEndClick 7 หลายเดือนก่อน

    This video is awesome.

    • @CSJackie
      @CSJackie  7 หลายเดือนก่อน

      Thank you 🥹

  • @kadirdagkoylu210
    @kadirdagkoylu210 7 หลายเดือนก่อน

    i realy like it and please can u do more project video

  • @Nejosudo
    @Nejosudo 7 หลายเดือนก่อน

    No se que dijiste claramente, pero entendí todo jaja me enamore del canal

  • @Abdullah-zl9ub
    @Abdullah-zl9ub 8 หลายเดือนก่อน

    I like these coding videos! Also I like how your genuine I your posts.
    Quick 2 questions: what’s your thoughts on SwiftUi?
    Is m1 MacBook Air a good upgrade and can code on it? (Using pro 2015 currently)

  • @UCcdTp7XpCkVLkaRCsDcifFg
    @UCcdTp7XpCkVLkaRCsDcifFg 7 หลายเดือนก่อน

    yes i know this game, ikd enought

  • @x12_79
    @x12_79 8 หลายเดือนก่อน

    I feel like the input issue is caused by the low frame rate. You could try and increase the frame rate to 60 again but create a simple timer to tell the snake when it can move.

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +2

      Yes I think that would be a great way of handling this!

  • @ДаниилБей-ж8в
    @ДаниилБей-ж8в 7 หลายเดือนก่อน

    You are well done

  • @eric-222
    @eric-222 8 หลายเดือนก่อน +1

    Maestro!

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      😂🫶

  • @andre-ur6lf
    @andre-ur6lf 6 หลายเดือนก่อน

    finally female software engineer who dares to show her coding process. and not just making content about fiction daily routine which is far from reality.

  • @adikisela409
    @adikisela409 5 หลายเดือนก่อน

    very nice..

  • @Zer0kbps
    @Zer0kbps 6 หลายเดือนก่อน

    My PowerShell scripts always look like spaghetti on reflection and I can seldom read them after a few weeks, it's the human way I'm sure. I wonder if you could take your code and put it through chatgpt and ask it to make it look pretty, would it still work after is the question...I must try it?

  • @michaeltse321
    @michaeltse321 6 หลายเดือนก่อน

    better to start with the design and pencil and paper lol

  • @QuantumMeme
    @QuantumMeme 5 หลายเดือนก่อน

    Hello, I'm new in pyhton developing... in the video 1:01 in that time you installed oygame module can you clearfy it! please!!!

  • @micwax
    @micwax 7 หลายเดือนก่อน

    Great video . Can you put your gear info into your profile? I like your keyboard better than the one who came with my iMac. For coding, it's not the best. Thanks!

  • @LuisLopez-ns6yg
    @LuisLopez-ns6yg 7 หลายเดือนก่อน

    Hi Jackie great video I'm starting coding, I have a question recently I bought a ultrawide monitor like yours and I would like to know the dimensions of your desk in order to have a good workspace. Thanks in advance!

  • @goofballbiscuits3647
    @goofballbiscuits3647 6 หลายเดือนก่อน

    Python by Quistis Trepe 🎉

  • @NotDefinitelyNotMe
    @NotDefinitelyNotMe 6 หลายเดือนก่อน

    Do snake in assembly 😂

  • @onurolce
    @onurolce 8 หลายเดือนก่อน

    I guess you've also generated a random position to put your Camera View on the center of code :) Why you did not put on right top or bottom corner where there will be no any code ?

  • @muhammadumair9020
    @muhammadumair9020 5 หลายเดือนก่อน

    i am a mechanical engineer
    how can i learn python and get benefit from it?
    can you guide?

  • @zappl1437
    @zappl1437 8 หลายเดือนก่อน +2

    Great video. But why are you wearing shoes in your apartment? Aint it uncomfortable?

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน +1

      😂 tbh I had just gone for a walk and forgot to take them off

  • @Goodprogramer
    @Goodprogramer 8 หลายเดือนก่อน

    Great video with a great coding and inspirational content.following you so long .can you code a saas website?

  • @eygt92
    @eygt92 8 หลายเดือนก่อน

    great, thanks

    • @CSJackie
      @CSJackie  8 หลายเดือนก่อน

      🫶

  • @clockwise7391
    @clockwise7391 6 หลายเดือนก่อน

    cute girl writing a video game and teaching practical coding on a very empirical level.
    I am happy🙃

  • @Rahul-rawat-01
    @Rahul-rawat-01 6 หลายเดือนก่อน

    Which IDE do you use . Please reply,
    Love from India ❤❤

  • @JacquellynStuyvesant
    @JacquellynStuyvesant 8 หลายเดือนก่อน +1

    This video is incredible! What theme do you use?

  • @danielessien5256
    @danielessien5256 7 หลายเดือนก่อน

    When is the iterm2 setup releasing??

  • @xinzeng-iq7zv
    @xinzeng-iq7zv 4 หลายเดือนก่อน

    can u upload that game to your website for download

  • @ABHISHEKSINGH-nv1se
    @ABHISHEKSINGH-nv1se 7 หลายเดือนก่อน

    I am doing that in java and swing 🙂.

  • @Byteswap
    @Byteswap 7 หลายเดือนก่อน

    lets meet up and bring some nibbles together and have some bytes