Skip to content

Instantly share code, notes, and snippets.

View rimuutoguzhan's full-sized avatar
🎯
Focusing

Oğuzhan Subaşı rimuutoguzhan

🎯
Focusing
View GitHub Profile
@Venryx
Venryx / AndroidManifest.xml
Last active October 8, 2025 03:18
Record audio on Android in the background (even when screen is off)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myapp">
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
<service android:name=".ForegroundService" android:enabled="true" android:exported="true"></service>
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
@beilly
beilly / FakeX509TrustManager.java
Last active September 11, 2019 15:17
Volley Stack with default HttpsURLConnection, and it will trusting all certificates
package com.beilly.utils.net;
import android.content.Context;
import java.io.IOException;
import java.io.InputStream;
import java.security.KeyManagementException;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
@ttran4040
ttran4040 / pinterest_v3
Created April 1, 2015 21:07
Pinterest V3 User & Board Pins
Pin for a specific Board:
https://api.pinterest.com/v3/pidgets/boards/{user_id}/{board}/pins/
Pin for a specific User:
http://api.pinterest.com/v3/pidgets/users/{user_id}/pins/