Skip to content

Instantly share code, notes, and snippets.

View torch2424's full-sized avatar
🥁
Makin' Beats

Aaron Turner torch2424

🥁
Makin' Beats
  • Oceanfront Online
  • Long Beach, CA
  • 11:10 (UTC -07:00)
View GitHub Profile
@torch2424
torch2424 / systemDAsUser.service
Last active May 6, 2024 18:12
Run a systemd service as a user
# How to create systemd services: http://neilwebber.com/notes/2016/02/10/making-a-simple-systemd-file-for-raspberry-pi-jessie/
# Digital ocean on a mongodb service: https://www.digitalocean.com/community/tutorials/how-to-install-mongodb-on-ubuntu-16-04
[Unit]
Description=Run SystemD as users
After=network.target
[Service]
Type=simple
User=[USER HERE]
WorkingDirectory=[USER HOME]
@torch2424
torch2424 / angularAnimateCssExperiment.html
Created May 4, 2017 04:54
An angular animate, and animate.css experiment with @MasterKale
<!DOCTYPE html>
<!-- HTML5 Hello world by kirupa - http://www.kirupa.com/html5/getting_your_feet_wet_html5_pg1.htm -->
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Hello...</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" type="text/css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js"></script>

Keybase proof

I hereby claim:

  • I am torch2424 on github.
  • I am torch2424 (https://keybase.io/torch2424) on keybase.
  • I have a public key ASBqkfcWRmJLpLeEyBk06pEvb3yP-YRH9XMysxtDtEbiQgo

To claim this, I am signing this object:

@torch2424
torch2424 / as-bind-article-snippet.js
Created January 4, 2020 04:54
Asbind announcment article JavaScript snipper
import { AsBind } from "as-bind";
const wasm = fetch("./path-to-my-wasm.wasm");
const asyncTask = async () => {
const asBindInstance = await AsBind.instantiate(wasm);
// You can now use your wasm / asbind instance!
const response = asBindInstance.exports.myExportedFunctionThatTakesAString(
"Hello World!"
@torch2424
torch2424 / as-bind-announcement-article.ts
Created January 4, 2020 04:56
as-bind announcement article assemblyscript snippet
// '../node_modules/as-bind/*' should be the relative path to this directory in your project
export * from "../node_modules/as-bind/lib/assembly/asbind.ts";
@torch2424
torch2424 / as-bind-announcement-article.sh
Created January 7, 2020 09:12
Entry point addition for the as-bind assemblyscript compiler step
asc ./node_modules/as-bind/lib/assembly/as-bind.ts your-entryfile.ts [...other cli options...]