qid
int64
1
74.7M
question
stringlengths
12
33.8k
date
stringlengths
10
10
metadata
list
response_j
stringlengths
0
115k
response_k
stringlengths
2
98.3k
5,389
In the comments to [this answer](https://christianity.stackexchange.com/a/5258/85) to [the question of why Abraham lied to Pharaoh about his relationship with Sarah](https://christianity.stackexchange.com/questions/3524/why-did-abraham-lie-to-pharaoh-about-sarah-being-his-sister-in-gen-12/5258#5258), the following ques...
2012/01/13
[ "https://christianity.stackexchange.com/questions/5389", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/85/" ]
Like my answer [here](https://christianity.stackexchange.com/questions/5049/did-adam-and-eves-progeny-commit-incest), you need to keep the chronology right. There is no levitical law at the time of Abraham. Thus, even if he did marry his sister, remember that he was breaking no covenantal restriction on doing so. As I...
"If Sarai (later Sarah) was the daughter of Terah, then Sarai would have been listed along with Abram, Nahor, and Haran. So we can confirm that the intended meaning was cousin." Hmm, but in Genesis 20 Abraham says ... Abraham replied, “I said to myself, ‘There is surely no fear of God in this place, and they will ki...
5,389
In the comments to [this answer](https://christianity.stackexchange.com/a/5258/85) to [the question of why Abraham lied to Pharaoh about his relationship with Sarah](https://christianity.stackexchange.com/questions/3524/why-did-abraham-lie-to-pharaoh-about-sarah-being-his-sister-in-gen-12/5258#5258), the following ques...
2012/01/13
[ "https://christianity.stackexchange.com/questions/5389", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/85/" ]
Marrying a close relative was not forbidden at that time. The old question of "Where did Cain get his wife?" is answered by saying that he married a sister of his. It was not immoral at that time, since there was no law forbidding it. Leviticus is where we find such laws, which was written over 400 years after the tim...
In Genesis 11:31 the KJV reads "And Terah took Abram his son, and Lot the son of Haran his son's son, and Sarai his daughter in law, his son Abram's wife; and they went forth with them from Ur of the Chaldees, to go into the land of Canaan; and they came unto Haran, and dwelt there." Why would it say "Sarai his daught...
5,389
In the comments to [this answer](https://christianity.stackexchange.com/a/5258/85) to [the question of why Abraham lied to Pharaoh about his relationship with Sarah](https://christianity.stackexchange.com/questions/3524/why-did-abraham-lie-to-pharaoh-about-sarah-being-his-sister-in-gen-12/5258#5258), the following ques...
2012/01/13
[ "https://christianity.stackexchange.com/questions/5389", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/85/" ]
During Abraham's time the law hadn't been written against a man taking his father's daughter as his wife. After the law was written in: > > **[Deuteronomy 27:22](http://www.biblegateway.com/passage/?search=Deuteronomy%2027:22&version=NKJV)** (NKJV) > > 22 ‘Cursed *is* the one who lies with his sister, the daughter...
Abraham married his wife before his calling from God and before the 10 commandments. Every wrong action after the 10 commandments is a sin.
5,389
In the comments to [this answer](https://christianity.stackexchange.com/a/5258/85) to [the question of why Abraham lied to Pharaoh about his relationship with Sarah](https://christianity.stackexchange.com/questions/3524/why-did-abraham-lie-to-pharaoh-about-sarah-being-his-sister-in-gen-12/5258#5258), the following ques...
2012/01/13
[ "https://christianity.stackexchange.com/questions/5389", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/85/" ]
Marrying a close relative was not forbidden at that time. The old question of "Where did Cain get his wife?" is answered by saying that he married a sister of his. It was not immoral at that time, since there was no law forbidding it. Leviticus is where we find such laws, which was written over 400 years after the tim...
"If Sarai (later Sarah) was the daughter of Terah, then Sarai would have been listed along with Abram, Nahor, and Haran. So we can confirm that the intended meaning was cousin." Hmm, but in Genesis 20 Abraham says ... Abraham replied, “I said to myself, ‘There is surely no fear of God in this place, and they will ki...
4,299,089
I'm working on a journaling system in C# at our local church, but I've run into trouble with the database connection when storing birth dates. According to [MSDN](http://msdn.microsoft.com/en-us/library/system.datetime.minvalue.aspx?appId=Dev10IDEF1&l=EN-US&k=k%28SYSTEM.DATETIME%29;k%28TargetFrameworkMoniker-%22.NETFRA...
2010/11/28
[ "https://Stackoverflow.com/questions/4299089", "https://Stackoverflow.com", "https://Stackoverflow.com/users/523204/" ]
You are going to have to roll your own class to handle BC dates in .NET, and store them in the database either as strings or as separate fields for year, month day (depending on what accuracy is required) if you require searching and sorting to be performed on the database side (which I assume you would). SQL Server's...
Simple answer - store the day, month and year as separate numeric fields. The day and month can be combined into a day-of-the-year value, but you need to watch out for leap years. Alternative answer - there are standard ways to convert a date into a day-number and back... <http://en.wikipedia.org/wiki/Julian_day> If...
4,299,089
I'm working on a journaling system in C# at our local church, but I've run into trouble with the database connection when storing birth dates. According to [MSDN](http://msdn.microsoft.com/en-us/library/system.datetime.minvalue.aspx?appId=Dev10IDEF1&l=EN-US&k=k%28SYSTEM.DATETIME%29;k%28TargetFrameworkMoniker-%22.NETFRA...
2010/11/28
[ "https://Stackoverflow.com/questions/4299089", "https://Stackoverflow.com", "https://Stackoverflow.com/users/523204/" ]
If you are free to decide on type of calendar then I would recommend you to go-ahead with the Gregorian calendar, which has the > > ability to recognize two eras: B.C. > and A.D. > > > <http://msdn.microsoft.com/en-us/library/system.globalization.gregoriancalendar.aspx>
Simple answer - store the day, month and year as separate numeric fields. The day and month can be combined into a day-of-the-year value, but you need to watch out for leap years. Alternative answer - there are standard ways to convert a date into a day-number and back... <http://en.wikipedia.org/wiki/Julian_day> If...
4,299,089
I'm working on a journaling system in C# at our local church, but I've run into trouble with the database connection when storing birth dates. According to [MSDN](http://msdn.microsoft.com/en-us/library/system.datetime.minvalue.aspx?appId=Dev10IDEF1&l=EN-US&k=k%28SYSTEM.DATETIME%29;k%28TargetFrameworkMoniker-%22.NETFRA...
2010/11/28
[ "https://Stackoverflow.com/questions/4299089", "https://Stackoverflow.com", "https://Stackoverflow.com/users/523204/" ]
<http://msdn.microsoft.com/en-us/library/system.globalization.gregoriancalendar.getera(v=VS.100).aspx>
Simple answer - store the day, month and year as separate numeric fields. The day and month can be combined into a day-of-the-year value, but you need to watch out for leap years. Alternative answer - there are standard ways to convert a date into a day-number and back... <http://en.wikipedia.org/wiki/Julian_day> If...
12,091
Concerning "[Uranium-series dating](https://en.wikipedia.org/wiki/Uranium%E2%80%93thorium_dating)", also known as "Uranium-thorium dating". Uranium is present in deposits, "typically at levels of between a few parts per billion and few parts per million by weight", according to the wikipedia article on the subject. ...
2017/08/15
[ "https://earthscience.stackexchange.com/questions/12091", "https://earthscience.stackexchange.com", "https://earthscience.stackexchange.com/users/10777/" ]
The chemistry of lead is very different from that of uranium and thorium. There are key kinds of rock that could not possibly have been formed with even the smallest amount of primordial lead. The lithophilic nature of uranium and thorium means that those same kinds of rock could easily have readily accepted primordial...
**Lead and uranium have completely different electro-chemical properties**. So as David mentioned it does not matter how much uranium the sample had (as long as it is enough to measure) what matters is whether it contained any lead when it formed. Uranium and lead do not form the same kinds of bonds with other elements...
12,091
Concerning "[Uranium-series dating](https://en.wikipedia.org/wiki/Uranium%E2%80%93thorium_dating)", also known as "Uranium-thorium dating". Uranium is present in deposits, "typically at levels of between a few parts per billion and few parts per million by weight", according to the wikipedia article on the subject. ...
2017/08/15
[ "https://earthscience.stackexchange.com/questions/12091", "https://earthscience.stackexchange.com", "https://earthscience.stackexchange.com/users/10777/" ]
The field of nuclear physics has established the [radioactive decay](https://en.wikipedia.org/wiki/Radioactive_decay) series for radioactive elements (see [here](https://www.boundless.com/physics/textbooks/boundless-physics-textbook/nuclear-physics-and-radioactivity-30/radioactivity-190/radioactive-decay-series-introdu...
**Lead and uranium have completely different electro-chemical properties**. So as David mentioned it does not matter how much uranium the sample had (as long as it is enough to measure) what matters is whether it contained any lead when it formed. Uranium and lead do not form the same kinds of bonds with other elements...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
Put all of your "state" data in one place and use a [pickle](http://docs.python.org/library/pickle.html). > > The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is converted into a...
If you want to save everything, including the entire namespace and the line of code currently executing to be restarted at any time, there is not a standard library module to do that. As another poster said, the pickle module can save pretty much everything into a file and then load it again, but you would have to spe...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
Put all of your "state" data in one place and use a [pickle](http://docs.python.org/library/pickle.html). > > The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is converted into a...
If you ok with OOP, consider creating a method for each class that output a serialised version ( using pickle ) to file. Then add a second method to load in the instance the data, and if the pickled file is there you call the load method instead of the processing one. I use this approach for ML and it really seed up m...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
Put all of your "state" data in one place and use a [pickle](http://docs.python.org/library/pickle.html). > > The pickle module implements a fundamental, but powerful algorithm for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is converted into a...
In the traditional programming approach the obvious way to save a state of variables or objects after some point of execution is serialization. So if you want to execute the program after some heavy already computed state we need to start only from the deserialization part. These steps will be mostly needed mostly ...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
If you want to save everything, including the entire namespace and the line of code currently executing to be restarted at any time, there is not a standard library module to do that. As another poster said, the pickle module can save pretty much everything into a file and then load it again, but you would have to spe...
If you ok with OOP, consider creating a method for each class that output a serialised version ( using pickle ) to file. Then add a second method to load in the instance the data, and if the pickled file is there you call the load method instead of the processing one. I use this approach for ML and it really seed up m...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
If you want to save everything, including the entire namespace and the line of code currently executing to be restarted at any time, there is not a standard library module to do that. As another poster said, the pickle module can save pretty much everything into a file and then load it again, but you would have to spe...
In the traditional programming approach the obvious way to save a state of variables or objects after some point of execution is serialization. So if you want to execute the program after some heavy already computed state we need to start only from the deserialization part. These steps will be mostly needed mostly ...
5,568,904
I occasionally have Python programs that take a long time to run, and that I want to be able to save the state of and resume later. Does anyone have a clever way of saving the state either every x seconds, or when the program is exiting?
2011/04/06
[ "https://Stackoverflow.com/questions/5568904", "https://Stackoverflow.com", "https://Stackoverflow.com/users/619962/" ]
If you ok with OOP, consider creating a method for each class that output a serialised version ( using pickle ) to file. Then add a second method to load in the instance the data, and if the pickled file is there you call the load method instead of the processing one. I use this approach for ML and it really seed up m...
In the traditional programming approach the obvious way to save a state of variables or objects after some point of execution is serialization. So if you want to execute the program after some heavy already computed state we need to start only from the deserialization part. These steps will be mostly needed mostly ...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
In Theravada Buddhism, when we talk about conditions and conditioning there are 24 conditions found in the [Patthana](http://sanskritdocuments.org/articles/Notes_on_PATTHANA_DHAMMA.pdf) The Patthana Dhamma are packed into 24 Paccaya or 24 conditions. They are: 1.Root condition ( Hetu Paccayo ) 2.Object condition ( A...
I do not have sufficent knowledge to answer the question in a satisfactory way. So i will instead point you to some great ressources regarding your question. The first one is a book called [*"On the Nature of Nibbana"*](http://www.saraniya.com/books/mahasi-sayadaw/pdf/mahasi_sayadaw-1964_on_the_nature_of_nibbana.pdf)...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
The practice of the eightfold noble path leads to the *experience* of nibbāna, just like the act of adverting the mind to the eye door leads to seeing light. Light, the object of seeing, is saṅkhata (conditioned), but nibbāna, the object of supermundane consciousness, is asaṅkhata (unconditioned). So nibbāna isn't the ...
I see two ambiguities here which might be the responsible for the confusion. > > with the six sense bases as condition, contact; > > > -- SN 12:1 > > > The above is one link of conditioned arising chain, which explain how many things are conditioned. Would it be correct to, according to the above, conclude that...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
No, the practices are causes of the unconditional result of Nibbana. Things in the past or future do not even exist to ultimate reality. We can't understand this without practicing virtue and witnessing what really is in the present moment(mindfulness or Vipassana) moment by moment
I do not have sufficent knowledge to answer the question in a satisfactory way. So i will instead point you to some great ressources regarding your question. The first one is a book called [*"On the Nature of Nibbana"*](http://www.saraniya.com/books/mahasi-sayadaw/pdf/mahasi_sayadaw-1964_on_the_nature_of_nibbana.pdf)...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
The practice of the eightfold noble path leads to the *experience* of nibbāna, just like the act of adverting the mind to the eye door leads to seeing light. Light, the object of seeing, is saṅkhata (conditioned), but nibbāna, the object of supermundane consciousness, is asaṅkhata (unconditioned). So nibbāna isn't the ...
In the material world alls phenomena arises and passes based on conditionality (as opposed to totally random). In Nibbana there is no arising and passing away of phenomena. It is true that realising Nibbana is the result of practising the path to realise it, hence if you have realised Nibbana then this is because you ...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
The practice of the eightfold noble path leads to the *experience* of nibbāna, just like the act of adverting the mind to the eye door leads to seeing light. Light, the object of seeing, is saṅkhata (conditioned), but nibbāna, the object of supermundane consciousness, is asaṅkhata (unconditioned). So nibbāna isn't the ...
When it says that "Anicca vata sankhara" ( Impermanent are all conditioned things). "Uppadavaya dhammino" ( Of the nature to rise and fall). It is saying that things arise dependent on conditions, things "exist" because of the conditions that support them. So we are talking about characteristic nature of things or its ...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
The practice of the eightfold noble path leads to the *experience* of nibbāna, just like the act of adverting the mind to the eye door leads to seeing light. Light, the object of seeing, is saṅkhata (conditioned), but nibbāna, the object of supermundane consciousness, is asaṅkhata (unconditioned). So nibbāna isn't the ...
I do not have sufficent knowledge to answer the question in a satisfactory way. So i will instead point you to some great ressources regarding your question. The first one is a book called [*"On the Nature of Nibbana"*](http://www.saraniya.com/books/mahasi-sayadaw/pdf/mahasi_sayadaw-1964_on_the_nature_of_nibbana.pdf)...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
In the material world alls phenomena arises and passes based on conditionality (as opposed to totally random). In Nibbana there is no arising and passing away of phenomena. It is true that realising Nibbana is the result of practising the path to realise it, hence if you have realised Nibbana then this is because you ...
I do not have sufficent knowledge to answer the question in a satisfactory way. So i will instead point you to some great ressources regarding your question. The first one is a book called [*"On the Nature of Nibbana"*](http://www.saraniya.com/books/mahasi-sayadaw/pdf/mahasi_sayadaw-1964_on_the_nature_of_nibbana.pdf)...
9,073
It is often said that Nibbana is unconditioned. But isn't Nibbana to be attained through practice of the Noble Eightfold Path (abandoning desire, meditation, realizing paticcasamuppada etc)? Aren't those practices conditions for Nibbana? What am I missing here :) ?
2015/05/18
[ "https://buddhism.stackexchange.com/questions/9073", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/125/" ]
When it says that "Anicca vata sankhara" ( Impermanent are all conditioned things). "Uppadavaya dhammino" ( Of the nature to rise and fall). It is saying that things arise dependent on conditions, things "exist" because of the conditions that support them. So we are talking about characteristic nature of things or its ...
I do not have sufficent knowledge to answer the question in a satisfactory way. So i will instead point you to some great ressources regarding your question. The first one is a book called [*"On the Nature of Nibbana"*](http://www.saraniya.com/books/mahasi-sayadaw/pdf/mahasi_sayadaw-1964_on_the_nature_of_nibbana.pdf)...
21,563,414
I am using aptana studio v 3.4.2.201308081805 on windows 7, I know that v 3.5 is available because I was prompted to update to 3.5 on a different computer. I have not received the update prompt on my macbook air or on my work computer. Does anyone know how to force aptana to update to v 3.5?
2014/02/04
[ "https://Stackoverflow.com/questions/21563414", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1922932/" ]
Aptana has removed version 3.5 due to several bugs. Current stable version is 3.4.2 You can check here [Aptana download](http://www.aptana.com/products/studio3/download)
Check out the other Stack Overflow question from [here](https://stackoverflow.com/questions/11182618/how-to-update-aptana-studio-to-the-latest). It's also about updating Aptana Studio. Basically, in your case, Aptana may not have the update sites list configured yet. You'll need to import the XML file containing these ...
62,315
After watching the thirteen films in the *Marvel Cinematic Universe*, I've been wondering if there is a longer running series of films that maps out a continuous storyline. [I've found this article on Wikipedia](https://en.wikipedia.org/wiki/List_of_film_series_with_more_than_twenty_entries), but I am unsure if any of...
2016/10/24
[ "https://movies.stackexchange.com/questions/62315", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/30280/" ]
According to [Wikipedia's entry for *Blondie* (the comic strip)](https://en.wikipedia.org/wiki/Blondie_(comic_strip)), of the 28 movies made based on the strip, at least the first 14 were a continuous series meeting your definition: > > Blondie was adapted into a long-running series of 28 low-budget theatrical B-fea...
**New Answer**: It is [The Land Before Time](https://en.wikipedia.org/wiki/The_Land_Before_Time_(franchise)#Films). There have been 14 movies in the series, but the 13th one is reboot. So, if we don't count it, there are still 12. > > The Land Before Time is a franchise of Universal Studios animated films centered o...
62,315
After watching the thirteen films in the *Marvel Cinematic Universe*, I've been wondering if there is a longer running series of films that maps out a continuous storyline. [I've found this article on Wikipedia](https://en.wikipedia.org/wiki/List_of_film_series_with_more_than_twenty_entries), but I am unsure if any of...
2016/10/24
[ "https://movies.stackexchange.com/questions/62315", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/30280/" ]
Beating the 14 movie streak of the Blondie movies, we now have **23** movies in the Marvel Cinematic Universe: 1. [Iron Man](https://en.wikipedia.org/wiki/List_of_Marvel_Cinematic_Universe_films#Iron_Man_(2008)) 2. [The Incredible Hulk](https://en.wikipedia.org/wiki/List_of_Marvel_Cinematic_Universe_films#The_Incredib...
**New Answer**: It is [The Land Before Time](https://en.wikipedia.org/wiki/The_Land_Before_Time_(franchise)#Films). There have been 14 movies in the series, but the 13th one is reboot. So, if we don't count it, there are still 12. > > The Land Before Time is a franchise of Universal Studios animated films centered o...
62,315
After watching the thirteen films in the *Marvel Cinematic Universe*, I've been wondering if there is a longer running series of films that maps out a continuous storyline. [I've found this article on Wikipedia](https://en.wikipedia.org/wiki/List_of_film_series_with_more_than_twenty_entries), but I am unsure if any of...
2016/10/24
[ "https://movies.stackexchange.com/questions/62315", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/30280/" ]
According to [Wikipedia's entry for *Blondie* (the comic strip)](https://en.wikipedia.org/wiki/Blondie_(comic_strip)), of the 28 movies made based on the strip, at least the first 14 were a continuous series meeting your definition: > > Blondie was adapted into a long-running series of 28 low-budget theatrical B-fea...
[The *Up* documentary series](https://en.wikipedia.org/wiki/Up_Series) currently consists of nine films spanning 55 years. The original film, [*Seven Up!*](https://www.imdb.com/title/tt0058578/), was released in 1964 and featured interviews with several 7-year-old British children from a variety of backgrounds. Since ...
62,315
After watching the thirteen films in the *Marvel Cinematic Universe*, I've been wondering if there is a longer running series of films that maps out a continuous storyline. [I've found this article on Wikipedia](https://en.wikipedia.org/wiki/List_of_film_series_with_more_than_twenty_entries), but I am unsure if any of...
2016/10/24
[ "https://movies.stackexchange.com/questions/62315", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/30280/" ]
Beating the 14 movie streak of the Blondie movies, we now have **23** movies in the Marvel Cinematic Universe: 1. [Iron Man](https://en.wikipedia.org/wiki/List_of_Marvel_Cinematic_Universe_films#Iron_Man_(2008)) 2. [The Incredible Hulk](https://en.wikipedia.org/wiki/List_of_Marvel_Cinematic_Universe_films#The_Incredib...
[The *Up* documentary series](https://en.wikipedia.org/wiki/Up_Series) currently consists of nine films spanning 55 years. The original film, [*Seven Up!*](https://www.imdb.com/title/tt0058578/), was released in 1964 and featured interviews with several 7-year-old British children from a variety of backgrounds. Since ...
43,123
I'm getting aversion when someone do things that I don't like. This happens when a person do and not on natural things like rain. But It is hard to recorgnise it as aversion because that aversion is not towards a person. I just don't like certain actions that affect me (Only the things that affects me in someway). I do...
2020/11/03
[ "https://buddhism.stackexchange.com/questions/43123", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/17744/" ]
Very good question, focused on real and useful problem. Mind generates aversion when things go contrary to what it believes is "right". This belief is called "attachment". For example you believe that only certain weather is good and that it should be that same weather most of the time. So the first technique is to r...
Not sure whether it is a Buddhist perspective, i would like to share few things which may be of some sense to you. Please excuse my immature writing skills. There are two streams of thoughts/ideas/concepts/feelings we are put up with in any life situation. In present case, first stream is the feeling/idea of aversion....
43,123
I'm getting aversion when someone do things that I don't like. This happens when a person do and not on natural things like rain. But It is hard to recorgnise it as aversion because that aversion is not towards a person. I just don't like certain actions that affect me (Only the things that affects me in someway). I do...
2020/11/03
[ "https://buddhism.stackexchange.com/questions/43123", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/17744/" ]
Very good question, focused on real and useful problem. Mind generates aversion when things go contrary to what it believes is "right". This belief is called "attachment". For example you believe that only certain weather is good and that it should be that same weather most of the time. So the first technique is to r...
You reflect aversion is harmful to yourself & others; it causes stress to yourself & can even lead to physical disease, such as cancer. If you get angry at the other person in the wrong way or place, you can lose your job, etc, or get suspended by politically correct authorities. You also reflect the Buddha taught the...
43,123
I'm getting aversion when someone do things that I don't like. This happens when a person do and not on natural things like rain. But It is hard to recorgnise it as aversion because that aversion is not towards a person. I just don't like certain actions that affect me (Only the things that affects me in someway). I do...
2020/11/03
[ "https://buddhism.stackexchange.com/questions/43123", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/17744/" ]
Very good question, focused on real and useful problem. Mind generates aversion when things go contrary to what it believes is "right". This belief is called "attachment". For example you believe that only certain weather is good and that it should be that same weather most of the time. So the first technique is to r...
The rain is cold. With too much rain we can die of exposure. Knowing a body is cold, we can shield it or take it to a dry place. The thought "I am cold" or "I am averse to cold" can be replaced with the simple thought, "there is wet. there is cold." Further thoughts can address the situation with "this is bearable" or ...
43,123
I'm getting aversion when someone do things that I don't like. This happens when a person do and not on natural things like rain. But It is hard to recorgnise it as aversion because that aversion is not towards a person. I just don't like certain actions that affect me (Only the things that affects me in someway). I do...
2020/11/03
[ "https://buddhism.stackexchange.com/questions/43123", "https://buddhism.stackexchange.com", "https://buddhism.stackexchange.com/users/17744/" ]
Very good question, focused on real and useful problem. Mind generates aversion when things go contrary to what it believes is "right". This belief is called "attachment". For example you believe that only certain weather is good and that it should be that same weather most of the time. So the first technique is to r...
"Come, bite your botty" sometimes help quick if telling angy children, or to "force" them looking, or need to look, into a mirror. Try it, when ever aversion arises.
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
> > What do her parents do? > > > Here the subject of the sentence is *her parents*. Because *her parents* is plural the auxiliary verb *DO* must agree with the plural noun phrase, so we need *do* and not *does*. The auxiliary verb *DO* is the first verb in the sentence. This is the verb that moves in front of the...
The correct question is, "What do her parents do?" Since the word 'parents' is plural you would use 'do.' Of course if you had the word 'parent' instead of 'parents'you would use does. "What do her parents do?" "What does her parent do?"
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
> > What do her parents do? > > > Here the subject of the sentence is *her parents*. Because *her parents* is plural the auxiliary verb *DO* must agree with the plural noun phrase, so we need *do* and not *does*. The auxiliary verb *DO* is the first verb in the sentence. This is the verb that moves in front of the...
I saw you're struggling between "parent" and parents. Let's start from your question. First, we need to see the subject here which is "parents", mean both of our mother and father, which means that this is a plural subject. For plural subject, you must use the root word. So,.... What does her parents do? (Wrong) Wha...
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
Araucaria answered the part about which is correct. Yes, it's "do", because the subject is "her parents", which is plural, and so requires a plural verb. As to whether you can use the word "do" twice in a sentence: Sure you can. Maybe you're thinking of the common advice to avoid using the same word twice in a sentenc...
The correct question is, "What do her parents do?" Since the word 'parents' is plural you would use 'do.' Of course if you had the word 'parent' instead of 'parents'you would use does. "What do her parents do?" "What does her parent do?"
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
To answer your specific question, *Can you have **does** and **do** in the same sentence like the first one?*, Yes, you can. You can have *do* twice, but not *does* twice. This is not a very helpful rule, however. The role that each word plays is very different in each case. The first use of *do*/*does* is just a way ...
The correct question is, "What do her parents do?" Since the word 'parents' is plural you would use 'do.' Of course if you had the word 'parent' instead of 'parents'you would use does. "What do her parents do?" "What does her parent do?"
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
Araucaria answered the part about which is correct. Yes, it's "do", because the subject is "her parents", which is plural, and so requires a plural verb. As to whether you can use the word "do" twice in a sentence: Sure you can. Maybe you're thinking of the common advice to avoid using the same word twice in a sentenc...
I saw you're struggling between "parent" and parents. Let's start from your question. First, we need to see the subject here which is "parents", mean both of our mother and father, which means that this is a plural subject. For plural subject, you must use the root word. So,.... What does her parents do? (Wrong) Wha...
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
To answer your specific question, *Can you have **does** and **do** in the same sentence like the first one?*, Yes, you can. You can have *do* twice, but not *does* twice. This is not a very helpful rule, however. The role that each word plays is very different in each case. The first use of *do*/*does* is just a way ...
I saw you're struggling between "parent" and parents. Let's start from your question. First, we need to see the subject here which is "parents", mean both of our mother and father, which means that this is a plural subject. For plural subject, you must use the root word. So,.... What does her parents do? (Wrong) Wha...
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
It's "do". Think about the answer to the questions. "Her parents *does*" is incorrect, whereas > > Her parents do a mean chicken casserole. > > > Is natural sounding and correct.
The correct question is, "What do her parents do?" Since the word 'parents' is plural you would use 'do.' Of course if you had the word 'parent' instead of 'parents'you would use does. "What do her parents do?" "What does her parent do?"
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
To answer your specific question, *Can you have **does** and **do** in the same sentence like the first one?*, Yes, you can. You can have *do* twice, but not *does* twice. This is not a very helpful rule, however. The role that each word plays is very different in each case. The first use of *do*/*does* is just a way ...
Araucaria answered the part about which is correct. Yes, it's "do", because the subject is "her parents", which is plural, and so requires a plural verb. As to whether you can use the word "do" twice in a sentence: Sure you can. Maybe you're thinking of the common advice to avoid using the same word twice in a sentenc...
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
It's "do". Think about the answer to the questions. "Her parents *does*" is incorrect, whereas > > Her parents do a mean chicken casserole. > > > Is natural sounding and correct.
I saw you're struggling between "parent" and parents. Let's start from your question. First, we need to see the subject here which is "parents", mean both of our mother and father, which means that this is a plural subject. For plural subject, you must use the root word. So,.... What does her parents do? (Wrong) Wha...
41,614
> > * What does her parents do? > * What do her parents do? > > > Which one is correct? Can you have *does* and *do* in the same sentence like the first one? Would it be incorrect because parents is plural so *do* must be used throughout?
2014/12/10
[ "https://ell.stackexchange.com/questions/41614", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/-1/" ]
> > What do her parents do? > > > Here the subject of the sentence is *her parents*. Because *her parents* is plural the auxiliary verb *DO* must agree with the plural noun phrase, so we need *do* and not *does*. The auxiliary verb *DO* is the first verb in the sentence. This is the verb that moves in front of the...
It's "do". Think about the answer to the questions. "Her parents *does*" is incorrect, whereas > > Her parents do a mean chicken casserole. > > > Is natural sounding and correct.
3,197,523
I have a question about camera calibration. I've followed approach shown in a book Learning OpenCV for camera calibration process. But the calibrated(undistorted) image is worse than the original one. Is it possible that my camera don't need calibration anymore?(means that the calibration is done by some driver or som...
2010/07/07
[ "https://Stackoverflow.com/questions/3197523", "https://Stackoverflow.com", "https://Stackoverflow.com/users/385826/" ]
The calibration cannot be done by the driver. If you're planning 3D reconstruction, then you cannot do without a calibration matrix.
Several things to check: 1. Have you verified the corner finder is working correctly (draw them on the calibration images and see if there are any outliers)? 2. Taken good calibration images? Visual inspection for blur, drastic perspective changes, etc. 3. Have good coverage of the image area with your calibration ima...
28,592,077
> > HTTP/1.1 has served the Web well for more than fifteen years, but its > age is starting to show. > > > Can anybody explain what is the **main difference** between HTTP 1.1 and 2.0? Is there any change in the transport protocol?
2015/02/18
[ "https://Stackoverflow.com/questions/28592077", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
HTTP/2 supports queries multiplexing, headers compression, priority and more intelligent packet streaming management. This results in reduced latency and accelerates content download on modern web pages. [More details here.](https://daniel.haxx.se/http2/)
HTTP 2.0 is a **binary** protocol that multiplexes numerous streams going over a single (normally TLS-encrypted) TCP connection. The contents of each stream are HTTP 1.1 requests and responses, just encoded and packed up differently. HTTP2 adds a number of features to manage the streams, but leaves old semantics untou...
308,829
I have often heard developers mention that Java can't "*do [Real Time](https://en.wikipedia.org/wiki/Real-time_computing)*", meaning a Java app running on Linux cannot meet the requirements of a deterministic real-time system, such as something running on RIOT-OS, etc. I am trying to understand *why*. My [SWAG](https:...
2016/01/30
[ "https://softwareengineering.stackexchange.com/questions/308829", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/154753/" ]
A software is real time not when it is as fast as possible, but when it is guaranteed that a process completes within some determined time slot. In a soft real time system, it is good but not absolutely necessary that this is guaranteed. E.g. in a game, the calculations necessary for a frame should complete within the ...
From [wikipedia](https://en.wikipedia.org/wiki/Real-time_operating_system): > > A key characteristic of an RTOS is the level of its consistency concerning the amount of time it takes to accept and complete an application's task; the variability is jitter. > > > The important thing is that jitter is quantified for...
308,829
I have often heard developers mention that Java can't "*do [Real Time](https://en.wikipedia.org/wiki/Real-time_computing)*", meaning a Java app running on Linux cannot meet the requirements of a deterministic real-time system, such as something running on RIOT-OS, etc. I am trying to understand *why*. My [SWAG](https:...
2016/01/30
[ "https://softwareengineering.stackexchange.com/questions/308829", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/154753/" ]
From [wikipedia](https://en.wikipedia.org/wiki/Real-time_operating_system): > > A key characteristic of an RTOS is the level of its consistency concerning the amount of time it takes to accept and complete an application's task; the variability is jitter. > > > The important thing is that jitter is quantified for...
For starter, the vanilla Linux itself can't do real time. That's why [RTLinux](https://en.wikipedia.org/wiki/RTLinux) was developed. Lets say you run a few java processes on RTLinux, they would still be considered real time as all those processes are scheduled by the kernel, i.e. if one process is late, other processe...
308,829
I have often heard developers mention that Java can't "*do [Real Time](https://en.wikipedia.org/wiki/Real-time_computing)*", meaning a Java app running on Linux cannot meet the requirements of a deterministic real-time system, such as something running on RIOT-OS, etc. I am trying to understand *why*. My [SWAG](https:...
2016/01/30
[ "https://softwareengineering.stackexchange.com/questions/308829", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/154753/" ]
A software is real time not when it is as fast as possible, but when it is guaranteed that a process completes within some determined time slot. In a soft real time system, it is good but not absolutely necessary that this is guaranteed. E.g. in a game, the calculations necessary for a frame should complete within the ...
For starter, the vanilla Linux itself can't do real time. That's why [RTLinux](https://en.wikipedia.org/wiki/RTLinux) was developed. Lets say you run a few java processes on RTLinux, they would still be considered real time as all those processes are scheduled by the kernel, i.e. if one process is late, other processe...
7,623
Helo Guys, I want to know your experience about carbon material and grease Can I use normal grease with carbon ? I want to put grease onto fork and stem.... Or WD-40 or silicone penetrant would be ok ? Thank you.... Can I use this one ? ![http://i129.photobucket.com/albums/p231/picture_77/13012012170.jpg](https://i...
2012/01/11
[ "https://bicycles.stackexchange.com/questions/7623", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/3189/" ]
From [Sheldon Brown](http://sheldonbrown.com/gloss_g.html): > > Grease lubrication is commonly used on all ball bearings. Good mechanics also use grease (or oil) on the threads of most threaded fittings and fasteners, and also inside the steerer (to keep the stem from becoming stuck) and the seat tube (to keep the se...
Most automotive use grease is too thick for bicycle applications. It will lubricate, but it will add friction to the movement of the bike. Aside from the "weight" of the grease, you only need to worry about purity. Phil Wood, of Phil Wood Components, used to say that his most important criteria for his bicycle greas...
7,623
Helo Guys, I want to know your experience about carbon material and grease Can I use normal grease with carbon ? I want to put grease onto fork and stem.... Or WD-40 or silicone penetrant would be ok ? Thank you.... Can I use this one ? ![http://i129.photobucket.com/albums/p231/picture_77/13012012170.jpg](https://i...
2012/01/11
[ "https://bicycles.stackexchange.com/questions/7623", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/3189/" ]
From [Sheldon Brown](http://sheldonbrown.com/gloss_g.html): > > Grease lubrication is commonly used on all ball bearings. Good mechanics also use grease (or oil) on the threads of most threaded fittings and fasteners, and also inside the steerer (to keep the stem from becoming stuck) and the seat tube (to keep the se...
i would be careful of any type of grease i use on a bike.. Grease attracts the dirt and can lead to further issues on the mechanics of your bike. like stated before - use an oil specially formulated for your bike. and make sure after every cycle to clean your bike down and re-oil.
7,623
Helo Guys, I want to know your experience about carbon material and grease Can I use normal grease with carbon ? I want to put grease onto fork and stem.... Or WD-40 or silicone penetrant would be ok ? Thank you.... Can I use this one ? ![http://i129.photobucket.com/albums/p231/picture_77/13012012170.jpg](https://i...
2012/01/11
[ "https://bicycles.stackexchange.com/questions/7623", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/3189/" ]
Most automotive use grease is too thick for bicycle applications. It will lubricate, but it will add friction to the movement of the bike. Aside from the "weight" of the grease, you only need to worry about purity. Phil Wood, of Phil Wood Components, used to say that his most important criteria for his bicycle greas...
i would be careful of any type of grease i use on a bike.. Grease attracts the dirt and can lead to further issues on the mechanics of your bike. like stated before - use an oil specially formulated for your bike. and make sure after every cycle to clean your bike down and re-oil.
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Database triggers are the preferred way to go here, if you can. However, recently I had to do this in client-side code and I ended up writing a class that created a deep (value) copy of the object when it was opened for editing, compared the two objects at save time (using ToString() only) and wrote any changes to an ...
I know this doesn't answer your question, but for the record, I prefer to handle this type of auditing logic in the database.
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Database triggers are the preferred way to go here, if you can. However, recently I had to do this in client-side code and I ended up writing a class that created a deep (value) copy of the object when it was opened for editing, compared the two objects at save time (using ToString() only) and wrote any changes to an ...
We have a table that all audit trail entries are stored in. A database trigger is on every table (it's put there by a stored procedure, but that's not relevant to this answer). When a value is changed, the old value is stored in the audit trail. Ours is a little complex in that we also have a look-up table that contain...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Database triggers are the preferred way to go here, if you can. However, recently I had to do this in client-side code and I ended up writing a class that created a deep (value) copy of the object when it was opened for editing, compared the two objects at save time (using ToString() only) and wrote any changes to an ...
I come more from the SW side that the DB side, if you create a set of DAOs (Data access objects) that you use for your interaction with the database. I would then insert the audit functionality into the respective functions in the DAOs that need to be trailed. The database trigger solution is also feasible, it depends...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
I don't know if it will fit seamlessly with your ORM, but i used [Point-in-Time](http://www.simple-talk.com/sql/database-administration/database-design-a-point-in-time-architecture/) database design for an ERP application and really recommend it. You automatically get History and Audit from this architecture, as well a...
We've implemented a similar solution, using AOP (aspectJ implementation). Using this particular points can be captured and specific operations can be performed. This can be plugged in and plugged off when we like. If you really want to do it in the app layer, i would suggest this. Hope it helps..
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
I've done this in Hibernate (another ORM) using an Interceptor for the Session. That way the audit code is seperate from your code.
We have a table that all audit trail entries are stored in. A database trigger is on every table (it's put there by a stored procedure, but that's not relevant to this answer). When a value is changed, the old value is stored in the audit trail. Ours is a little complex in that we also have a look-up table that contain...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Database triggers are the preferred way to go here, if you can. However, recently I had to do this in client-side code and I ended up writing a class that created a deep (value) copy of the object when it was opened for editing, compared the two objects at save time (using ToString() only) and wrote any changes to an ...
We've implemented a similar solution, using AOP (aspectJ implementation). Using this particular points can be captured and specific operations can be performed. This can be plugged in and plugged off when we like. If you really want to do it in the app layer, i would suggest this. Hope it helps..
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
I don't know if it will fit seamlessly with your ORM, but i used [Point-in-Time](http://www.simple-talk.com/sql/database-administration/database-design-a-point-in-time-architecture/) database design for an ERP application and really recommend it. You automatically get History and Audit from this architecture, as well a...
I come more from the SW side that the DB side, if you create a set of DAOs (Data access objects) that you use for your interaction with the database. I would then insert the audit functionality into the respective functions in the DAOs that need to be trailed. The database trigger solution is also feasible, it depends...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
We've implemented a similar solution, using AOP (aspectJ implementation). Using this particular points can be captured and specific operations can be performed. This can be plugged in and plugged off when we like. If you really want to do it in the app layer, i would suggest this. Hope it helps..
We have a table that all audit trail entries are stored in. A database trigger is on every table (it's put there by a stored procedure, but that's not relevant to this answer). When a value is changed, the old value is stored in the audit trail. Ours is a little complex in that we also have a look-up table that contain...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
I come more from the SW side that the DB side, if you create a set of DAOs (Data access objects) that you use for your interaction with the database. I would then insert the audit functionality into the respective functions in the DAOs that need to be trailed. The database trigger solution is also feasible, it depends...
We have a table that all audit trail entries are stored in. A database trigger is on every table (it's put there by a stored procedure, but that's not relevant to this answer). When a value is changed, the old value is stored in the audit trail. Ours is a little complex in that we also have a look-up table that contain...
148,291
I need to implement an audit trail for Add/Edit/Delete on my objects,I'm using an ORM (XPO) for defining my objects etc. I implemented an audit trail object that is triggered on 1. OnSaving 2. OnDeleting Of the base object, and I store the changes in Audit-AuditTrail (Mast-Det) table, for field changes. etc. using s...
2008/09/29
[ "https://Stackoverflow.com/questions/148291", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
I don't know if it will fit seamlessly with your ORM, but i used [Point-in-Time](http://www.simple-talk.com/sql/database-administration/database-design-a-point-in-time-architecture/) database design for an ERP application and really recommend it. You automatically get History and Audit from this architecture, as well a...
We have a table that all audit trail entries are stored in. A database trigger is on every table (it's put there by a stored procedure, but that's not relevant to this answer). When a value is changed, the old value is stored in the audit trail. Ours is a little complex in that we also have a look-up table that contain...
5,526,625
I am trying to start from scratch a website that has similar functionality to grubhub.com. Fundamentally, a website where restaurant owners can come on to the website, post their menu and most importantly customers will be able to order instant delivery online which sends an email or something to the restaurant. The ...
2011/04/02
[ "https://Stackoverflow.com/questions/5526625", "https://Stackoverflow.com", "https://Stackoverflow.com/users/689355/" ]
I would use a premade CMS, unless i had a very solid reason not to (they did not have the functionality that i wanted). This would save you LOTS of time. If you are familiar with PHP, MySQL, CSS and the likes, starting should not be such a problem. You first design how you want your program to work, think of the datab...
You should definitely not build yourself a CMS from scratch. This will take a very long time and will definitely lead HUGE security holes and total lack of scalability if you don't know what you are doing. Take a look at this question: <https://softwareengineering.stackexchange.com/questions/46716/what-should-a-devel...
5,526,625
I am trying to start from scratch a website that has similar functionality to grubhub.com. Fundamentally, a website where restaurant owners can come on to the website, post their menu and most importantly customers will be able to order instant delivery online which sends an email or something to the restaurant. The ...
2011/04/02
[ "https://Stackoverflow.com/questions/5526625", "https://Stackoverflow.com", "https://Stackoverflow.com/users/689355/" ]
You should consider that developing web applications without experience can lead to severe security issues. I would recommend using a premade CMS if it provides the features that you need for your application (or makes it possible to script additional features). If that is not the case, maybe consider using a web appl...
You should definitely not build yourself a CMS from scratch. This will take a very long time and will definitely lead HUGE security holes and total lack of scalability if you don't know what you are doing. Take a look at this question: <https://softwareengineering.stackexchange.com/questions/46716/what-should-a-devel...
20,279
Suppose that a Tor client wants to access a certain hidden service. According to the protocol, instead of submitting a request directly to the server IP (which is hidden[1][2]), this client submit a request via a series of relays. However, at some point, there will be a final relay in charge of delivering the client'...
2019/09/12
[ "https://tor.stackexchange.com/questions/20279", "https://tor.stackexchange.com", "https://tor.stackexchange.com/users/27707/" ]
Tor uses TCP tunnels, so - regardless of the previous answer - no need to use it. The hidden service is reached from the Tor node that is hosting it, usually through a localhost. The scenario you've described about IP revealing - yes, it *can* be a privacy problem. The design doc states clear - the system is anonymizin...
This is a bit of a simplistic explanation, but I hope it helps. The Tor service, running on the machine where the onion service is being hosted, reaches out to the Tor Network and says, if you want to use onion abcxyz.onion or port 80, then you have to talk to me (the service) but not to the IP of the machine. Because...
43,016
I use VMware Fusion created a VM(Linux) in my Mac, but I don't know how to delivery the data from my Mac to the VM. If the VM is on the Windows I can use the WinSCP to load data to it, but how can I load data to VM from Mac? Some friend can recommend me a software to load data to Linux?
2017/06/16
[ "https://softwarerecs.stackexchange.com/questions/43016", "https://softwarerecs.stackexchange.com", "https://softwarerecs.stackexchange.com/users/28348/" ]
I have been using something called [Alpha VNC Lite](https://play.google.com/store/apps/details?id=de.abr.android.avnc). Alpha VNC lite doesn't seem to work on the home screen but most other apps seem to work fine. The device doesn't need to be rooted but you do not to enable a special keyboard and accessibility options...
There also is [droidVNC-NG](https://github.com/bk138/droidVNC-NG) (which I authored). It does not require root and runs on Android 7+. It's open-source and available for free on Google Play and F-Droid.
239,405
As stated from the questions title: **What does 'beta' state of a SE site actually imply?** Could someone elaborate, which restrictions or drawbacks we should expect from a *'beta'* SE site? I could have well been missing something, that's already been answered, or is an easy to find policies concept.
2014/09/15
[ "https://meta.stackexchange.com/questions/239405", "https://meta.stackexchange.com", "https://meta.stackexchange.com/users/186472/" ]
Beta sites aren't full sites. They're sites in a "trial" period, to see if they have the potential to become successful sites, or if interest in them wanes and the community dies out. From time to time, the site's community will be asked to [evaluate their site to ensure it is fulfilling its goal](https://meta.stackexc...
Also, in addition to [Troyen's great answer](https://meta.stackexchange.com/a/239406/184589), another significant difference is that on Beta sites there are no moderator elections. The moderators are instead hand-picked by the Community Managers from the pool of members that contribute with valuable content and demons...
239,405
As stated from the questions title: **What does 'beta' state of a SE site actually imply?** Could someone elaborate, which restrictions or drawbacks we should expect from a *'beta'* SE site? I could have well been missing something, that's already been answered, or is an easy to find policies concept.
2014/09/15
[ "https://meta.stackexchange.com/questions/239405", "https://meta.stackexchange.com", "https://meta.stackexchange.com/users/186472/" ]
Beta sites aren't full sites. They're sites in a "trial" period, to see if they have the potential to become successful sites, or if interest in them wanes and the community dies out. From time to time, the site's community will be asked to [evaluate their site to ensure it is fulfilling its goal](https://meta.stackexc...
Although this doesn't answer your question specifically, you can glean a lot about how sites are created and grow in Area 51. Some die on the vine too. [StackExchange Area 51](http://area51.stackexchange.com)
239,405
As stated from the questions title: **What does 'beta' state of a SE site actually imply?** Could someone elaborate, which restrictions or drawbacks we should expect from a *'beta'* SE site? I could have well been missing something, that's already been answered, or is an easy to find policies concept.
2014/09/15
[ "https://meta.stackexchange.com/questions/239405", "https://meta.stackexchange.com", "https://meta.stackexchange.com/users/186472/" ]
Also, in addition to [Troyen's great answer](https://meta.stackexchange.com/a/239406/184589), another significant difference is that on Beta sites there are no moderator elections. The moderators are instead hand-picked by the Community Managers from the pool of members that contribute with valuable content and demons...
Although this doesn't answer your question specifically, you can glean a lot about how sites are created and grow in Area 51. Some die on the vine too. [StackExchange Area 51](http://area51.stackexchange.com)
18,753
My attendant and I met a year ago and had intercourse back then, we recently picked back up where we left off, but want to go about it the right way and get married. Is there a time frame that we have to be apart from each other sexually and not sexual before marriage? What is needed to be done for our marriage to be...
2014/11/25
[ "https://islam.stackexchange.com/questions/18753", "https://islam.stackexchange.com", "https://islam.stackexchange.com/users/9208/" ]
There's no time frame, but both of you must repent to Allah(SWT) and never commit that sin again. You and your potential cannot be alone together privately anywhere and at anytime. You must restrain your looks at each other. You must have a **Wali** involved to go about your business with him. You must be covered ...
If i understood what you said i think you write this advice to the person who will get married Yes that's right but i just add to your spaech or i can say in the other word ...... tray to don't do the sins than allah will help you ... And even you didn't have contact physical before get married , you will found the hap...
102,339
I want to buy the full version of Minecraft, but I'm one of those creative types. What are some of the differences in Creative mode in the full version of Minecraft?
2013/01/22
[ "https://gaming.stackexchange.com/questions/102339", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/41294/" ]
From [the wiki](http://www.minecraftwiki.net/wiki/Classic#Advantages_of_purchasing) about the classic version: > > Advantages of purchasing > > > Although this mode is free to the public, there are several advantages > made available to those who have purchased the game. Some of them are > the ability to: > > ...
You can play the free version, so I won't waste too many words about it. You have a small sandbox and a few kinds of blocks you can mess around and build with. You can explore the randomly generated world for caves, pockets of air, etc.; you can grief with water sources... It's the core of Minecraft. The paid version ...
102,339
I want to buy the full version of Minecraft, but I'm one of those creative types. What are some of the differences in Creative mode in the full version of Minecraft?
2013/01/22
[ "https://gaming.stackexchange.com/questions/102339", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/41294/" ]
You can play the free version, so I won't waste too many words about it. You have a small sandbox and a few kinds of blocks you can mess around and build with. You can explore the randomly generated world for caves, pockets of air, etc.; you can grief with water sources... It's the core of Minecraft. The paid version ...
There is only about a dozen blocks in Classic, and they don't really do much. The full version of Minecraft not only includes nearly 150 blocks, but also has Redstone (an extremely flexible system you can use to make machines in Minecraft), custom avatars, infinite worlds, enhanced multiplayer, and the awesome survival...
102,339
I want to buy the full version of Minecraft, but I'm one of those creative types. What are some of the differences in Creative mode in the full version of Minecraft?
2013/01/22
[ "https://gaming.stackexchange.com/questions/102339", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/41294/" ]
From [the wiki](http://www.minecraftwiki.net/wiki/Classic#Advantages_of_purchasing) about the classic version: > > Advantages of purchasing > > > Although this mode is free to the public, there are several advantages > made available to those who have purchased the game. Some of them are > the ability to: > > ...
There is only about a dozen blocks in Classic, and they don't really do much. The full version of Minecraft not only includes nearly 150 blocks, but also has Redstone (an extremely flexible system you can use to make machines in Minecraft), custom avatars, infinite worlds, enhanced multiplayer, and the awesome survival...
29,014
There is an existing light fixture and switch for the light fixture. I want to add a bath fan with its own switch. What is the easiest way?
2013/06/24
[ "https://diy.stackexchange.com/questions/29014", "https://diy.stackexchange.com", "https://diy.stackexchange.com/users/13644/" ]
If you're not comfortable working with electricity then hire a professional. Improper wiring and the resulting fire isn't worth saving a few bucks. That said: Your existing fan/light combo is likely connected using a 2-conductor cable (like 14-2)... but for two separately switched circuits you'll need three conductor...
You need to check to see how many wires you have going into your current switch from the fan. It is most likely that you have a black and a white. If this is the case you will need to run either 12-3 or 14-3 wiring from fan to switch. Size dependent on amperage of circuit. 15A gets 14 and 20A gets 12-3. 12-3 will act...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
According to [the Wikipedia section on Cacofonix](https://en.wikipedia.org/wiki/List_of_Asterix_characters#Cacofonix): > > In later albums his music is so spectacularly horrible that it actually starts thunderstorms (even indoors), because of an old French saying that bad singing causes rain. > > > A French perso...
As many have pointed out, it could be because of the French connection and the French proverb that bad singing may cause rain. Another possibility could be interpreted from the fact that Watziznehm requests the Gauls to help him with draught in his region in the Ganges region. In the Ganges region, although the timeli...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
On page 6 of *Asterix and the Magic Carpet* (in-panel numbering), Vitalstatistix says regarding Cacofonix’ rainmaking abilities: > > Oh, yes … I was forgetting, Cacofonix has new string to his lyre these days. > > > As noted by [Darren](https://scifi.stackexchange.com/users/75476/darren), this is probably a pun i...
Perhaps not immediately clear for English readers, the original French name of the bard in the cartoons is *Assurancetourix*, a contraction of the French term *Assurance tous risques*, literally "all-risk insurance". An all-risk insurance includes coverage that automatically covers any risk, including natural disaster...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
In France we have this saying that if you sing badly it will produce rain. More precisely if you sing out of key, or pitchy, then you'll make it rain. "Cacophonix" means "cacophonie" which is French for "cacophony": harsh discordant mixture of sounds. Thus triggering the rain.
Perhaps not immediately clear for English readers, the original French name of the bard in the cartoons is *Assurancetourix*, a contraction of the French term *Assurance tous risques*, literally "all-risk insurance". An all-risk insurance includes coverage that automatically covers any risk, including natural disaster...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
This is an ongoing joke that Cacofonix's singing is so bad, it causes negative things to happen (a common trope). [![A group proposes a toast at a banquet but Cacofonix starts signing in a treehouse which causes it to rain; when he stops singing the rain stops again](https://i.stack.imgur.com/6xBoN.jpg)](https://i.s...
As many have pointed out, it could be because of the French connection and the French proverb that bad singing may cause rain. Another possibility could be interpreted from the fact that Watziznehm requests the Gauls to help him with draught in his region in the Ganges region. In the Ganges region, although the timeli...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
This is an ongoing joke that Cacofonix's singing is so bad, it causes negative things to happen (a common trope). [![A group proposes a toast at a banquet but Cacofonix starts signing in a treehouse which causes it to rain; when he stops singing the rain stops again](https://i.stack.imgur.com/6xBoN.jpg)](https://i.s...
In France we have this saying that if you sing badly it will produce rain. More precisely if you sing out of key, or pitchy, then you'll make it rain. "Cacophonix" means "cacophonie" which is French for "cacophony": harsh discordant mixture of sounds. Thus triggering the rain.
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
This is an ongoing joke that Cacofonix's singing is so bad, it causes negative things to happen (a common trope). [![A group proposes a toast at a banquet but Cacofonix starts signing in a treehouse which causes it to rain; when he stops singing the rain stops again](https://i.stack.imgur.com/6xBoN.jpg)](https://i.s...
On page 6 of *Asterix and the Magic Carpet* (in-panel numbering), Vitalstatistix says regarding Cacofonix’ rainmaking abilities: > > Oh, yes … I was forgetting, Cacofonix has new string to his lyre these days. > > > As noted by [Darren](https://scifi.stackexchange.com/users/75476/darren), this is probably a pun i...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
According to [the Wikipedia section on Cacofonix](https://en.wikipedia.org/wiki/List_of_Asterix_characters#Cacofonix): > > In later albums his music is so spectacularly horrible that it actually starts thunderstorms (even indoors), because of an old French saying that bad singing causes rain. > > > A French perso...
In France we have this saying that if you sing badly it will produce rain. More precisely if you sing out of key, or pitchy, then you'll make it rain. "Cacophonix" means "cacophonie" which is French for "cacophony": harsh discordant mixture of sounds. Thus triggering the rain.
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
This is an ongoing joke that Cacofonix's singing is so bad, it causes negative things to happen (a common trope). [![A group proposes a toast at a banquet but Cacofonix starts signing in a treehouse which causes it to rain; when he stops singing the rain stops again](https://i.stack.imgur.com/6xBoN.jpg)](https://i.s...
According to [the Wikipedia section on Cacofonix](https://en.wikipedia.org/wiki/List_of_Asterix_characters#Cacofonix): > > In later albums his music is so spectacularly horrible that it actually starts thunderstorms (even indoors), because of an old French saying that bad singing causes rain. > > > A French perso...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
This is an ongoing joke that Cacofonix's singing is so bad, it causes negative things to happen (a common trope). [![A group proposes a toast at a banquet but Cacofonix starts signing in a treehouse which causes it to rain; when he stops singing the rain stops again](https://i.stack.imgur.com/6xBoN.jpg)](https://i.s...
Perhaps not immediately clear for English readers, the original French name of the bard in the cartoons is *Assurancetourix*, a contraction of the French term *Assurance tous risques*, literally "all-risk insurance". An all-risk insurance includes coverage that automatically covers any risk, including natural disaster...
232,805
In *Asterix and the Magic Carpet*, [Cacofonix's](https://www.asterix.com/en/portfolio/cacofonix/) singing produces rain. (Previously, this had never happened.) **Why is it that when Cacofonix sings, it rains in #28 (*Magic Carpet*, 1987), but not in Books #1-27 (1961-83)?** (Others may disagree, but I find this proble...
2020/06/15
[ "https://scifi.stackexchange.com/questions/232805", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/130048/" ]
According to [the Wikipedia section on Cacofonix](https://en.wikipedia.org/wiki/List_of_Asterix_characters#Cacofonix): > > In later albums his music is so spectacularly horrible that it actually starts thunderstorms (even indoors), because of an old French saying that bad singing causes rain. > > > A French perso...
Perhaps not immediately clear for English readers, the original French name of the bard in the cartoons is *Assurancetourix*, a contraction of the French term *Assurance tous risques*, literally "all-risk insurance". An all-risk insurance includes coverage that automatically covers any risk, including natural disaster...
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
Those phrases are examples of ellipsis: the omission of words that can be understood from the context, or given contextual clues. While ellipsis is not normally used in formal English, it is more used in spoken English, or informal English.
These aren't correct in formal English. Here, the sentences say "Are you alright?", "Have you eaten anything", as you mentioned. The "Are"/"Have" are implied here, that's all. One finds this a lot in informal English -- words which can be guessed from context are sometimes dropped altogether. It's just a way to save ...
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
These aren't correct in formal English. Here, the sentences say "Are you alright?", "Have you eaten anything", as you mentioned. The "Are"/"Have" are implied here, that's all. One finds this a lot in informal English -- words which can be guessed from context are sometimes dropped altogether. It's just a way to save ...
*“You alright?”* is not necessarily true according to the grammar rules. It is instead used for conversations with friends and relatives. The most correct sentence, in my opinion, would definitely be: **“*Are you alright*?”**
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
These aren't correct in formal English. Here, the sentences say "Are you alright?", "Have you eaten anything", as you mentioned. The "Are"/"Have" are implied here, that's all. One finds this a lot in informal English -- words which can be guessed from context are sometimes dropped altogether. It's just a way to save ...
We use ellipsis a lot in spoken English. It's certainly not good written style though! I might have a conversation like this with friends: Alright? Coming to the pub tonight? Naa (No). Too tired. Went out last night. Stay out late, did ya (you)? Yeah. Got home about 2 in the morning. Wife wasn't happy!
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
Those phrases are examples of ellipsis: the omission of words that can be understood from the context, or given contextual clues. While ellipsis is not normally used in formal English, it is more used in spoken English, or informal English.
*“You alright?”* is not necessarily true according to the grammar rules. It is instead used for conversations with friends and relatives. The most correct sentence, in my opinion, would definitely be: **“*Are you alright*?”**
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
Those phrases are examples of ellipsis: the omission of words that can be understood from the context, or given contextual clues. While ellipsis is not normally used in formal English, it is more used in spoken English, or informal English.
We use ellipsis a lot in spoken English. It's certainly not good written style though! I might have a conversation like this with friends: Alright? Coming to the pub tonight? Naa (No). Too tired. Went out last night. Stay out late, did ya (you)? Yeah. Got home about 2 in the morning. Wife wasn't happy!
191
I'm having a hard time figuring out which is the correct form of asking this kind of question. I mean speaking strictly, this doesn't sound right: ***You alright?*** or ***You eaten anything?*** compared to ***Are you alright?*** and ***Have you eaten anything?***. So please enlighten me. Are those both forms correc...
2013/01/24
[ "https://ell.stackexchange.com/questions/191", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/101/" ]
We use ellipsis a lot in spoken English. It's certainly not good written style though! I might have a conversation like this with friends: Alright? Coming to the pub tonight? Naa (No). Too tired. Went out last night. Stay out late, did ya (you)? Yeah. Got home about 2 in the morning. Wife wasn't happy!
*“You alright?”* is not necessarily true according to the grammar rules. It is instead used for conversations with friends and relatives. The most correct sentence, in my opinion, would definitely be: **“*Are you alright*?”**
187,922
I have a need to support multiple websites on a single IIS 7 server. One of these websites needs to be able to support wildcard subdomains. I was hoping to use host headers for this approach but am thinking this is not possible. The site that requires wildcard subdomains won't let me use \*.site.com in the host header ...
2009/10/23
[ "https://serverfault.com/questions/187922", "https://serverfault.com", "https://serverfault.com/users/46124/" ]
Give each separate website its own IP address and configure IIS to listen based on IP address rather than `Host` header. Then, any single website with multiple or wildcard subdomains but at a separate IP will work with IIS listening to all incoming requests on that IP.
Just use site.com not \*.site.com
187,922
I have a need to support multiple websites on a single IIS 7 server. One of these websites needs to be able to support wildcard subdomains. I was hoping to use host headers for this approach but am thinking this is not possible. The site that requires wildcard subdomains won't let me use \*.site.com in the host header ...
2009/10/23
[ "https://serverfault.com/questions/187922", "https://serverfault.com", "https://serverfault.com/users/46124/" ]
Give each separate website its own IP address and configure IIS to listen based on IP address rather than `Host` header. Then, any single website with multiple or wildcard subdomains but at a separate IP will work with IIS listening to all incoming requests on that IP.
My understanding is IIS doesnt support this. Im assuming the next best option is to use URL rewriting and set a rewrite in the global rules (not per site). I've been using IIRF with good results, and it is free. Version 2.x now has a server-level global re-write rules, then each site has its own per-site rewrite rules....
32,311
I'm interested in \*coin, but I'm afraid of sinking money into something out of idle curiosity and then losing that money to value fluctuations. Would it be a good idea to have several different \*coin (lite, doge, idk what else there is) so that the fluctuations balance each other? Have different \*coin in the past ...
2014/11/04
[ "https://bitcoin.stackexchange.com/questions/32311", "https://bitcoin.stackexchange.com", "https://bitcoin.stackexchange.com/users/13856/" ]
I don't see how different coins would protect against volatility, as Bitcoin is by far the leading cryptocurrency, and the others (even all of them combined) are really totally insignificant in terms of market cap and trading volume. If you want to protect against volatility (given that you measure volatility in term...
You should see \*coin as a **very high risk** asset. The strategy "diversify your investment" only works on regular stocks since people generally see the markets rising over large amounts of time on established companies. (The fluctuations average in accordance to the *law of large numbers*) It is much more risky to i...
32,311
I'm interested in \*coin, but I'm afraid of sinking money into something out of idle curiosity and then losing that money to value fluctuations. Would it be a good idea to have several different \*coin (lite, doge, idk what else there is) so that the fluctuations balance each other? Have different \*coin in the past ...
2014/11/04
[ "https://bitcoin.stackexchange.com/questions/32311", "https://bitcoin.stackexchange.com", "https://bitcoin.stackexchange.com/users/13856/" ]
I don't see how different coins would protect against volatility, as Bitcoin is by far the leading cryptocurrency, and the others (even all of them combined) are really totally insignificant in terms of market cap and trading volume. If you want to protect against volatility (given that you measure volatility in term...
There are services emerging to combat the volatility of Bitcoin. Bitreserve is one. But to be honest if you are worried about the volatility, just keep your funds in your native currency and buy bitcoin when you need bitcoin since there are plenty of places you can buy bitcoin almost instantly.
123,439
Recently, I learned about the concept of the [51% attack](https://www.investopedia.com/terms/1/51-attack.asp) which a malicious actor could perform on a cryptocurrency. Essentially, if you can control >50% of the hashing power for a given cryptocurrency, you can control the blockchain which allows you to do all sorts o...
2020/04/03
[ "https://money.stackexchange.com/questions/123439", "https://money.stackexchange.com", "https://money.stackexchange.com/users/44939/" ]
Generally new cryptocurrencies are protected either by a complete lack of incentive to attack them, or by amassing support leading up to their eventual "launch." Older ones are somewhat protected by people being vigilant and communities occasionally agreeing on hard forks to ignore transactions on "compromised" chains;...
Many cryptocurrencies are launched with the intent to fleece people by giving you money for worthless cryptocurrency. So all you need is a great launch and lots of initial sales. Since the intent was never for the victims / suckers to make any profit, who cares about a 51% attack? The people who launched the cryptocurr...
21,147,988
I'm a junior .NET developer and our company has a ton of code in their main application. All of our css for the web application is using bootstrap 2.3. I've been assigned the task to migrate from 2.3 to the new 3.0. This update has a ton of major changes. I'm looking for any and all suggestions on how I can make this w...
2014/01/15
[ "https://Stackoverflow.com/questions/21147988", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2859933/" ]
Bootstrap 3 is a major upgrade. You will have to "manually" update the classes in each file, and in some cases change the structure of your markup. There are some tools that can help.. See: [Updating Bootstrap to version 3 - what do I have to do?](https://stackoverflow.com/questions/17974998/updating-bootstrap-to-ver...
Use the find and replace for entire solution.
3,856
I've recently signed up for Google Apps because of the email support. I only use the web based gmail client for all my mail. I'd like to have a professional email signature for each email that I send that includes a small image which is the Logo of my company. How can include such an signature with Gmail?
2010/07/16
[ "https://webapps.stackexchange.com/questions/3856", "https://webapps.stackexchange.com", "https://webapps.stackexchange.com/users/1208/" ]
Google recently [announced](http://gmailblog.blogspot.com/2010/07/rich-text-signatures.html) support for rich text in signatures. That means you can now configure the font family, size and color, as well as insert images into the signature. Just go to your gmail settings and you'll find it right there, no need to enabl...
Just to add to that if you have multiple accounts (and hence want multiple signatures) Gmail can now handle this too (I used to have to use 'labs' canned responses to do this). So if you also set up Gmail to automatically respond to the e-mail account the message was originally sent to it means you automatically get th...
12,531,333
I'm looking for a way to send a user a regular file (mp3s or pictures), and keeping count of how many times this file was accessed **without going through an HTML/PHP page**. For example, the user will point his browser to bla.com/file.mp3 and start downloading it, while a server-side script will do something like sav...
2012/09/21
[ "https://Stackoverflow.com/questions/12531333", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1688892/" ]
You will need to go through a php script, what you could do is rewrite the extensions you want to track, preferably at the folder level, to a php script which then does the calculations you need and serves the file to the user. For Example: If you want to track the /downloads/ folder you would create a rewrite on you...
Do you mean that you don't want your users to be presented with a specific page and interrupt their flow? If you do, you can still use a PHP page using the following steps. (I'm not up to date with PHP so it'll be pseudo-code, but you'll get the idea) * Provide links to your file as (for example) <http://example.com/t...
12,531,333
I'm looking for a way to send a user a regular file (mp3s or pictures), and keeping count of how many times this file was accessed **without going through an HTML/PHP page**. For example, the user will point his browser to bla.com/file.mp3 and start downloading it, while a server-side script will do something like sav...
2012/09/21
[ "https://Stackoverflow.com/questions/12531333", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1688892/" ]
You will need to go through a php script, what you could do is rewrite the extensions you want to track, preferably at the folder level, to a php script which then does the calculations you need and serves the file to the user. For Example: If you want to track the /downloads/ folder you would create a rewrite on you...
You would need to scan log files. Regardless you most likely would want to store counters in a database? There is a great solution in serving static files using PHP: <https://tn123.org/mod_xsendfile/>
375,793
I am studying mathematical modeling of a battery in simulink and for this it is necessary to determine some parameters. I'm stuck in the part where I need to determine an alpha parameter, which would be the relation between capacity and temperature. Not all battery manufacturers provide this parameter and would like to...
2018/05/22
[ "https://electronics.stackexchange.com/questions/375793", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/186980/" ]
Working with Li-ion or LiPo cells, I never heard of an *alpha* parameter in datasheets. But, usually you can easily find the discharge curves at various temperatures i.e. you can estimate a correlation coefficient between temperature and total capacity.
IEC 61215 standard requires this measurement for Li-ion and I believe the manufacturer must make the results of the testing available to the public. I have found the report for some batteries in the past. All I remember is I don't want to do that again. You can measure it. Follow the IEC 61215 testing methods. See:...
33,900,657
I am interested to know if anyone has built a javascript websocket listener for a browser. Basically the server side of a websocket that runs in a client. This would allow messages to be sent to the client directly. Why? Because instead of having a Node.js, python, java, etc, server process sitting on or near the clien...
2015/11/24
[ "https://Stackoverflow.com/questions/33900657", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3426462/" ]
[WebRTC](https://webrtc.org/getting-started/overview) allows for peer-to-peer connections to be made between browsers. You would still need a server in order for individual users to discover each other but then they could connect directly to each other rather than having to pass all their traffic via a central server...
The idea. You can use a simple **echo server** written in any language. Your script can send the data to the server then get it back, handle it on the same page with different functions/classes emulating the real server. An example: <http://www.websocket.org/echo.html> Then, you can think about different formats of ...
138,924
Anyone around coy with being Mr. Fixit? (Ms. Fixit would be even better, but either will do nicely.) I can't absorb dragon souls, and yes, I've been through almost every thread there is here on the answer. (So please, do not duplicate me. Pretty please?) Mind you, I got a *TRUCKLOAD* of mods installed... *(ducks in pr...
2013/11/06
[ "https://gaming.stackexchange.com/questions/138924", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/59017/" ]
USKP has a problem with the dragonactorscript.pex file. Found and installed a fix available here: <http://www.nexusmods.com/skyrim/mods/31685> Personally, I went and overwrote the file from USKP itself instead of treating this fix as a separate mod, keeping a backup available just in case.
If that is your load order I see one problem: You have the skyrim patch after the DLC patches - it needs to go first. The correct order is given at: <http://skyrim.nexusmods.com/mods/19/> > > * Skyrim.esm > * Update.esm > * Unofficial Skyrim Patch.esp > * Dawnguard.esm > * Unofficial Dawnguard Patch.esp > * Hearthfi...