" ] *" ""
Using full-width space.
| body .octicon { | |
| display: inline-block; | |
| fill: currentColor; | |
| vertical-align: text-bottom; | |
| } | |
| body .anchor { | |
| float: left; | |
| line-height: 1; | |
| margin-left: -20px; |
" ] *" ""
Using full-width space.
| require 'capybara' | |
| require 'selenium-webdriver' | |
| Capybara.register_driver :chrome do |app| | |
| Capybara::Selenium::Driver.new(app, browser: :chrome) | |
| end | |
| Capybara.register_driver :headless_chrome do |app| | |
| capabilities = Selenium::WebDriver::Remote::Capabilities.chrome( | |
| chromeOptions: { args: %w[headless disable-gpu] } |
| set PATH $PATH /home/linuxbrew/.linuxbrew/bin | |
| test $TERM != "screen"; and exec tmux | |
| source ~/.asdf/asdf.fish | |
| alias pbcopy='xclip -selection c' | |
| alias pbpaste='xclip -selection c -o' |
| [Desktop Entry] | |
| Name=KeePassXC | |
| Comment=KeePass Cross-Platform Community Edition | |
| Exec="/home/y/AppImage/KeePassXC-2.4.1-x86_64.AppImage" %U | |
| Terminal=false | |
| Type=Application | |
| Icon=/home/y/AppImage/keepassxc.png | |
| TryExec=/home/y/AppImage/KeePassXC-2.4.1-x86_64.AppImage |
https://github.com/corona6/joplinclean
curl -O https://gist.githubusercontent.com/corona6/509264be060015d293c8d292e4637a72/raw/joplin_clean_up.sh
chmod +x joplin_clean_up.sh
javascript:void function%28%29%7bhref%3dlocation%2ehref%3bvar a%3ddocument%2ecreateElement%28"a"%29%3ba%2ehref%3dhref%3bvar a%3dnew Blob%28%5b%27<base href%3d"%27%2ba%2eprotocol%2b"%2f%2f"%2ba%2ehostname%2b%27">%27%2bdocument%2edocumentElement%2eouterHTML%2b"> "%2blocation%2ehref%5d%29%2ca%3d%28window%2eURL%7c%7cwindow%2ewebkitURL%29%2ecreateObjectURL%28a%29%2cb%3ddocument%2ecreateElement%28"a"%29%3bb%2edownload%3ddocument%2etitle%2b"%2ehtml"%3bb%2ehref%3da%3bb%2eclick%28%29%7d%28%29%3b
| require 'capybara' | |
| require 'capybara/poltergeist' | |
| # create session | |
| Capybara.javascript_driver = :poltergeist | |
| options = { js_errors: false, timeout: 180, phantomjs_logger: StringIO.new, logger: nil, phantomjs_options: ['--load-images=no', '--ignore-ssl-errors=yes'] } | |
| Capybara.register_driver(:poltergeist) do |app| | |
| Capybara::Poltergeist::Driver.new app, options | |
| end | |
| session = Capybara::Session.new(:poltergeist) |