This file contains 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
// Details: StackOverflow (http://stackoverflow.com/a/614397/18771) | |
// License: cc-by-sa (http://creativecommons.org/licenses/by-sa/3.0/) | |
// Extends: jQuery Tablesorter 2.0+ (http://tablesorter.com) | |
// ------------------------------------------------------------------- | |
// file encoding must be UTF-8! | |
function getTextExtractor() | |
{ | |
return (function() { | |
var patternLetters = /[öäüÖÄÜáàâéèêúùûóòôÁÀÂÉÈÊÚÙÛÓÒÔß]/g; |
This file contains 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
;; This is an attempt to mimic what the "CtrlP Funky" plug-in | |
;; for Vim does, allowing a "fuzzy search" of functions within | |
;; the current buffer. | |
;; | |
;; Because this uses completing-read (in my config., this is | |
;; handled by helm, which is awesome), it isn't actually | |
;; "fuzzy," but it gets the job done. | |
;; | |
;; Note: This is my first real attempt at writing elisp so it | |
;; might not be "proper." |
This file contains 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
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |