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
Meteor.startup(function() { | |
var require = __meteor_bootstrap__.require | |
var connect = require('connect') | |
__meteor_bootstrap__.app.use(connect.basicAuth('username', 'password')) | |
var basicAuth = __meteor_bootstrap__.app.stack.pop() | |
__meteor_bootstrap__.app.stack.unshift(basicAuth) | |
}) |
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
// Flutter code sample for Scaffold | |
// This example shows a [Scaffold] with an [AppBar], a [BottomAppBar] and a | |
// [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in order | |
// to center the text within the [Scaffold]. The [FloatingActionButton] is | |
// centered and docked within the [BottomAppBar] using | |
// [FloatingActionButtonLocation.centerDocked]. The [FloatingActionButton] is | |
// connected to a callback that increments a counter. | |
// | |
//  |
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
// Flutter code sample for Scaffold | |
// This example shows a [Scaffold] with an [AppBar], a [BottomAppBar] and a | |
// [FloatingActionButton]. The [body] is a [Text] placed in a [Center] in order | |
// to center the text within the [Scaffold]. The [FloatingActionButton] is | |
// centered and docked within the [BottomAppBar] using | |
// [FloatingActionButtonLocation.centerDocked]. The [FloatingActionButton] is | |
// connected to a callback that increments a counter. | |
// | |
//  |
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
wget https://aka.ms/vs/17/release/vs_community.exe; | |
$process = Start-Process -FilePath vs_community.exe -ArgumentList "modify", "--productId", "Microsoft.VisualStudio.Product.Community", "--channelId", "VisualStudio.17.Release", " --add", " Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset", "Microsoft.VisualStudio.Component.VC.Llvm.Clang", "--passive", "--wait" -Wait -PassThru; | |
Write-Output $process.ExitCode; |