Skip to content

Instantly share code, notes, and snippets.

View phelipe's full-sized avatar
🦀
Focusing

Phelipe Wesley phelipe

🦀
Focusing
View GitHub Profile
@phelipe
phelipe / ca.md
Created September 15, 2022 01:45 — forked from soarez/ca.md
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.

@phelipe
phelipe / telegram.jl
Last active May 2, 2020 18:08
Script para enviar mensagem no telegram com julia
using HTTP
const BOT_API_KEY = "<BOT_API_KEY>"
const MY_CHANNEL_ID = "-<MY_CHANNEL_ID>"
function sendmessage(message)
url = "https://api.telegram.org/bot$(BOT_API_KEY)/sendMessage?chat_id=$(MY_CHANNEL_ID)&" * HTTP.escapeuri(["text" => message])
r = HTTP.request("GET", url)
end
{
"workbench.startupEditor": "newUntitledFile",
"[javascript]": {
"editor.tabSize": 2,
"editor.fontSize": 15,
},
"files.exclude": {
"**/.ipynb_checkpoints": true,
"**/.vscode": true
},
"latex-workshop.latex.tools": [{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-xelatex",
"-outdir=%OUTDIR%",
"%DOC%"
@phelipe
phelipe / gist:2be1dcf1448b40ba37b0e40fc30074be
Last active July 21, 2020 01:17
Meus programas manjaro
MeloowPlayer
crow translate
Kdenlive
OBS
Audacity
Opera
Mega
ttf-fira-code
@phelipe
phelipe / pacotes.jl
Last active May 1, 2017 22:15
Pacotes para instalar quando instalar julia
#packages
Pkg.add("PyPlot");
Pkg.clone("https://github.com/scheinerman/LatexPrint.jl");
Pkg.clone("https://github.com/pzion/Mongo.jl.git");
Pkg.clone("https://github.com/farrellm/YTables.jl.git");
Pkg.add("ODE");
Pkg.add("Gadfly");
Pkg.add("Merly")
Pkg.add("ControlSystems");
Pkg.add("Requests");