View VSCodeSettings
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
test |
View android_use_static_webrtc.diff
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
From 9925be8afd008325875a0b131ac51f4353564ba6 Mon Sep 17 00:00:00 2001 | |
From: Piasy <xz4215@gmail.com> | |
Date: Wed, 11 Sep 2019 16:37:19 +0800 | |
Subject: [PATCH] Android: disable in-tree libc++ | |
--- | |
config/android/BUILD.gn | 38 +++++++++++++++++++++++++++++++++++--- | |
config/c++/c++.gni | 2 +- | |
2 files changed, 36 insertions(+), 4 deletions(-) |
View install_ffmpeg.sh
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
brew options ffmpeg | |
brew install ffmpeg \ | |
--with-chromaprint \ | |
--with-fdk-aac \ | |
--with-fontconfig \ | |
--with-freetype \ | |
--with-frei0r \ | |
--with-game-music-emu \ | |
--with-libass \ |
View ProducerTest.java
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
import java.util.Random; | |
import java.util.concurrent.TimeUnit; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import java.util.concurrent.atomic.AtomicReference; | |
import org.junit.Test; | |
import rx.Emitter; | |
import rx.Observable; | |
import rx.Producer; | |
import rx.Subscriber; | |
import rx.Subscription; |
View AndroidManifest.xml
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.github.piasy.mockitodexmakerbug"> | |
<application | |
android:theme="@style/Theme.AppCompat" | |
> | |
<activity android:name=".MyActivity"/> | |
</application> | |
</manifest> |
View Mac OSX NTFS Writable
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/bash | |
checkExisting(){ | |
echo "Checking if already existing device on file..." | |
while read fileLine; do | |
if [ "$line" = "$fileLine" ]; then | |
echo "[WARNING] Device already initialized on this system. Nothing to do here" |
View build1.gradle
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
... | |
buildscript { | |
... | |
dependencies { | |
... | |
classpath "com.github.piasy:okbuck-gradle-plugin:1.0.0-beta8" | |
} | |
} | |
... | |
apply plugin: 'com.github.piasy.okbuck-gradle-plugin' |
View .gitignore
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
# buck & OkBuck | |
/buck-out/ | |
/.buckd/ | |
/.okbuck/ |
View NonRxAmplitudeAPI.java
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
public synchronized int getMaxAmplitude(); |
View AndroidManifest.xml
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
<uses-permission android:name="android.permission.READ_CONTACTS"/> |
NewerOlder