@MooingDuck I can't have a rule for qualified_id (an expression), and then have another rule for expression DOT qualified_id (in the expression definition, recursively).
When it expands out, it becomes ambiguous which one the parser should pick.
@ThePhD
SE -- statement expression, i.e., some top level expression
E -- binary expressions
I -- ID expression, e.g., A.B.C
SE = I
I = E
I = E.I -- change the left/right recursion to your liking
E = ... -- whatever is binary expressions
@MooingDuck I was not reading the whole conversation. I just woke up. :) The point is I would approach this similarly to how normal arithmetic expressions grammar is done with the higher precedence operations lower in the grammar and with the recursive rules.
Why is stack overflow the only social media website in existence that allows down-voting? Ever since stack overflow introduced jobs, I feel like people are adopting a covert-aggressive mentality when it comes to answering questions. I've asked several questions about backbonejs, vuejs, and so on,...
What should I do if a very high rated SO user comments on my answer and I don't understand what he is trying to say? We both answered on a question and our answer differs. I answered yes and he answered No.
Thinking outside the box you can write a bot that generates a ton of fake traffic, then you can say claim the bot was browsing those porn sites, and not you...
I think vmware has some stuff that lets you share RAM?
With memory sharing, a workload often consumes less memory than it would when running on a physical machine. As a result, the system can support higher levels of overcommitment efficiently. The amount of memory saved by memory sharing is highly dependent on workload characteristics. A workload consisting of many nearly-identical virtual machines may free up more than 30 percent of memory, while a more diverse workload may result in savings of less than 5 percent of memory.
Does it just checksum each page? Sounds computationally intensive...
@rightfold Well, that is probably against the rules as well. However, I do not have a rate that could sustain my habits over 4G for more than an hour. :)
I have some .java files containing some password variables, and these variables have values:
String password = "xyz";
Now after run, when I open the .class file, it contains those passwords. How can I store my password somewhere safe? I don't want to use DB for storing.
You may try running a VPN, but in general, it's better if you simply treat whatever passes through enterprise network as potentially seen by your employer.
The Thumb rules regarding return values in C++ are:
never return a reference to a local variable
never return a pointer to a local variable
don't return a value using move semantics
as for (3) - This is a known concern with C++ - we all learned that when an object returns by value - it activa...
WTF
> don't return a value using move semantics
> we all learned that when an object returns by value - it activates the copy constructor. this is theoretically true, but practically wrong
I'm trying to make a int64_t module for python because python doesn't have a long long type. I found one in ctypes but I can't use it.
So, I have embedded an intro in my application so the best way is to create a module that returns int64_t from c++.
PyObject *Py_int64_t(PyObject *poSelf, PyObje...
@sehe I'd mostly agree. There is a degree to which you need to learn some basic facts as a framework for understanding, but in this case that's (at least mostly) inapplicable. JCL isn't really a language at all--it's just a collection of mistakes, mashed together into a big ball of mud.
> All lines except for in-stream input (see below) have to begin with a slash "/", and all lines which the operating system processes have to begin with two slashes // - always starting in the first column.
So... could anyone spare me some time and let me know of any maven artifact repositories (like Nexus or Artifcatory) that allow you to configure a proxy that can automatically pull things into the proxy, rather than have to wait to be requested. With out this, I get issue with large artifacts; the proxy starts to download from the source but the main client times-out waiting for the proxy to begin the download to the client. Maybe something that allows the proxy to up/download in parrallel
@CheukKinSing You can know a lot of facts without understanding. You can understand things without knowing a lot of the facts. Often the facts don't help with the fundamental understanding (they just help check the understanding)
@CheukKinSing You have never been properly taught. There is no trust without checking, but learning without trusting is severely limiting (in fact, I think it's impossible, and even you are guilty to accepting vast amounts of "understanding" without knowledge).
Point is, not all things that can be understood merit a deep understanding. Different things matter to different people of course.
@BartekBanachewicz generally speaking, when you make a new users, you make a new group for just that user, with the same name... and only add that user to more groups as you require it
I don't think it's contradictory to say that understanding is often the higher goal than the knowledge. That doesn't at all imply knowledge is worthless or "not required".