Skip to content

Instantly share code, notes, and snippets.

View alx-alexpark's full-sized avatar

Alex Park alx-alexpark

View GitHub Profile
@LukeZGD
LukeZGD / amogufy.sh
Last active May 12, 2023 01:32
Script for QuadtreeAmogufier
#!/bin/bash
# Script for QuadtreeAmogufier
# https://github.com/snailcon/QuadtreeAmogufier
cd "$(dirname $0)"
if [[ $1 == clean ]]; then
rm -f audio.ogg in/*.png out/*.png
exit
@anirudhb
anirudhb / The Ultimate Discord Self-Botting Guide.md
Created March 24, 2020 02:57
The Ultimate Discord Self-Botting Guide

The Ultimate Discord Self-Botting Guide

assuming a frictionless kernel (Ubuntu Linux)

Steps:

  • Setup a [Docker][docker] container running [Ubuntu][ubuntu] and install [Discord][discord] on it
  • Setup [X][x11] permissions, so the container can connect to the running [X][x11] server.
  • Use [xdotool][xdotool] with a shell script to automate input events to [Discord][discord].
@AshikNesin
AshikNesin / react-file-upload.js
Created February 2, 2017 06:46
Simple React File Upload
import React from 'react'
import axios, { post } from 'axios';
class SimpleReactFileUpload extends React.Component {
constructor(props) {
super(props);
this.state ={
file:null
}