Skip to content

Instantly share code, notes, and snippets.

View abelcallejo's full-sized avatar

Abel Callejo abelcallejo

View GitHub Profile
@abelcallejo
abelcallejo / README.md
Last active January 25, 2021 04:35
StellaR Cheatsheet

StellaR

Cheatsheet

Usage

python StellaR.py stella_model.txt r_model

Parameters

python - works well with version 2.7.17 so far

@abelcallejo
abelcallejo / README.md
Last active May 27, 2025 21:46
Installing GDAL 3.2.1 on Amazon Linux 2

Installing GDAL 3.2.1 on Amazon Linux 2

gdal linux yum

As of this day, this is probably the only and fastest way of installing it.

Package requirements

Based from the GDAL and PROJ build requirements, here is the full list of required packages to install:

@abelcallejo
abelcallejo / README.md
Last active September 23, 2020 04:23
Configuring Apache to serve HTTP/2

Configuring Apache to serve HTTP/2

Step 1

LoadModule http2_module modules/mod_http2.so

Step 2

<IfModule mod_http2.c>
 Protocols h2 h2c http/1.1
@abelcallejo
abelcallejo / README.md
Last active August 26, 2020 10:27
Bash file management

Bash file management

Listing all the files

find . -name "*"

or more advanced

find . -print | grep -E -- 'jpg|png'
@abelcallejo
abelcallejo / README.md
Last active August 21, 2020 07:57
Pushing changes without fucking the master branch

Updating your master branch

git checkout master
git pull

Pushing changes without fucking the master branch

Create a branch

@abelcallejo
abelcallejo / README.md
Last active August 14, 2020 10:34
Apps Script cheatsheet

Apps Script cheatsheet

Requesting are resource

var response = UrlFetchApp.fetch("http://api.example.com/endpoint");

Sending an email

MailApp.sendEmail({
@abelcallejo
abelcallejo / README.md
Last active February 19, 2021 05:00
GIT cheatsheet

GIT cheatsheet

Rebasing

# Get an updated version from the remote repository
git checkout master
git pull

# Adjust the heads based on the master branch
git checkout my-feature-branch
@abelcallejo
abelcallejo / README.md
Last active July 30, 2020 05:11
Stop Fluentd td-agent

Stop Fluentd td-agent

sudo launchctl unload /Library/LaunchDaemons/td-agent.plist
@abelcallejo
abelcallejo / MYSQL.md
Last active July 28, 2020 21:33
PostgreSQL and MySQL CLI Cheatsheet

MySQL

my.cnf

Location:

~/.my.cnf

Content: