Skip to content

Instantly share code, notes, and snippets.

View danielnunesdc's full-sized avatar
🎯
Focusing

Daniel Nunes danielnunesdc

🎯
Focusing
  • Assesso
  • Piauí
View GitHub Profile
@danielnunesdc
danielnunesdc / arquivo fstab
Last active January 4, 2023 22:16
ransaction for graphical.target/start is destructive. Failed to start default target: Transaction for graphical.target/start is destructive (emergency.target has 'start' job queued, but 'stop' is included in the transaction
arquivo /etc/fstab
Se as opções estiverem diferentes dos abaixo, ajuste, os definidos como default recebem as opções zero zero
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/nvme0n1p8 during installation
UUID= / ext4 errors=remount-ro 0 1
# /boot was on /dev/nvme0n1p7 during installation
UUID= /boot ext4 defaults 0 2
# /boot/efi was on /dev/nvme0n1p1 during installation
@danielnunesdc
danielnunesdc / note.txt
Last active July 20, 2020 03:03
Instalar a lib Tkinter
Atualize seu repositório
sudo apt-get update
Instale para a versão 3 do python
sudo apt-get install python3-tk
Para testar, crie uma tela (Não teste no IDLE)
from tkinter import *
@danielnunesdc
danielnunesdc / README.md
Created January 10, 2019 22:58 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
const mongodb = require("mongodb");
const usuario = 'myUserAdmin';
const senha = 'abc123@';
const url = `mongodb://localhost:27017/admin`;
mongodb
.MongoClient
.connect(url)
.then((db) => {
@danielnunesdc
danielnunesdc / Install mongoDB on Ubuntu 16.04.md
Last active April 20, 2023 03:50
Fazendo esse trem funcionar (MongoDB 4.0.5).

Fazendo esse trem funcionar (MongoDB 4.0.5).

Esse gist é simplesmente para que eu(ou qualquer outro) não esqueça de como fazer esse trem funcionar.

Remova versões anteriores

Se você possui alguma versão mais antigas e pretende remover, siga os comandos abaixo:

Obs: Após realizar esses comandos você perderá todos os bancos de dados que tiver previamente criado.

Para desinstalar todos os pacotes do MongoDB:

@danielnunesdc
danielnunesdc / Callback Methods.MD
Created December 13, 2018 15:41 — forked from siddrc/Callback Methods.MD
Revision Notes

Callback methods:

terminator-ill-be-back-arnold-meme

Yes I am a terminator fan...haha

ok coming down to nerdy talks.

Firstly from the name "Callback methods" itself, it is as if saying:

"I am going somewhere else now to do something else entirely different but a neccessity to complete this task, and I will be back with results and use it to resume and complete the flow ahead."

Cursos e Dicas de Data Science

Cursos

DataCamp --> Site com cursos curtos de data science e suas bibliotecas. [GRATUITO | IDIOMA: INGLÊS]

Minerando Dados --> site sensacional com exemplos práticos de data mining e diversos outros. [GRATUITO | IDIOMA: PORTUGUÊS]

Hacker Rank --> Ótimo site para desafios e aprimoramento de técnicas. [GRATUITO | IDIOMA: INGLÊS]

Data Science Cheatsheets --> Tabelas resumo de PYTHON, PANDAS, NUMPY, SCIKIT-LEARN, PANDAS... enjoy!!! [GRATUITO | IDIOMA: INGLÊS]

Postman

O Postman permite realizar requisições HTTP a partir de uma interface muito amigável e intuitiva, independente de linguagem, podendo testar diversas rotas rapidamente, além de combinações de parâmetros e retornos.

Disponível tambem para extensão no Google Chrome: Clique aqui

Instalando

Passo 1

Faça o download pelo terminal sequindo os passos abaixo, ou diretamente no site: Clique aqui

Transformar o .py em .exe

Cx_Freeze para Windows, Linux, e Mac OS X (Python 2.7, 3.x)

Pyinstaller para Windows, Linux, e Mac OS X (Python 2.7, 3.3-3.5)

Bbfreeze para Windows e Linux (Python 2.4-2.7)

Py2exe para Windows (Python 2.6, 2.7)

FIGlet

FIGlet is a program for making large letters out of ordinary text

FIGlet é uma ferramenta muito usada para customizar scripts. Ele converte o texto inserido em uma versão com vários caracteres, formando fontes maiores e bem interessantes.

Para instalar o FIGlet em distribuições linux baseadas no Debian, abra o terminal e digite:

sudo apt-get install figlet

Para instalar em outros sistemas, acesse o site oficial do projeto FIGlet.