Skip to content

Instantly share code, notes, and snippets.

View w-gomes's full-sized avatar
🎯
Focusing

tre w-gomes

🎯
Focusing
View GitHub Profile
@w-gomes
w-gomes / setup.md
Last active December 20, 2020 19:46 — forked from developius/README.md
Set up GitHub push with SSH keys

Create a repo. Make sure there is at least one file in it (even just the README) Generate ssh key:

ssh-keygen -t rsa -b ed25519 -C "your_email@example.com"

For legacy machine: ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Adding your SSH key to the ssh-agent

@w-gomes
w-gomes / .lib file for SQLite3.md
Last active December 3, 2019 16:01
Creating .lib file for SQLite3
Creating a Windows .lib file for SQLite
  • Launch the Visual Studio Commmand Prompt
  • cd to the directory containing "Precompiled Binaries for Windows" (dll) & (def) files
  • Enter the following command: lib /def:sqlite3.def /out:sqlite3.lib
  • For x64: lib /def:sqlite3.def /machine:X64 /out:sqlite3.lib
@w-gomes
w-gomes / pep8_cheatsheet.py
Created January 9, 2019 00:35 — forked from RichardBronosky/pep8_cheatsheet.py
PEP-8 cheatsheet
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""This module's docstring summary line.
This is a multi-line docstring. Paragraphs are separated with blank lines.
Lines conform to 79-column limit.
Module and packages names should be short, lower_case_with_underscores.
Notice that this in not PEP8-cheatsheet.py