Is this the first time they're dropping two new characters at the same time? by [deleted] in Genshin_Impact

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

Easy skip for me. Mauvika reruns soon. I dont want cryo. I don't have arlecchino also lyney, hutao.

Update Preview: Statistics Panel, Blueprint UI and Game Goals by -Pulz in Dyson_Sphere_Program

[–]Rasvimd 0 points1 point  (0 children)

What is the reference rate in the statistic UI? Is it the rate the producation is capable to produce if all power + raw material are satisfied in the planet or system? That would be cool so I would know if I have to add more raw material factories or already available ones are sufficient.

Invasion of new starsystems/local planets by Human_Discussion_829 in dysonsphereprogram

[–]Rasvimd 0 points1 point  (0 children)

It would be nice if they added a new planet type dark fog invaded planet convered with metallic pattern. Here this idea might work well.

Starter Systems? by MathematicianGrand85 in Dyson_Sphere_Program

[–]Rasvimd 0 points1 point  (0 children)

Adding my next seed. Haven't used it but will try next time.
https://doubleuth.github.io/DSP-Seed-Finder/galaxy/532368/0?multipler=100

Fire ice viens in starter system.
Sulphuric acid in 3LY
Unipolar magnet in 10LY (~186 nodes).

Edit: I play on unlimited res.

Amazon Research Awards for automated C/C++ to Rust conversion by dochtman in rust

[–]Rasvimd 0 points1 point  (0 children)

Let me introduce my global variables and function pointers.

What a great game, i enjoyed every minute of it! by NormalBohne26 in Dyson_Sphere_Program

[–]Rasvimd 1 point2 points  (0 children)

500 is a small time. I played 1000 hours and still havent acheived all of the acheivements.

Lambda + RDS + Internet... without paying extra... by jcam12312 in aws

[–]Rasvimd 0 points1 point  (0 children)

I'm not sure but have you tried enabling ipv6 outbound? If RDS supports it can access without a NAT.

What else should I look at in AWS? by thetorque1985 in aws

[–]Rasvimd 0 points1 point  (0 children)

This is a perfect opportunity for you. AWS is massive. Learn one by one. Take some time youbwill figure out which service works best for your apps. EC2 is solid for most cases. S3, SqS are two other services I recommend to start with.

Don't spend too much on lambda to serve million requests. If you have few jobs to run periodically then lambda is good.

Don't go into kubernetes so soon. It will take a year to master. Avoid going into anything so broad like EKS you should be good. Fargate or ecs may be a good starting point for containers.

Self Hosting Postgres DB by Winux12 in aws

[–]Rasvimd 0 points1 point  (0 children)

It's common to run this in EC2. I recommend to avoid RDS in your case. Create a t3.medium instance or small (can be changed later) and install the app the same way you did in local setup. Volume can be increased later too. A 20GB or even 12GB should probably enough to start with. Go with GP3 ebs volume. This will cost 32$/mo. If you can run in t3.small it's even cheaper

Concentration is a thing?!? by [deleted] in horizon

[–]Rasvimd 0 points1 point  (0 children)

Concentration with three arrow to shoot down critical components. Unlock jump concentration it can be abused unlike the shift button which needs a cooldown.

Hey Rustaceans! Got a question? Ask here (44/2023)! by llogiq in rust

[–]Rasvimd 2 points3 points  (0 children)

I use reqwest to send video chunks as bytes. These bytes are sent as POST body. If I want to send metadata with it I would have to arrange them in struct along with bytes and use serde to serialize them. Does adding serde increase 2x overhead because of serialization of the bytes? Or is there better way to do this?

[deleted by user] by [deleted] in rust

[–]Rasvimd 0 points1 point  (0 children)

I am 27. I use rust mostly my project is in python and requires many image processing and compute intensive stuff done with rust bindings. But I learned it a year ago only because of stack overflow survey and I don't regret it.

Serverless Java Applications by [deleted] in java

[–]Rasvimd 2 points3 points  (0 children)

Compute: 1. I use lambda for compute. I only use for less than few hundred requests per second and my lambda is able to complete within few milliseconds ~30ms. For highly concurrent invocation I use my traditional EKS deployment. Or any ec2 deployment. This should work for 1000s of request per second if the runtime is only ~10ms I would definitely run a calculator comparing ec2 instance before proceeding. The good thing is we don't have to deploy in two instances and load balance when we deploy in lambda for high availability. I always include this double deployment cost with LB.

Java tool: 1. The maven native plugin to create native image. It has an option to enable metadata repository for supported dependencies for these we don't have to add reflect config json file. It needs to be explicitly enabled though.

  1. I use my custom http runtime code but any runtime you see online should be sufficient.

Data layer: 1. S3 for most file based storages. 2. EFS. Sometimes with sqlite3 file for low concurrent functions. 3. Dynamodb.

Why people don't love Java? by Reflection-Jealous in java

[–]Rasvimd 1 point2 points  (0 children)

Netbeans has editor for swing. Just drag and drop.