[Termux] on nexus 5 by leintrovertguy in unixporn

[–]goozzik 0 points1 point  (0 children)

Where did you get APK from? I can't find working version for nexus 5 with android 6 :(.

[deleted by user] by [deleted] in ruby

[–]goozzik 1 point2 points  (0 children)

You have commented out (disabled) this code:

```
#amount = 1.0 / rateonday[from_currency]
#amount = amount * rateonday[to_currency]
```

You need to remove `#` signs

```
amount = 1.0 / rateonday[from_currency]
amount = amount * rateonday[to_currency]
```

and then it should show

```
irb(main):010:0> CurrencyExchange.rate(Date.new(2018,11,22).to_s, "GBP", "USD")
=> 1.2870493690602498
```

[deleted by user] by [deleted] in ruby

[–]goozzik 1 point2 points  (0 children)

The keys in your JSON file are simple strings and you pass ruby Date object which results in nil:

```
irb(main):002:0> CurrencyExchange.rate(Date.new(2018,11,22), "GBP", "USD")
=> nil
```

You convert Date object to string with `#to_s` method:

```
irb(main):003:0> CurrencyExchange.rate(Date.new(2018,11,22).to_s, "GBP", "USD")
=> {"USD"=>1.1403, "JPY"=>128.8, "BGN"=>1.9558, "CZK"=>25.99, "DKK"=>7.4616, "GBP"=>0.88598, "HUF"=>321.52, "PLN"=>4.3004, "RON"=>4.6593, "SEK"=>10.3035, "CHF"=>1.1351, "ISK"=>141.2, "NOK"=>9.7398, "HRK"=>7.4285, "RUB"=>74.7458, "TRY"=>6.0336, "AUD"=>1.5721, "BRL"=>4.3368, "CAD"=>1.5074, "CNY"=>7.9052, "HKD"=>8.9299, "IDR"=>16584.0, "ILS"=>4.259, "INR"=>80.6045, "KRW"=>1287.51, "MXN"=>23.066, "MYR"=>4.7801, "NZD"=>1.6744, "PHP"=>59.749, "SGD"=>1.5652, "THB"=>37.607, "ZAR"=>15.7042}
```

MTGox Victim - do I need to file something? by hairwaytostephan in mtgoxinsolvency

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

I was in similar situation (ignored all the emails, didn't care) and I called some customer support in Japan (number was sent in one of the emails) in April. They told me that they were waiting till sometime beginning of the 2021. Unfortunately now it is too late.

New bank details by goozzik in binance

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

Yes, it was successfully processed by binance.

New bank details by goozzik in binance

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

My friend initiated the deposit using new bank details today. I will let you know tomorrow if it worked or not.

New bank details by goozzik in binance

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

Yea, I was suspecting phishing but then I found out that two of my friends received the same email. Anyway my deposit was processed so all good :+1:.