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
Created November 8, 2021 08:35
JavaScript cheatsheet

JavaScript cheatsheet

Processing a promise

Cloning a DOM object

let p = document.getElementById("para1")
@abelcallejo
abelcallejo / README.md
Last active June 16, 2025 20:31
NASA POWER Cheatsheet

NASA POWER Cheatsheet

Table of contents

Meteorology

Spatial resolution of 0.5 x 0.625 degrees of latitude and longitude respectively

@abelcallejo
abelcallejo / README.md
Last active October 21, 2021 03:54
RPostgreSQL errors

RPostgreSQL errors

RPostgreSQL package was not installed

Problem

You haven't installed the R package called RPostgreSQL. It will show the following error:

Error in library("RPostgreSQL") : there is no package called ‘RPostgreSQL’
Calls: source -> withVisible -> eval -> eval -> library
Execution halted
@abelcallejo
abelcallejo / README.md
Last active June 4, 2021 12:58
FreeBSD Cheatsheet

FreeBSD Cheatsheet

Showing the OS

uname -sr

Showing the USB device list

usbconfig
@abelcallejo
abelcallejo / README.md
Created May 27, 2021 11:29
Zip and Unzip cheatsheet

Zip and Unzip cheatsheet

Unzipping while ignoring the tree

unzip -j /path/to/file.zip -d output_folder

Unzipping while overwriting existing files

unzip -o /path/to/file.zip
@abelcallejo
abelcallejo / README.md
Last active May 5, 2022 06:56
Node + Electron cheatsheet

Node + Electron cheatsheet

Cloning an app

cd /path/to
git clone [email protected]:user/project.git
cd project
npm install electron --save-dev
@abelcallejo
abelcallejo / README.md
Last active February 24, 2021 07:22
Creating ZIP files using PHP

Creating ZIP files using PHP

<?php

/**
 * PREPARE THE PATHS AND FILE NAME
 *
 * Store the zip file to a common temporary location such as /tmp
 */
@abelcallejo
abelcallejo / README.md
Last active June 30, 2023 08:47
CodeIgniter cheatsheet

CodeIgniter cheatsheet

CodeIgniter v3

A) Using multiple database connections

$writer = $this->load->database('write',TRUE);

$downloader = array(
 'field_a' =&gt; 'Value A',
@abelcallejo
abelcallejo / README.md
Last active January 31, 2021 23:13
Converting a shapefile with multiple features into independent GeoJSON files

Converting a shapefile with multiple features into independent GeoJSON files

GDAL JSON Terminal.app

Usage

bash /path/to/shp2geojson.sh /path/to/input.shp unique_column /path/to/output-dir

Parameters

@abelcallejo
abelcallejo / README.md
Last active June 15, 2021 01:01
ImageMagick Cheatsheet

ImageMagick Cheatsheet

Wizard performing magic with the Monalisa painting

Recoloring

convert grey.png -fill "#d7ccc8" -tint 100 brown.png
# or
convert grey.png -fill chocolate -tint 50 brown.png