[based on a true story]
So. Your friend's about to teach you how to make a website. Great!
You make a file, and you save it as 'index.html'. Why it's called 'index' isn't really explained to you, but whatever.
You type the following.
hello world
[based on a true story]
So. Your friend's about to teach you how to make a website. Great!
You make a file, and you save it as 'index.html'. Why it's called 'index' isn't really explained to you, but whatever.
You type the following.
hello world
(require 's) | |
(require 'request) | |
(require 'seq) | |
(require 'jabber) | |
(defvar hipchat--user-info-for-completion nil) | |
(defcustom hipchat-nickname "Full name" "Hipchat real name (see see https://hipchat.com/account/xmpp)." | |
:type '(string) |
import random | |
def isProbablePrime(n): | |
''' | |
Miller-Rabin primality test. | |
from http://rosettacode.org/wiki/Miller-Rabin_primality_test#Python | |
''' | |
_mrpt_num_trials = 5 # number of bases to test | |
assert n >= 2 | |
# special case 2 | |
if n == 2: |