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
/* ... SNIP ... */ | |
// Commnet out the line | |
//window.axios = require('axios'); | |
// Add the ES2015 formation | |
import axios from 'axios'; | |
window.axios = axios; | |
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; |
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
/* ... SNIP ... */ | |
require('./bootstrap'); | |
// 1. Comment out this following line: | |
// window.Vue = require('vue'); | |
// 2. Add below the above commented-out line: | |
import Vue from 'vue'; | |
import VueRouter from "vue-router"; |
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
/* ... SNIP ... */ | |
try { | |
window.Popper = require('popper.js').default; | |
window.$ = window.jQuery = require('jquery'); | |
require('bootstrap'); | |
require('admin-lte'); // Include AdminLTE | |
} catch (e) {} |
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
// Fonts | |
@import url('https://fonts.googleapis.com/css?family=Nunito'); | |
// Font Awesome | |
@import '~@fortawesome/fontawesome-free/scss/brands'; | |
@import '~@fortawesome/fontawesome-free/scss/regular'; | |
@import '~@fortawesome/fontawesome-free/scss/solid'; | |
@import '~@fortawesome/fontawesome-free/scss/fontawesome'; | |
// Variables |
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
{ | |
"private": true, | |
"scripts": { | |
"... SNIP ...": "Removed for purposes of example" | |
}, | |
"devDependencies": { | |
"... SNIP ...": "Removed for purposes of example", | |
"vue-router": "^3.1.3" | |
}, | |
"dependencies": { |
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
char_count = 1 | |
check_chars = "" | |
while char_count < 254: | |
#new line, carriage return | |
if char_count not in [10, 13]: | |
check_chars += chr(char_count) | |
char_count +=1 | |
# Write to disk for !mona compare. |
NewerOlder