Skip to content

Instantly share code, notes, and snippets.

View codeme254's full-sized avatar
💭
The bigger the dream, the harder the grind

Dennis Otwoma codeme254

💭
The bigger the dream, the harder the grind
View GitHub Profile
@codeme254
codeme254 / combine.js
Created April 14, 2026 11:28
Combine all code into one file for AI scoring
// Combines the content of all project files into one file for AI scoring
const fs = require('fs');
const path = require('path');
// Root of the project
const projectRoot = path.resolve(__dirname);
// Output file
const outputFile = path.join(projectRoot, 'allCode.txt');
@codeme254
codeme254 / reset.css
Created July 2, 2024 07:34
CSS reset
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
@codeme254
codeme254 / app.js
Created June 18, 2024 13:08
React testing with vite set up
console.log("a lot of code")
@codeme254
codeme254 / installation.txt
Created June 18, 2024 06:37
React testing with vitest set up
npm install --save-dev @testing-library/jest-dom @testing-library/react @testing-library/user-event jsdom vitest
@codeme254
codeme254 / index.py
Created June 18, 2024 05:39
Sample Gist
print("Hello, world")
@codeme254
codeme254 / README.md
Created February 24, 2023 06:41
DevOps Roadmap and resources.

SSH

SSL/TLS

HTTP/S

Webstack Debugging

Servers

Web Servers (Nginx)

Application Servers (Gunicorn)

Configuration Management (Puppet)

Load Balancers

Postmortems