I hereby claim:
- I am martylouis on github.
- I am martylouis (https://keybase.io/martylouis) on keybase.
- I have a public key ASAixACLhUJyQtT6yb264L0-gshVMuxXIpLaKXtnxZV9Bgo
To claim this, I am signing this object:
async function selectDirectory() { | |
try { | |
const handle = await window.showDirectoryPicker(); | |
return handle; | |
} catch (error) { | |
console.error("Error:", error); | |
} | |
} | |
function downloadImages(url, saveDirectoryHandle) { |
I hereby claim:
To claim this, I am signing this object:
# Set the default behavior, in case people don't have core.autocrlf set. | |
* text=auto | |
# Explicitly declare text files you want to always be normalized and converted | |
# to native line endings on checkout. | |
*.c text | |
*.h text | |
# Declare files that will always have CRLF line endings on checkout. | |
*.sln text eol=crlf |
node_modules | |
*.log | |
*.bak | |
*.swp | |
*~ | |
.cvs | |
.DS_Store | |
.svn | |
Thumbs.db |
<?php | |
/** | |
* Advanced Custom Fields 5.0 Config | |
*/ | |
$acf_path = 'acf.php'; | |
require_once $acf_path; | |
This is a sample markdown file to help you write Markdown quickly :)
If you use the fabulous [Sublime Text 2/3 editor][ST] along with the [Markdown Preview plugin][MarkdownPreview], open your ST2 Palette with CMD+⇧+P
then choose Markdown Preview in browser
to see the result in your browser.
this is italic and this is bold . another italic and another bold
<?php | |
/** | |
* TinyMCE v4 Config | |
* | |
* A custom WordPress TinyMCE v4 configuration with styles (now called "Format") drop down menu with submenus. | |
* | |
* style_formats: http://www.tinymce.com/wiki.php/Configuration:style_formats | |
* | |
*/ |
$('[placeholder]').focus(function() { | |
var input = $(this); | |
if (input.val() === input.attr('placeholder')) { | |
input.val(''); | |
input.removeClass('placeholder'); | |
} | |
}).blur(function() { | |
var input = $(this); | |
if (input.val() === '' || input.val() === input.attr('placeholder')) { | |
input.addClass('placeholder'); |
## FILL ## | |
fill Sets fill color of the shape. | |
fill-opacity Sets fill opacity of the shape. | |
fill-rule Sets fill rule of the shape. | |
** example ** | |
fill: #ccc; | |
fill: rgba(0,0,0,.5); | |
fill: red; |