classDiagram
VoiceCheckoutState --|> State
VoiceCheckoutState : - orderProcessService
VoiceCheckoutState : - recommendationService
VoiceCheckoutState : - analyticsService
VoiceCheckoutState : - orderReminderService
VoiceCheckoutState : - store
VoiceCheckoutState : - getIncludedServices()
VoiceCheckoutState : - getSimBindingInfo()
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
--- | |
name: Mov to Gif | |
command: ffmpeg -i {{mov_file}} -pix_fmt rgb8 -r 10 {{output_name}} && gifsicle -O3 {{output_name}} -o {{output_name}} | |
tags: | |
- ffmpeg | |
- gifsicle | |
- gif | |
description: Convert .mov to .gif using ffmpeg and gifsicle | |
arguments: | |
- name: mov_file |
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
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
choco install cascadiafonts | |
choco install firacodenf | |
choco install jetbrainsmono | |
choco install microsoft-windows-terminal | |
choco install powershell-core | |
choco install oh-my-posh |
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
// Set body class from meta property bodyClass | |
router.beforeEach((to, from, next) => { | |
const getBodyClass = (acc, routeRecord) => { | |
if (routeRecord.meta && routeRecord.meta.bodyClass) { acc.push(routeRecord.meta.bodyClass) } | |
return acc | |
} | |
const prevBodyClass = from.matched.reduce(getBodyClass, []) | |
const newBodyClass = to.matched.reduce(getBodyClass, []) | |
prevBodyClass.forEach(c => { |
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
[rerere] | |
enabled = true # reuse recorded resolution of conflicted merges | |
autoUpdate = true # update the index with reused conflict resolution if possible | |
[column] | |
ui = auto # show branch list in columns | |
[branch] | |
sort = -committerdate # sort branches by committer date | |
[alias] | |
co = checkout | |
c = commit -m |