Jump to content

Ningols

Member
  • Posts

    276
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About Ningols

  • Birthday Nov 28, 1996

Profile Information

  • Gender
    Male
  • Location
    Belgium
  • Interests
    IT, programming, video games, fantasy, ...
  • Occupation
    IT Student

System

  • CPU
    i5 6600k
  • Motherboard
    MSI z170 Gaming m5
  • RAM
    HyperX Fury - 2*8Go
  • GPU
    EVGA GTX 1070 FTW
  • Case
    be quiet! silent base 800
  • Storage
    Intel 600p + WD Black
  • PSU
    Corsair RM750i
  • Display(s)
    Acer Predator XB281HK / LG 34UM95
  • Cooling
    Be Quiet Dark Rock 3
  • Keyboard
    Corsair K70 Rapidfire
  • Mouse
    Razer Deathadder Chroma
  • Sound
    Sennheiser Game One
  • Operating System
    Windows 10 Pro - Unraid - macOS

Recent Profile Visitors

1,732 profile views
  1. Rewatching OG Scrapyard Wars for nostalgia reasons, and I discovered this :
  2. Absolutely, I'm not asking for early access at all for techlinked, that wouldn't be feasible IMO. Just a simultaneous release
  3. Thank you Btw, do you know if they plan to give access to the floatplane forum when we subscribe through the website? I’m still using my forum account to login on floatplane
  4. I am paying for floatplane, it's just that I subscribed through the website instead of the forum because I had too much problems with the billing agreement on the forum. I do miss the tag though I can see all the ltt videos just fine, it's just the techlinked one that are released at least a day after youtube
  5. Hello, Is it normal that the techlinked videos are only available on floatplane one day after being released on youtube? I'm not asking for early access, I'd just like for it to be a simultaneous release so I don't have to watch youtube ads while I'm paying for floatplane. @Slick @nicklmg
  6. I'm writing a DB management app in c# using uwp and mvvm-light and I can't display a default selectedValue in my combobox without opening it and manually selecting one first. Here is my view : <ComboBox x:Name="editCategory" Header="Category" ItemsSource="{Binding Categories}" SelectedValue="{Binding CategoryCode, Mode=TwoWay}" SelectedValuePath="Code" DisplayMemberPath="Name"/> Here's my ViewModel : private ObservableCollection<Category> _categories; public ObservableCollection<Category> Categories { get { return _categories; } set { if (_categories == value) return; _categories = value; RaisePropertyChanged("Categories"); } } private int _categoryCode; public int CategoryCode { get { return _categoryCode; } set { if (_categoryCode == value) return; _categoryCode = value; RaisePropertyChanged("CategoryCode"); } } And my model : class Category { public int Code { get; set; } [Required] public string Name { get; set; } } I can display the different values when opening the combobox, when I select a value, it displays it correctly when the combobox is closed. I know the binding is working because if I set a breakpoint in the setter of CategoryCode in my ViewModel, it shows the correct updated value. The problem is that when I load the page, the default value is not selected when it should display the Category.Name of the item where Category.Code = CategoryCode Please help me if you can, I've been searching for hours, and nothing I could find has helped me so far Link to my StackOverflow question
  7. Yeah, I think that's what I'll do
  8. The thing is, I might use the iMac, but for programming only
  9. Don't worry, I discovered the wonders of ssd's around 2012 and I never went back (except for games and nas of course) If I take the iMac, I plan on replacing the hdd with a spare 256GB ssd
  10. Yeah, I already use macOS, my laptop is a 2017 macbook Someone gave my the macbook air for scrap but I managed to repair it, so I'm trying to sell it That's why I consider asking for money in addition to the imac
  11. I already have a laptop and a gaming pc (check my signature) I would either use the imac for programming, or just sell it, but I don't know if I'd get a better profit by selling the imac or the macbook
  12. Sorry, forgot to mention those, I edited the post The macbook has an i5 4250u and the imac has an i5 2400s
  13. Hello everyone, I have a used 13" macbook air from mid 2013 that I want to sell and someone offered me a mid 2011 imac for it Do you think this trade is worth it? Or should I ask for a supplement or just refuse the deal altogether? What do you guys think? Here are the specs of each mac : Versus
×