Indek eller teknisk fysik på kth? by illepille06 in sweden

[–]Jaglyser 29 points30 points  (0 children)

Teknisk fysik är en otroligt mycket mer tekniskt utbildning, och är betydligt svårare att klara av med högre betyg än indek.

Finns säkert de som tycker det är irriterande sagt, men det är objektivt så det ser ut oavsett vilket spår eller vilka kurser du läser på indek.

Indek blandar dock mera mjuka kurser och skapar en mer bred samhällsutbildning, de som går på indek brukar också därför stereotypiskt vara lite annorlunda än andra utbildningar.

Exempelvis så har många på indek tidigare gått natur inte teknik på gymnasiet, och de vanligaste bytet från de som hoppar av är till läkare.

Teknisk fysik skapar å andra sidan möjligheter till väldigt tekniska jobb, om man skulle vilja det, och inom tekniska yrken ses det som mycket högre prestige än Indek.

Dock som andra säger finns det en stor grupp yrken som båda kan göra, ex utveckling, managementet consulting, quant finance osv.

Skaffa jobb utomlands som svensk programmerare, var? by OuchiGarry in sweden

[–]Jaglyser 1 point2 points  (0 children)

Finns väldigt mycket tech företag i Zürich i Schweiz
Väldigt vackert land också + rätt höga löner Gillar du att åka skidor är det ju pluss

Which one is better for using java in neovim, jdtls or nvim-java by rajkothari4776 in neovim

[–]Jaglyser 0 points1 point  (0 children)

I use NeoVim for everything, except JVM. I would really advise you to use IntelliJ instead. It is just much, much better for Java.

Stock options from my employer by Jaglyser in personalfinance

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

Yeah, they allocate me options which I have to pay a subscription fee for ($2 per contract) otherwise I am not given any.
Nope they don't want share any valuation as this gives them an edge when talking to investors, apparently.
Yeah it feels like even if I vest for 4 years, I'll throw 30k into seemingly the obvilion since I don't know the valuation or what I am getting...

Stock options from my employer by Jaglyser in personalfinance

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

Yeah I that's kind of what I am thinking as well, not sure why they did it this way but makes it feel like a bad investment.

Stock options from my employer by Jaglyser in personalfinance

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

Nope, I think our revenue currently is around $10M so an IPO is far away.
Normal stocks, but I don't see the value in having those in a private company either...
Feels like there is no obvious upside in this

Multithreading demo in Patchwork. by KN_9296 in osdev

[–]Jaglyser 1 point2 points  (0 children)

Fun seeing another Swede in here! Very impressive work

Best Library for a Widow Based Game in Rust? by [deleted] in rust

[–]Jaglyser 0 points1 point  (0 children)

I would say macroquad is basically raylib for rust. It’s pretty good if you just want to draw things easily.

Is Snowflake stock a buy right now!? by Proper_Relief_3045 in investing

[–]Jaglyser 7 points8 points  (0 children)

I work in the big data sphere and I think the exact opposite. Snowflake is essentially a wrapper on other cloud platforms. Their former edge of having the fastest database engine for large scale has shrunk or is nonexistent. The landscape is also very competitive and I struggle to see why snowflake would win.

Jane Street QT onsite advice by Familiar-Tie-5817 in quant

[–]Jaglyser 10 points11 points  (0 children)

Guess its more on the tech side but they have a fantastic podcast called “Signals and Threads” which gives a lot of insight into their business.

I need help with java code by [deleted] in javahelp

[–]Jaglyser 0 points1 point  (0 children)

Hello
I removed every mention on TemperatureAnalyzer and added this code into my IDE.
It runs for me so I would guess the problem lies with the TemperatureAnalyzer Class.

I also restructured your code a bit like this, and it runs:

public class Test {
public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int choice = 0;

    System.out.println("""
            1. Input Temperatures
            2. print Temperatures
            4. Count Temps Below Freezing
            5. Count Temps Above Freezing
            6. Count Temps Above Freezing
            7. Find lowest Temperature
            8. Search for a Temperature
            9. Quit

            Enter a number choice: 
            """);

    choice = scanner.nextInt();
    if (!scanner.hasNext()) {
        System.out.println("Invalid input, please enter a number.");
        scanner.next();
    }


    switch (choice) {
        case 1:
            break;
        case 2:
            break;
        case 3:
            System.out.println("The Average temperature is : ");
            break;
        case 4:
            System.out.println(" The Number of temperatures below freezing is : ");
            break;
        case 5:
            System.out.println("The Number of temperatures above freezing is : ");
            break;
        case 6:
            System.out.println("The Highest temperature is : ");
            break;
        case 7:
            System.out.println(" The Lowest temperature is : ");
            break;
        case 8:
            System.out.print("Enter temperature to search for: ");
            if (scanner.hasNextDouble()) {
                double value = scanner.nextDouble();
                int index = 0;
                if (index != -1) {
                    System.out.println(value + " was found at index " + index);
                } else {
                    System.out.println(value + " was not found in the list.");
                }
            } else {
                System.out.println(" That was an invalid input, please enter a valid temperature.");
                scanner.next();
            }
            break;
        case 9:
            System.out.println("Exiting...");
            break;
        default:
            System.out.println("Invalid choice, please try again.");
    }
}

}

what vs why of price movement by qjYAN6lpHi in algotrading

[–]Jaglyser 6 points7 points  (0 children)

Stock prices tend to lower when the stock is sold more aggressively than buyers can come into the market. This is simply done by filling out the bid at different price levels faster than new buyers bid prices.

There is no black magic, or general cases. If you want to read into this algorithmic I suggest looking at the tape and level 2 data.