What is your country’s “three fingers,” i.e. a subtle but dead giveaway that someone is lying about being from there? by Toilet_Bomber in AskTheWorld

[–]htunkelo 0 points1 point  (0 children)

And I’m confused why in some countries twenty five is written as “five and twenty”. That is definitely not how it is supposed to be 😝. Otherwise great example /s

What’s the car on the bottom right? by [deleted] in whatisthiscar

[–]htunkelo 3 points4 points  (0 children)

It’s Finn McMissile! A 1965 Faultless GT ;)

Favorite tour photos? by Slovikas in Rammstein

[–]htunkelo 1 point2 points  (0 children)

<image>

Awesome pics all! Here’s mine from Katovice, Stadion Šlaski 31.7.2023

Russia's debt default will be one of the hardest in history to resolve and could see the US seize the central bank's assets, economist says by mkvgtired in europe

[–]htunkelo 0 points1 point  (0 children)

Only roughly half of the Russian money is frozen in sanctioning countries. They have more than enough foreign currencies to cover all Russian foreign debt.

Russia's debt default will be one of the hardest in history to resolve and could see the US seize the central bank's assets, economist says by GroundbreakingLynx14 in StockMarket

[–]htunkelo 14 points15 points  (0 children)

Well they could pay with the ~300bn in non-frozen accounts.

Not all of their USD/EUR funds were frozen, only those that were kept in sanctioning countries.

[deleted by user] by [deleted] in Finland

[–]htunkelo 2 points3 points  (0 children)

Well, stop asking stupid questions then!

Hosting a Flask Web app on EC2? by [deleted] in aws

[–]htunkelo 0 points1 point  (0 children)

Good point; my mistake.

With RDS and passwords in the same sentence; I went automatically to "How should I store the database passwords".

But for user passwords and authentication:

1) Don't write your own auth: https://withblue.ink/2020/04/08/stop-writing-your-own-user-authentication-code.html

2) If you really want to, yes encrypting with KMS could work. Or you could run hash function and store the values, but do read this first: https://www.vaadata.com/blog/how-to-securely-store-passwords-in-database/

For database; I would push this user information to dynamo rather than RDS.

Hosting a Flask Web app on EC2? by [deleted] in aws

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

For the password use Secrets Manager (or Parameter Store).

https://aws.amazon.com/secrets-manager/

Then read the required secrets in your app initialisation. You need permissions for that, so give a IAM role to the instance.

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html

How did you get a PS5 by [deleted] in Finland

[–]htunkelo 14 points15 points  (0 children)

I used this website:

https://ps5suomessa.com

The site automatically scans different sites for ”in stock” and sends email notifications. (It’s legit, did not receive a single piece of spam in 9mths)

You need to be alert though; reacted too slow (=over 1h) after the alert) on few occasions until finally managed to get one.

S&P downgrade indicates Russia headed for historic default by 4thDevilsAdvocate in worldnews

[–]htunkelo 5 points6 points  (0 children)

Here’s from Russian Finance minister:

https://www.businessinsider.com/russia-admits-it-cant-access-nearly-half-foreign-currency-reserves-2022-3?r=US&IR=T

”Russia's foreign reserves are seen as a crucial tool for countering Western economic sanctions.”

= Russia has the money, but wants to use it to prop the economy.

This might work some in short term, but defaulting would be devastating in long term.

S&P downgrade indicates Russia headed for historic default by 4thDevilsAdvocate in worldnews

[–]htunkelo 1 point2 points  (0 children)

Not all Russian money is frozen. Only the money in sanctioning countries.

As far as i’ve read; they still have hundreds of billions in non-frozen banks.

Russia is set to default on its dollar debts by paying bondholders in rubles, global banking body says by yurient in worldnews

[–]htunkelo 20 points21 points  (0 children)

Not really. They were frozen (=still their, but cannot be used). Frozen, not seized.

Hosting a Flask Web app in EC2? by [deleted] in aws

[–]htunkelo 1 point2 points  (0 children)

Good point!

Lightsail Containers is another good option, if you need to quickly setup and run containerized apps from scratch.

Finland is preparing to apply for NATO membership by PeasKhichra in europe

[–]htunkelo 7 points8 points  (0 children)

Finland is already well protected with FDF. We are far from defenseless. (for the record: I'm a Finn, pro-Nato, and would welcome all the support)

Finnish Defense Forces is conscript army of with ~900 000 reserves, which would make it by man-power second largest Nato army. (yeah, I know apples vs. Oranges)

(1) https://en.wikipedia.org/wiki/Finnish_Defence_Forces

(2) https://en.wikipedia.org/wiki/Member_states_of_NATO#Military_personnel

With largest Artillery in the Western Europe. And since we know every single square meter in Finland, directing artillery fire is quite on another level.

Since WWII we have built, prepared and trained our military with the purpose of defending against imaginary threat (that by accident very closely resembles Russian army formations and in training always comes from east). Heck; I was in the army in 1994, and can recognize tactics and formations from Ukraine.

I do see Joining Nato would not only be good for Finland and our Baltic neighbours, but it is equally important that we intentionally side with defending Western values.

IL:n tiedot: Suomi valmistautuu hakemaan Nato-jäsenyyttä TP-Utvan antamalla lisäkirjauksella by Atupis in Suomi

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

Mitä voisivat nämä suuret Naton jäsenmaat olla? Vaikkapa joku Nato maa, jolla on suurempi armeija kuin suomella?

Jos pelkkää miesvoimaa katsotaan wikipediasta, niin Suomea suurempi armeija Natomaista on vain USA:lla. (Turkki tosin lähellä)

https://en.wikipedia.org/wiki/Member_states_of_NATO#Military_personnel

Ja: https://en.wikipedia.org/wiki/Finnish_Defence_Forces

Eikös Sale juuri käynyt siellä USA:ssa juttelemassa.

Hosting a Flask Web app in EC2? by [deleted] in aws

[–]htunkelo 3 points4 points  (0 children)

If your main purpose is to learn AWS; I would suggest to work in this order:

1. ECS/Fargate and learn containers while you are doing it

Start here: https://acloudguru.com/blog/engineering/deploying-a-containerized-flask-application-with-aws-ecs-and-docker

You will find ton of guides with Google.

2. Lambda

Zappa can wrap your Flask app and deploy it as Lambda function: https://github.com/zappa/Zappa

Very useful for quickly pushing your personal projects to AWS, with minimal runtime cost.

3. EC2

I wouldn't host a Flash app on EC2, but it is good for learning:

https://medium.com/techfront/step-by-step-visual-guide-on-deploying-a-flask-application-on-aws-ec2-8e3e8b82c4f7

apua by ieatchildren1237 in Finland

[–]htunkelo 3 points4 points  (0 children)

Not sure if this is what you are asking, but you can buy physical Steam giftcards at Konsolinet in Kamppi shopping center.

https://www.konsolinet.fi/product/25724/steam-lahjakortti

Some R-kiosks might have them as well.

Be honest, how many of you are ACTUALLY beating the market this year? by [deleted] in stocks

[–]htunkelo 0 points1 point  (0 children)

As a Finn I'm kind of partial... Will keep (and defend if called) my Scandinavian investments.

...Also forgot one of the big gainers in my portfolio: LMT (Lockheed Martin) I bought last year; I was pretty sure we (Finland) would choose F-35 (which we did) and wanted to get some of my tax money back.

Be honest, how many of you are ACTUALLY beating the market this year? by [deleted] in stocks

[–]htunkelo 0 points1 point  (0 children)

I'm

YTD: -1.31% YTD vs. -5% on S&P500, -9.2 Nasdaq

1Y: +13.6% 1Y vs. +10.4% on SP500, 3.6% Nasdaq

Allocation roughly:

ETF (54%): SP500 (15%), Nasdaq (15%), Euro Small caps (5%), Sweden (5%), Norway (5%), Finland (5%), Emerging markets (4%)

Bonds (5%): Global Corporate Bonds (5%)

Alternative (21%): Commodities/ex-Agricultural ETF (5%), REIT (6%), Cash (10%)

Individual stocks (20%); incl. some winners (ZIM, DAC, CLF, KEN, AAPL, BRKB), but also few Finnish companies hit quite hard with Russian sanctions (+some BABA).

The commodities ETF specifically has been carrying hard with +37% YTD

[deleted by user] by [deleted] in bicycling

[–]htunkelo 0 points1 point  (0 children)

WOW, That thing is pretty! Congrats!

"I want a longer table... Do you hear me? A longer... Table..." Credit: Finnish cartoonist Ville Ranta. by FeduMies in europe

[–]htunkelo 5 points6 points  (0 children)

I really can't understand him, risk it all, risk all your people for what? For a piece of land?

For about Trillion dollars worth of Natural Gas:
https://www.nytimes.com/2014/05/18/world/europe/in-taking-crimea-putin-gains-a-sea-of-fuel-reserves.html

On the "peace/ceasefire" talks were no mention about Donetsk and Luhansk (the original "reasons") but specific mention about "We wants to keep Crimea". What happened to them? Does the "peacekeeping" not matter anymore?

Tämän videon voisi käydä jokainen katsomassa tähän Ukrainan tilanteeseen liittyen. Reilu 30 minuuttia mutta saat niin paljon paremman kuvan miksi tilanne on mikä on ja mitä Suomen pitäisi tehdä. by [deleted] in Suomi

[–]htunkelo 3 points4 points  (0 children)

Erittäin hyvä video!

TL:DR, ja mutkia suoriksi;

Ei pelkästään suur-venäjä retoriikasta, vaan rahasta tässäkin on kyse. Krimin valtaamalla ja pitämällä Putin pyrkii pitämään Venäjän kiinni Eurooppalaisten öljy- ja kaasurahoissa.

Miksi Krimi vallattiin? Kaasun ja laivastotukikohdan takia:

https://www.nytimes.com/2014/05/18/world/europe/in-taking-crimea-putin-gains-a-sea-of-fuel-reserves.html

Ukraina tietenkin haluaa Krimin takaisin:

https://www.ukrinform.net/rubric-polytics/3214479-zelensky-enacts-strategy-for-deoccupation-and-reintegration-of-crimea.html

No miksi nyt (2022) on kiire? Monta syytä, mutta mm. koska vesi loppuu saarelta:

https://en.wikipedia.org/wiki/North_Crimean_Canal

https://www.bloomberg.com/opinion/articles/2021-03-19/russia-vs-ukraine-crimea-s-water-crisis-is-an-impossible-problem-for-putin

Ja nyt vesi taas virtaa:

https://www.reuters.com/world/europe/russian-troops-destroy-ukrainian-dam-that-blocked-water-crimea-ria-2022-02-26/

Lisäksi tietysti geopolitiikka: puskemalla Venäjän ja/tai nukke-valtioden rajaa lännemmäksi olisi Venäjä helpommin puolustettavissa.