To do this we will use the linux command grep.
Please jump to How to use linux command under Windows? for more information.
#include <stdio.h> | |
#include <stdlib.h> | |
unsigned char convert(unsigned char c) | |
{ | |
return (c & 0x40) << 1 | |
| (c & 0x07) << 4 | |
| (c & 0x80) >> 4 | |
| (c & 0x38) >> 3; | |
} |
############################## | |
## Java | |
############################## | |
.mtj.tmp/ | |
*.class | |
*.jar | |
*.war | |
*.ear | |
*.nar | |
hs_err_pid* |
To do this we will use the linux command grep.
Please jump to How to use linux command under Windows? for more information.
// ==UserScript== | |
// @name Get Emoji | |
// @match * | |
// @run-at context-menu | |
// ==/UserScript== | |
if(!modalId) { | |
var modalId = 'emoji' | |
} | |
Run(); |
#!/bin/bash | |
#COLORS | |
RED='\033[0;31m' | |
LRED='\033[1;31m' | |
GREEN='\033[0;32m' | |
LGREEN='\033[1;32m' | |
ORANGE='\033[0;33m' | |
YELLOW='\033[1;33m' | |
LBLUE='\033[1;34m' |