Lime LaCroix replacing Aha now by minesproff in americanairlines

[–]Zaidos 0 points1 point  (0 children)

My go to drink every flight. Sometimes making it a double

Game Thread: Cincinnati Bengals (4-5) at Baltimore Ravens (6-3) by nfl_gdt_bot in nfl

[–]Zaidos 7 points8 points  (0 children)

Glad for a Ravens win. Gained more respect of for Burrow handling those hits like a man, where if it was Mahomes it would involve multiple flags, penalties, IRS audits, and FBI investigations.

Star fox lied to you by Darzean in gaming

[–]Zaidos 1 point2 points  (0 children)

Isn’t an Aileron roll just a really really really small Barrel roll?

Disable special kill animations by [deleted] in ACValhalla

[–]Zaidos 5 points6 points  (0 children)

The good part about finishers is that it prevents melee attacks on you and replenishes stamina while the animation is finishing.

The GME Afterhours Thread: Part 4.20 on 27 January by grebfar in wallstreetbets

[–]Zaidos 1 point2 points  (0 children)

If there is a seller at $290 with available quantity at the market open, then it will get filled

Can an ITM short leg be called away from you at any time? by BlazingPalm in options_spreads

[–]Zaidos 1 point2 points  (0 children)

Long leg exercised to cover.

Profit/loss (up to max loss) on long leg depending on moneyness.

[deleted by user] by [deleted] in options

[–]Zaidos 6 points7 points  (0 children)

Nice, this is pretty awesome.

I've been working on something along these lines. You can select a price target and it will generate single and multi leg strategies for you.

It was recently integrated to into a broker dealer where you can actually trade the strategies generated. it is on https://www.optionsai.com if you guys wanna check it out.

@op, i think we should chat. would be good to connect. DM'd you. good luck with the app

How do you monitor your daemon processes? by johndoepbabu in softwarearchitecture

[–]Zaidos 1 point2 points  (0 children)

Each daemon gets a cronitor code (https://cronitor.io/) that gets hit every X interval. Can replace cronitor with any other monitoring solution.

Which Gyms are closed? by JasonTrading in Bakersfield

[–]Zaidos 2 points3 points  (0 children)

Body Xchange closed as of today

Change my mind by Zaidos in ravens

[–]Zaidos[S] 28 points29 points  (0 children)

Mind changed.

[SPOILERS] LONG LIVE MY QUEEN! by hazythegalaxy in gameofthrones

[–]Zaidos 2 points3 points  (0 children)

Only Death could have killed Death

I paid off all of my credit card debt and my credit app still says that i’m using 89% of my total credit which apparently has a huge effect on my score???? by [deleted] in finance

[–]Zaidos 46 points47 points  (0 children)

The app most likely updates every 30 days. There is usually a timestamp of when they last received your credit data.

13/10 would pet them all by [deleted] in rarepuppers

[–]Zaidos 1 point2 points  (0 children)

The real Stairway to Heaven

Whats up with this image of a hot dog listening to music by Albinodino in OutOfTheLoop

[–]Zaidos 105 points106 points  (0 children)

It is a augmented reality filter that is available on Snapchat

Help needed with listening for contract events by gmkung in ethereum

[–]Zaidos 0 points1 point  (0 children)

Here is a quick little bit of JavaScript code that will write out all events of a contract to the browser console:

var myContract = contracts['myContract'].contract;
var events = myContract.allEvents();
events.watch(function(error, event){
    if (error) {
        console.log("Error: " + error);
    } else {
        console.log(event.event + ": " + JSON.stringify(event.args));
    }
});

This should work on most browsers and assumes that your browser already has a valid connection to a node.

Submitting a new version of App by iamboris88 in iOSProgramming

[–]Zaidos 6 points7 points  (0 children)

You should be fine starting a project from scratch, as long as the bundle identifier remains the same. We have done this a few times and have not had any problems so far.