Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module https://gist.github.com/tyjak/fc9b3cfc6d616fdc5df1718729d44d0f | |
go 1.20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bodyreplace | |
import ( | |
"bytes" | |
"io" | |
"net/http" | |
"regexp" | |
) | |
type Config struct { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# The script automates task creation in Taskwarrior using the title of the | |
# active window. It allows for tag extraction from the window title, annotation | |
# creation from text selection, and Taskwarrior option customization through | |
# command-line arguments. Errors are logged for debugging purposes, and | |
# notifications are provided for task creation success and failure. | |
# | |
# Exemple : task_add -a -t +cal due:2025-04-04T1700 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script serves as a Taskwarrior hook, automating the generation and | |
# sending of iCal events via email when tasks with specific criteria are | |
# modified or created. It extracts task details, such as title, due date, and | |
# annotations, then constructs an iCal event and sends it as an email | |
# attachment using Mutt. Optionally, it can append event details to a specified | |
# file. The script enhances Taskwarrior's functionality by seamlessly | |
# integrating task management with calendar events, streamlining task tracking | |
# and scheduling processes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
""" | |
This script allows you to automatically create tasks in Taskwarrior based on unread | |
emails fetched from an IMAP server. It fetches unread emails from a specified IMAP | |
server, parses the subject of each email, and creates a corresponding task in | |
Taskwarrior. | |
The script reads configuration parameters, such as IMAP server details, email address, | |
password command, IMAP folder, default project for tasks, and default tags for tasks, |
NewerOlder