Skip to content

Instantly share code, notes, and snippets.

View ii64's full-sized avatar
🏫
College Student

Maple ii64

🏫
College Student
View GitHub Profile
@ii64
ii64 / acrordrc2020.pol
Created March 10, 2023 12:21 — forked from N0rbert/acrordrc2020.pol
PlayOnLinux script to install Adobe Acrobat Reader DC 2020 (should be lauched after installation using script for 2015)
#!/usr/bin/env playonlinux-bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="4.0.3"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
@ii64
ii64 / install_waydroid.sh
Created August 27, 2022 14:48 — forked from cniw/install_waydroid.sh
Install Waydroid on unsupported Debian based distro caused by incompatible python3-gbinder package
#!/bin/bash
# script name: install_waydroid.sh
# description: Install Waydroid on unsupported Debian based distro caused by incompatible python3-gbinder package
# related to : https://github.com/waydroid/waydroid/issues/214#issuecomment-1120926304
# author : Wachid Adi Nugroho <wachidadinugroho.maya@gmail.com>
# date : 2022-07-07
export distro=$(grep -oP '(?<=^NAME=).*' /etc/os-release)
if [[ -f /usr/bin/dpkg ]];
@ii64
ii64 / jni_all.h
Created August 24, 2022 06:54 — forked from Jinmo/jni_all.h
Useful when reversing JNI on IDA Pro
/*
* Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
@ii64
ii64 / main.go
Created January 5, 2022 17:31 — forked from tembleking/main.go
Prometheus Golang Example
package main
import (
"fmt"
"log"
"math/rand"
"net/http"
"time"
"github.com/prometheus/client_golang/prometheus"
@ii64
ii64 / calendar.js
Created June 27, 2021 10:49 — forked from fzn0x/calendar.js
JS Console Calendar
let th = {"Su":[],"Mo":[],"Tu":[],"We":[],"Th":[],"Fr":[],"Sa":[]};
const tk = Object.keys(th);
const now = new Date();
const month = new Date(now.getFullYear(), now.getMonth()+1, 0);
const daysInMonth = month.getDate();
let moI = month.getDay()-1;
// fill days before
for (let i = 0; i < moI; i++) {
@ii64
ii64 / fridanotes.md
Created May 15, 2020 08:13 — forked from elevenchars/fridanotes.md
My notes on injecting a frida gadget into an apk
@ii64
ii64 / encoding-video.md
Created April 25, 2020 23:35 — forked from Vestride/encoding-video.md
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus