This file contains 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 file contains 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
class Roman { | |
my %map = | |
'units' => ['I', 'V', 'X'], | |
'tens' => ['X', 'L', 'C'], | |
'hundreds' => ['C', 'D', 'M'], | |
; | |
method step($size, $n) { | |
my ($one, $five, $ten) = %map{$size}.list; | |
given $n { |
This file contains 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
[TestFixture] | |
public class ActionAttributeDemoTest : ITempDirectoryTest | |
{ | |
public string TemporaryDirectoryToStoreTestData { get; set; } | |
[Test] | |
public void ITempDirectoryTest_ImplementsInterface_TemporaryDirectoryIsCreatedAutomatically() | |
{ | |
Assert.That(Directory.Exists(TemporaryDirectoryToStoreTestData), Is.True); | |
} |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
This file contains 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. Opening Event (5604) | |
2. Keynote (5056) | |
3. Fnord-Jahresrückblick (5036) | |
4. Methodisch inkorrekt! (4994) | |
5. Ten years after ‚We Lost The War‘ (4820) | |
6. (Un)Sicherheit von App-basierten TAN-Verfahren im Onlinebanking (4039) | |
7. NSA-Untersuchungsausschuss: Zwischen Aufklärungswillen und Mauern aus Schweigen (4030) | |
8. Safe Harbor (3866) | |
9. Building and Breaking Wireless Security (3799) | |
10. The exhaust emissions scandal („Dieselgate“) (3719) |
This file contains 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
node { | |
echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
echo 'No quotes, pipeline command in single quotes' | |
sh 'echo $BUILD_NUMBER' // 1 | |
echo 'Double quotes are silently dropped' | |
sh 'echo "$BUILD_NUMBER"' // 1 | |
echo 'Even escaped with a single backslash they are dropped' | |
sh 'echo \"$BUILD_NUMBER\"' // 1 | |
echo 'Using two backslashes, the quotes are preserved' | |
sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
OlderNewer