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
Show hidden characters
[ | |
{ | |
"caption": "Snake Case: Convert CamelCase to snake_case", | |
"command": "snake_case" | |
} | |
] |
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
curl -F " | |
x_version=3.1 | |
&x_delim_data=True | |
&x_delim_char=| | |
&x_relay_response=False | |
&x_login=[login] | |
&x_tran_key=[key] | |
&x_test_request=TRUE | |
&x_type=AUTH_CAPTURE | |
&x_first_name=Ian |
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
<div> | |
<? foreach ($items as $item) { ?> | |
<h2><?= $item['product_name'] ?></h2> | |
<img src="img/<?= $item['product_image'] ?>" /> | |
<p><?= $item['description'] ?></p> | |
<? } ?> | |
</div> |
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/sh | |
ARGS='noargs' | |
if [ $1 ] ; then | |
LOG_DIR=$1 | |
else | |
echo 'Missing Required Arugments: root dir of fuel /dir/to/fuel/' | |
exit | |
fi |
NewerOlder