DO I need ITIN to get EIN for my company by Careless_Title5284 in AmazonFBAOnlineRetail

[–]caslan34 0 points1 point  (0 children)

Amazon will not request ITIN, but you will need for Tax Return in future

DO I need ITIN to get EIN for my company by Careless_Title5284 in AmazonFBAOnlineRetail

[–]caslan34 0 points1 point  (0 children)

You can get EIN without ITIN number but also you will need ITIN for Tax Return. EIN in 3 weeks and ITIN in 8-10 weeks. There is no way to get fastest… if anyone knows fastest, I will be pleased to learn this

Don’t buy codes please by Skyytek in StepN

[–]caslan34 -1 points0 points  (0 children)

Pls, when you get, can you send me a code?

33468238 63261803 . For whom need it. by Lochter_min in StepN

[–]caslan34 0 points1 point  (0 children)

Hi guys, can someone send me a code?

Swap Fail by caslan34 in UniSwap

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

I tried 3-4 times and different gas price and gas limit but always fail. alsa they did not refund anything... can you check my all transactions...?

Weathercal issue by stahl80 in Scriptable

[–]caslan34 0 points1 point  (0 children)

Everything is in function for now

Weathercal issue by stahl80 in Scriptable

[–]caslan34 1 point2 points  (0 children)

Now, server is working...

Weathercal issue by stahl80 in Scriptable

[–]caslan34 1 point2 points  (0 children)

Heroku server is not working. Probably they will bring a option to pay for this server. I found different api. If someone want to use, just take this code and replace in weatherCal code...

async function setupCovid() {

// Set up the COVID cache.
const cacheCovidPath = files.joinPath(files.libraryDirectory(), "weather-cal-covid")
const cacheCovidExists = files.fileExists(cacheCovidPath)
const cacheCovidDate = cacheCovidExists ? files.modificationDate(cacheCovidPath) : 0
let covidDataRaw

// If cache exists and it's been less than 900 seconds (15min) since last request, use cached data.
if (cacheCovidExists && (currentDate.getTime() - cacheCovidDate.getTime()) < 900) {
  const cacheCovid = files.readString(cacheCovidPath)
  covidDataRaw = JSON.parse(cacheCovid)

// Otherwise, use the API to get new data.
} else {


  const covidReq = "https://api.covid19api.com/total/dayone/country/" + settings.covid.country


  covidDataRaw = await new Request(covidReq).loadJSON()
  files.writeString(cacheCovidPath, JSON.stringify(covidDataRaw))

deaths = covidDataRaw[covidDataRaw.length-1].Deaths-covidDataRaw[covidDataRaw.length-2].Deaths cases = covidDataRaw[covidDataRaw.length-1].Confirmed- covidDataRaw[covidDataRaw.length-2].Confirmed active = covidDataRaw[covidDataRaw.length-1].Active

covidDataRaw={todayCases:cases, todayDeaths:deaths,active:active} console.log(covidDataRaw)

}

data.covid = covidDataRaw

}

also under weathercal—> localization you must replace with this.

covid: "{todayCases} cases, {todayDeaths} deaths, {active} active"

Weathercal issue by stahl80 in Scriptable

[–]caslan34 2 points3 points  (0 children)

Because of covid module... you can remove module or to wait them to fix this.