Skip to content

Instantly share code, notes, and snippets.

View userddssilva's full-sized avatar
💭
Hi there!

Dayvson Silva userddssilva

💭
Hi there!
View GitHub Profile
Handler().postDelayed({
startActivity(Intent(this, Activity::class.java))
}, 2000)
@userddssilva
userddssilva / android_hide_toobar.kt
Last active April 7, 2021 02:23
Esconde a barra de ferramentas android e deixa a tela full screen
try {
this.supportActionBar?.hide()
} catch (e: NullPointerException) {}
export PATH="${PATH}:/home/dayvson/.local/bin"
# The PYTHONPATH variable has a value that is a string with a list of directories
# that Python should add to the sys.path directory list.
# The main use of PYTHONPATH is when we are developing some code that we want to
# be able to import from Python, but that we have not yet made into an installable
# Python package (see: making a Python package).
export PYTHONPATH="${PYTHONPATH}:/home/dayvson/.local/lib/python3.8/site-packages/*"
export PYTHONPATH="${PYTHONPATH}:/home/dayvson/.local/lib/python3.8/site-packages/*/*"
@userddssilva
userddssilva / python_how_to_flat_list.py
Last active February 3, 2021 13:22
How to make a flat list out of list of lists?
import itertools
list2d = [[1,2,3], [4,5,6], [7], [8,9]]
merged = list(itertools.chain.from_iterable(list2d))
@userddssilva
userddssilva / shell_send_files_to_gist.sh
Last active February 3, 2021 13:23
Send files .md to github gist of a folder
for file in `ls *.md`
do
echo "Sending file: "
echo $file
putgist userddssilva $file
sleep 5
echo "Done"
echo ""
done
@userddssilva
userddssilva / active_touchpad_thinkpad.sh
Last active April 8, 2021 17:28
how to activate my touchpad on thinkpad with ubuntu
#!/bin/bash
sudo rmmod psmouse
sudo modprobe psmouse
#@title Download Dataset to Google Colab { form-width: "800px" }
# e.g GOOGLE_DRIVE_FILE_URL: https://drive.google.com/open?id=1CZyDkHHjS8SUVBF7fBwoTAF6xSpLmD4P7
LinkFile = "https://drive.google.com/open?id=1ZKGI0xYnBWYpSf13fbmVTnIxBa6cTQyH" #@param {type:"string"}
# e.g GOOGLE_DRIVE_FILENAME_WITH_EXTENSION: Local History.csv
Filename = "codebench.zip" #@param {type:"string"}
Filename = Filename.replace(' ', '\ ')
@userddssilva
userddssilva / mysql-pandas-import.py
Created January 31, 2020 14:40 — forked from stefanthoss/mysql-pandas-import.py
Import data from a MySQL database table into a Pandas DataFrame using the pymysql package.
import pandas as pd
import pymysql
from sqlalchemy import create_engine
engine = create_engine('mysql+pymysql://<user>:<password>@<host>[:<port>]/<dbname>')
df = pd.read_sql_query('SELECT * FROM table', engine)
df.head()
@userddssilva
userddssilva / .vimrc
Last active August 23, 2019 20:19
configures of my vim
"edit setting
"set nowrap "lines can be greater than shell width (maybe necessary to scroll horizontally
set rnu "enable relative number
set autoindent "indent new line NORMAL mode
set smartindent "indent according to text style