I hereby claim:
- I am pookdeveloper on github.
- I am pookdeveloper (https://keybase.io/pookdeveloper) on keybase.
- I have a public key ASC18mPD8Y9Lt3Y32z0Gx1wmPIJBIATTU9GHqXwqLQd-Qgo
To claim this, I am signing this object:
| /** | |
| * Google Apps Script to automate tasks in Todoist. | |
| * | |
| * Goal: | |
| * 1. List all active tasks **ONLY from the Inbox**. | |
| * 2. Assign today’s date to Inbox tasks that have no due date. | |
| * 3. Note: The delete function is included, but the REST API V2 does NOT | |
| * allow automatic listing of completed (archived) tasks for deletion. | |
| * The script can only handle active tasks. | |
| */ |
| // ==UserScript== | |
| // @name New Userscript | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-01-06 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.strava.com/dashboard* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=strava.com | |
| // @grant none | |
| // ==/UserScript== |
| #!/usr/bin/env fish | |
| function git-delete-branches | |
| # Ensure a regex argument is provided | |
| if test (count $argv) -lt 1 | |
| echo "Usage: git-delete-branches '<regex>'" | |
| return 1 | |
| end | |
| set -l regex $argv[1] |
| # Git alias ⬇️ | |
| [alias] | |
| nah = "!f(){ git reset --hard; git clean -df; if [ -d ".git/rebase-apply" ] || [ -d ".git/rebase-merge" ]; then git rebase --abort; fi; }; f" | |
| # Bash function ⬇️ | |
| nah () { | |
| git reset --hard | |
| git clean -df | |
| if [ -d ".git/rebase-apply" ] || [ -d ".git/rebase-merge" ]; then | |
| git rebase --abort |
| // ==UserScript== | |
| // @name Strava Auto Kudos | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Automatically like Strava posts. | |
| // @author You | |
| // @match https://www.strava.com/dashboard | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=strava.com | |
| // @grant none | |
| // ==/UserScript== |
| window.devtoolsFormatters = [{ | |
| header: function(obj) { | |
| if(!obj.__format){ | |
| return null | |
| } | |
| delete obj.__format; | |
| return ['div', {}, `${JSON.stringify(obj, null, 2)}`] | |
| }, | |
| hasBody: function(){ | |
| return false; |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| 'use strict'; | |
| module.exports = function (Examplemodel) { | |
| var app = require('../../server/server'); | |
| var seguridad = require('../seguridad/seguridad'); | |
| var utilidades = require('../utilidades/utilidades'); | |
| // Override the method create for model | |
| Examplemodel.once('attached', function () { |
| import "reflect-metadata"; | |
| import { createConnection, getManager } from "typeorm"; | |
| import { resolve } from 'path'; | |
| var document: any; | |
| const fs = require('fs-extra') // this is no longer necessary | |
| const hbs = require('handlebars'); | |
| const path = require('path'); |