This file contains 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 href="https://payhip.com/b/oahG2" class="payhip-buy-button" data-theme="green" data-product="oahG2">Buy Now</a> |
This file contains 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
Array | |
( | |
[graphql] => Array | |
( | |
[hashtag] => Array | |
( | |
[name] => workoutprogram | |
[is_top_media_only] => | |
[edge_hashtag_to_media] => Array | |
( |
This file contains 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 | |
SNAPID="SNAP" | |
BACKUPDBID="TEMPDB" | |
#config groups | |
SECURITYGROUP="Mysecgrup" | |
PARAMSGROUP="Myparamsgrup" | |
#rds verifying commands |
This file contains 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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
This file contains 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
{ | |
address: "[email protected]", | |
format: "valid", | |
status: "valid", | |
account: "test", | |
domain: "example.com", | |
error_code: "", | |
error: "", | |
disposable: false, | |
duration: 0.82 |
This file contains 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
{ | |
"Error": true, | |
"Data": [ | |
{ | |
"arguments": null, | |
"message": "The value '1' is not valid." | |
} | |
], | |
"Id": "MCIGVr1im7G7r8y2WCrZEOcyVxcodK1a" | |
} |
This file contains 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
{ | |
"Success": true, | |
"Data": [ | |
{ | |
"ShortCode": "sample string 1", | |
"Description": "sample string 2", | |
"Code": "sample string 3", | |
"RequiresStateProvince": true | |
} | |
], |
This file contains 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
{ | |
"Success": true, | |
"Data": [ | |
{ | |
"PerformanceId": 1, | |
"ProductionSeasonId": 2, | |
"Title": "sample string 3", | |
"Date": "sample string 4", | |
"OnSale": true, | |
"OnSaleDate": "sample string 6", |
This file contains 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 | |
function specificity($selector) { | |
// Pseudo classes | |
$classes = array(":link", ":visited", ":hover", ":active", ":focus", ":target", ":lang", ":enabled", | |
":disabled", ":checked", ":indeterminate", ":root", ":nth-child", ":nth-last-child", | |
":nth-of-type", ":nth-last-of-type", ":first-child", ":last-child", ":first-of-type", | |
":last-of-type", ":only-child", ":only-of-type", ":empty", ":contains", ":not"); | |
// Pseudo elements |
This file contains 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
function specificity($selector) { | |
// Pseudo classes | |
$classes = array(":link", ":visited", ":hover", ":active", ":focus", ":target", ":lang", ":enabled", | |
":disabled", ":checked", ":indeterminate", ":root", ":nth-child", ":nth-last-child", | |
":nth-of-type", ":nth-last-of-type", ":first-child", ":last-child", ":first-of-type", | |
":last-of-type", ":only-child", ":only-of-type", ":empty", ":contains", ":not"); | |
// Pseudo elements | |
$elements = array(":before", ":after", ":first-line", ":first-letter", ":selection"); | |
// HTML tags |
NewerOlder