CLICK ME
yes, even hidden code blocks!
print("hello world!")
;; Simple Polymode for RaspberryPi Pico PIO files that uses | |
;; both asm-mode as host-mode and c-mode for pass-through section | |
(define-hostmode poly-pio-hostmode | |
:mode 'asm-mode) | |
(define-auto-innermode poly-pio-c-innermode | |
:mode 'c-mode | |
:head-matcher "^% c-sdk {$" | |
:tail-matcher "^%}$" |
#!/usr/bin/env bash | |
# Josh Skidmore <[email protected]> | |
# Basic example of using an HTTP range header to extract EXIF data | |
# from a JPEG file without having to download the entire image. | |
# This has no error handling and assumes the EXIF data is embedded | |
# within the first $KB_TO_DOWNLOAD kilobytes of the image | |
# Requirements: | |
# * curl |
count | website | |
---|---|---|
4282314 | neo.sci.gsfc.nasa.gov | |
1290870 | catalogueoflife.org | |
862314 | hydrol-earth-syst-sci.net | |
128600 | worldplants.webarchiv.kit.edu | |
109806 | web.archive.org | |
104630 | apps.kew.org | |
86508 | tiedostopalvelu.maanmittauslaitos.fi | |
58578 | dyntaxa.se | |
39580 | ildis.org |
"""Terminal utilities.""" | |
# Author: Steen Lumholt. | |
from termios import * | |
__all__ = ["setraw", "setcbreak"] | |
# Indexes for termios list. | |
IFLAG = 0 |
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
<script type="text/javascript"> | |
var replaceDigits = function() { | |
var map = ["٠","١","٢","٣","٤", "٥","٦","٧","٨","٩"] | |
// replace english floating point with arabic one: | |
document.body.innerHTML = document.body.innerHTML.replace(/\d(?=[^<>]*(<|$))/g, function($0) { return map[$0]}); | |
// replace english floating point with arabic one: | |
document.body.innerHTML = document.body.innerHTML.replace(/\.(?=[^<>]*(<|$))/g, "٫"); | |
} | |
window.onload = replaceDigits; | |
</script> |
#/!bin/bash | |
repository=github.com | |
if [ -z "$GOPATH" ] ; then | |
echo '$GOPATH not set.' | |
exit 1 | |
fi | |
cd $GOPATH |