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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Lars subscriptions in feedly Cloud</title> | |
| </head> | |
| <body> | |
| <outline type="rss" text="24 ways" title="24 ways" xmlUrl="http://feeds.feedburner.com/24ways" htmlUrl="https://24ways.org/"/> | |
| <outline type="rss" text="2ality – JavaScript and more" title="2ality – JavaScript and more" xmlUrl="http://feeds.feedburner.com/2ality" htmlUrl="https://2ality.com/"/> | |
| <outline type="rss" text="A List Apart: The Full Feed" title="A List Apart: The Full Feed" xmlUrl="http://www.alistapart.com/site/rss" htmlUrl="https://alistapart.com"/> |
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 default { | |
| workspaces: { | |
| '.': { | |
| entry: [ | |
| 'src/App.*.tsx', | |
| '{modules,src}/**/*.{android,ios,native,web}.{ts,tsx}', | |
| './plugins/starterPackAppClipExtension/withStarterPackAppClip.js', | |
| './plugins/withAndroidManifestPlugin.js', | |
| './plugins/withAndroidManifestFCMIconPlugin.js', | |
| './plugins/withAndroidStylesWindowBackgroundPlugin.js', |
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 { WindowManagement } from "@raycast/api"; | |
| import { runAppleScript } from "run-applescript"; | |
| type Desktop = WindowManagement.Desktop; | |
| type Window = WindowManagement.Window; | |
| const maximize = (screen: Desktop, win: Window) => setWindowBounds(screen, win.id); | |
| // 75% left on/if second display | |
| const left = (screen: Desktop, win: Window) => setWindowBounds(screen, win.id, screen.size.width * 0.75); |
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
| /* | |
| * This script decides whether containers need to be re-built (and thus re-deployed). | |
| * The result is a special `task.setvariable` printed to the console for affected containers, | |
| * to be picked up by the next build stage in the pipeline. | |
| * | |
| * Usage: | |
| * | |
| * node is-affected.js --pipelineId 1 --app website --app dashboard --app services | |
| * | |
| * Example output: |
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 util = require('util'); | |
| const result = title => err => { | |
| if (err instanceof Error) { | |
| console.log(`✖ ${title}`); | |
| console.error(err.actual || err); | |
| } else { | |
| console.log(`✔ ${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
| /* istanbul include next */ | |
| function bar() { | |
| // | |
| } | |
| module.exports = { | |
| bar: bar | |
| } |
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
| testem: { | |
| coverage: { | |
| options: { | |
| test_page: 'test/index.html#testem,coverage', | |
| parallel: 2, | |
| launch_in_ci: ['PhantomJS'], | |
| on_start: require('./collect-coverage'), | |
| before_tests: 'istanbul instrument src/ --complete-copy --output src_instrumented/', | |
| after_tests: 'istanbul report --root coverage/data/ --dir coverage/report/' | |
| } |
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
| // lib/bar/baz.js | |
| define('bar/baz', [], function() {}); | |
| // foo.js | |
| define(['lib/bar/baz'], function(baz) { | |
| // resource requested, but baz = undefined | |
| }); |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>My Feeds</title> | |
| </head> | |
| <body> | |
| <outline text="24 ways" htmlUrl="http://24ways.org/" type="rss" xmlUrl="http://feeds.feedburner.com/24ways"/> | |
| <outline text="2ality – JavaScript and more" htmlUrl="http://www.2ality.com/" type="rss" xmlUrl="http://feeds.feedburner.com/2ality"/> | |
| <outline text="456 Berea Street" htmlUrl="http://www.456bereastreet.com/" type="rss" xmlUrl="http://feeds.feedburner.com/456bereastreet"/> | |
| <outline text="@verekia's blog" htmlUrl="http://verekia.com" type="rss" xmlUrl="http://verekia.com/feed"/> |
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
| define(['wire!otherSpec'], function(otherSpec) { | |
| return { | |
| myModule: { | |
| extends: { $ref: 'otherSpec.myBaseModule' }, | |
| args: { | |
| ['argOverrides'] | |
| } | |
| } | |
| } | |
| }); |
NewerOlder