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
    
  
  
    
  | ;; --------------------------------------------------------------------- | |
| ;; Tag minor mode | |
| ;; Copyright (C) 2020 Nicolas .P Rougier | |
| ;; | |
| ;; This program is free software; you can redistribute it and/or modify | |
| ;; it under the terms of the GNU General Public License as published by | |
| ;; the Free Software Foundation, either version 3 of the License, or | |
| ;; (at your option) any later version. | |
| ;; | |
| ;; This program is distributed in the hope that it will be useful, | 
  
    
      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
    
  
  
    
  | -- | |
| -- GEOIP IN POSTGRESQL | |
| -- | |
| -- We use two approaches. First using PostgreSQL inet and cidr types and indexing (PostgreSQL 9.4 and later), | |
| -- and then using ip4r (https://github.com/RhodiumToad/ip4r). | |
| -- The performance of ip4r indexes is significantly better than PostgreSQL's own index. | |
| -- An operation that took 42s using ip4r took 47 minutes using PostgreSQL's cidr index. | |
| -- | 
  
    
      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/env bash | |
| ARG=$1 | |
| function name { | |
| if [ -n "$ARG" ]; then | |
| echo $ARG | |
| else | |
| echo $(basename $(pwd)) | |
| fi | 
  
    
      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
    
  
  
    
  | <!doctype html> | |
| <style>body { padding: 0; }</style> | |
| <script src='https://cdn.jsdelivr.net/p5.js/0.3.2/p5.min.js'></script> | |
| <script src='out/goog/base.js'></script> | |
| <script src='myproject.js'></script> | |
| <script>goog.require('myproject.core')</script> | 
  
    
      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
    
  
  
    
  | ;; Minimal example of how to play a melody using Clojure/Overtone/Leipzig, based on code | |
| ;; at https://github.com/ctford/leipzig | |
| ;; by Lee Spector, lspector@hampshire.edu, 20140204 | |
| ;; Add the following to your dependencies in project.cl, and do "lein deps" if your environment requires it: | |
| ;; [leipzig "0.7.0"] | |
| (ns notes.core | |
| (:use [leipzig melody scale live] | 
  
    
      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
    
  
  
    
  | ;;; rlx.el --- RLX development tools for GNU Emacs | |
| ;; Copyright (C) 2006, 2007, 2008 David O'Toole | |
| ;; Author: David O'Toole <dto@gnu.org> | |
| ;; Keywords: multimedia, games | |
| ;; Version: 0.81 | |
| ;; This file is free software; you can redistribute it and/or modify | |
| ;; it under the terms of the GNU General Public License as published by |