Skip to content

Instantly share code, notes, and snippets.

View CristianAbrante's full-sized avatar

Cristian Abrante CristianAbrante

View GitHub Profile
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
@CristianAbrante
CristianAbrante / copy-raw-photos.sh
Last active November 12, 2023 17:38
Script to copy RAW Niko photos to a folder in the Desktop and make it easier to upload them to Lightroom
#!/bin/zsh
# This is a script to copy all .NEF files from a Nikon camera to a
# folder and make it easy to import it to Lightroom.
# How to use:
# ./copy-photos.sh
# Set the source and destination directories
@CristianAbrante
CristianAbrante / install-software.sh
Last active January 20, 2024 16:26
Installation setup
#!/bin/zsh
# This is a script to install all the software I use in my Mac.
# This assumes brew is installed in the system. if not, go to https://brew.sh/
# How to use:
# ./install-software.sh
# programs to install first
# iterm2
@CristianAbrante
CristianAbrante / c
Created April 24, 2018 22:56
Creating a point Struct in C
// Declaramos la estructura
Struct Point {
double x;
double y;
}
// Como se crea una instancia
Point p;
// Como se accede a sus atributos