-
Add
Enable=Source
to /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:XX
andsudo bluez-test-device trusted XX:XX:XX:XX:XX:XX yes
. -
Create loopback in pulseaudio connection bluetooth a2dp source with alsa sink:
This file contains 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
int rm_r(const char* e_path) | |
{ | |
DIR *dir = opendir(e_path); | |
struct dirent *ent; | |
if (dir == NULL) | |
/* error while opening the directory */ | |
return -1; | |
/* DA MAGICKS */ |
This file contains 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
while sleep 1;do tput sc;tput cup 0 $(($(tput cols)-29));date;tput rc;done & |
This file contains 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
# A gksudo equivalent for Mac OS X | |
/usr/bin/osascript -e 'do shell script "make install" with administrator privileges' |
This file contains 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
using UnityEngine; | |
using System.Collections.Generic; | |
public class ClosureTest : MonoBehaviour { | |
public delegate void TestAction(); | |
void Start () { | |
Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>() { | |
{ "Foo" , new List<string>() { "Goo", "Hoo", "Ioo" } }, |
This file contains 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
# | |
# UnityYAMLMerge fallback file | |
# | |
# Modify the next two lines if scene or prefab files should fallback | |
# on other that the default fallbacks listed below. | |
# | |
# %l is replaced with the path of you local version | |
# %r is replaced with the path of the incoming remote version | |
# %b is replaced with the common base version |
This file contains 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 rc | |
dir=$home/Desktop | |
cd /tmp | |
printf 'Cloning Textual... ' | |
git clone -q 'https://github.com/Codeux-Software/Textual.git' | |
echo Done! | |
printf 'Cloning submodules... ' | |
cd Textual |
This file contains 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
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>yourserver.com</key> | |
<dict> | |
<!--Include to allow subdomains--> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
<!--Include to allow HTTP requests--> |
This file contains 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
#!/bin/sh | |
# If you are new to arch, I encourage you to at least read and understand what | |
# this script does befor blindley running it. | |
# That's why I didn't make a one-liner out of it so you have an easier time | |
# reading and understanding it :) | |
# | |
# This scripts purpose is purly to save you a few seconds on your new installation. | |
# | |
# Enjoy your time on an awesome system. Arch FTW! |
This file contains 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> | |
<meta name="viewport" content="width=670"> | |
<style> | |
body.battlescribe { | |
margin: 0px; | |
padding: 0px; | |
border-width: 0px; | |
} |
OlderNewer