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
/* A packrat parser generated by PackCC 2.0.0 */ | |
#include "general.h" | |
#ifdef _MSC_VER | |
#undef _CRT_SECURE_NO_WARNINGS | |
#define _CRT_SECURE_NO_WARNINGS | |
#endif /* _MSC_VER */ | |
#include <stdio.h> | |
#include <stdlib.h> |
This file has been truncated, but you can view the full file.
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
/* A packrat parser generated by PackCC 2.0.0 */ | |
#include "general.h" | |
#ifdef _MSC_VER | |
#undef _CRT_SECURE_NO_WARNINGS | |
#define _CRT_SECURE_NO_WARNINGS | |
#endif /* _MSC_VER */ | |
#include <stdio.h> | |
#include <stdlib.h> |
This file has been truncated, but you can view the full file.
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
/* A packrat parser generated by PackCC 2.0.0 */ | |
#include "general.h" | |
#ifdef _MSC_VER | |
#undef _CRT_SECURE_NO_WARNINGS | |
#define _CRT_SECURE_NO_WARNINGS | |
#endif /* _MSC_VER */ | |
#include <stdio.h> | |
#include <stdlib.h> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/bin/bash | |
# Usage: optimizer.sh [-v] <file.peg> | |
set -e | |
dbg() { | |
if [ "$VERBOSE" ]; then | |
echo "$1" > /dev/stderr | |
fi |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
daemon off; | |
user www-data; | |
pid /var/run/nginx.pid; | |
worker_processes 4; | |
include /etc/nginx/modules-enabled/*.conf; | |
events {} | |
http { | |
sendfile on; | |
tcp_nodelay on; |
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
daemon off; | |
user www-data; | |
pid /var/run/nginx.pid; | |
worker_processes 4; | |
include /etc/nginx/modules-enabled/*.conf; | |
events {} | |
http { | |
sendfile on; | |
tcp_nodelay on; |
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
# Malá pythoní kalkulačka, | |
# stačí napsat výraz a zmáčkount Ctrl+E | |
bind -x "\"\\C-e\": python <<< \" | |
from __future__ import print_function | |
from math import * | |
from re import match, split | |
s = '\${READLINE_LINE//\"'\"/\"\\\\'\"}' | |
for x in split('[;\n]\s*', s): | |
try: |