View modified.js
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
"scripts": { | |
"dev": "npm run development", | |
"development": "mix", | |
"watch": "mix watch", | |
"watch-poll": "mix watch -- --watch-options-poll=1000", | |
"hot": "mix watch --hot", | |
"prod": "npm run production", | |
"production": "mix --production" | |
}, | |
"devDependencies": { |
View originalvite.js
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
"scripts": { | |
"dev": "vite", | |
"build": "vite build" | |
}, |
View webpack.mix.js
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
const mix = require('laravel-mix'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for the application as well as bundling up all the JS files. |
View dockerfile_tutorial
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
RUN curl -sS getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \ | |
&& apt-get install -y nodejs | |
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ | |
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ | |
&& apt-get update && apt-get install -y --no-install-recommends yarn \ | |
&& npm install typescript -g --save-dev \ | |
&& npm install parcel-bundler -g \ |
View testgist.skema
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
[{"name":"invoices","color":"Red","position":{"x":100,"y":100},"increment":true,"timestamp":true,"softdelete":false,"column":[{"name":"user_id","type":"bigIncrements","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":true,"guarded":false,"visible":false,"hidden":false,"colid":"c39","order":0},{"name":"number","type":"integer","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":true,"in":false,"un":false,"fillable":true,"guarded":false,"visible":false,"hidden":false,"colid":"c49","order":1},{"name":"date","type":"datetime","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":true,"guarded":false,"visible":false,"hidden":false,"colid":"c72","order":2},{"name":"due_date","type":"datetime","length":"","defaultvalue":"","enumvalue":"","ai":false,"pk":false,"nu":false,"ui":false,"in":false,"un":false,"fillable":true,"guarded":false,"visible":fals |
View jumprock-form.html
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
<form action="https://jumprock.co/mail/ALIAS" method="post"> | |
<input type="text" name="email" placeholder="Email Address" /> | |
<input type="text" name="message" placeholder="message" /> | |
<input type="submit" value="Contact Us" /> | |
</form> |
View jumprock-form.html
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
<form action="https://jumprock.co/mail/ALIAS" method="post"> | |
<input type="text" name="trapit" value="" style="display:none"> | |
<input type="text" name="email" placeholder="Email Address" /> | |
<input type="text" name="message" placeholder="message" /> | |
<input type="submit" value="Contact Us" /> | |
<input type="hidden" name="after" value="http://google.com"> | |
</form> |
View US Zip Codes from 2013 Government Data
This file has been truncated, but you can view the full file.
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
ZIP,LAT,LNG | |
00601,18.180555, -66.749961 | |
00602,18.361945, -67.175597 | |
00603,18.455183, -67.119887 | |
00606,18.158345, -66.932911 | |
00610,18.295366, -67.125135 | |
00612,18.402253, -66.711397 | |
00616,18.420412, -66.671979 | |
00617,18.445147, -66.559696 | |
00622,17.991245, -67.153993 |
View honeypot.html
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
<input type="text" name="honeypot" value="" style="display:none"> |
View jipost-form.html
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
<form action="//jigpost.xyz/mail/ALIAS" method="post"> | |
<input type="text" name="email" placeholder="Email Address" /> | |
<input type="text" name="message" placeholder="message" /> | |
<input type="submit" value="Contact Us" /> | |
</form> |
NewerOlder