Skip to content

Instantly share code, notes, and snippets.

View CristianoFIlho's full-sized avatar
Do the simple solve the complex

Cris ☁️ CristianoFIlho

Do the simple solve the complex
View GitHub Profile
@luizomf
luizomf / ambiente-dev-ubuntu-curso-python.sh
Created October 31, 2022 01:23
Instalação ambiente dev Ubuntu 22 do curso de Python
#!/bin/bash
# Executar comandos a seguir para atualizar os pacotes
sudo apt update -y
sudo apt upgrade -y
# Só o Python
sudo apt install python3.10-full python3.10-dev -y
# Instalar pacotes a seguir
@izaya-ux
izaya-ux / Wake on lan
Created December 30, 2020 21:59
Wake on lan (Wol) how to use an alexa device to turn on and off your ubuntu linux pc
Wake on lan (Wol) how to use an alexa device to turn on and off your ubuntu linux pc
https://www.wolskill.com
sudo su
apt install wakeonlan
apt install ethtool
(Find your ethernet adapter, mine was called 'enp4s0' (usually called 'eth0').)
ifconfig -a
@AveYo
AveYo / .. MediaCreationTool.bat ..md
Last active April 30, 2025 05:20
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
@jagrosh
jagrosh / Growing A Discord Server.md
Last active April 24, 2025 22:32
Tips for creating and growing a new Discord server

This guide is kept up-to-date as Discord and available resources change!
A basic server template is available here

Creating and Growing a Discord Server

logo

Introduction

Hello! I'm jagrosh#4824! I'm writing this guide to try to help new server owners set up and grow their servers, which is a commonly-requested topic. It's very easy to go about this the wrong way, so it's best to be prepared and make smart decisions so that your community can flourish!

Background

@jagrosh
jagrosh / WebhookTutorial.md
Last active September 19, 2024 03:24
Simple Webhook Tutorial (Twitter -> Discord)

Simple Webhook Tutorial

In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel

Step 1 - Register on Zapier

  1. Go to https://zapier.com/ and create an account (if you don't already have one).

Step 2 - Make a Discord Webhook

  1. Find the Discord channel in which you would like to send Tweets
@leocomelli
leocomelli / git.md
Last active May 3, 2025 05:38
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda