Skip to content

Instantly share code, notes, and snippets.

View isakulaksiz's full-sized avatar
💭
it is what it is

İsa Kulaksız isakulaksiz

💭
it is what it is
  • Halkbank
  • Istanbul, Turkey
  • 08:53 (UTC +03:00)
View GitHub Profile
@isakulaksiz
isakulaksiz / install.sh
Created May 5, 2022 06:09
Automatically install React and Node packages
#!/bin/bash
IP=$(hostname -I)
echo "Installation started"
install_node(){
sudo apt update -y
sudo apt upgrade -y
sudo apt install -y chromium-browser
@DrBrad
DrBrad / AES Example
Created February 9, 2019 08:56
AES Encryption
import android.util.Base64;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.KeySpec;
import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.IvParameterSpec;