You are playing the word game El Gúru.
Your goal is to force the other player to lose — not to win directly. You lose if your actions meet any loss condition. Your strategy should be to survive and make your opponent lose.
| [ | |
| "actor", | |
| "actress", | |
| "adventurer", | |
| "aficionado", | |
| "aristocrat", | |
| "artist", | |
| "baby", | |
| "banker", | |
| "biker", |
| [ | |
| "؋", | |
| "฿", | |
| "₵", | |
| "₡", | |
| "¢", | |
| "$", | |
| "₫", | |
| "֏", | |
| "€", |
| [ | |
| "ability", | |
| "adoration", | |
| "adventure", | |
| "amazement", | |
| "anger", | |
| "anguish", | |
| "anxiety", | |
| "apprehension", | |
| "artistry", |
| { | |
| "type": "APL", | |
| "version": "1.3", | |
| "theme": "light", | |
| "import": [ | |
| { | |
| "name": "alexa-layouts", | |
| "version": "1.1.0" | |
| } | |
| ], |
| <?xml version="1.0"?> | |
| <!-- source: https://www.phpzag.com/create-custom-module-with-custom-database-table/ --> | |
| <config> | |
| <modules> | |
| <[Namespace]_[Module]> | |
| <version>0.1.0</version> | |
| </[Namespace]_[Module]> | |
| </modules> | |
| <frontend> | |
| <routers> |
| #! /bin/bash | |
| #file location .git/hooks/ | |
| filename="$(git rev-parse --show-toplevel)/version.txt"; | |
| DATE=`date +%Y%m%d-%H%M%S` | |
| #DATE=`date +%T` | |
| echo "$DATE" > "$filename"; |
| <?php | |
| /** | |
| * I faced a strange issue while migrating a magento 2.3 from a server to another. | |
| * some of the product images where in a uppercase folder on the server and on a lowercase on the db | |
| * the fix was to create links... | |
| */ | |
| //get the folders list from [magento root]/apps/magento/htdocs/pub/media/catalog/product | |
| $folders = ["A","B","C","d","e","f","G","h","i","J","k","l","M","n","o","P","r","s","T","u","V","w","y"]; | |
| foreach( $folders as $folder ) |
| Source | |
| https://virtualboxes.org/doc/installing-guest-additions-on-debian/ | |
| Login as root; | |
| Update your APT database with apt-get update; | |
| Install the latest security updates with apt-get upgrade; | |
| Install required packages with apt-get install build-essential module-assistant; | |
| Configure your system for building kernel modules by running m-a prepare; | |
| Click on Install Guest Additions… from the Devices menu, then run mount /media/cdrom. | |
| Run sh /media/cdrom/VBoxLinuxAdditions.run, and follow the instructions on screen. |