Skip to content
View 0x1F602's full-sized avatar
  • International Space Station

Block or report 0x1F602

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. remaster.sh remaster.sh Public

    Remaster an Ubuntu ISO from Ubuntu 14.04+

    Shell 2 2

  2. simpleluks.sh simpleluks.sh
    1
    #!/bin/sh
    2
    COMMAND=$1
    3
    FILENAME=$2
    4
    FILESIZE=$3
    5
    usage() {
  3. fizzbuzz.asm fizzbuzz.asm
    1
    ; to compile and run:
    2
    ; nasm -f elf64 -l fizzbuzz.lst fizzbuzz.asm
    3
    ; gcc -o fizzbuzz fizzbuzz.o
    4
    ; ./fizzbuzz
    5
    
                  
  4. compare_wifi.rb compare_wifi.rb
    1
    #!/usr/bin/env ruby
    2
    require 'rubygems'
    3
    require 'json'
    4
    require 'pony'
    5
    require 'text-table'
  5. Intercept AJAX Tampermonkey Script Intercept AJAX Tampermonkey Script
    1
    (function() {
    2
        'use strict';
    3
    XMLHttpRequest.prototype.realOpen = XMLHttpRequest.prototype.open;
    4
    var myOpen = function(method, url, async, user, password) {
    5
        console.log('h00ked', url);
  6. amzn - ebay arbys amzn - ebay arbys
    1
    const Xray = require('x-ray');
    2
    const xray = Xray();
    3
    const Promise = require('promise');
    4
    const request = require('request');
    5
    const numeral = require('numeral');