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
| declare module 'document-offset' { | |
| export default function offset(ele: HTMLElement): {top: number, left: number}; | |
| } |
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
| declare module 'css-vars-ponyfill' { | |
| export default function cssVars(css: { | |
| variables: any, | |
| onSuccess?(cssText: string): void, | |
| onError?(message: string, node: any): void, | |
| onWarning?(message: string): void, | |
| onComplete?(cssText: string, styleNode: any): void, | |
| }): void; | |
| } |
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
| declare module 'webcamjs' { | |
| export function attach(selector: string): any; | |
| export function snap(callback: (dataUri: string) => void): void; | |
| export function reset(): void; | |
| export function on(event: 'live', callback: () => void): void | |
| export function on(event: 'error', callback: (error: Error) => void): void | |
| export function off(event: string, callback?: () => void): void; | |
| } |
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
| [ | |
| /* left wrist top */ | |
| /* left thumb */ | |
| [ | |
| {"x": 86, "y": 1}, | |
| {"x": 128, "y": 27}, | |
| {"x": 166, "y": 44}, | |
| {"x": 193, "y": 30}, | |
| {"x": 227, "y": 12}, | |
| {"x": 243, "y": 7}, |
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
| // builds an rgba string to use for canvas fill style | |
| window.cocept.build_rgba = function(red, green, blue, alpha) { | |
| var rgba = 'rgba(' | |
| + red | |
| + ', ' | |
| + green | |
| + ', ' | |
| + blue | |
| + ', ' | |
| + alpha |
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
| permalink: /:categories/:title/ |
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
| permalink: /:categories/:title |
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
| server { | |
| listen 80; | |
| # ... rest of my configuration settings ... # | |
| client_max_body_size 20M; | |
| } |
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
| client_max_body_size 20M; |
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
| python wordpress_seo_spam_remover.py -d mysql_database_name -u mysql_username -p mysql_password -o mysql_hostname |
NewerOlder