Sekitar 16 hasil (3.01 detik)
Komunitas mastodon.social

cnnindonesiaekonomi

Lihat kiriman asli pada platform media sosial terkait.

Komunitas lemmy.dbzer0.com

This is ridiculous

I assume they mean gdp so here’s the list for countries and here’s the list with some states mixed in for fun: United States — $31.8T China — $20.7T Germany — $5.3T India — $4.5T Japan — $4.5T United Kingdom — $4.2T (California — ~$4.1T) France — $3.6T Italy — $2.7T (Texas — ~$2.6T) Russia — $2.5T Canada — $2.4T Brazil — $2.3T (New York — ~$2.3T) Spain — $2.0T Mexico — $2.0T Australia — $1.9T South Korea — $1.9T (Florida — ~$1.7T) Turkey — $1.6T Indonesia — $1.6T Netherlands — $1.4T Saudi Arabia — $1.3T (Illinois — ~$1.2T) Poland — $1.1T Switzerland — $1.1T (Pennsylvania — ~$1.1–1.2T)

Komunitas mastodon.social

homedecorindonesia

Lihat kiriman asli pada platform media sosial terkait.

Komunitas mastodon.social

callindo123

Looking for a Reliable AI-Driven Outsourced Call Center in Indonesia? Callindo Delivers Top-notch Services to Enhance Your Customer Experience and Boost Your Business. Callindo leads in customer support in Indonesia, offering innovative solutions with a blend of global insights and local expertise across key services.

Komunitas piefed.zip

World Map

Okay let’s try to decipher this Africa and South America are swapped and mirrored Greenland and Australia are swapped Iceland and Madagascar are swapped Southeast Asia is where Central America belongs Italy is where Florida belongs Korea is where Italy belongs Central America is in place of the Arabian peninsula The arabian peninsula is in place of SE asia Florida is hanging out where Korea should be Japan and New Zealand are swapped England and the Philippines are swapped I think that’s Indonesia floating where Scandinavia should be Scandinavia has relocated to just above the Hudson bay Alaska and Eastern Russia have switched places I feel like there’s probably more I’m missing but my brain just doesn’t want to process this mess

Komunitas lemmy.wtf

indonesiae

Lihat kiriman asli pada platform media sosial terkait.

Komunitas lemmy.world

World Map

I think that’s Indonesia floating where Scandinavia should be Indonesia/Malaysia/Thailand are now in Central America. It’s Baffin Island that has swapped places with Scandinavia. Also: The Great Lakes have swapped with the Caspian Sea Papua New Guinea and neighbouring islands are now north of New Baffin Island I can’t figure out what that is in the former location of Papua New Guinea/Indonesia Cuba/Hispaniola and the other Caribbean islands seem to be missing

Komunitas sh.itjust.works

indonesiaescortshub

Lihat kiriman asli pada platform media sosial terkait.

Komunitas feddit.uk

TIL that cancer drug Revlimid is one of the bestselling products of all time. It cost nearly $1,000 per pill, even though that same pill cost just 25 cents to make

My sister in law in Indonesia has (had? Not sure) stage four cancer and is only alive over the last 4 years because the family are having to pay for the expensive drug. I can’t remember the name, but it was the on the UKs NHS refused to use because of the cost. The medication matches the household income. That’s two fully grown adults and one working child. I know the NHS here is always talked about as being in trouble, but in still glad we have it.

Komunitas hachyderm.io

toyslandindonesia

Lihat kiriman asli pada platform media sosial terkait.

Komunitas feddit.org

World Map

I can’t figure out what that is in the former location of Papua New Guinea/Indonesia The British isles and Ireland are among them. The islands to the right could be Svalbard. I’m somewhat concerned about the BeNeLux countries and Northwestern France. ~~Papua~~ New Guinea and neighbouring islands are now north of New Baffin Island That’s where Svalbard should be.

Komunitas lemmy.world

Anniversary dinner.

Man that’s nice. My last “anniversary” dinner was cooking vegan masterpieces for someone and getting nothing in return. Like studying Thai and Indonesian cooking and… yea… Also they hate fans pointing in their direction… I learned to cook in restaurants and make a steak that makes my mom jealous but yea… Must be nice.

Komunitas lemmy.nz

I heard there will be a large demonstration in Jakarta and some places in Indonesia.

@AmmarSpaces @[email protected] saran ane sih bawa hp cadangan, pake hp murmer (seken) terutama yg rada jadul dan msh bisa pake cusrom. utk koneksi inet bisa pake mifi di share utk beberapa org. usahakan hp yg dipakai minimal menggunakan private dns, jgn pake dns isp. usahakan juga menggunakan system-wide adblocker (bisa pake pake adguard dns) klo pake hp yg blm pake cusrom. klo paham debloat, lebih baik debloat dulu hp-nya. tujuannya utk mengurangi jejak telemetri di server sosmed, goolag dan data broker. untuk komunikasi selain signal bisa pake aplikasi pesan spt : session (ga butuh no hp) briar (sama spt session ga butuh no hp dan juga bisa komunikasi via bluetooh) #infosec #indonesia #activism #jakarta #demonstration #privacy

Komunitas discuss.tchncs.de

What did I forget?

I see a flag. I like flags. Especially the Japanese flags. I don’t specifically care for Japan, but the flag is one of my favourites. I prefer flags with low entropy: so I wrote a script once that ranks the nations flags by entropy so I could quantify my preference. Thanks for letting me infodump a bit. Edit: Due to people aski g for it: here is the top ten of my ranking: Nations' flag entropy ranking (n=208). Image source: Wikimedia. 0 white_field -1.439759075204976e-10 1 Indonesia 3.3274441922278752 2 Germany 3.391689777286108 3 South_Ossetia 3.8174437373506778 4 Monaco 3.9718936201427066 5 Poland 3.9719290780440133 6 Austria 4.372592975412404 7 Ukraine 4.405280849871184 8 Hungary 4.4465472496385985 9 Albania 4.6134257669087395 10 Mauritius 4.707109405551959 11 Luxembourg 4.721346585737304 Here’s how I defined the entropy value for each flag: def color_weighted_spectral_entropy(image): b_channel, g_channel, r_channel = cv2.split(image) # Calculate spectral entropy for each channel def channel_spectral_entropy(channel): f_transform = np.fft.fft2(channel) f_shifted = np.fft.fftshift(f_transform) magnitude_spectrum = np.abs(f_shifted) if np.sum(magnitude_spectrum) > 0: normalized = magnitude_spectrum / np.sum(magnitude_spectrum) else: normalized = magnitude_spectrum # Entropy calculation with color channel weighting epsilon = 1e-10 entropy = -np.sum(normalized * np.log2(normalized + epsilon)) return entropy weighted_entropy = ( 0.333 * channel_spectral_entropy(b_channel) + 0.333 * channel_spectral_entropy(g_channel) + 0.333 * channel_spectral_entropy(r_channel) ) return float(weighted_entropy) “White_field” is just an array that holds zeroes. I use this as a sanity check. Code is on github. I can send DM to whomever is interested. I guess it can also be searched for.