server certificate verification failed. CAfile: /etc/ssl/certs/cacertificates.crt CRLfile: none
Run this commands to update the root certificates of your system:
apt update
// ==UserScript== | |
// @name Hide Closed subtask in Jira tickets | |
// @namespace c238 | |
// @version 1.0.0 | |
// @description Hide the closed sub task on a ticket subtask list on page load, and also fix the "Show Open" button. | |
// @author Lucas Dasso <[email protected]> | |
// @updateURL https://gist.github.com/Lukas238/19ac150cfe0701739070e26daad55a23/raw/hide_closed_subtask_in_jira_tickets.user.js | |
// @downloadURL https://gist.github.com/Lukas238/19ac150cfe0701739070e26daad55a23/raw/hide_closed_subtask_in_jira_tickets.user.js | |
// @match https://jira.*.com/browse/* | |
// @grant GM_addStyle |
// ==UserScript== | |
// @name SFMC - Click Activity/Link View download as CSV file button. | |
// @namespace https://www.vml.com/es/argentina | |
// @version 1.0.1 | |
// @description This user scripts add a convenient download as CVS button to SFMC "Click Activity/Link View" under Tracking Reports page in Email Studio. | |
// @author Lucas Dasso - https://github.com/Lukas238 | |
// @match *.exacttarget.com/*/LinksListing.aspx | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=exacttarget.com | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js | |
// ==/UserScript== |
// ==UserScript== | |
// @name Show links status | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1.0 | |
// @description try to take over the world! | |
// @author Lucas Dasso | |
// @updateURL https://gist.github.com/Lukas238/ffdbd06a5fd156c6a0027e9e703b0198/raw/show_links_status.user.js | |
// @downloadURL https://gist.github.com/Lukas238/ffdbd06a5fd156c6a0027e9e703b0198/raw/show_links_status.user.js | |
// @match https://view.enews.united.com/?qs=* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=united.com |
# Run Prettier formater on all `.json`files on folder from the CLI | |
``` | |
npx prettier --write "src/test/**/*.json" | |
``` |
#!/bin/bash | |
# This script will dump the DB to file. | |
# Replace DB_USER, DB_PASS, and DB_NAME with your data base user, password and name. | |
# Mind the lack of gap apfter the `-p` argument. :) | |
# To run it use `sh do_backup.sh` | |
mysqldump -u DB_USER -pDB_PASS DB_NAME --skip-comments --host localhost > db_backup/db_backup.sql |
<?php | |
/** | |
* This script will list all modified/untracked/deleted git files, with their relative path, | |
* and add them to a commit group until the group pass 25mb in size, and then will push it. | |
* | |
* To run this script on the repository root folder by using this command `php gitbackup.php`. | |
* | |
* Requirements: PHP need to be able to run `exec`. | |
*/ |
The git (starting with git version 2.10) configuration core.sshCommand
allow to pass arbitrary options to the SSH command, used on git pull
, git fetch
, and git push
.
Using this configuration, we can pass a custom path to a ssh key, as well as a know_host file and or ssh .config
file.
This is usefull in situations where you can run git commands from the shell, but do not have root access, like a exec()
command executed from a PHP page.
[core]
// ==UserScript== | |
// @name Basic GUI improvements for Trello boards | |
// @description This add basic GUI improvements for Trello boards, like display cards ID. | |
// @namespace https://c238.com.ar/ | |
// @updateURL https://gist.github.com/Lukas238/bf95a626ceb97346034e48851456ccec/raw/better_trello_gui.user.js | |
// @downloadURL https://gist.github.com/Lukas238/bf95a626ceb97346034e48851456ccec/raw/better_trello_gui.user.js | |
// @version 0.2 | |
// @author Lucas Dasso <[email protected]> | |
// @match http*://trello.com/b/* | |
// @icon https://www.google.com/s2/favicons?domain=trello.com |