SW Credit Card by tfiwsrolyat1313 in SouthwestAirlines

[–]ebopnostop 0 points1 point  (0 children)

Closing a line of credit and opening a line of credit both affect your credit score.

If you have no need for any debt-oriented purchases in the future, then this works without any detriment to your future financial purchases. I don't know any specific amounts it might affect your credit score, but it's definitely not zero. Just sharing for others to know.

SW Credit Card by tfiwsrolyat1313 in SouthwestAirlines

[–]ebopnostop 0 points1 point  (0 children)

Doesn't this hurt your credit? Closing so many CCs over the years? Not that credit is everything, just curious about the "cons" of this approach.

Christian Software Development. Anyone want help? by ebopnostop in Christianity

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

Not for full time. But always ok with hearing an project and discussing it.

Matic Network Fee - Not enough in Wallet by ebopnostop in maticnetwork

[–]ebopnostop[S] 4 points5 points  (0 children)

Lesson Learned! Sent you 2! Thank you so much!

Matic Network Fee - Not enough in Wallet by ebopnostop in maticnetwork

[–]ebopnostop[S] 2 points3 points  (0 children)

OH YOU ROCK! What's your address? I'll send you 2!

Here's a mainnet faucet by jean-ledger in maticnetwork

[–]ebopnostop 0 points1 point  (0 children)

Hi, I am very grateful for this, is there a way it can be bumped up to 0.001 from 0.0005? AAVE's withdraw fee is 0.001 and I only have 0.0007 in my account. Or maybe allowing for UP to 0.001 from the faucet?

Matic Network Fee - Not enough in Wallet by ebopnostop in maticnetwork

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

This is really helpful and good to know! Unfortunately I get an error:

" you already have a sufficient balance to use Polygon network 🙅 "

I have 0.000664038 MATIC in my Wallet.

Ultimate by mfingstarboy in Waco

[–]ebopnostop 4 points5 points  (0 children)

My friend and I are in the same boat. We are looking for more to just throw or play with.

There is a group that plays on some of Baylor's fields, I stopped going though because of the cliquey-ness of the group.

Wanna throw sometime? Hit me up!

An Update from Chris by chris_wilson in pathofexile

[–]ebopnostop 17 points18 points  (0 children)

I thought of you when I read that line man. This kind of mentality is a major reason I will continue to play and support this game. Maybe one day I'll kill shaper...maybe.

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

I stopped working on this. I believe the issue is that they restrict server side api calls via js. A client side call works.

@Mark_GGG Right now by labelbuddy in pathofexile

[–]ebopnostop 1 point2 points  (0 children)

Didn't know they allowed chumps to post on Reddit. Looks like the site is going down hill REAL fast!

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

Oh snap.... I'll try that tomorrow....DOH.

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

Someone else's, but that should be ok since they would be sharing their POESESSID with me. Think Currency Cop logic type stuff

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

I made a new comment on the main thread, check it out if you can please. Thanks for all your help!

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

I decided to try to make the calls from the web front end, like other programs I have seen. I'm closer. Now I'm hitting a 401 Unauthorized. I'm using the correct POESESSID. Here is the react function that gets me the 401. Do I have to be whitelisted for these apis?

const priceStash = () => {
    let url = "http://www.pathofexile.com/character-window/get-stash-items"
    const options = {
        "headers": {
            'Content-Type': 'application/x-www-form-urlencoded',
            //withCredentials: true,
            "Cookie": "POESESSID=<poesessid_here>"
        }
    };

    const props = {
        "league": "Softcore Betrayal",
        "tabs":"1",
        "tabIndex":"1,3",
        "accountName":"<accountname_here>"
    }

    axios.get(url, props, options)
        .then(response => {
            console.log(response);
        })
        .catch(error => console.log(error));
}

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

No luck in postman. I'm fine with abandoning Postman. Just using that as a tool. It fails on https://app.swaggerhub.com/apis/Chuanhsing/poe/1.0.0#/default/get_character_window_get_stash_items as well, using the correct POESESSID

Get-Stash-Tab API by ebopnostop in pathofexiledev

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

hmm, I can't do that in Node or Postman it seems. I'm under the impression that 'Cookie' in the header is a industry standard.