- Download and install the Keyframes Player application.
- Download our custom install script to your desktop. It should be saved as
install-keyframes.sh
. - Open the
Terminal
application (inside your/Applications
folder - it might be under theApplications/Utilities
subdirectory) - Type
sh ~/Desktop/install-keyframes.sh
, and hitenter
in order to install the Keyframes extension and its dependencies.- At some point the script will ask permission to install Xcode Tools. Say yes.
- At some point it will ask you to enter your password. When you type it in, the characters will not display for security reasons. So type carefully, and then hit enter. If you mistype, it will ask you again.
- Some error messages and warnings may appear.
This file has been truncated, but you can view the full 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
[17E8:1B4C][2016-10-10T12:11:36]i001: Burn v3.7.4906.0, Windows v10.0 (Build 14393: Service Pack 0), path: C:\Users\will\AppData\Local\Temp\{8FD4FD17-D36B-45A1-88F3-6C7580B36C40}\vs_community.exe, cmdline: '/ChainingPackage ct3!!a6ae4dbe0137be43afb0291c5d53530f-ct!!4A7F21E333A544F990406B9347064B63' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing string variable 'SKUFriendlyName' to value 'VS Community' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing numeric variable 'SKUFriendlyID' to value '1800' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing string variable 'ExtraEditionDisplayName' to value '#loc.slipstream' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing string variable 'EditionDisplayName' to value 'Community 2015' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing string variable 'SKUFullName' to value 'vs_community_SlipStream_3' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing numeric variable 'VSUpdateGeneralVersion' to value '3' | |
[17E8:1B4C][2016-10-10T12:11:36]i000: Initializing string |
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
const serialize = (params) => { | |
let whitelist = ['category', 'order', 'search', 'number'] | |
return (!params) ? '' : '?' + Object.keys(params) | |
.filter(p => whitelist.includes(p)) | |
.map(p => `${p}=${params[p]}&`) | |
.reduce((p, c) => p + c) | |
.slice(0, -1) | |
} |
This guide summarizes some helpful strategies and resources encountered while debugging memory usage in the
hashicorp/learn
repository.
In JS, memory issues occur when old objects aren't garbage collected, and pile up on the heap. We can observe the issue by noting performance degradation over time, or by maxing out memory within a single program.
Typically memory issues are discovered because performance slows down. You might also encounter this fun error if your program runs out of memory:
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
1. erell ranson - if we never try (sw amnesia interpretation) [kalahari oyster cult] | |
2. george t - force majeure [honchos] | |
3. junkie sartre - you can turn it on [decore] | |
4. russ gabriel - bossatronic [freshstart] | |
5. halo varga - in da groove [ng trax] | |
6. souldoubt - haunted house [surreal] | |
7. skee mask - trackheadz [ilian tape] | |
8. bandulu - long count [foundation sound] | |
9. bandulu - repercussions [foundation sound] | |
10. dj sports - akrasia (central mix) [help] |
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
import { FeatureProvider } from '@payloadcms/richtext-lexical' | |
export const DisableAutoLinkFeature = (): FeatureProvider => { | |
return { | |
key: 'disable-auto-link', | |
feature: () => { | |
return { | |
props: null, | |
plugins: [ | |
{ |
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
import { createHeadlessEditor } from '@lexical/headless' | |
import { | |
EditorConfig, | |
getEnabledNodes, | |
sanitizeEditorConfig, | |
} from '@payloadcms/richtext-lexical' | |
import { $getRoot, SerializedRootNode } from 'lexical' | |
import { Validate } from 'payload/types' | |
import { simple } from '../config/lexical' |
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
import { | |
consolidateHTMLConverters, | |
convertLexicalToHTML, | |
lexicalEditor, | |
sanitizeEditorConfig, | |
} from '@payloadcms/richtext-lexical' | |
import { createHash } from 'crypto' | |
import stringify from 'json-stable-stringify' | |
import { SerializedEditorState } from 'lexical' | |
import { FieldBase, RichTextField, TextField } from 'payload/types' |
OlderNewer