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
<scheme name="Staatstheme" version="142" parent_scheme="Darcula"> | |
<metaInfo> | |
<property name="created">2019-10-21T12:57:27</property> | |
<property name="ide">PhpStorm</property> | |
<property name="ideVersion">2017.3.2.0.0</property> | |
<property name="modified">2019-10-21T12:57:36</property> | |
<property name="originalScheme">Staatstheme</property> | |
</metaInfo> | |
<colors> | |
<option name="CARET_COLOR" value="ffffff" /> |
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
[A-Z]+[a-zA-Z^\p{L}\p{M}]++\s[a-zA-Z]\.\s |
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
echo "Copying insomnia settings" | |
files=("Settings" "Workspace" "Request" "RequestGroup" "RequestMeta" "RequestGroupMeta" "WorkspaceMeta" "Stats" "RequestVersion") | |
# Look for signs of trouble in each log | |
for i in ${!files[@]}; | |
do | |
file=${files[$i]} | |
cp /Users/USERNAME/Library/'Application Support'/Insomnia/insomnia.${file}.db ~/Projects/insomnia/insomnia.${file}.db |
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
echo "Copying insomnia settings" | |
files=("Settings" "Workspace" "Request" "RequestGroup" "RequestMeta" "RequestGroupMeta" "WorkspaceMeta" "Stats" "RequestVersion") | |
# Look for signs of trouble in each log | |
for i in ${!files[@]}; | |
do | |
file=${files[$i]} | |
cp /Users/USERNAME/Library/'Application Support'/Insomnia/insomnia.${file}.db ~/Projects/insomnia/insomnia.${file}.db |
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
import { createClient } from 'redis'; | |
import { serialize } from 'php-serialize'; | |
const RedisClient = createClient(); | |
export class Job { | |
job = null; | |
connection = null; | |
queue = null; | |
chainConnection = null; |
OlderNewer