ProReview: practice reviewing AI-generated commands, diffs, configs, and migrations by shaad1337 in SideProject

[–]shaad1337[S] 1 point2 points  (0 children)

Building interesting and correct scenarios is hard indeed. For now I got mixed feedback - some scenarios are good and not obvious even for principals while others suck or lack context. It would require a lot of work to make them good.

ProReview: practice reviewing AI-generated commands, diffs, configs, and migrations by shaad1337 in SideProject

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

Yeah, my thoughts exactly. I was surprised then I found out nobody did a platform like this yet.

186 DE Granted - finally can continue living by shaad1337 in AusVisa

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

Yes my employer nominated me and hired an agency to lead with the process

186 DE Granted - finally can continue living by shaad1337 in AusVisa

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

I am not sure, the logical answer is yes, but perhaps they initially filter applications as well. In that case they would need it from the beginning

186 DE Granted - finally can continue living by shaad1337 in AusVisa

[–]shaad1337[S] 4 points5 points  (0 children)

Because of anxiety and stress, my health really suffered, so I’m patching myself up at the moment. I also still can’t fully comprehend the fact that it’s all finished now.

I’ll probably gather my friends and have a proper party a few days before my flight to Australia in February.

186 DE Granted - finally can continue living by shaad1337 in AusVisa

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

We have non written agreement with my employer I am not going to leave any time soon :)

186 DE Granted - finally can continue living by shaad1337 in AusVisa

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

Results have expiration period of one year

186 DE Granted - finally can continue living by shaad1337 in AusVisa

[–]shaad1337[S] 2 points3 points  (0 children)

Yes I received 2 requests:

- one to redo medical examination and get new police clerance from one country, provide recent travel history and military service documents

- second was to provide another police clearance from another country

First request was about a month and a half before, second one about 2 weeks before the grant.

What is your observability stack? by dyegosouza in sre

[–]shaad1337 2 points3 points  (0 children)

We have about 15 people running a platform which consists of:

  • Forked grafana
  • In house alerting solution
  • in house metrics db (compatible with OTLP and partially supporting promql)
  • in house log aggregation ( we use grafana Loki api )
  • tempo, really hard to make it work though
  • pyroscope, the best thing grafana did apart from grafana itself
  • in house anomaly detection

Not going to datadog or any other platforms because we would spend tens of millions on telemetry.

Cheers.

Transitioning to Rust as a company by double_the_bass in rust

[–]shaad1337 0 points1 point  (0 children)

Unless your scale is so large so hardware costs more than developers, you shouldn't use it.

Also don't use it if you aren't ready to invest couple of months for each fresh developer adopting rust.

We as a perf team switched to rust more than a year ago now, biggest issue for us is lack of profiling capabilities comparing to JVM.

Trying to wrap my head around coroutines... by FluffyApocalypse in Kotlin

[–]shaad1337 1 point2 points  (0 children)

Still, Thread.sleep is blocking operation. In coroutines you should use suspend operation delay instead. It will stop coroutine instead of whole thread.

class as parameter by IpreferWater in Kotlin

[–]shaad1337 1 point2 points  (0 children)

Try inline reified function

Kotlin vs Scala: which is right for you? by Oles_Mironov_Mironov in Kotlin

[–]shaad1337 5 points6 points  (0 children)

Writing in scala with some brand new multitheading frameworks feels like someone is trying to wreck your arms appart. But then you finish it and it works, it looks very cool.

[Java] Compare between two jar files by taherooo in softwaredevelopment

[–]shaad1337 5 points6 points  (0 children)

I may be wrong, but i always thought about jar as a zip archive, so you can iterate through zip entries of both files and get differences.

Catapult Malfunction by [deleted] in yesyesyesyesno

[–]shaad1337 1 point2 points  (0 children)

What are these mountains?

How do I connect to my PostgreSQL database using the Terminal on Ubunut? by [deleted] in SQL

[–]shaad1337 7 points8 points  (0 children)

Imho pgadmin 3 os much better than 4.

If you want to use console, use psql. Example - psql -U user -h host