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
pacmd list-sinks | grep name: | |
pacmd load-module module-remap-sink sink_name=mono master=<name_of_audio sink_given_by_previous_command> channels=2 channel_map=mono,mono | |
speaker-test -c 2 -t sine |
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 requests | |
import bs4 | |
my_recipes = 'https://cookidoo.fr/organize/fr-FR/my-recipes' | |
book = 'https://cookidoo.fr/organize/fr-FR/api/bookmark' | |
cookies = 'XXX' | |
while True: | |
print("===") | |
r = requests.get(my_recipes, headers={'Cookie': cookies}) |
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
// IMPORTANT: Start your code on the 2nd line | |
var {classes:Cc,interfaces:Ci,utils:Cu} = Components; | |
/* set new tab page */ | |
try { | |
Cu.import("resource:///modules/AboutNewTab.jsm"); | |
var newTabURL = "/Users/....startpages/index.html"; | |
AboutNewTab.newTabURL = newTabURL; | |
} catch(e){Cu.reportError(e);} // report errors in the Browser Console |
OlderNewer