Correct! I don't get why people are scared of writing native applications. It's not that hard.
HN user
batina
I get "Internal Server Error" when I try to access it.
This is becoming a common thing for bitbucket? Think I will be switching to GitHub.
Nope, I'm in Europe and got it. Try using this link:
https://www.facebook.com/settings?tab=facerec§ion=face_r...
Mine defaulted to on... hmmmm
"You control face recognition. This setting is on, but you can turn it off any time, which applies to features we may add later."
I play them at 1.5x or 2.0x of normal speed and pause them to take notes when needed. Then, when I get to use that code in real life I just re-watch parts that are related to my task.
There are over 700 comments on this issue on GitHub. It is turning into live chat room.
https://github.com/npm/registry/issues/255
Be part of the history :)
EDIT: there are now over 1100 comments/memes.
That is why I'm reverting back to WinForms until something better comes along. No proper data binding support but I can live with that.
I'm just hoping that Microsoft, or somebody else, will create a cross-platform GUI toolkit.
This is just intermittent fasting. You can read more about it at http://www.leangains.com/ or watch Fasting Twins videos on YouTube.
RANT: No disrespect, but why is everyone using words like hacker, hackable, etc?! Are they supposed to sound cool? Or, maybe I am too old to understand it? :)
Once in 5 years.
You can still use Uniscribe in Windows 10 but as you said it has been superseded by DirectWrite (used in Microsoft Word, WPF, etc).
Couldn't be more true!
I know about Fody but I don't think it would help with custom logic inside setter (not just PropertyChanged call).
I don't think its possible with data annotations because there will me more complex logic in setter then I described.
I would just like to see get working like in auto-implemented property (without backing field) but setter to be manually implemented (with value keyword).
Also you can use propfull snippet for full property implementation.
Pattern Matching with Is Expressions
Awesome! Greatly reduces "ugly" boilerplate code like this:
if (control is TextBox)
{
var textBox = (TextBox)control;
textBox...
}
Also, it would be great if Microsoft could make full properties in another way so that you do not have to write a backing field for it. Something like this: public string LastName
{
get;
set
{
if (value == "Batina")
RaisePropertyChanged();
}
}
It would make code more cleaner.Yes, that would be awesome!
Haha, exactly what I did :)
Great explanation. Can't wait to finish downloading Windows 8 to start playing with it.
Asynchronous API that will really make a difference for the end user, right? There won't be any more waiting for UI to unfreeze :)