-
Add
Enable=Sourceto /etc/bluetooth/audio.conf right after[General]. -
Find address in form XX:XX:XX:XX:XX:XX of phone with
hcitool scan. -
Pair and trust smartphone with
sudo bluez-simple-agent hci0 XX:XX:XX:XX:XX:XXandsudo bluez-test-device trusted XX:XX:XX:XX:XX:XX yes. -
Create loopback in pulseaudio connection bluetooth a2dp source with alsa sink:
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
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
| fix: | |
| /usr/libexec/git-core/git-rebase--interactive | |
| -git rev-list $merges_option --pretty=oneline --abbrev-commit\ | |
| +git rev-list $merges_option --pretty=">%h (%an <%ae>) %s"\ | |
| result: | |
| 1 pick 19f43c1 (Yuri Dyachenko <[email protected]>) add: gcrypt::noerr | |
| 2 pick 990a7e8 (Yuri Dyachenko <[email protected]>) add: gcrypt::throwif( err ) throw if err != noerr | |
| 3 pick cb03f3b (Yuri Dyachenko <[email protected]>) add: ext::move<T> move semantic |
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
| <?php | |
| /** | |
| * Plugin Name: Filename-based cache busting | |
| * Version: 0.3 | |
| * Description: Filename-based cache busting for WordPress scripts/styles. | |
| * Author: Dominik Schilling | |
| * Author URI: https://dominikschilling.de/ | |
| * Plugin URI: https://gist.github.com/ocean90/1966227/ | |
| * | |
| * License: GPLv2 or later |
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
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
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
| # By default the behavior is: | |
| # Primary monitor work as always and second monitor only have one and fixed workspace | |
| # I.e. you change to next workspace, primary monitor change to this workspace and second monitor remain as is. | |
| # The desired behaviour is: | |
| # Primary monitor and secondary monitor are linked workspace. | |
| # I.e. you change to next workspace, primary monitor change to this workspace and second monitor too. | |
| $ gconf-editor | |
| # Look for /desktop/gnome/shell/windows/workspaces_only_on_primary and set to false |
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" type="text/css"> | |
| <style type="text/css"> | |
| code { display: block; } | |
| pre { color: green; } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Balanced Sample - Collect Bank Account Information</h1> |
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 php | |
| <?php | |
| /** | |
| * CSSTidy - Command Line Interface (CLI) | |
| * | |
| * Command Line Interface that try to mimic as much as possible the C++ CLI | |
| * version of csstidy. It should be a drop in replacment for the C++ CLI that is | |
| * no longuer maintain. New settings like css_level are added. | |
| * | |
| * Copyright 2005, 2006, 2007 Florian Schmitz |