This file has been truncated, but you can view the full file.
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
> cd index-of.es/ | |
> find . -type f | |
./Hack/Network Security Know It All.pdf | |
./Hack/7Deadliest Social Network Attacks.pdf | |
./Hack/7Deadliest Web Application.pdf | |
./Hack/7Deadliest Wireless Technologies Attacks.pdf | |
./Hack/A-LIST Publishing - Hacker Disassembling Uncovered.chm | |
./Hack/Actualtests Certified Ethical Hacker CEH 312-50 568Q 2008.10.07.pdf | |
./Hack/Adavanced Postgre SQL injection.pdf |
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
cmake | |
make | |
gcc | |
asciidoctor | |
botan | |
qt5-base | |
qt5-svg | |
qt5-translations | |
qt5-tools | |
minizip |
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
#include <stdlib.h> | |
#include <unistd.h> | |
#include <openssl/ssl.h> | |
#include <openssl/bio.h> | |
#include <openssl/err.h> | |
#define HOST_ADDR "localhost:4433" | |
#define MSG_SIZE 512 | |
int main(void) { |
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
$ tree -L 2 -d | |
. | |
├── Android | |
├── Art-Gallery | |
│ ├── A | |
│ ├── B | |
│ ├── C | |
│ ├── D | |
│ ├── E |
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
$ tree -d | |
. | |
├── Android | |
├── Art-Gallery | |
│ ├── A | |
│ │ ├── aachen | |
│ │ ├── aagaard | |
│ │ ├── abadia | |
│ │ ├── abaquesn |
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/sh | |
CC=gcc | |
CFLAGS= | |
LDFLAGS= | |
SRC=./src | |
ODIR=./build | |
mkdir -p $ODIR | |
find $SRC -type f -name "*.c" | parallel -j 4 gcc $CFLAGS {} -o $ODIR/{/.} $LDFLAGS |
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
word | reading | pipe_separated_definitions | |
---|---|---|---|
鬼 | おに | ogre | demon | onispirit of a deceased personogre-like person (i.e. fierce, relentless, merciless, etc.)it (in a game of tag, hide-and-seek, etc.)very | extremely | super-Oni | |
相打ち | あいうち | simultaneously striking one another (in kendo, etc.)draw | tie | |
矢印 | やじるし | arrow (symbol)(romantic) interest (for a certain person) | direction (of one's attention, etc.) | |
致命傷 | ちめいしょう | fatal wound | |
細胞 | さいぼう | cellcell (in an organization, esp. a communist party) | |
眼球 | がんきゅう | eyeball | |
報い | むくい | reward | recompense | returnpunishment | retribution | |
借金 | しゃっきん | debt | loan | liabilities | borrowing money | |
鍛錬 | たんれん | tempering (metal) | annealing | forgingtoughening | disciplining | training |
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
#version 300 es | |
precision highp float; | |
precision highp sampler2D; | |
in vec2 uv; | |
out vec4 out_color; | |
uniform vec2 u_resolution; | |
uniform float u_time; |
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
CC=gcc | |
CFLAGS= | |
LDFLAGS= | |
TARGET=project | |
SDIR=src | |
ODIR=build | |
SRC=$(shell find $(SDIR) -type f -name *.c) | |
OBJ=$(SRC:.c=.o) |
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/sh | |
# CONSTANTS | |
deck_name="deck name" | |
card_type_name="card type name" | |
anki_server="http://localhost:8765/" | |
front_part=$(dmenu -p "Word: " < /dev/null) | |
front_part_escaped=$(printf '%s\n' "$front_part" | sed 's/"/\\"/g') | |
# if either of them is empty, exit |
NewerOlder