Skip to content

Instantly share code, notes, and snippets.

View acuna-public's full-sized avatar
🎯
Focusing

Anton Tikhomirov acuna-public

🎯
Focusing
View GitHub Profile
@acuna-public
acuna-public / license-badges.md
Created April 10, 2019 07:47 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

@acuna-public
acuna-public / !wasmllvm.md
Created June 13, 2019 05:53 — forked from yurydelendik/!wasmllvm.md
Using WebAssembly in LLVM

NOTE: the content is out-of-date. All development is moved to the https://github.com/yurydelendik/wasmception

Using WebAssembly in LLVM

Compiling

# locations, e.g.
export WORKDIR=~/llvmwasm; mkdir -p $WORKDIR
export INSTALLDIR=$WORKDIR
@acuna-public
acuna-public / rc4.js
Created August 18, 2019 16:49 — forked from farhadi/rc4.js
RC4 encryption in javascript and php
/*
* RC4 symmetric cipher encryption/decryption
*
* @license Public Domain
* @param string key - secret key for encryption/decryption
* @param string str - string to be encrypted/decrypted
* @return string
*/
function rc4(key, str) {
var s = [], j = 0, x, res = '';
@acuna-public
acuna-public / ThinBTClient.java
Created September 16, 2022 15:02 — forked from shimondoodkin/ThinBTClient.java
android vibrate a vibrating bluetooth bracelet
/*
licence pubilc domain
prepered by Shimon Doodkin
vibrate a vibrating bluetooth bracelet
a simple bt client it sends "RING" AT command to a device named "BRACELET"
it is a good "android bluetooth client example".