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
(require plot) | |
(define (factorial n) | |
(if (< n 2) 1 (* n (factorial (- n 1))))) | |
(define (taylor-poly func n c) | |
(define (calc-coeff dfn level) | |
(/ (dfn c) (factorial level))) | |
(define (find-coeff fn level coeffs) | |
(if (= level (+ n 1)) |
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/python2 | |
import time | |
import webbrowser | |
from datetime import datetime | |
import urllib2 as url | |
from BeautifulSoup import BeautifulSoup | |
site = "http://ftpcontent.worldnow.com/wdrb/news/closings.html" |
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
[vk@vk assaultcube]$ diff orig_weapon.cpp source/src/weapon.cpp | |
566c566,569 | |
< hitpush(dam, o, d, from, to, d->weaponsel->type, gib, gib ? 1 : 0); | |
--- | |
> if (d->weaponsel->type == GUN_SHOTGUN) { | |
> dam += 15; | |
> } | |
> hitpush(dam, o, d, from, to, d->weaponsel->type, gib, gib ? 1 : 0); | |
925c928 | |
< bool quickwait = attackmillis*3>=gunwait && !(m_arena && m_teammode && arenaintermission); |
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 | |
# A solution to N-Queens using the Min-Conflicts local search algorithm | |
# Vedant Kumar <[email protected]> | |
import random | |
def nqueens(nr): | |
show(min_conflicts(list(range(nr)), nr), nr) | |
def show(soln, nr): |
NewerOlder