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
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Sergei", | |
"label": "Creativity is intelligence having fun - Albert Einstein", | |
"url": "https://sshilko.com", | |
"picture": "https://avatars0.githubusercontent.com/u/1147808?v=2&s=150", | |
"email": "[email protected]", |
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
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
#!/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 |
How To Fix Intel SSD 8MB bug Using Linux Terminal
Also You Can Read This Article In My Blog sirvan.me
FROM alpine:3.7 as builder | |
RUN apk add --no-cache \ | |
git \ | |
cmake \ | |
make \ | |
g++ \ | |
bison \ | |
flex \ | |
mariadb-dev \ |
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
<?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) { |
<?php | |
/** | |
* PSR-0 Autoloader | |
* http://www.php-fig.org/psr/psr-0/ | |
* works PHP5 & PHP7 | |
* @sshilko | |
*/ | |
function autoload_psr0($className) | |
{ | |
$oname = $className; |