This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://ohmyposh.dev/docs/installation/windows | |
# https://ohmyposh.dev/docs/themes | |
& ([ScriptBlock]::Create((oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH\catppuccin_macchiato.omp.json" --print) -join "`n")) | |
# Shows navigable menu of all options when hitting Tab | |
#https://techcommunity.microsoft.com/t5/itops-talk-blog/autocomplete-in-powershell/ba-p/2604524 | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete | |
# https://dev.to/animo/fish-like-autosuggestion-in-powershell-21ec | |
# 1-> Install-Module PSReadLine -RequiredVersion 2.1.0 -Scope CurrentUser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import smtplib, ssl | |
from email.mime.text import MIMEText | |
import os | |
def get_credentials(): | |
""" | |
Get the credentials from the environment variables. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Rogério Araújo", | |
"picture": "https://raw.githubusercontent.com/rodgeraraujo/rodgeraraujo/master/assets/profile_2024.jpg", | |
"label": "Software Engineer", | |
"headline": "", | |
"summary": "My name is Rogério Araújo, I'm graduated in Technology in Systems Analysis and Development at the Federal Institute of Education Science and Technology of Paraíba, campus Cajazeiras, Brazil.\n\nI have a passion for side projects and a compulsion to tinker. My main interests are Software Development, I like so much create things (and break too).\n\nWhen I’m not working, I love read, draw in free time, watch movies/series and meet new people, learn different technologies that I don’t frequently work with. I’m also a Machine Learning enthusiast.", | |
"website": "https://rogerioaraujo.dev", | |
"projects_url": "https://github.com/rodgeraraujo?tab=repositories", | |
"username": "rodgeraraujo", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from honcho.environ import parse | |
from invoke import run | |
def push_env(file='.env'): | |
with open(file, 'r') as f: | |
env = parse(f.read()) | |
cmd = 'heroku config:set --app ' | |
for key, value in env.items(): | |
cmd += ' ' + key + "=" + "'"+ value + "'" | |
run(cmd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No content. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { unref as $, ref, computed } from('vue'); | |
const counter = ref(0); | |
const doubled = computed(() => $(counter) * 2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.shadow { | |
width: 500px; | |
height: 500px; | |
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25), | |
0px 0 50px rgba(0, 0, 0, 0.1) inset; | |
border-radius: 1% 1% 1% 1% / 1% 1% 1% 1%; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/rodger/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env xdg-open | |
[Desktop Entry] | |
Version=1.0 | |
Terminal=false | |
Type=Application | |
Name=Google Incognito | |
Exec=/opt/google/chrome/google-chrome --incognito | |
Icon=google-chrome | |
StartupNotify=true | |
Terminal=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-10-02T03:04:19.162Z","extensionVersion":"v3.4.3"} |