- Sign Up
- Credit Card Checkout
- Landing Page (above the fold)
- Calculator
- App Icon
- User Profile
- Settings
- 404 page
This file contains hidden or 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
| <template> | |
| <div class="editorjs" ref="htmlelement"></div> | |
| </template> | |
| <script setup> | |
| import EditorJS from '@editorjs/editorjs'; | |
| import EmbedTool from '@editorjs/embed'; | |
| import ListTool from '@editorjs/list'; | |
| import ImageTool from '@editorjs/image'; | |
| import VideoTool from './editorjs/video.js'; | |
| import { onMounted, onUnmounted, ref, watch } from 'vue'; |
This file contains hidden or 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
| 'use strict'; | |
| // company-model.js - A sequelize model | |
| // | |
| // See http://docs.sequelizejs.com/en/latest/docs/models-definition/ | |
| // for more of what you can do here. | |
| const Sequelize = require('sequelize'); | |
| module.exports = function(sequelize) { |
mostly in the realm of creative coding and graphics programming
lots of these are my own :)
https://www.npmjs.org/package/wzrd (browserify dev server)
https://www.npmjs.org/package/budo (like wzrd but with incremental watching & LiveReload)
https://www.npmjs.org/package/beefy (more fully-featured dev server)
This took me several hours to figure out so I figured it was worth writing down.
Hopefully this step by step can be used to get node running locally without a lot of problems that are commonly ran into.
Update July 7th 2014 - Updated most of the versions including not pointing to the heartbleed version of OpenSSL
This file contains hidden or 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 list of possible usernames to reserve to avoid | |
| # vanity URL collision with resource paths | |
| # It is a merged list of the recommendations from this Quora discussion: | |
| # http://www.quora.com/How-do-sites-prevent-vanity-URLs-from-colliding-with-future-features | |
| # Country TLDs found here: | |
| # http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains | |
| # Languages found here: |