Skip to content

Instantly share code, notes, and snippets.

View wisehackermonkey's full-sized avatar
♨️
making computers sweat

Oran C wisehackermonkey

♨️
making computers sweat
View GitHub Profile
@wisehackermonkey
wisehackermonkey / index.html
Last active October 16, 2023 02:17
Example Tor File
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hackerman - Certified Badass</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
body {
@wisehackermonkey
wisehackermonkey / main.js
Created December 28, 2021 07:17
main.js
/*Helper functions
By Wisemonkey
github.com/wisehackermonkey
08/03/17
libraray of function
for easy that i use all the
time
{
"meta": {
"theme": "spartan"
},
"basics": {
"name": "Oran Collins",
"label": "Hardstack Developer",
"image": "https://i.imgur.com/kDm2Xrg.jpg",
"summary": "Career opportunities to utilize my growing skills and passion in Software Development, Robotics and Product Design",
"website": "http://www.orancollins.com",

how to run ghost docker

docker run -d --name ghost-blog -v ./:/var/lib/ghost/content ghost

@wisehackermonkey
wisehackermonkey / README.md
Last active January 16, 2021 03:59
how to install ROS 2 on raspberry pi RPi 2 Model B (armv7l) 2021
background: #222;
color: #bada55;
font-size: 100px;
background: url('https://bit.ly/3ne3gaQ') 0 0;
animation: blinker 1s linear infinite;
opacity: 0;
/* blink {
animation: blinker 0.6s linear infinite;
color: #1c87c9;
}
@wisehackermonkey
wisehackermonkey / MindMap_TSS_brainstorm_shellhacks_2020_hackathon_v1.md
Last active September 25, 2020 23:07
MindMap TSS brainstorm shellhacks 2020 hackathon v1
@wisehackermonkey
wisehackermonkey / Photo_shop_automation.md
Created September 21, 2020 20:39
How to automate photoshop
@wisehackermonkey
wisehackermonkey / research-zmq.md
Last active July 30, 2020 18:51
Research into what zmq is

Zmq

ZeroMQ

looks like its similar to mqtt but faster and more flexiable written in c/c++, and supports bindings in python (most docs are in c++) does not require a server

Frames

  • frames are (message parts) blocks of data with specific length. has garente of being recieved at the other end
@wisehackermonkey
wisehackermonkey / detect_program_lang.md
Created July 16, 2020 18:51
how to detect python, java, c programming languages using regex

hacker rank example

function trim(s){ 
  return ( s || '' ).replace( /^\s+|\s+$/g, '' ); 
}
function processData(input) {
            input = trim(input)

    var split = input.split('\n');
 split.shift();