Skip to content

Instantly share code, notes, and snippets.

View kelvinmenegasse's full-sized avatar

Kelvin Menegasse kelvinmenegasse

  • Franco da Rocha - SP
  • 21:26 (UTC -03:00)
View GitHub Profile
@UbuntuEvangelist
UbuntuEvangelist / Completely Uninstall LAMP Stack Ubuntu 24.04 LTS
Last active February 28, 2026 18:42
Completely Uninstall LAMP Ubuntu
HIRE Me For Your Project Support :)
Telegram: https://t.me/LinuxGun
#!/bin/bash
# Completely Remove Apache Ubuntu
service apache2 stop
apt purge apache2
apt remove apache2.*
apt autoremove
whereis apache2
@animir
animir / user.controller.ts
Last active June 4, 2025 14:31
Nest.js prevent brute-force against authorisation example
import { Request, Response } from 'express';
import { Body, Controller, Post, Req, Res } from '@nestjs/common';
import { UserService } from './user.service';
import * as Redis from 'ioredis';
import { RateLimiterRedis } from 'rate-limiter-flexible';
const redisClient = new Redis({enableOfflineQueue: false});
const maxWrongAttemptsByIPperDay = 100;
const maxConsecutiveFailsByUsernameAndIP = 5;
@wojteklu
wojteklu / clean_code.md
Last active March 11, 2026 12:56
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules