I've interviewed and failed often enough (with google) to know it is never going to happen.
It is good to read that some people are at least trying to take a measured view of things that are happening. I don't know how to handle the "news" these days other than to ignore it completely. People are just too…
I am considering starting an LLC but I live and work in Japan. Do you know somebody who might be able to help me understand what my options are in terms of tax implications (the interaction of having income in both…
This problem is solved with a couple of simple if statements. Finding a "solution" that is more complex than necessary or introduces knowledge that really isn't needed is the sign of a programmer who... over-engineers…
In a word? Arrogance. LOC in c required to create systemd and all of its unnecessary processes is astounding.
Deepak Chopra comes to mind. Listening to him weave a tail of why something is because of quantum vibrations always makes me feel slightly ill.
Yes and they made a conscious decision to not include so much in the language in order to make the compiler fast so your criticism is rather odd. They made a choice. It results in a faster compiler. And yet your comment…
People have been believing lots of things in religious texts for many, many years. Often enough they are flat out incorrect. Just because something is "believed" doesn't make it necessarily true.
This only applies to ASCII (at best). Case insensitivity is very annoying.
How many males actually want to have kids? I sometimes wonder if I am an outlier because I really have no desire to have a child.
Models get ugly with tags? You don't have to have them unless the names are different. This post is all about familiarity and the degree to which you are interested in using a language (just like every other post of its…
As long as it is only about trying to get people to think about what they are saying that seems ok, but I suspect it will only degrade into a pitchfork mob on most occasions. Really as others have suggested the only…
If you don't understand set theory, you cannot possibly be a programmer. That is to say, whether or not you realize you are applying set theory, it is the heart of programming.
The questioner really meant to say "Return as the volume exceeding a litre." Even saying "over a litre" will probably make anybody familiar with physics wonder just exactly what they are asking. "Volume over litres" is…
Protect your hearing and your vision.
It may well be a pipe dream, but I am simply waiting for the day when open sourced 3d printable goods are being designed and improved by more and more "consumers". It may not ever happen on the scale I would like to see…
I was responding to somebody who made the claim that installing software leaves things "scattered all over the system". I simply pointed out that that is not true if you plan carefully. Additionally you can ensure that…
Install to your own custom path? /opt ... /local ... /myfolder ... etc. Add the path to your user's $PATH. If you are familiar with linux this isn't really much harder to do. If it is a library that you are then…
Here is my go at #4. It took me more time than I would like to admit :) http://play.golang.org/p/CTZahLt7g1
You could always, you know, change the code (which is simple) so that an "infinite" expiry date is no longer valid. Line 215. https://github.com/gorilla/securecookie/blob/master/secureco... As for "impossible to revoke"…
A substring of text may or may not be a date and based on the excellent tools available in linux you can decide how to extract that "data point". If binary logging is little more than a stream of text, then that is…
Agreed. It makes one wonder just how much administration this person has actually done in their life.
Sounds like somebody in the systemd camp. I really dislike added complexity when it is totally unnecessary. If people want to transform their logs into a different storage format, that is up to them. Text files,…
Is anybody really surprised by this research? I doubt it. Humans love to form exclusive groups. A suit is nearly non-functional and mostly symbolic: I have a job where I am "important" (and I make money). A uniform on a…
Honestly I wish that golang forced you to acknowledge all return values from methods even if you simply ignore them ( _ = Method() ). When I read the docs for any method calls in golang I like being able to see that…
I've interviewed and failed often enough (with google) to know it is never going to happen.
It is good to read that some people are at least trying to take a measured view of things that are happening. I don't know how to handle the "news" these days other than to ignore it completely. People are just too…
I am considering starting an LLC but I live and work in Japan. Do you know somebody who might be able to help me understand what my options are in terms of tax implications (the interaction of having income in both…
This problem is solved with a couple of simple if statements. Finding a "solution" that is more complex than necessary or introduces knowledge that really isn't needed is the sign of a programmer who... over-engineers…
In a word? Arrogance. LOC in c required to create systemd and all of its unnecessary processes is astounding.
Deepak Chopra comes to mind. Listening to him weave a tail of why something is because of quantum vibrations always makes me feel slightly ill.
Yes and they made a conscious decision to not include so much in the language in order to make the compiler fast so your criticism is rather odd. They made a choice. It results in a faster compiler. And yet your comment…
People have been believing lots of things in religious texts for many, many years. Often enough they are flat out incorrect. Just because something is "believed" doesn't make it necessarily true.
This only applies to ASCII (at best). Case insensitivity is very annoying.
How many males actually want to have kids? I sometimes wonder if I am an outlier because I really have no desire to have a child.
Models get ugly with tags? You don't have to have them unless the names are different. This post is all about familiarity and the degree to which you are interested in using a language (just like every other post of its…
As long as it is only about trying to get people to think about what they are saying that seems ok, but I suspect it will only degrade into a pitchfork mob on most occasions. Really as others have suggested the only…
If you don't understand set theory, you cannot possibly be a programmer. That is to say, whether or not you realize you are applying set theory, it is the heart of programming.
The questioner really meant to say "Return as the volume exceeding a litre." Even saying "over a litre" will probably make anybody familiar with physics wonder just exactly what they are asking. "Volume over litres" is…
Protect your hearing and your vision.
It may well be a pipe dream, but I am simply waiting for the day when open sourced 3d printable goods are being designed and improved by more and more "consumers". It may not ever happen on the scale I would like to see…
I was responding to somebody who made the claim that installing software leaves things "scattered all over the system". I simply pointed out that that is not true if you plan carefully. Additionally you can ensure that…
Install to your own custom path? /opt ... /local ... /myfolder ... etc. Add the path to your user's $PATH. If you are familiar with linux this isn't really much harder to do. If it is a library that you are then…
Here is my go at #4. It took me more time than I would like to admit :) http://play.golang.org/p/CTZahLt7g1
You could always, you know, change the code (which is simple) so that an "infinite" expiry date is no longer valid. Line 215. https://github.com/gorilla/securecookie/blob/master/secureco... As for "impossible to revoke"…
A substring of text may or may not be a date and based on the excellent tools available in linux you can decide how to extract that "data point". If binary logging is little more than a stream of text, then that is…
Agreed. It makes one wonder just how much administration this person has actually done in their life.
Sounds like somebody in the systemd camp. I really dislike added complexity when it is totally unnecessary. If people want to transform their logs into a different storage format, that is up to them. Text files,…
Is anybody really surprised by this research? I doubt it. Humans love to form exclusive groups. A suit is nearly non-functional and mostly symbolic: I have a job where I am "important" (and I make money). A uniform on a…
Honestly I wish that golang forced you to acknowledge all return values from methods even if you simply ignore them ( _ = Method() ). When I read the docs for any method calls in golang I like being able to see that…