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 | |
# A script to set up a new mac. Uses bash, homebrew, etc. | |
# Focused for ruby/rails development. Includes many utilities and apps: | |
# - homebrew, rvm, node | |
# - quicklook plugins, terminal fonts | |
# - browsers: chrome, firefox | |
# - dev: iterm2, sublime text, postgres, chrome devtools, etc. | |
# - team: slack, dropbox, google drive, skype, etc |
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 if (have_posts()): ?> | |
<ul id="image-data-list"> | |
<?php while(have_posts()): the_post(); ?> | |
<li data-image-url="<?= your_post_image_url ?>"></li> | |
<?php endwhile; ?> | |
</ul> | |
<?php endif; ?> |
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
{ | |
"devDependencies": { | |
"@babel/cli": "^7.22.9", | |
"@babel/core": "^7.22.9", | |
"@babel/preset-env": "^7.22.9", | |
"@babel/preset-react": "^7.22.5", | |
"babel-loader": "^9.1.2", | |
"clean-webpack-plugin": "^4.0.0", | |
"copy-webpack-plugin": "^11.0.0", | |
"cross-env": "^7.0.3", |