I hereby claim:
- I am bsideup on github.
- I am bsideup (https://keybase.io/bsideup) on keybase.
- I have a public key whose fingerprint is 08B0 9F78 7B67 45E7 96CE 6DBE 1003 06F2 B379 3BF3
To claim this, I am signing this object:
| CompilerConfiguration configuration = new CompilerConfiguration() | |
| configuration.disabledGlobalASTTransformations = Collections.singleton(MacroTransformation.name); | |
| def normalShell = new GroovyShell(configuration); | |
| def macroShell = new GroovyShell(); | |
| def r = benchmark { | |
| 'macro' { | |
| macroShell.evaluate """ | |
| assert "bytes" == propertyName("".bytes) | |
| """ |
| given: | |
| Integer a | |
| Integer b | |
| match: | |
| a.equals(b) | |
| replaceWith: | |
| a == b |
I hereby claim:
To claim this, I am signing this object:
| package view.testView | |
| { | |
| import tl.viewController.IVIewController; | |
| public interface ITestViewController extends IVIewController, ITestViewDelegate | |
| { | |
| } | |
| } |
| package | |
| { | |
| import flash.display.Sprite; | |
| import flash.events.Event; | |
| [SWF(frameRate="1")] | |
| public class DSL extends Sprite | |
| { | |
| private var myModel : MyModel = new MyModel(); |
| package | |
| { | |
| import flash.display.Sprite; | |
| public class FunctionCallTests extends Sprite | |
| { | |
| public function FunctionCallTests() | |
| { | |
| traceMyArgs( $[this, "yo"] ); | |
| } |
| <?xml version="1.0"?> | |
| <native:Bootstrap xmlns:fx="http://ns.adobe.com/mxml/2009" | |
| xmlns:native="http://www.trylogic.ru/native" | |
| xmlns:services="ru.trylogic.dummy.services.*" | |
| xmlns:trylogic="http://www.trylogic.ru/ioc/"> | |
| <fx:Metadata> | |
| [SWF(width="1024", height="768", frameRate="60", backgroundColor="0x909090")] | |
| </fx:Metadata> |
| <?xml version="1.0"?> | |
| <gui:ContainerBase xmlns:fx="http://ns.adobe.com/mxml/2009" | |
| xmlns:gui="http://www.trylogic.ru/gui" | |
| xmlns:trylogic="http://www.trylogic.ru/" | |
| xmlns:s="library://ns.adobe.com/flex/spark"> | |
| <gui:controllerClass>ru.trylogic.dummy.views.dummyApplicationView.DummyApplicationViewController</gui:controllerClass> | |
| <gui:eventMaps> | |
| <trylogic:EventMap source="{myButton}" type="tap" destination="{new Event('myButtonTapped')}" /> |
| #!/bin/bash | |
| echo -e "\n\n\n" | ssh-keygen -t rsa | |
| ssh-keyscan -H github.com >> ~/.ssh/known_hosts | |
| ls -la ~/.ssh/ |
| #!/bin/bash | |
| echo "Hello, world!" |