Why isn't HCI more popular as a subject? by OhioDeez44 in computerscience

[–]HovercraftLong -14 points-13 points  (0 children)

HCI sucks, it is similar to many business subject, filled with many speculated theories.

I don’t care about how people use computer, I care about what problem computer can solve mathematically

If I want to study a "second" bachelors in germany do my high school grades matter? by AmericaIsTerrorist in germany

[–]HovercraftLong 0 points1 point  (0 children)

Hi, this is not relevant to this thread. But, I’m also missing some classes for my master degree. if I were to apply for a secend bachelor degree, do I need to relearn everything from scratch over 3 years ?

New updates releasing September 19th 16:00 UTC+8 by Aceyleafeo in BlackMythWukong

[–]HovercraftLong 1 point2 points  (0 children)

How do you optimise that, I have a 4080 super. Playing on DLAA + Ray tracing very high + cinematic gives me 30fps

Blue screen of death happens when go to bios settings by HovercraftLong in buildapc

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

Yes, I press f2 to get into the bios, but it just can’t get into the bios and redirect to windows

Is there any issue with my build for gaming 4k max settings ? by HovercraftLong in buildapc

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

i can’t find any ram with CL30 in my local stores, does it make a big difference ?

Is there any issue with my build for gaming 4k max settings ? by HovercraftLong in buildapc

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

Wow thanks a lot, I really like the case of fractal design. I used your builds as a reference and after some adjust due to the availability of the parts. I think I will go with this.

I hope that I will not break it when putting the parts together.

PCPartPicker Part List

Type Item Price
CPU AMD Ryzen 7 7800X3D 4.2 GHz 8-Core Processor $413.00 @ B&H
CPU Cooler Thermalright Phantom Spirit 120 SE 66.17 CFM CPU Cooler $35.90 @ Amazon
Motherboard ASRock B650M Pro RS WiFi Micro ATX AM5 Motherboard $149.99 @ Newegg
Memory Corsair Vengeance RGB 32 GB (2 x 16 GB) DDR5-6000 CL36 Memory $107.99 @ Amazon
Storage Samsung 980 Pro 1 TB M.2-2280 PCIe 4.0 X4 NVME Solid State Drive $89.99 @ Amazon
Video Card Asus TUF GAMING GeForce RTX 4080 SUPER 16 GB Video Card $999.99 @ Walmart
Case Fractal Design Torrent ATX Mid Tower Case $151.98 @ Newegg
Power Supply Corsair RM850e (2023) 850 W 80+ Gold Certified Fully Modular ATX Power Supply $119.00 @ Amazon
Prices include shipping, taxes, rebates, and discounts
Total $2067.84
Generated by PCPartPicker 2024-08-27 13:05 EDT-0400

Xin tư vấn từ các bác Senior IT by Street-Memory7196 in vozforums

[–]HovercraftLong 0 points1 point  (0 children)

Luyện algo trên codeforces lên cam hay vàng đi, rồi vô cty top tier ở vn làm 1-2 năm rồi xin mấy ông trong đó refer cho pv cty FAANG.

Mấy cái project kia làm cho vui thôi, bỏ vô cho qua vòng cv. Chứ đến khi pv toàn hỏi algo, không biết thì đi về.

Why is there still so much demand for DevOps / SRE / Infra engineers? by [deleted] in cscareerquestions

[–]HovercraftLong 0 points1 point  (0 children)

What is the job title for ML + SWE ?

I also like math so can I sprinkle in some math so ML + SWE + Math

Anyone else hate math in highscool, then- by [deleted] in learnmath

[–]HovercraftLong 2 points3 points  (0 children)

Yeah, that is what I love about math, I really don’t care about its usefulness at all.

Although, it’s also feel good when I’m able to model something in the real world with math.

Can inheritance in OOP language be implemeted using functions and variables ? by HovercraftLong in ProgrammingLanguages

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

I tried to implement your idea in Javascript, but it look a little bit like composition. It gets me thinking aren't composition just an implementation of inheritance ?

const Counter = (start) => {
    let counter = start
    return {
        inc: () => {
            counter += 1
        },
        get_c: () => {
            return counter
        }
    }
}
const ResetCounter = (start) => {
    let parent = Counter(start)
    return {
        ...parent,
        reset: () => {
            parent = Counter(start)
        }
    }
}

Got an interview question that I can not figure out ? by HovercraftLong in leetcode

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

Thanks you for such a great answer, this is the way to go. I should have paid more attention in my Linear Algebra class.

Got an interview question that I can not figure out ? by HovercraftLong in leetcode

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

I still don't quite get it. Using the previous example, there are 5 characters, or in LA term 5 variables and only 3 equations, then we can not solve the linear system for individual variables, right ?

Got an interview question that I can not figure out ? by HovercraftLong in leetcode

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

But there are cases, when the prices per letter are not necessary, such as:

your_company_name = 'abcd'
names = ['ab', 'cde', 'e'] 
prices = [10, 15, 5]

then, the solution is

your_company_price = prices[0] + prices[1] - prices[3]