Skip to content

Instantly share code, notes, and snippets.

@ahelja
ahelja / SearchGmailCertainPeriod.txt
Created November 22, 2020 13:25
Search Gmail certain period
after:2004/04/16 before:2004/04/18
@ahelja
ahelja / not-less-compatible.less
Created November 22, 2020 13:25
Include external files but not process them
@import (inline) "not-less-compatible.css";
@ahelja
ahelja / startingTheWebServer.sh
Created November 22, 2020 13:24
Starting the web server php
# cd ~/public_html
php -S localhost:8000
@ahelja
ahelja / InstallFontCli.sh
Created November 22, 2020 13:23
Install font cli
brew cask install font-open-sans
@ahelja
ahelja / wpLatestTar.sh
Created November 22, 2020 13:23
wp latest tar
wget http://wordpress.org/latest.tar.gz
@ahelja
ahelja / GeneratePassword.sh
Created November 22, 2020 13:22
Generate password
openssl rand -base64 12
@ahelja
ahelja / SimpleHTTPServer.py
Created November 22, 2020 13:22
python Simple HTTP Server
python -m SimpleHTTPServer 4104
@ahelja
ahelja / selectors.js
Last active November 21, 2020 08:18
Selectors
var SELECTORS = {
state: [
'inverse',
'toggled',
'switched',
'original',
'initial',
'identified',
'disabled',
'loading',
@ahelja
ahelja / drush-ckeditor
Last active November 21, 2020 08:18
Drush dl ckeditor
- downloads the module.
- enables the module. If you skip this step, the next one won't work.
- downloads the library.
- clears cache on your site.
drush dl ckeditor
drush en -y ckeditor
drush ckeditor-download
drush cc all