Skip to content

Instantly share code, notes, and snippets.

View iamstoick's full-sized avatar

Stoick The Vast iamstoick

  • Philippines
View GitHub Profile
@iamstoick
iamstoick / code.md
Created September 11, 2017 03:34
How to connect to wifi network via Ubuntu commandline.

To see list of saved connections:

$ nmcli c

To see list of available WiFi

nmcli d wifi list
@iamstoick
iamstoick / code.md
Last active September 8, 2017 06:52
A most inappropriate way to gain access to Drupal administration.

Scenario:

You need to update some configuration but you dont have
username and password,
no access in the database as well,
Drush is not an option as well,
MTA (mail) is not installed in the server,
BUT you have access to the code.

Luckily there is a trick to gain an access with the above restrictions.

@iamstoick
iamstoick / code.md
Last active September 8, 2017 06:05
Get the entity id after saving it programmatically.

Suppose you have a code like this.

$node = entity_create('node', array('type' => 'info'));
$entity = entity_metadata_wrapper('node',  $node);

// Node title.
$entity->title = $info->name;

// Address.
@iamstoick
iamstoick / copy.md
Created August 9, 2017 01:53
Copy file content to multiple destination at once.

According to cp man page. cp can copy from multiple sources, but can't copy to multiple destinations. See man cp for more info.

tee be.de{v,v-1,v-2,v-3}/app/sites/default/settings.php < be.staging/app/sites/default/settings.php
@iamstoick
iamstoick / redis.md
Created July 26, 2017 14:55
How to test if Redis is working

In order to check if Redis is really working.

First, flush all keys stored in redis in order to remove old cache entries

$ redis-cli FLUSHALL

Monitor REDIS realtime.

$ redis-cli MONITOR
@iamstoick
iamstoick / php.md
Created July 26, 2017 07:03
How to check an average memory usage by single PHP-FPM process
ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }'
ps --no-headers -o "rss,cmd" -C apache2 | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }'
@iamstoick
iamstoick / import.md
Created June 14, 2017 05:03
How to import database in MySQL in Docker?

This is a simple way of importing MySQL database in Docker.

  1. In you Dockerfile you must have a shared folder. Shared folder is a directory in your host machine that is mounted to Docker instance.

  2. Put the exported sql file in the shared folder.

  3. Login to your Docker instance via docker exec -it DOCKER_CONTAINER_ID bin/bash.

  4. Login to MySQL via mysql -u USERNAME -p.

@iamstoick
iamstoick / drush.md
Created June 7, 2017 14:44
How to install Drush
php -r "readfile('https://s3.amazonaws.com/files.drush.org/drush.phar');" > /tmp/drush
chmod +x /tmp/drush
mv /tmp/drush /usr/bin/drush
@iamstoick
iamstoick / apache.md
Created June 7, 2017 02:49
How to know if using Prefork or Worker in Apache

a2query -M

@iamstoick
iamstoick / memcache.md
Created June 5, 2017 13:46
Watch Memcache stats realtime

watch "echo stats | nc IP PORT"