- Joined
- Oct 19, 2023
- that is the clickbaitiest title ever
- reminds me of this algorithm that uses a genetic algorithm to compress an image by representing it as gaussian splats
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
incase anyone is searching this is the contents of the postI don't have a ton of immediate thoughts about this Rake guy or his site, but I recognize the site name from my time in the cheat engine community many years ago.
If you want some good resources, check out https://exploit.education for a good primer on memory corruption and crafting your own exploits. For games specifically, Vector 35 has a CTF called Pwn Adventure, and there's also the CheatTheGame (RIP Chris) youtube channel. Cheat engine's built-in tutorial is really solid too. Cheat engine is a world class debugger, and you can learn a lot from fucking around in it. Once you're reasonably comfortable with assembly, you can do some really fun stuff like causing ammo to increase every time you reload.
While looking for the youtube channel, I ended up learning he (CheatTheGame) died about 2 years ago, and I found a page on the GuidedHacking site about his passing. They block my VPN, so I tried looking at a Wayback Machine cache, but the site appears to be manually excluded from archiving. Interesting.
I have been avoiding this post for a long time because I'm not good at this stuff, but it's time I did it.
If you don't know @ChrisFayte, the creator behind CheatTheGame sadly passed away earlier this year.
Chris Fayte was a really good friend of mine. In the early days around 2014 I reached out to Chris when I was just getting started building GuidedHacking and we instantly hit it off. I wanted to support him and he wanted to support me, with no strings attached. We were both making tutorials at the time for the same reason: we wanted to help people.
Chris was one of the most kind and understanding people I have ever met, while working together we never had any issue. We always worked stuff out and helped each other out. I was always impressed with the advanced Cheat Engine topics he was covering.
We both put ads for each other's channels in our videos to try to increase our views.
I reached out to him asking if I could buy Cheat Tables from him to post on our site, and he gave me 250 of them for free which was far too kind.
About 2 years ago I remember his computer died and I said I wanted to help him. I told him to just put an ad for GH in every video and I'll send you 1000$ right now so you can build your computer and get back to work. You may remember in his first video on the new PC he mentioned that I had helped him out. In the end I think I gave him $1,500-2,000 in total for a couple years of advertisements.
I'm mentioning this because some annoying people in this community are always making up lies about me, and one of them was saying that I was taking advantage of Chris, which of course I was not. Whatever he needed, I gave it to him. Whatever I needed, he gave to me. That's just how we were.
As we both got busy, we didn't talk too much in the past couple years but we always had each other's backs since day one.
I will always remember Chris as being one of those people who was there since day one and was a solid friend I could count on, which is extremely rare in this community.
If you want to pay homage to Chris, the thing that would make him the happiest is that you use his videos to learn and are always increasing your skills.
Rest in Peace and Godspeed my good friend, you will always be remembered as a foundational member of Guided Hacking.
Gone But Not Forgotten:
CheatTheGame Facebook Group
CheatTheGame Youtube Channel
if learning javascript is your goal then this is a good place to start:Where do I start? The "learn javascript" content on the online is worse than ever, practically every result is actually an ad for a hosting service ("copy this code, edit in your name, SUBSCRIBE TO OUR HOSTING SERVICE = bam, instant portfolio for your future H1B job"). I don't want that, I want to make a very clean site for a very specific domain and to learn something useful along the way.
Most of this sounds like rudimentary HTML+CSS. Tbh you don't even need JS, but that would require some server-side trickery for the sorting and filters. If you do use JS, you shouldn't need any fancy frameworks, nor will you need to write much code for it.I need to make a simple "responsive" catalog, let's say a cookbook. Each item is a recipe, it has photos, a list of ingredients and equipment, and tags, and a rudimentary recommender system based on that (include/exclude filters and sorting). Static content.
Where do I start? The "learn javascript" content on the online is worse than ever, practically every result is actually an ad for a hosting service ("copy this code, edit in your name, SUBSCRIBE TO OUR HOSTING SERVICE = bam, instant portfolio for your future H1B job"). I don't want that, I want to make a very clean site for a very specific domain and to learn something useful along the way.
em, positioning elements using precise coordinates, etc.. If you don't use absolute positioning, you can think of the structure of your page as a resizable grid where individual tiles/elements are positioned relative to each other—arranging boxes inside larger boxes, essentially.welcome to pop sci, home of the least accurate secondary sourcesthat is the clickbaitiest title ever
Where do I start? The "learn javascript" content on the online is worse than ever, practically every result is actually an ad for a hosting service ("copy this code, edit in your name, SUBSCRIBE TO OUR HOSTING SERVICE = bam, instant portfolio for your future H1B job"). I don't want that, I want to make a very clean site for a very specific domain and to learn something useful along the way.
rules for how to write js:Most of this sounds like rudimentary HTML+CSS. Tbh you don't even need JS, but that would require some server-side trickery for the sorting and filters. If you do use JS, you shouldn't need any fancy frameworks, nor will you need to write much code for it.

"new variant of well-known weird image compression technique just dropped" is not something a retarded normie would click though so i sort of understand the absolutely retarded clickbaitwelcome to pop sci, home of the least accurate secondary sources
I don't necessarily mind, part of good science communication is an appropriate degree of pageantry, and it can be tricky to find that balance. The thing I don't like is when a secondary source doesn't just link the paper and I have to hunt it down myself"new variant of well-known weird image compression technique just dropped" is not something a retarded normie would click though so i sort of understand the absolutely retarded clickbait
"Responsive" as a buzzword really pisses me off. It evokes a lot of dynamic, animated imagery when it just means writing a resizable layout properly.rules for how to write js:
for the documentation on the various gay web apis you want to abuse, see the mdn. congratulations you now know all there is to know about javascript
- don't
- if you think you do, think again--a lot of the time you actually don't
- use arcane css magic to implement your retarded widgets using exactly 0 javascript because javascript is to be avoided at all costs
- if you really do need js for something, make it as unobtrusive as humanly possible
- page 99% works without js? you're doing it right (web niggers call this some gay shit like "progressive enhancement")
- if you're trying to make a huge application on the fucking browser for some reason, compile it to webassembly and use js as shitty glue. you can also have a native build of your shitty app if you set it up properly
![]()
this is the whitest possible thing you can doMake a web 1.0 website with the basic HTTP verbs and serve only HTML.
responsive is literally the default state of the web if you paste that one meta tag and then proceed to not fuck everything up"Responsive" as a buzzword really pisses me off. It evokes a lot of dynamic, animated imagery when it just means writing a resizable layout properly.
IMO the current best state of HTML for "responsiveness" is HTMX, if done properly. No need to reload the entire page, just replace one element with whatever comes back from the server, if JS is enabled, otherwise do the damn reload and be done.you can make any html look extremely great (by modern webshit design standards) with like 5 selectors worth of css and it will load pretty quickly as well
this looks fucking gay when you could just keep it simple by always loading a whole new page when you click a new pageIMO the current best state of HTML for "responsiveness" is HTMX, if done properly. No need to reload the entire page, just replace one element with whatever comes back from the server, if JS is enabled, otherwise do the damn reload and be done.
This is not what responsive means in a web context. Responsive design has nothing to do with speed. Responsive design is about creating something that is designed to look good on both mobile and desktop. The meta tag that defines a responsive page is as follows:IMO the current best state of HTML for "responsiveness" is HTMX, if done properly. No need to reload the entire page, just replace one element with whatever comes back from the server, if JS is enabled, otherwise do the damn reload and be done.
HTML rendered serverside can be FAST, quite a bit faster than transferring json and rendering that clientside
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
pop that on a raw html page and it will instantly look quite good on mobileThe meta tag that defines a responsive page is as follows:
i think it's a good idea to not have ~70-char lines on mobile because those screens are quite small and fitting more characters per line needs small font sizesAs someone with a bit of background in typography, initial-scale of 0.6 or 0.7 puts mobile close to that ~70 characters per line
i need to learn tex one day
You argue for the status quo which is fine but I was reading books at 100+ chars a line on 540px wide phone screens from a decade and a half ago. I'd rather the typesetting standard than mobilefag notions of propriety.i think it's a good idea to not have ~70-char lines on mobile because those screens are quite small and fitting more characters per line needs small font sizes
LaTeX or just raw TeX? Also, here's an article about the WYSIWYM (what you see is what you mean) editing software LyX that may be just for you:i need to learn tex one day
math would be easier for me if it wasn't so ridiculously hard to type
\ while giving us full power of LaTeX."Rawdogging tex would certainly be a choice.LaTeX or just raw TeX?
I was thinking along the lines of using it for loading the next page on a paged list of results. And there only as a form of progressive enhancement.this looks fucking gay when you could just keep it simple by always loading a whole new page when you click a new page
if you think your site header is somehow a large target of optimization for some reason, you probably fucked it up
this technique is called "just using the web the way it's designed" and it never does stupid shit like break the back button or make linking hard (like many "dynamic" web pages tend to do)
Yep, totally my fault. I thought x when it was y.This is not what responsive means in a web context. Responsive design has nothing to do with speed. Responsive design is about creating something that is designed to look good on both mobile and desktop. The meta tag that defines a responsive page is as follows:
I suck at CSS and have to use Bootstrap to make things responsive. I don't know how much it degrades without JS though.Responsive websites should do so with as little JS as possible IMO. CSS by now has enough tools that you really don't need js for it anymore.