Skip to content

Instantly share code, notes, and snippets.

Avatar

Marlon (Esolitos) Saglia esolitos

View GitHub Profile
@esolitos
esolitos / 0.DRCMD.README.md
Last active May 4, 2022 14:27
Drush command "executor" on alias pattern. Built for Wodby aliases naming standard, but can work on other setups.
View 0.DRCMD.README.md

DrCmd - DrushComander

drush command runner for Wodby aliases

0. Install

Save the file in /usr/local/bin/ (or anywhere else as long as it is in your $PATH) and verify that it is executable.

a. Right click on "Raw" button (for drcmd) and copy the URL.

View Bitbucket-to-Github.md

(Automatically) Move all repos from Bitbucket to Github

More info here: https://esolitos.com/items/2019/07/automatically-move-my-git-repositories-bitbucket-github

This simple pyhon script is buillt to help mirroring all your repositories from Bitbucket to Github, it is built for python 3.7 using Pipenv, pygithub, and pybitbucket.

If all goes fine you only need to run $ pipenv install, change the following parameters on top of the script and run it: $ pipenv run repository-migrate.py.

 APP_KEYS = {
@esolitos
esolitos / padlet-download.js
Created November 19, 2021 10:55
Download all images from padlet.com without clicking each one
View padlet-download.js
const down = function(img_url, name) {
fetch(img_url)
.then(resp => resp.blob())
.then(blob => {
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.style.display = 'none';
a.href = url;
// the filename you want
a.download = `img-${name}.jpg`
@esolitos
esolitos / oneliners.sh
Created November 11, 2021 14:39
Useful random bash stuff
View oneliners.sh
#
# Drupal 8+: Get installed module versions based on info.yml files
for yml in $(find web/modules/contrib -maxdepth 2 -type f -name '*.info.yml'); do grep -Hi 'version:' "$yml"; done;
#
# Composer: Get all drupal modules in lock file with relative version
jq -c '.packages[] | ({(.name): .version})' < composer.lock | grep --color '"drupal/'
@esolitos
esolitos / OUTDATED # Drupal + RamsaltMedia Settings
Last active February 19, 2020 13:46
OUTDATED # Devel settings for Drupal + RamsaltMedia platforms - MOVED to https://github.com/esolitos/drupal-utility
View OUTDATED # Drupal + RamsaltMedia Settings
This config assumes that:
- `platform.settings.php` is placed in the `sites/` directory
- you have a `sites/files` directory in your drupal installation.
- you have a `ramsalt` user that can access all your databases starting with `ramsalt_`
- the files on the "live" site are placed in the drupal's default directory: `sites/hostname.tld/files`
@esolitos
esolitos / aliases.zsh
Last active January 22, 2020 11:28
Aliases (WIP)
View aliases.zsh
#!/bin/zsh
-='cd -'
...=../..
....=../../..
.....=../../../..
......=../../../../..
1='cd -'
2='cd -2'
3='cd -3'
@esolitos
esolitos / generate-openvpn-client-ip.sh
Created October 28, 2019 09:30
Script to generate static IP for the open vpn clients based on a bind dns zone file.
View generate-openvpn-client-ip.sh
#!/bin/sh
#
# Generates client config files for the server based on DNS zone
#
# Version: 1.0
# Date: 2018-07-21
#
DNS_DOMAIN=mydomain.esolitos.com
DNS_ZONE_FILE=/etc/bind/master/$DNS_DOMAIN
@esolitos
esolitos / Readme.md
Last active October 17, 2019 14:17
Simple drupal module for drush scripts to re-save all the ndoes
View Readme.md

This module simply loads and saves the nodes, it increases by 1 second the creation date and by only 5 the "last updated" on nodes.

Version: 1.3

View statusCakeSetAllEULocations.js
// This must be run in the "Bulk edit" _after_ the search for tests has been done.
// Step 1: Manually create _a lot_ of "SET OPTIONS" (just leave them empty)
// MANUAL
// Step 2: Run in JS console: Sets all options to "Test Locations"
jQuery('#options select[name^="o_option_"] option[value="RegionCodes"]').attr('selected', true);
jQuery('#options select[name^="o_option_"]').trigger('change');
// Step 3: Run in JS console: Sets all 1st level options to "Europe"
@esolitos
esolitos / gist:0c6e8d7a8658a48c1c6bd21210af07ca
Created August 12, 2019 12:57
kubectl force pod rotations
View gist:0c6e8d7a8658a48c1c6bd21210af07ca
kubectl get po --all-namespaces --selector=name=varnish -o jsonpath='{range .items[*]}{@.metadata.namespace}{" "}{@.metadata.name}{"\n"}{end}' | xargs -n2 -- sh -c 'kubectl -n $1 delete po $2' sh