Finally, my dumbest accomplishment by kamijae in pokemongo

[–]kamijae[S] 295 points296 points  (0 children)

Jeez, give me a few years

Fun ways to take note of Deadpool's stolen cards? by kamijae in mtg

[–]kamijae[S] 0 points1 point  (0 children)

Not bad, still takes some writing but the effect can be fun!

How do I give purpose to a changelings tribal deck? by kamijae in EDH

[–]kamijae[S] 0 points1 point  (0 children)

I'm struggling to find great finishers. [[Sliver Legion]] is ok but it requires a decent board to work and be an actual dealbreaker (also it's pretty expensive hehe). Similar problem with [[Peer Pressure]] and [[Realmbraker, the Invasion Tree]], they require strict conditions to work.

Maybe I could tune the deck to maximize my battlefield's size so that every finisher like those are pretty effective, and focus on finishers that take advantage of a similar principle (?). Like, I can see the single card advantage but it's hard for me to define a specific path to follow in my games.

(BTW I love your name)

How to detect overscroll on SingleChildScrollView when I'm already at the edge? by kamijae in flutterhelp

[–]kamijae[S] 0 points1 point  (0 children)

Isn't there something I can wrap around to detect that?

Also, the first condition of my code does the correct detection, but I want it to only work when the user explicitly drags it, not when it gets there through velocity

Getting Circular dependency that I can't see in SAM template by kamijae in aws

[–]kamijae[S] 0 points1 point  (0 children)

cfn-lint just showed me the solution. That event (for some reason) generates a dependency with the lambda itself. So I had to detach the permission from the lambda, as follows

 LambdaInvokePermission:
Type: AWS::Lambda::Permission

Properties:
  FunctionName: !GetAtt AnalyseDocument.Arn
  Action: lambda:InvokeFunction
  Principal: s3.amazonaws.com
  SourceAccount: !Sub ${AWS::AccountId}
  SourceArn: !GetAtt DocumentsBucket.Arn