-
ARandR: Another XRandR GUI (https://christian.amsuess.com/tools/arandr/)
-
Balena Etcher - Flash OS images to SD cards & USB drives, safely and easily (https://github.com/balena-io/etcher)
-
Bat - A cat(1) clone with syntax highlighting and Git integration (https://github.com/sharkdp/bat)
-
Bluetooth battery indicator (https://extensions.gnome.org/extension/3991/bluetooth-battery/)
-
Castnow - command-line utility that can be used to play back media files on your Chromecast device (https://github.com/xat/castnow)
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 bash | |
| # Simple Spotify Control | |
| # Just call ./spotify_control --help | |
| # Source: https://community.spotify.com/t5/Desktop-Linux/Linux-keyboard-shortcuts/td-p/1626394 | |
| CMD="dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player" | |
| case "$1" in | |
| "playpause" ) |
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
| git status -s | cut -c4- | xargs rm -r |
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
| # RubyMine | |
| .idea/ | |
| # Vagrantfile | |
| Vagrantfile | |
| # docker-sync | |
| .docker-sync/ | |
| docker-sync.yml | |
| docker-compose.local-development.yml |
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
| # Author: James Healy (https://twitter.com/jim_healy) | |
| #!/bin/bash | |
| $@ | |
| while [ $? -eq 0 ]; do | |
| $@ | |
| 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
| { | |
| "editor.cursorBlinking": "solid", | |
| "editor.fontSize": 13, | |
| "editor.renderWhitespace": "all", | |
| "files.autoSave": "afterDelay", | |
| "files.autoSaveDelay": 500, | |
| "files.defaultLanguage": "markdown", | |
| "workbench.editor.enablePreview": false, | |
| "ruby.lint": { | |
| "ruby": true |
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
This is a backup copy from a tweetstorm from Stephanie Hurlburt (https://twitter.com/sehurlburt), for easier consultation (instead of going to Twitter and trying to find it).
Here's the link to the original tweet: https://twitter.com/sehurlburt/status/921921604140937216
“Why isn’t someone using my software product or open source tool? It’s good!”
A checklist for you:
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
| class CleanupAllApartmentData | |
| def self.call(schema_ary = []) | |
| ar_conn = ActiveRecord::Base.connection | |
| schema_ary.each do |schema| | |
| Apartment::Tenant.switch!(schema) | |
| ar_conn.disable_referential_integrity do | |
| ar_conn | |
| .tables | |
| .map { |table| "DELETE FROM #{ar_conn.quote_table_name(table)}" } |
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
| { | |
| "editor.cursorBlinking": "solid", | |
| "editor.fontSize": 13, | |
| "editor.renderWhitespace": "all", | |
| "files.autoSave": "afterDelay", | |
| "files.autoSaveDelay": 500, | |
| "workbench.editor.enablePreview": false, | |
| "workbench.fontAliasing": "antialiased", | |
| "ruby.lint": { | |
| "ruby": true |