- 250g lentils
- 1 oinion
- 3 garlic cloves
- 1 fat tomatoe
- 3 tbsp. olive oil
- 1 tsp. of tomatoe paste
- 1.5 tsp. of poudered cumin
- 1 tsp. of poudered curcuma (or turmeric)
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
| void usleep(DWORD waitTime){ | |
| LARGE_INTEGER perfCnt, start, now; | |
| QueryPerformanceFrequency(&perfCnt); | |
| QueryPerformanceCounter(&start); | |
| do { | |
| QueryPerformanceCounter((LARGE_INTEGER*) &now); | |
| } while ((now.QuadPart - start.QuadPart) / float(perfCnt.QuadPart) * 1000 * 1000 < waitTime); | |
| } |
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
| addTask({ | |
| variables: { input }, | |
| optimisticResponse: { | |
| addTask: { | |
| __typename: 'Task', | |
| id, | |
| ...input | |
| } | |
| }, | |
| update: (proxy: any, { data: { addTask } }: any) => { |
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
| // http://viljamis.com/blog/2013/prototyping-responsive-typography/?utm_source=Responsive+Design+Weekly&utm_campaign=76e7785581-Responsive_Design_Weekly_046&utm_medium=email | |
| $browser-context: 16; // Default | |
| @function em($pixels, $context: $browser-context) { | |
| @return #{$pixels/$context}em | |
| } |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| "city_code" | |
| "A" | |
| "AA" | |
| "AB" | |
| "ABG" | |
| "ABI" | |
| "AC" | |
| "AE" | |
| "AH" | |
| "AIB" |
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
| #!/bin/bash | |
| if [ ! -z $1 ]; then | |
| MATCHER=$1 | |
| else | |
| # Try to guess the project based on directory name | |
| MATCHER=`pwd | sed 's/\/.*\///'` | |
| fi | |
| echo "Looking for web container named '$MATCHER'..." |
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
| openssl req -x509 -out localhost.crt -keyout localhost.key \ | |
| -newkey rsa:2048 -nodes -sha256 \ | |
| -subj '/CN=localhost' -extensions EXT -config <( \ | |
| printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") |
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
| 🚀 | |
| ★○• | |
| ¸. ¸☆ ☆ | |
| ° ○ ° ★ | |
| ☾ ★☆ ☾° | |
| ° ☆ ○ ° . • | |
| ○ ° ★☾ ☆ |
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
| #!upstart | |
| description "your fancy description that no one will see ;)" | |
| author "Your Name <youremail@fqdn>" | |
| # start on every run level, 2 is the one on Ubuntu | |
| start on runlevel [2345] | |
| # stop on halt, maintenance or reboot | |
| stop on runlevel [016] |
NewerOlder