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
((:TITLE "Thunder" :ARTIST "Imagine Dragons" :RATING 8 :RIPPED NIL) (:TITLE "Kissing Strangers" :ARTIST " DNCE" :RATING 3 :RIPPED NIL) (:TITLE "You're Such A" :ARTIST "Hailee Steinfeld" :RATING 7 :RIPPED NIL) (:TITLE "Believer" :ARTIST "Imagine Dragons" :RATING 8 :RIPPED NIL) (:TITLE "Speed of Sound" :ARTIST "Cold Play" :RATING 8 :RIPPED NIL) (:TITLE "Demons" :ARTIST "Imagine Dragons" :RATING 10 :RIPPED NIL)) |
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
(defun make-cd (title artist rating ripped) (list :title title :artist artist :rating rating :ripped ripped)) | |
(defvar *db* nil) | |
(defun add-record (cd) (push cd *db*)) | |
(defun dump-db () (format t "~{~{~a~10t~a~%~}~%~}" *db*)) | |
(defun prompt-read (prompt) | |
(format *query-io* "~a: " prompt) |
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
if ((*source = malloc(fsize+1)) { | |
} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
// reads text from path to source | |
void read_file (char path[], char **source) { | |
FILE *f = fopen(path, "r"); | |
fseek(f, 0, SEEK_END); | |
long fsize = ftell(f); |
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
# - Try to find ZMQ | |
# Once done this will define | |
# ZMQ_FOUND - System has ZMQ | |
# ZMQ_INCLUDE_DIRS - The ZMQ include directories | |
# ZMQ_LIBRARIES - The libraries needed to use ZMQ | |
# ZMQ_DEFINITIONS - Compiler switches required for using ZMQ | |
find_path ( ZMQ_INCLUDE_DIR zmq.h ) | |
find_library ( ZMQ_LIBRARY NAMES zmq ) |
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
questions[0][type]:dropdown | |
questions[0][questionText]:asd | |
questions[0][choices][]:asd // ignored | |
questions[0][choices][]:asdasd | |
questions[1][type]:dropdown | |
questions[1][questionText]: | |
title: | |
description: |
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
<form action="{% url 'survey:create_survey' %}" method="post"> | |
{% csrf_token % %} | |
<div class="surveyTitle"> | |
<input type="text" id="title" name="title" value="Untitled Survey"> | |
</div> | |
<p> Questions</p> | |
<div class="questions" id="questions"> | |
</div> | |
<div class="surveyBuilder" > | |
<div class="dropdown"> |
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
(use-package key-chord | |
:config | |
(key-chord-mode 1)) | |
(key-chord-define evil-insert-state-map "jk" 'evil-normal-state) |
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
<EC Point x: 79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798 y: 483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8> |
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 the domain | |
$ ssh -v democracyblockchain.cf -p 22 | |
OpenSSH_7.4p1, LibreSSL 2.5.0 | |
debug1: Reading configuration data /Users/z3t0/.ssh/config | |
debug1: /Users/z3t0/.ssh/config line 1: Applying options for * | |
debug1: Reading configuration data /etc/ssh/ssh_config | |
debug1: /etc/ssh/ssh_config line 53: Applying options for * | |
ssh: Could not resolve hostname democracyblockchain.cf: nodename nor servname provided, or not known | |
# this is the actual ip addres |