Skip to content

Instantly share code, notes, and snippets.

View becauro's full-sized avatar
😎

Michel Pereira becauro

😎
View GitHub Profile
@fsrocha-dev
fsrocha-dev / checklist-react-redux.md
Last active October 4, 2024 23:26
Checklist do React Redux

Antes de iniciar

  • pensar sobre o que haverá no estado global;
  • pensar sobre quais actions iremos precisar na aplicação;

Instalação

  • npx create-react-app my-app-redux;
  • npm install --save redux react-redux;
  • npm install. (Caso necessário)

Criar dentro do diretório src:

@Semant1ka
Semant1ka / how_to_setup_hotspot.md
Last active February 12, 2025 23:47
How to set up WiFi hotspot and troubleshoot WiFi problems on Debian

There are a few decent tutorials on how to setup hotspot on Linux, which I will share below, but this tutorial will focus on adversities that you without doubt will face while setting up your AP.

For AP setup we will need:

  • Hostapd utility
  • Some dhcp utility
  • A bit of patience (that was for my case)

How do I know that my WiFi adapter supports AP mode?

In terminal type sudo iw list this command will show info about your wifi interfaces. Look for Supported interface entry, if AP is in it, that means your Wifi devices support hotspot mode.

@cmattoon
cmattoon / aslr.py
Created September 27, 2015 20:43
Enable/Disable ASLR on Linux
#!/usr/bin/env python
"""
mv aslr.py /usr/bin/aslr && chmod +x /usr/bin/aslr
Be careful!
"""
import os, sys
FLAG_ENABLE = 2
FLAG_DISABLE = 0
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 25, 2025 12:47
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites