Skip to content

Instantly share code, notes, and snippets.

View c4arl0s's full-sized avatar
🏠
Remote

Santiago c4arl0s

🏠
Remote
  • Quick Soft Inc.
  • México City
  • 18:20 (UTC -06:00)
View GitHub Profile
@webserveis
webserveis / readme.md
Created December 4, 2019 17:08
Crear un splashscreen en kotlin Android

Splash Screen en Android

Crear una pantalla de bienvenida (splashscreen) para nuestras apps

Recursos

Icono de la palicación app\src\main\res\mipmap-xhdpi\ic_launcher.png Crear una fondo de pantalla de tamaño 720x1280 (xhdpi) Escoger un color de fondo, por ejemplo #465f7e Centrar el icono a la imágen y guardarla en app\src\main\res\drawable-xhdpi\splashscreen.png

Preparativos

@alvinfrancis
alvinfrancis / vim-lecture-1.org
Created August 30, 2019 17:45
Vim Lectures (February 2018)

About

  • Vim (Vi IMproved)
  • created by Bram Moolenaar
  • initial release 1991 (Vi was released 1976)
  • still in active development
@Tamal
Tamal / git-ssh-error-fix.sh
Last active November 14, 2024 11:16
Solution for 'ssh: connect to host github.com port 22: Connection timed out' error
$ git clone [email protected]:xxxxx/xxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
$ # This should also timeout
$ ssh -T [email protected]
ssh: connect to host github.com port 22: Connection timed out
$ # but this might work
@vlandham
vlandham / part1.md
Last active March 21, 2024 12:57
Feature Branches and Pull Requests : Walkthrough

Here's a little walkthrough of how Yannick and I are using feature branches and pull requests to develop new features and adding them to the project. Below are the steps I take when working on a new feature. Hopefully this, along with watching the process on Github, will serve as a starting point to having everyone use a similar workflow.

Questions, comments, and suggestions for improvements welcome!

Start with the latest on master

When starting a new feature, I make sure to start with the latest and greatest codebase:

git checkout master