How To Fix Intel SSD 8MB bug Using Linux Terminal
Persian Article is Available On Academia.edu
Also You Can Read This Article In My Blog sirvan.me
| /** | |
| * Read input, line-by-line until get enough lines | |
| */ | |
| var input = []; | |
| var wantlines = 2; | |
| process.stdin.setEncoding('utf8'); | |
| var readline = require('readline'); | |
| var rl = readline.createInterface({ input: process.stdin }); |
| <?php | |
| /** | |
| * PSR-0 Autoloader | |
| * http://www.php-fig.org/psr/psr-0/ | |
| * works PHP5 & PHP7 | |
| * @sshilko | |
| */ | |
| function autoload_psr0($className) | |
| { | |
| $oname = $className; |
| <?php | |
| error_reporting(E_ALL); | |
| send_message('127.0.0.1','8000', getmypid() . ' Message to send...'); | |
| function send_message($ipServer,$portServer,$message) | |
| { | |
| $fp = stream_socket_client("tcp://$ipServer:$portServer", $errno, $errstr); | |
| stream_set_blocking($fp, false); | |
| if (1) { | |
| while(1) { |
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
| FROM alpine:3.7 as builder | |
| RUN apk add --no-cache \ | |
| git \ | |
| cmake \ | |
| make \ | |
| g++ \ | |
| bison \ | |
| flex \ | |
| mariadb-dev \ |
How To Fix Intel SSD 8MB bug Using Linux Terminal
Also You Can Read This Article In My Blog sirvan.me
| #!/bin/sh | |
| nohup /usr/local/bin/cloudflared proxy-dns --port 5053 --upstream https://doh.cleanbrowsing.org/doh/family-filter/ > /dev/null 2>&1 & echo $! > /var/run/cloudflared.pid |
In another topic someone was wondering about the new advantage/disadvantage mechanic, and under which situations it comes into effect. Because basic rules don't include a dedicated list (understandable, as it's usually a side effect of a very wide variety of actions or situations) I wrote a summary with the information from the different instances where advantage or disadvantage are mentioned in the basic rules, just in case anyone else is curious. I separated it by context:
RACES
In another topic someone was wondering about the new advantage/disadvantage mechanic, and under which situations it comes into effect. Because basic rules don't include a dedicated list (understandable, as it's usually a side effect of a very wide variety of actions or situations) I wrote a summary with the information from the different instances where advantage or disadvantage are mentioned in the basic rules, just in case anyone else is curious. I separated it by context:
RACES
SSH into your EC2 instance. Run the following:
$ sudo yum install gcc This may return an "already installed" message. That's OK.
$ wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make