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
// https://old.reddit.com/r/Strava/comments/hw7zh0/how_to_bulk_edit_shoes_on_your_activities/ | |
// Follow instructions above to get shoe ID | |
var shoe_id = 123456789 | |
// Open inline/quick edit for each activity | |
document.querySelectorAll('.quick-edit').forEach(b => b.click()) | |
// Unhide shoe selection if hidden due to it being "run-only" | |
var shoes = document.querySelectorAll('.shoe-id') | |
for (var i = 0; i < shoes.length; i++) { |
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
# /etc/default/ufw | |
# ufw default deny outgoing | |
# ufw default deny incoming | |
DEFAULT_INPUT_POLICY="DROP" | |
DEFAULT_OUTPUT_POLICY="DROP" | |
# Consider /etc/ufw/before.rules etc | |
$ ufw allow out 22/tcp | |
$ ufw allow out 53/udp | |
$ ufw allow out 80/tcp |
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
// console.log(p[0].children) | |
//var p = document.querySelectorAll("[class*=emojiItem]"); | |
// or console.log() stuff | |
// var a = window.open(""); | |
// emojiImage-123abc is used for server settings emoji | |
// emojiItem-123abc is used for the emoji picker, but can be tricky to filter out | |
// default emojis or just the emoji of the server you're in | |
var p = document.querySelectorAll("[class*=emojiImage]"); |
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
- hosts: all | |
connection: local | |
vars: | |
ask_become_pass: yes | |
tasks: | |
- name: Configure systemd to restart bluetooth service on resume | |
copy: | |
dest: /lib/systemd/system-sleep/bluetooth-resume | |
mode: 0755 | |
content: | |
Normal desktop:
$ grep -m 1 "model name" /proc/cpuinfo
model name : Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz
$ time vim -c q .vimrc
real 0m0.159s
user 0m0.120s
sys 0m0.004s
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
#!/usr/bin/env python3 | |
import logging | |
import sys | |
import sublog | |
logger = logging.getLogger() | |
# http://stackoverflow.com/a/24956305/1076493 |
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
# ./roles/foo/tasks/main.yml | |
- include: foo.yml | |
- include: foo.yml | |
become: yes | |
# ./roles/foo/tasks/foo.yml | |
- lineinfile: | |
dest: "~/.bashrc" # resolves '~' on runtime as any other command', unlike ansible_env.HOME | |
regexp: "^HISTSIZE=.*" | |
line: "HISTSIZE=10000" |
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
--- | |
- name: Check if service is installed | |
stat: | |
path: /etc/init.d/{{ item }} | |
register: services | |
with_items: | |
- apache2 | |
- mysql | |
- name: Disable autostart of services after installation |
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
- qemu/kvm 2.6 | |
- edk2.git/ovmf x64 20160728 | |
- libvirt-daemon 2.0.0 |
NewerOlder