I would suggest Linux Mint.
Alexandru Lungu
Posts
-
Which Linux is most like Windows? -
Report non english postHow do I report a non-english post? Unclear or incomplete? Inacurate/misleading? .... The fact is that nothing matches... maybe a "wrong language" menu bar will be needed.
-
Code Projects news links should not require authentication on third party sitesI almost believed you; unfortunately I had to check and the Gods of the Internet were not involved because it happened again, but in another form. Now I was sent to a page which has a small introduction and SHARE: Facebook, Twitter, G+. Nothing else!!! No video! I have no Facebook, Twitter or G+ accounts so, I cannot share, so no video for me!!! I become so irritated and just hacked the damn thing - look what it is supposed to happen next:
form.onSuccess(function (values, followUpUrl) {
jQuery(this.formElem).trigger("ps.formSuccess");
var redirectPath = "http://learn.pluralsight.com/webinar-od-difference-between-azure-and-aws-thank-you";And yes, the redirectPath works perfectly. I know that not CodeProject is doing this; but the email came from CodeProject so it is partialy responsible (unless, of course, CodeProject tolerates this, and I am wasting my time here); but if someone gets a few emails like that, he will not complain, not unsubscribe, but take the easiest way: click the "this is spam" button. P.S. Checked all browsers, the same behavior; I will send you a screenshot.
-
Code Projects news links should not require authentication on third party sitesDone.
-
Code Projects news links should not require authentication on third party sitesI have received a code project email named "Microsoft Azure or Amazon Web Services?" with a watch video button; after clicking that I end up on a page with:
force.com platform as a service Authorization Required You must first log in or register before accessing this page. If you have forgotten your password, click Forgot Password to reset it.
Of course I have no account on that site; moreover there is no link to create one (even "click Forgot Password" has no hyperlink). But that is not the real issue; the issue is the fact that CodeProject should not promote third party news that are not accessible to everyone.
-
Wristwatch spoiler...... because we will see the price of Apple Watch raised to $50,000.
-
MQOTDKiller Joe. It's even in the trailer https://www.youtube.com/watch?v=cxpvzmvFHTM[^]
-
Can JAVA Developers do C++/C/Embedded?Most likely NO! And not because of not be able to program, but because he will soon be fed up with how hard some things must be done with c++. For example, we had to do a C++ embedded project after more than 10 years of C#/.NET; after a thorough analyses of the c++ project and how it was supposed to be implemented, I ended up implementing first a full garbage collector. Even the most careful programmer that comes from a garbage collected environment, that never in his life used a delete obj; statement will forget to free the memory even months after the start with c++.
-
More than 1 million CodeProject members missingAnd nobody noted that in my first title I had 0.5 million more missing - 11.5 - 10.5 = 1 not 1.5 (and i used to be good at math) :laugh:
-
More than 1 million CodeProject members missingNow I have the same value also, but that is no caching problem (unless data was cached for years) - that value definitely was shown by the site.
-
More than 1 million CodeProject members missingI'm used to see more than 11.5 million users when I open CodeProject's site. But today, I see this 10,500,000 members (56,056 online) First I thought that the database was cleaned up and some users got deleted... but what are the odds to remain exactly 10,500,000? So, what happened?
-
Why a CodeProject MVP would delete all of his articles?He'll be back!
-
Why a CodeProject MVP would delete all of his articles?I have little time to spare, so I skip articles that seem not to bring me any novelty; and I assume that there are many like me; many asp.net/security experts didn't bother to read the article so it passed as ok for the people that are in the process of learning.
-
Article ideas.I've seen a lot of requests like this on forums (even received requests on my email) "Dear sir, please give me code to ...". So, Pete, I don't think that is a good idea. People should publish about things they excel, not what the audience is asking.
-
Why a CodeProject MVP would delete all of his articles?I was reading a CodeProject article and noticed that it was marked as deleted; I was surprised as the article was good and looked at the author: http://www.codeproject.com/script/Membership/View.aspx?mid=2757697[^] Best article on C#/Database, MVP with 52,752 points. So, I'm wondering, can there be a good reason for someone to delete his good articles? (except, of course, account hijacking)
-
I Hate Clever Javascript Programmers [modified]There is nothing clever here; the code was obfuscated with a tool; it was intended to be hard to understand; the original code is probably very readable.
-
Exit For in C#?Ya, Ya, we all know the theory; but break is more handier
-
how to insert undeletable image in word documentAs far as I know, you can't! Maybe you can detail what exactly do you want to do...
-
Check if record existsSecond approach; Select 1 is used to minimize the processor workload (there is no need to return the fields) you could also consider: SELECT count(*) AS Results FROM dbo.by27_Levels WHERE LOWER(@LevelName) = LOWER(LevelName)
-
Morethan 4000 records4000 aint so much; but depends on how you treat them... So can you detail more?