Skip to content

Instantly share code, notes, and snippets.

View Nazmul56's full-sized avatar
🎯
Focusing

Nazmul Haque Nazmul56

🎯
Focusing
View GitHub Profile
/*created by Mostafa Zaghloul with a helper library called RedBot.h you can find
* it on this link https://github.com/sparkfun/RedBot
*--------------------------- thanks a million ---------------------------------
*you can find me on
*FaceBook::https://www.facebook.com/mostafa.zaghlol3
*Twitter::https://twitter.com/Mostafazaghlul
*to Contact for hardware or software questions
*/
#include <RedBot.h>
@vivek1794
vivek1794 / WebRtcActivity.java
Last active April 8, 2020 18:45
A sample webrtc intro activity
package xyz.vivekc.webrtccodelab;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import org.webrtc.AudioSource;
import org.webrtc.AudioTrack;
import org.webrtc.Camera1Enumerator;
import org.webrtc.Camera2Enumerator;
@zach-klippenstein
zach-klippenstein / ChangePassword.java
Last active April 3, 2024 18:04
The keystore password on Java keystore files is utterly pointless. You can reset it without knowing it, as shown by this code. Note that private keys are still secure, as far as I know. The JKS implementation is copyright Casey Marshall (rsdio@metastatic.org), and the original source is available at http://metastatic.org/source/JKS.java. I've in…
import java.util.*;
import java.io.*;
import java.security.*;
public class ChangePassword
{
private final static JKS j = new JKS();
public static void main(String[] args) throws Exception
{