Skip to content

Instantly share code, notes, and snippets.

View JadedTuna's full-sized avatar

Victor JadedTuna

  • Sweden
View GitHub Profile
@JadedTuna
JadedTuna / octal_x86.txt
Created March 21, 2021 14:16 — forked from seanjensengrey/octal_x86.txt
x86 is an octal machine
# source:http://reocities.com/SiliconValley/heights/7052/opcode.txt
From: mark@omnifest.uwm.edu (Mark Hopkins)
Newsgroups: alt.lang.asm
Subject: A Summary of the 80486 Opcodes and Instructions
(1) The 80x86 is an Octal Machine
This is a follow-up and revision of an article posted in alt.lang.asm on
7-5-92 concerning the 80x86 instruction encoding.
The only proper way to understand 80x86 coding is to realize that ALL 80x86
@JadedTuna
JadedTuna / meta-tags.md
Created January 5, 2019 14:01 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@JadedTuna
JadedTuna / terminal-clock.py
Created February 14, 2017 23:40
(Revised) Code for my old terminal clock program
# -*- coding: utf-8 -*-
from time import sleep
from os import system, name
from datetime import datetime
def clear():
if name == "nt":
system("cls")
else:
system("clear")
@JadedTuna
JadedTuna / download-slide-puzzle.py
Created August 29, 2014 14:58
A small script to download and unzip slide-puzzle
import urllib
link = "https://github.com/Vik2015/slide-puzzle/archive/v1.0.zip"
print "Downloading v1.0..."
urllib.urlretrieve(link, "puzzle.zip")
print "Unpacking..."
import zipfile
with zipfile.ZipFile("puzzle.zip", "r") as zp:
zp.extractall(".")