- GitHub Search (very clean source code too!) - https://github.com/pawelgrzybek/alfred-github-search
- Google Drive - https://github.com/alfredapp/google-drive-workflow
- CoffeeCoffee, to prevent laptop to go into sleep mode - https://github.com/vitorgalvao/alfred-workflows/tree/master/CoffeeCoffee
- Search in the native Apple Notes app - https://github.com/sballin/alfred-search-notes-app
- Windows manager, resize computer's opened windows - https://github.com/pawelgrzybek/div
- Parse and stringify JSON - https://github.com/pawelgrzybek/alfred-json
- Password generator (generate random passwords of any length) - https://github.com/otherguy/alfred-passwords-workflow
- Lorem Ipsum Generator https://alfred.app/workflows/alexchantastic/lorem-ipsum/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<info> | |
<ph7> | |
<social-dating-cms> | |
<upd-alert>false</upd-alert> | |
<name>NaOH</name> | |
<version>7.0.0</version> | |
<sql-shcema-version>1.3.6</sql-shcema-version> | |
<build>1</build> | |
</social-dating-cms> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- XML Countries List --> | |
<countries> | |
<country iso="AF" name="Afghanistan" /> | |
<country iso="AL" name="Albania" /> | |
<country iso="DZ" name="Algeria" /> | |
<country iso="AS" name="American Samoa" /> | |
<country iso="AD" name="Andorra" /> | |
<country iso="AO" name="Angola" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Author: Pierre-Henry Soria <[email protected]> | |
-- Website: https://ph7cms.com | |
-- Copyright: (c) 2011-2019, Pierre-Henry Soria. All Rights Reserved. | |
-- License: GNU General Public License | |
-- | |
--- | |
-- Reset the pH7CMS, admin panel's IP restriction. | |
-- Sometimes, you cannot log in anymore to your admin panel, because your public IP changed, or your website is hosted on a localhost and cannot work with. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const animals = [ | |
'Crocodile', | |
'giraffe', | |
'elephant', | |
'snake', | |
'elephant', | |
'giraffe', | |
'giraffe', | |
'chicken', | |
'crocodile' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class InvalidDayMomentException extends InvalidArgumentException | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default [ | |
{ | |
name: 'Alabama', | |
abbreviation: 'AL', | |
}, | |
{ | |
name: 'Alaska', | |
abbreviation: 'AK', | |
}, | |
{ |
If you name your PostgreSQL table names or column names with caps like lowerCamel / UpperCamel cases, you will need to surround the column names/table name with double quotes to preserve the case of their names since our the columns in our database are lowerCamel case. Otherwise, Postgres wouldnβt find them as it would look for lowercase-only names.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$sDayPrefix = date('D'); | |
$sMessage = match ($sDayPrefix) { | |
'Mon' => 'Hello Monday! Have a great week!', | |
'Tue' => 'Hello Tuesday! Have a great day!', | |
'Wed' => 'Happy hump day all!', | |
'Thu' => 'Almost the end of the working week!', | |
'Fri' => 'Yaay! Happy Friday!', | |
'Sat' => 'Enjoy your weekend! Have a great Saturday :)', |