Skip to content

Instantly share code, notes, and snippets.

@Klerith
Klerith / pasos-node-typescript.md
Last active April 18, 2024 23:23
Configurar proyecto de Node con TypeScript

Pasos para usar Node con TypeScript con Nodemon

Más información - Docs Oficiales

  1. Instalar TypeScript y tipos de Node, como dependencia de desarrollo
npm i -D typescript @types/node
  1. Inicializar el archivo de configuración de TypeScript ( Se puede configurar al gusto)
@DeezNutq
DeezNutq / info.md
Last active April 18, 2024 23:22
AIDA64 keys for all editions (working @ 08.04.2024)

Note : FinalWire, you can keep trying to stop us, but you can't. You know why ? You've been using the same algorithm for 10 years. Changing it would be an inconvenience for you and your customers.

By the way, I'd suggest that you proofread your DMCA requests. If you didn't know, it's "generated" and not "genereated". Also, when referencing to someone's belonging you use the possessive form "their" and not "there".

FOR EDUCATIONAL PURPOSES ONLY, PLEASE SUPPORT THE DEVELOPPERS :)

Check BLACKLISTED for blacklisted keys

@OrionReed
OrionReed / dom3d.js
Last active April 18, 2024 23:22
3D DOM viewer, copy-paste this into your console to visualise the DOM topographically.
// 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks.
// You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/)
(() => {
const SHOW_SIDES = false; // color sides of DOM nodes?
const COLOR_SURFACE = true; // color tops of DOM nodes?
const COLOR_RANDOM = false; // randomise color?
const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com)
const MAX_ROTATION = 180; // set to 360 to rotate all the way round
const THICKNESS = 20; // thickness of layers
const DISTANCE = 10000; // ¯\\_(ツ)_/¯
@bmaupin
bmaupin / free-database-hosting.md
Last active April 18, 2024 23:22
Free database hosting
@AnaD-D
AnaD-D / index.html
Created April 18, 2024 23:11
IP info fetcher
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.blue.min.css"
/>
</head>
<header>
</header>
<main class="container">
<form action="" id="form">
@afhaque
afhaque / census_aliases.js
Created January 4, 2017 22:25 — forked from dariusk/census_aliases.js
census_aliases.js
var census_aliases = {
//Economic Variables
"income":{
"api":"acs",
"variable":"B19013_001E",
"description":"Median household income in the past 12 months (in 2013 inflation-adjusted dollars)",
"text":"median household income",
"unit":"dollars"
},
"income_per_capita":{
@hsiuhsiu
hsiuhsiu / fft.cpp
Last active April 18, 2024 23:08
[FFT] Fast Fourier Transform in c++ and basic applications #Algorithm #ACM
#include <complex>
#include <iostream>
#include <valarray>
#include <vector>
using namespace std;
const double PI = 3.141592653589793238460;
typedef std::complex<double> Complex;
typedef std::valarray<Complex> CArray;
@AlyoshaS
AlyoshaS / socket.adoc
Created April 12, 2017 21:46
Sockets com python para Hackudões

Python with Penetration Testing and Networking

Penetration(pen) tester e hacker são termos semelhantes. A diferença é que pen-testers trabalham em uma organização para evitar às investidas de hackers, enquanto que um hacker geralmente trabalha para obter fama, vender vulnerabilidades por dinheiro, ou para explorar vulnerabilidades a fim de adiquirir algumas inimizades.

Hackers bem treinados trabalham no campo de segurança da informação, invadindo um sistema e informando a vítima dos bugs de segurança para que eles possam ser corrigidos.

Um hacker chamado de pentester é aquele que trabalha em uma empresa a fim de protejer seu sistema. Um pentester só inicia suas tentativas de quebrar a rede depois de obter a aprovação legal do cliente e, em seguida, apresenta um relatório de suas descobertas. Para se tornar um especialista em pentesting, uma pessoa deve ter profundo conhecimento dos conceitos de sua tecnologia. Neste capítulo, abordaremos os seguintes tópicos:

  • O escopo do pentesting

  • A necessidade do

@nicugnm
nicugnm / gist:ecc9a2a899518e3e285c04a3af858bba
Created November 13, 2023 16:33 — forked from OmarMtya/gist:9ce68c563893d1c774f11a94ea73a31c
Flowbite decorator to fix Angular routing problem
import { initFlowbite } from "flowbite";
import { Subject, concatMap, delay, of } from "rxjs";
let flowbiteQueue = new Subject<any>();
flowbiteQueue.pipe(
concatMap(item => of(item).pipe(delay(100)))
).subscribe((x) => {
x();
})