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
# espanso configuration file | |
show_icon: false | |
show_notifications: false | |
# This is the default configuration file, change it as you like it | |
# You can refer to the official documentation: | |
# https://espanso.org/docs/ | |
# Matches are the substitution rules, when you type the "trigger" string | |
# it gets replaced by the "replace" string. | |
matches: |
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
echo $(($(curl "https://www.strava.com/api/v3/activities?per_page=200&after=1546300800&access_token=xxxx" -s | jq '[.[]|select(.commute == true)|.distance] | add') /1000)) | xargs printf '\n<2705> %5.0f km de velotaff\n' |
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
export PS1='\n\[\033[0;33m\]\u@\h ${PWD/#HOME/~}$(__git_ps1 " (%s)")\n→ \[\033[0m\]' |
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
<%@ page language="java" contentType="text/html;charset=UTF-8" %> | |
<%@ page import="org.apache.log4j.Level" %> | |
<%@ page import="org.apache.log4j.LogManager" %> | |
<%@ page import="org.apache.log4j.Logger" %> | |
<%@ page import="java.util.HashMap" %> | |
<%@ page import="java.util.Enumeration" %> | |
<%@ page import="java.util.Set" %> | |
<%@ page import="java.util.Arrays" %> | |
<% long beginPageLoadTime = System.currentTimeMillis();%> |