Screenpresso (https://www.screenpresso.com[^]), unless you need it for commercial use. It is free for personal use
Banking establishments are more dangerous than standing armies. T.Jefferson
Screenpresso (https://www.screenpresso.com[^]), unless you need it for commercial use. It is free for personal use
Banking establishments are more dangerous than standing armies. T.Jefferson
You probably are, but you can as well set-up an ad-blocker and stop caring about it because you won't see any ads at all :-D
Banking establishments are more dangerous than standing armies. T.Jefferson
I used Microsoft's Natural Ergonomic[^] for ages and loved it. Unfortunately they phased it out in favor of this one[^] which I had to buy after my old one broke after 12 years of service. I liked old model more but this one is quite good too unless you are looking only for mechanical models
Banking establishments are more dangerous than standing armies. T.Jefferson
Or you just will get down to Q and will get stuck there forever :laugh:
Banking establishments are more dangerous than standing armies. T.Jefferson
I'd also say that in most cases hiring team doesn't look for specific language or technology knowledge in candidate, at least if you're looking for "good" job. Your interviewers look mostly for your knowledge of algorithms and ability to solve algorithmic tasks, so it's worth to have some training in computer science fundamentals. There are some classic books in that area that are worth reading to be ready for those interviews: - J.McConnel - Analysis of Algorithms[^] - Th.H.Cormen - Algorithms Unlocked[^] - S.McConnell - Code Complete[^]
Banking establishments are more dangerous than standing armies. T.Jefferson
Use it for ages, since it's Chromium inside it doesn't have compatibility problems like Firefox, feels faster and sleeker than Chrome and adds a lot of nice features on top. The only con I know for now is that Google is trying to ban other browsers than Chrome itself from it's sync service[^] so if you really need that it may be a no go for you
Banking establishments are more dangerous than standing armies. T.Jefferson
Ages ago we have changed close account confirmation for April Fools Day adding third option 'Yes', 'No' and 'I don't know', the latter working as no but with message 'Come back when you know it'. First user who hit that was thinking for good 5 minutes before coming to us to ask. Funny, people liked it and this thing stayed as feature till program end-of-life.
Banking establishments are more dangerous than standing armies. T.Jefferson
Hmm, I always thought that pressing Ctrl+Alt+End on your physical keyboard is the designed way to sent Ctrl+Alt+Del to remote matchine via RDP
Banking establishments are more dangerous than standing armies. T.Jefferson
Well, in fact you can remove all those non-removable apps except Google Play services (killing them will make your phone unusable), you just need to connect ADB shell to your phone, then you can remove any of those pre-installed apps using pm uninstll -k . Purging cached data for Play services can also help, they usual don't fill all this storage back, not that fast at least
Banking establishments are more dangerous than standing armies. T.Jefferson
Why don't you give a try to something like Logitech's M500[^] if you want a corded mouse. This one works pretty fine I'd say, although personally I prefer her bigger cordless brothers because they sit better in my hands. Too bad that most of them are right-handed only.
Banking establishments are more dangerous than standing armies. T.Jefferson
I'd say that for keyboards, yes... But mice were always Logitech for me starting with classic MouseMan
Banking establishments are more dangerous than standing armies. T.Jefferson
Those are the days of dirt-cheap memory... People born with that never think about O(1) in memory algorithms :-D
Banking establishments are more dangerous than standing armies. T.Jefferson
Good point about present generation. Although the total estimate is not absolutely correct, I'd say. YouTube measures video stats in 'views', it does not mean that you view full video though. For good old Gangnam Style on the top, I stopped this shit after 10 seconds, certainly didn't waste 4:13 of time, and hopefully I'm not the only one doing so. So hopefully we wasted only half Cheops Pyramid on average :-D
Banking establishments are more dangerous than standing armies. T.Jefferson
It really does wonders to paste what you intended originally. I never heard about this combination myself until my colleague has told me about it when I was grumbling pretty much like you about empty line copied to clipboard instead of pasting
Banking establishments are more dangerous than standing armies. T.Jefferson
Did you ever try Ctrl+Shift+V after that? Twice ;)
Banking establishments are more dangerous than standing armies. T.Jefferson
I'm quite a fan of Screenpresso [^], it's free for personal use. It also is quite a lot of goodies for documenting screenshots.
Banking establishments are more dangerous than standing armies. T.Jefferson
Well, I won't write anything such as that either. But since this a real world example of infamous 'goto fail' bug obviously other people do. In general I'd say that none of your samples with braces would've passed my code review, but I admit your first sample should attract review attention as well, it'll probably will attract enough attention from any reviewer. Still I'd say that with braces style the code like that most probably would not leave the developer and will be fixed before review
Banking establishments are more dangerous than standing armies. T.Jefferson
That works fine until you get this in the code after all :)
if ((err = SSLHashSHA1.update(&hashCtx, &serverRandom)) != 0)
goto fail;
if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0)
goto fail;
goto fail;
if ((err = SSLHashSHA1.final(&hashCtx, &hashOut)) != 0)
goto fail;
When I first saw that bug I got even more convinced see that my approach to braces everywhere as a must works better in the end.
Banking establishments are more dangerous than standing armies. T.Jefferson
As far as I see in contest description:
Quote:
Article 2 - Setting Up Your Android Development Environment Comparison of the new Android Studio vs. Eclipse IDEs
I thought that assumes using of the above IDEs
Banking establishments are more dangerous than standing armies. T.Jefferson