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
    
  
  
    
  | # | |
| # This file is autogenerated by pip-compile | |
| # To update, run: | |
| # | |
| # pip-compile --output-file requirements/production.txt requirements/production.in | |
| # | |
| alabaster==0.7.8 # via sphinx | |
| anyjson==0.3.3 | |
| argparse==1.4.0 # via dateutils | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # References | |
| # http://www.computerhope.com/unix/nc.htm#03 | |
| # https://github.com/daniloegea/netcat | |
| # http://unix.stackexchange.com/questions/26715/how-can-i-communicate-with-a-unix-domain-socket-via-the-shell-on-debian-squeeze | |
| # http://unix.stackexchange.com/questions/33924/write-inside-a-socket-open-by-another-process-in-linux/33982#33982 | |
| # http://www.linuxjournal.com/content/more-using-bashs-built-devtcp-file-tcpip | |
| # http://www.dest-unreach.org/socat/ | |
| # http://stuff.mit.edu/afs/sipb/machine/penguin-lust/src/socat-1.7.1.2/EXAMPLES | 
  
    
      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
    
  
  
    
  | (load "olaf.lisp") | |
| (import "react" "React") | |
| (defclass todo-app () | |
| (defun get-initial-state () | |
| (create todos (list :a :b :c) current "")) | |
| (defun render-todo-item (item index) | |
| (dom ((:li :key index) item))) | 
  
    
      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
    
  
  
    
  | ;;; Пример проверки дополнительных условий для типов в Common Lisp | |
| (defun equidimensional (a) | |
| (or (< (array-rank a) 2) | |
| (apply #'= (array-dimensions a)))) | |
| ;; тут мы определяем тип, который представляет собой | |
| ;; матрицу, все размерности которой одинаковы | |
| (deftype square-matrix (&optional type size) | |
| `(and (array ,type (,size ,size)) | 
  
    
      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
    
  
  
    
  | (defpackage heart | |
| (:use :cl)) | |
| (in-package :heart) | |
| ;; Usage: | |
| ;; sbcl -l heart.lisp -e '(uiop:quit 0)' | |
| ;; | |
| (defun print-line (&rest args) | |
| (loop | 
  
    
      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
    
  
  
    
  | 1 compiler notes: | |
| test-who-with-iterate.lisp:13:6: | |
| warning: | |
| Iterate, in clause (LET ((S S)) | |
| (CHECK-TYPE S STREAM) | |
| (MACROLET ((HTM (&BODY BODY) | |
| `(WITH-HTML-OUTPUT (,'S NIL PROLOGUE NIL | |
| INDENT ,NIL) | |
| ,@BODY)) | 
  
    
      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
    
  
  
    
  | (setf (fdefinition 'original-report-expected-line) | |
| #'prove.reporter.list::report-expected-line) | |
| (defgeneric report-expected-line (report) | |
| (:documentation "Returns a line which describes a problem with failed test.")) | |
| (defmethod report-expected-line (report) | |
| "Default behaviour is to call original Prove's function, | |
| which formats a string, comparing two values." | |
| (original-report-expected-line report)) | 
  
    
      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 python | |
| from hamcrest import ( | |
| assert_that, | |
| has_entries, | |
| is_not, | |
| ) | |
| obj = {'foo': 'bar', 'other': 'key'} |