Skip to content

Instantly share code, notes, and snippets.

View auser's full-sized avatar

Ari auser

View GitHub Profile
@auser
auser / clone-all.sh
Created December 19, 2023 16:55 — forked from zeekay/clone-all.sh
#!/usr/bin/env sh
repos='bridge bridge-react chat cli coreth dao docs exchange explorer faucet finance gsn indexer lattice lpm luxjs marketplace multiparty netrunner netrunner-sdk node oraclevm plugins-core safe safe-ios sites standard subnet-evm town ui vault vmsdk wallet zchain'
for r in $repos;
do git clone git@github.com:luxdefi/$r
done
import React, { Component } from 'react';
import {
Text,
View,
TouchableOpacity,
ActivityIndicator,
Navigator
} from 'react-native';
import {GoogleSignin} from 'react-native-google-signin';
import Firestack from 'react-native-firestack'
@auser
auser / tutorial.txt
Created June 23, 2021 14:45 — forked from JamesMenetrey/tutorial.txt
PwnTools; example of usage
Source: https://tc.gts3.org/cs6265/2017/l/lab04/README-tut.txt
====================================
Lec04: Writing Exploits with PwnTool
====================================
http://docs.pwntools.com/
http://docs.pwntools.com/en/stable/intro.html
@auser
auser / gist:c25f0fb8e6e632d9d69a1a93601204c5
Created March 24, 2020 15:47 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@auser
auser / web3-solc-contract-compile-deploy.js
Created March 2, 2018 20:18 — forked from tomconte/web3-solc-contract-compile-deploy.js
Compiling and deploying an Ethereum Smart Contract, using solc and web3.
const fs = require('fs');
const solc = require('solc');
const Web3 = require('web3');
// Connect to local Ethereum node
const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
// Compile the source code
const input = fs.readFileSync('Token.sol');
const output = solc.compile(input.toString(), 1);
@auser
auser / rename.sh
Created December 29, 2016 09:42 — forked from nerdyworm/rename.sh
rename a phoenix project
#!/bin/bash
set -e
CURRENT_NAME="CurentName"
CURRENT_OTP="current_name"
NEW_NAME="NewName"
NEW_OTP="new_name"
----------
State: - cmd
Name: /tmp/SumoCollector_linux_amd64_19_47-5.sh
Function: script
Result: False
Comment: An exception occurred in this state: Traceback (most recent call last):
File "/usr/lib/pymodules/python2.7/salt/state.py", line 1238, in call
*cdata['args'], **cdata['kwargs'])
File "/usr/lib/pymodules/python2.7/salt/states/cmd.py", line 630, in script
run_check_cmd_kwargs, onlyif, unless, group
@auser
auser / postgres.sls
Created February 11, 2013 20:04 — forked from rca/postgres.sls
postgresql:
pkg.installed:
- pkgs:
- libpq5
- postgresql-client-9.2
- postgresql-9.2
- require:
- cmd.run: add_postgresql_apt_key
- file.managed: {{ pg_list }}
- file.managed: {{ pg_pref }}
@auser
auser / postgres.sls
Created February 11, 2013 19:36 — forked from rca/postgres.sls
postgresql:
pkg:
- installed
- name: postgresql-9.2
service:
- running
- require:
- pkg: postgresql-9.2
@auser
auser / snow.html
Created November 27, 2010 23:36 — forked from pelf/snow.html
<!DOCTYPE html>
<head>
<title>Snow</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script src="snow.js" type="text/javascript"/></script>
</head>
<body onload="init();">
<canvas id="bgcanvas" width="410" height="316" style="position:absolute;z-index:2"></canvas>
<img src="globe_layers_2.png" style="position:absolute;z-index:3">
<canvas id="fgcanvas" width="410" height="316" style="position:absolute;z-index:4"></canvas>