This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Strip autocomplete attributes | |
// @namespace david0 | |
// @version 0.1 | |
// @description This plugin gives the control about your passwords back to your browser and allows the browser to store every password. | |
// @include http://* | |
// @include https://* | |
// @copyright 2014, David | |
// ==/UserScript== | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# Reads matricies files build by the TI Voyage 200/TI82+ (*.v2m-files) | |
# and outputs csv | |
# | |
# Example: | |
# $ ./timatrix2csv.py main.test.v2p > test.csv | |
from struct import pack, unpack, calcsize | |
from collections import namedtuple | |
from sys import argv, stdout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <math.h> | |
#include <stdio.h> | |
#include <tigcclib.h> | |
#define RETURN_VALUE | |
void _main() { | |
push_END_TAG(); | |
push_Float(atanh(-0.9)); | |
} |
NewerOlder