<%* let day = tp.date.now("ddd") if (day !== "Sun" && day !== "Sat") { -%>
- Daily
- 15m <%* if (day === "Thu") { -%>
- Sprint review / SP2 / Backlog refinement
// Reference coordinates | |
const referencePoint = { lat: 45.61875, lon: 11.84679 }; | |
// List of coordinates with their names | |
const locations = [ | |
{ name: "Annone Veneto", lat: 45.794099, lon: 12.683527 }, | |
{ name: "Campagna Lupia", lat: 45.355824, lon: 12.096281 }, | |
{ name: "Campolongo Maggiore", lat: 45.322842, lon: 12.0450839 }, | |
{ name: "Camponogara", lat: 45.383409, lon: 12.072398 }, | |
{ name: "Caorle", lat: 45.5948518, lon: 12.8707962 }, |
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Format with IntelliJ", | |
"type": "shell", | |
"command": "sh \"/Applications/IntelliJ IDEA.app/Contents/bin/format.sh\" ${file}", | |
"problemMatcher": [], | |
"presentation": { | |
"reveal": "silent", |
// Auto image downloader | |
// Author: Baccega Sandro | |
// 1) Fill the constants values: OUTPUT_FOLDER, URLS | |
// 2) Run using node | |
const fs = require("fs"); | |
const request = require("request"); | |
const OUTPUT_FOLDER = "output"; |
# My Fish configuration | |
# Author: Baccega Sandro | |
# --- Functions replacements | |
# Extra ls functions using exa | |
function ls | |
lsd $argv | |
end |
{ | |
"Working Directory" : "\/Users\/sbg", | |
"Prompt Before Closing 2" : false, | |
"Selected Text Color" : { | |
"Red Component" : 0.19215686619281769, | |
"Color Space" : "sRGB", | |
"Blue Component" : 0.23137255012989044, | |
"Alpha Component" : 1, | |
"Green Component" : 0.21176470816135406 | |
}, |
# My starship configuration | |
# Author: Baccega Sandro | |
command_timeout = 10000 | |
[python] | |
detect_extensions = ["py", "ipynb"] | |
# Using custom conda module that activates only in python repositories | |
[conda] |
// Auto indexers importer from Jackett to Sonarr/Radarr | |
// Author: Baccega Sandro | |
// 1) Fill the constants values: JACKETT_API_KEY, SONARR_RADARR_API_KEY, JACKETT_CONFIG | |
// 2) Copy this code and run it on Sonarr/Radarr's a browser window's console | |
(async function () { | |
const JACKETT_HOST_PORT = "PUT_JACKETT_HOST_PORT"; // Example: 192.168.1.10:9117 | |
const JACKETT_API_KEY = "PUT_JACKETT_API_KEY_HERE"; |