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
0 HEAD | |
1 SOUR Alfredo Bensaúde | |
2 TITL La Vie de José Bensaúde | |
2 PUBL Porto, 1936 (French translation by Olivier Bensaúde, Paris 2000) | |
1 GEDC | |
2 VERS 5.5.1 | |
1 CHAR UTF-8 | |
0 @I1@ INDI | |
1 NAME José /Bensaúde/ |
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 | |
dbus-monitor --session "type='signal',interface='org.freedesktop.ScreenSaver'" | while read -r line; do | |
if echo "$line" | grep -q "boolean true"; then | |
balooctl resume | |
elif echo "$line" | grep -q "boolean false"; then | |
balooctl suspend | |
fi | |
done |
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
import sys | |
import os.path | |
from csv import reader | |
from geopy.geocoders import Nominatim | |
locator = Nominatim(user_agent="OSMF_survey") | |
inputfile = sys.argv[1] | |
base, ext = os.path.splitext(inputfile) | |
os.remove(base+"_reversed"+ext) if os.path.exists(base+"_reversed"+ext) else None |
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
' Taken from https://answers.microsoft.com/en-us/msoffice/forum/all/split-a-mail-merge-document-into-subdocuments/898e11ce-5d81-4ca1-a2a2-8ee86f5273b2?page=1 | |
Sub splitter() | |
' splitter Macro | |
' Macro created by Doug Robbins to save each letter created by a mailmerge | |
' as a separate file. | |
Dim Letters As Integer, Counter As Integer |
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 is called by udev when you link a bluetooth device with your computer | |
# It's called to add or remove the device from pulseaudio | |
# | |
# | |
# Output to this file | |
LOGFILE="/var/log/bluetooth_dev" | |
# Name of the local sink in this computer |