Skip to content

Instantly share code, notes, and snippets.

View Dirack's full-sized avatar
🌍
Working from Rio de Janeiro

Rodolfo Dirack Dirack

🌍
Working from Rio de Janeiro
View GitHub Profile
#!/bin/bash
sudo apt update
sudo apt install vim -y
sudo echo "# This is the GPGEOF's packages repository" >> /etc/apt/sources.list
sudo echo "deb [trusted=yes] https://gpgeof.github.io/debian ./" >> /etc/apt/sources.list
sudo apt update
#!/bin/bash
# Instalar dependências
DEPENDENCIAS="libxaw7-dev freeglut3-dev libnetpbm10-dev libgd-dev libplplot-dev libavcodec-dev libcairo2-dev libjpeg-dev swig python-dev python-numpy g++ gfortran libopenmpi-dev libfftw3-dev libsuitesparse-dev python-epydoc scons git emacs25"
echo -e "Instalar dependências...\n"
for i in $DEPENDENCIAS
do
echo "...Instalando $i"
sudo apt-get install -y "$i" 1>/dev/null
@Dirack
Dirack / folding.md
Created January 4, 2022 22:59
Código para automatizar a carga dos foldings no vim

Adicione o código abaixo ao arquivo ~/.vimrc

" lines to save text folding
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
@Dirack
Dirack / vpconvert.md
Created September 15, 2021 15:58
Converter vpl para gif
vpconvert format=gif models.vpl
" SConstruct highlight
au BufRead,BufNewFile SConstruct set filetype=python
" SConscript highlight
au BufRead,BufNewFile SConscript set filetype=python

O que é whitepaper?

De forma simplificada, o whitepaper é um documento que serve como um guia para explicar algum conceito ou demonstrar a solução de um problema específico.

No caso das criptomoedas, o whitepaper traz todas as informações relevantes sobre o ativo. Basicamente, funciona como os papers acadêmicos, que devem ser feitos no final de uma graduação ou de um projeto de mestrado ou doutorado, por exemplo.

É no whitepaper que estão descritos os fundamentos que serviram de base para a criação do criptoativo.

Simple Script To Start Teamviewer Through Terminal.

link

Hi All,

Today i came with some different script and very simple script 🙂 To start the team viewer remotely.

#!/bin/bash
sudo mysql

-- for MySQL
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';

Altera a senha para 'root'.

@Dirack
Dirack / tabela.md
Created July 3, 2021 17:30
Tabela pronta em Markdown
Exemplo Valor do exemplo
Exemplo 1 R$ 10
Exemplo 2 R$ 8
Exemplo 3 R$ 7
Exemplo 4 R$ 8
@Dirack
Dirack / ps1_examples.md
Last active October 30, 2020 19:41
Several examples of PS1 shell variable

PS1="\u@\h [\t]>

    \a an ASCII bell character (07)
    \d the date in “Weekday Month Date” format (e.g., “Tue May 26”)
    \D{format} – the format is passed to strftime(3) and the result is inserted into the prompt string; an empty format results in a locale-specific time representation. The braces are required
    \e an ASCII escape character (033)
    \h the hostname up to the first part
    \H the hostname
    \j the number of jobs currently managed by the shell