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
// fix autocomplete | |
/* | |
* Unobtrusive autocomplete | |
* | |
* To use it, you just have to include the HTML attribute autocomplete | |
* with the autocomplete URL as the value | |
* | |
* Example: |
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
;;; | |
(setq prelude-guru nil) | |
(global-hl-line-mode -1) | |
;(setq prelude-whitespace nil) | |
(setq prelude-flyspell nil) | |
;(smartparens-global-mode -1) | |
(global-linum-mode ) | |
(require 'git-auto-commit-mode) |
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
(defun expotential-divisors (n expot) | |
(reverse (loop | |
for y from 1 upto n | |
for x = 1 then (* x expot ) | |
collect x))) | |
(defun expot-len (n) | |
(1- (expt 2 n))) | |
(defun calc-base (n divs a b) |
NewerOlder