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
| To export SVG from Google Slides. | |
| 1. Open Slide deck. | |
| 2. View -> 100% | |
| 3. Click on every thumbnail from first to last, this puts the SVG into the DOM. | |
| 4. Paste the export.js in the console. | |
| 5. Make sure to allow multiple downloads. | |
| 6. All SVG should be in Downloads folder. | |
| Cheers, |
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
| export class Storage{ | |
| static STORAGE_KEY:string = 'todos-vuejs'; | |
| static todos:any = null; | |
| static fetch(){ | |
| if( !Storage.todos ){ | |
| Storage.todos = JSON.parse( localStorage.getItem( Storage.STORAGE_KEY ) || '[]' ); | |
| } | |
| return Storage.todos; | |
| } |
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
| Vue.filter( 'timecode' , function( value ){ | |
| var seconds = Math.floor( value % 60 ).toString(); | |
| var minutes = Math.floor( value / 60 ).toString(); | |
| if( seconds.length === 1 ){ | |
| seconds = '0' + seconds; | |
| } | |
| return minutes + ':' + seconds; | |
| }); |
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
| branch-defaults: | |
| default: | |
| environment: test | |
| group_suffix: null | |
| global: | |
| application_name: test | |
| default_platform: Go 1.4 | |
| default_region: us-west-2 |
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
| Sub Export4KPowerpoint() | |
| If ActivePresentation.CreateVideoStatus <> ppMediaTaskStatusInProgress Then | |
| ActivePresentation.CreateVideo FileName:=Environ("USERPROFILE") & "\Desktop\export.mp4", _ | |
| UseTimingsAndNarrations:=True, _ | |
| VertResolution:=2160, _ | |
| FramesPerSecond:=30, _ | |
| Quality:=100 | |
| Else: MsgBox "There is another conversion to video in progress" | |
| End If | |
| End Sub |
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
| Vue.component( 'inputtext' , { | |
| template:'<input type="text" :value="value" @input="input($event.target.value)" @change="change" @keyup="keyup" @keypress="keypress" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" >', | |
| props:['value'], | |
| methods:{ | |
| input( newInput ){ | |
| this.$emit('input', newInput); | |
| }, | |
| change(){ | |
| //console.log( 'change: ' + this.value ); | |
| if( this.$el.maxlength && this.$el.value.length > this.$el.maxlength ){ |
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
| { | |
| "order": { | |
| "userProfile": { | |
| "street2": "", | |
| "isLogin": true, | |
| "street1": "10955 La Cantera Pkwy", | |
| "lastName": "Patrick", | |
| "businessName": null, | |
| "zipcode": "78256", | |
| "state": "TX", |
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
| <div class="div__center-content"> | |
| <div style="padding-top:1em"> | |
| <p v-if="institution.showPersonalization==true" class="welcome__text-welcome">{{* lang.welcome.text.welcome}}{{welcomeName}}</p> | |
| <p class="h4 welcome__text-title">{{* lang.welcome.text.title }}</p> | |
| <p class="h11 welcome__text-subtitle">{{* lang.welcome.text.subTitle }}</p> | |
| </div> | |
| <checkcarousel></checkcarousel> | |
| <div class="h5" v-if="activeProduct.isBusinessProduct">{{ activeProduct.name }}</div> | |
| <div v-if="order.placedOn != ''"><span class="welcome__text-order">{{* lang.welcome.text.order }} {{lastCheckOrderDate}} </span> | <a class="welcome__text-status" :href.once="'/express-checkout/link/orderstatus/' + linkToken" @click="status">{{* lang.welcome.text.status }}</a></div> | |
| <div class="pure-u-1 welcome__btn"> |
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
| //setup component to load async when used | |
| //VLoad returns an async function(resolve, reject) {...} | |
| //this will | |
| Vue.component( 'arrowback' , VLoad( 'component.js' ) ); | |
| new Vue({ | |
| el: 'body', | |
| template:"<arrowback></arrowback>" | |
| }); |
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
| packages: | |
| yum: | |
| nfs-utils: [] | |
| commands: | |
| 0_umount_efs: | |
| command: sudo umount /efs_mount; | |
| ignoreErrors: true | |
| files: |
NewerOlder