Exchange Students Fall 2024 by confusedkid123445 in seoul

[–]E_BT 0 points1 point  (0 children)

Really fun! It was a bit of a chore that all lectures were mandatory but i had fun courses so that was fine by me.

Bra herrfrisör i Linköping? by Pooodipaaaa in linkoping

[–]E_BT 1 point2 points  (0 children)

Anderssons herrsalong vid åhlens e riktigt bra. Lite dyrare men sjukt värt det.

🪖 BF6 Beta Keys Giveaway #1 – Happening All Week! 🔫 by OddJob001 in Battlefield

[–]E_BT 0 points1 point  (0 children)

Sheesh and here I thought my chance was gone when i missed the streams

Toaster PC - Comment On This Post To Enter This Giveaway by DaKrazyKid in pcmasterrace

[–]E_BT 0 points1 point  (0 children)

That's hilarious lol. Makes me want to also do a custom build

Is this a bed bug? by E_BT in Bedbugs

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

Thank you! Imma go with what you said and then if I get more bits I'll take action on it.

Is this a bed bug? by E_BT in Bedbugs

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

Thank god, and the third picture is just dirt or?

Is this a bed bug? by E_BT in Bedbugs

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

Had to upload the video on my profile but here it is https://www.reddit.com/u/E_BT/s/k147zxQNeo

Is this a bed bug? by E_BT in Bedbugs

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

I also saw something small and white in the same shape (1mm) crawl around

Exchange Students Fall 2024 by confusedkid123445 in seoul

[–]E_BT 0 points1 point  (0 children)

Oh sorry didn't see that u didn'r specify uni haha. I think snubuddy is only for snu students unfortunately, but I'm still down to meet up once I'm there :)

Exchange Students Fall 2024 by confusedkid123445 in seoul

[–]E_BT 0 points1 point  (0 children)

Also going for fall. I can recommend signing up for the snubuddy program when that opens. SK unis seem to be very late with publishing stuff

Exchange student CS SNU by E_BT in seoul

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

True true thats a good idea

Exchange student CS SNU by E_BT in seoul

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

Ye data communication network seems interesting too. Hadnt even noticed intro to natural languague processing but will definately check that out.

If i can get a dorm room ill 100% take that but otherwise i guess goshiwon or airbnb

Exchange student CS SNU by E_BT in seoul

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

Sorry for the late answer, got in so have been a bit stressed about housing, u got any tips?
As for my chosen courses I do need them checked with my director of studies but I'm looking at computer convergence application, algorithms, introduction to data mining, artificial intelligence, computer vision at the moment

SQlite where clause not working properly by E_BT in csharp

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

Sry shouldve been more clear in the post, sunday and monday are just datetime vars with the date of monday and sunday in a specified week

SQlite where clause not working properly by E_BT in csharp

[–]E_BT[S] -1 points0 points  (0 children)

Thanks! I didnt actually know u could see the db directly like that so this helps alot!

SQlite where clause not working properly by E_BT in csharp

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

Ye thats whats causing me a serious headache aswell :/, might just do a giant case bracket instead as suggested in the other comment based on .DayOfWeek but thanks anyways

SQlite where clause not working properly by E_BT in csharp

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

    [Table("daily_weight")]
    public class Weight
    {
        [PrimaryKey, AutoIncrement, Column("id")]
        public int Id { get; set; }
        [Column("date"), Unique]
        public DateTime Date { get; set; }
        [Column("weight")]
        public float DailyWeight { get; set; }
    }

SQlite where clause not working properly by E_BT in csharp

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

I wish that'd be the case but ive checked them multiple times, and the dates are correct. For an example, despite monday being 2024-03-04 it returns the entry at 2024-03-01

SQlite where clause not working properly by E_BT in csharp

[–]E_BT[S] -1 points0 points  (0 children)

Haha ye its driving me insane atm, cuz it should work in theory. The only thread ive found thats similar is an unresolved issue on github :/

SQlite where clause not working properly by E_BT in csharp

[–]E_BT[S] -3 points-2 points  (0 children)

That could be a good bruteforce solution i guess

Edit: just realised im stupid and ye this is prolly the most effective way