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 |
|---|---|---|---|---|---|
117,131 | We currently have a 'global catch all exceptions' section in our application. When an uncaught exception is thrown, the stack trace is displayed and the application continues running.
More often than not, this leaves the state of the application invalid going forward. Especially with NullReferenceExceptions, and threa... | 2011/10/31 | [
"https://softwareengineering.stackexchange.com/questions/117131",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/23890/"
] | Its definitely best practice to shutdown the application which has thrown an unhandled exception. Under Winforms in .NET, there used to be a dialog which popped up and gave you a big warning with the option to continue running. But since I think .NET 3.5 that continue option is no longer there and you are forced to shu... | Depending on the situation there's an answer I used once: If something goes haywire but it's not a certain fatality I reset the document name--if the work gets corrupted it wouldn't overwrite the original. It was only intended to allow them time for a graceful exit. |
2,379,913 | I am studying predicate logic,I came across this para-
>
> Propositional logic, studied in Sections 1.1–1.3, cannot adequately express the meaning of all statements in mathematics and in natural language.
>
>
> For example, suppose that we know that
> “Every computer connected to the university network is functio... | 2017/08/02 | [
"https://math.stackexchange.com/questions/2379913",
"https://math.stackexchange.com",
"https://math.stackexchange.com/users/466505/"
] | If your domain is finite, then yes, we *could* do everything in propositional logic instead of predicate logic, but:
1. Not every domain is finite (think numbers, sets, graphs, etc.)
2. Even if the domain is finite, then:
2a. We may not know all of its elements (think all people in the world)
2b. There are just too ... | You can express a conjunction such as the following:
"Math1 is connected and working properly AND Math2 is connected and working properly AND ... MathX is connected and working properly",
in propositional logic. However, this does not say that "Every computer connected to the university network is functioning properl... |
2,379,913 | I am studying predicate logic,I came across this para-
>
> Propositional logic, studied in Sections 1.1–1.3, cannot adequately express the meaning of all statements in mathematics and in natural language.
>
>
> For example, suppose that we know that
> “Every computer connected to the university network is functio... | 2017/08/02 | [
"https://math.stackexchange.com/questions/2379913",
"https://math.stackexchange.com",
"https://math.stackexchange.com/users/466505/"
] | >
>
> >
> > No rules of propositional logic allow us to conclude the truth of the statement “MATH3 is functioning properly",where MATH3 is one of the computers connected to the university network.
> >
> >
> >
>
>
> This is supposed to illustrate the motivation for predicate logic.
>
>
> *However,we can interp... | You can express a conjunction such as the following:
"Math1 is connected and working properly AND Math2 is connected and working properly AND ... MathX is connected and working properly",
in propositional logic. However, this does not say that "Every computer connected to the university network is functioning properl... |
92,034 | I am trying to implement and learn a Dirichlet Process to cluster my data (or as machine learning people speak, estimate the density).
I read a lot of paper in the topic and sort of got the idea. But I am still confused; here are a series of question,
1) What is the different between Chinese Restaurant Model and DP ... | 2014/03/31 | [
"https://stats.stackexchange.com/questions/92034",
"https://stats.stackexchange.com",
"https://stats.stackexchange.com/users/4581/"
] | **1) What is the different between Chinese Restaurant Model and DP?**
None. CRP is a particular representation of DP. Depending on your problem you might want to use one representation over another (CRP, Stick-breaking, etc).
**2) What is the different between Infinite Mixture Models and DP?**
DP is just used as a p... | A very understandable code by Jacob Eisenstein is available for Matlab at <https://github.com/jacobeisenstein/DPMM>. It is based on the Dissertation "Graphical Models for Visual Object Recognition and Tracking" by E.B. Sudderth. |
16,064,631 | I have a 3-tier architecture that looks roughly like this:
Client -> Business -> Data
Where should transactions ideally start?
One school of thought says that transactions should only start at the top of the Data layer. The Business layer only manipulates business objects with business logic, and never knows about ... | 2013/04/17 | [
"https://Stackoverflow.com/questions/16064631",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/769744/"
] | Transaction is a business concept and it should be coordinated from within the Business Tier.
Manipulating objects in isolation usually makes little benefit and spanning the manipulation between multiple types of objects already is a transaction. So first school of thought is dealing with really basic cases.
When yo... | In the
>
> Client -> Business -> Data
>
>
>
architecture, it is always better to define the transaction on the business layer. I would suggest that the transaction be so defined that the business service either starts a new transaction or participates in the existing transaction if one is already started. This t... |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | You may be interested in [seccomp](http://en.wikipedia.org/wiki/Seccomp). This is a feature with which Linux runs a process with only a very limited set of available system calls; the kernel kills the process at any attempt to execute any other call. This is, conceptually, the Right Way to do this kind of isolation: us... | You should probably run the program inside a virtual-machine, probably created using [Xen](http://en.wikipedia.org/wiki/Xen) if you don't want to pay for VMWare. |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | What you are describing sounds a lot like Google's [NaCl](https://developers.google.com/native-client/). Google designed this as a safe way to run native x86 code in the web browser, but they have a sample that runs standalone with no browser. They include a GCC compiler that outputs NaCl-x86 rather than standard x86. | You should probably run the program inside a virtual-machine, probably created using [Xen](http://en.wikipedia.org/wiki/Xen) if you don't want to pay for VMWare. |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | You may be interested in [seccomp](http://en.wikipedia.org/wiki/Seccomp). This is a feature with which Linux runs a process with only a very limited set of available system calls; the kernel kills the process at any attempt to execute any other call. This is, conceptually, the Right Way to do this kind of isolation: us... | Here is another option I found out about. Terminal command **gksu** has an option to execute command as another user:
>
> --user < user >, -u < user >
>
>
> Call as the specified user.
>
>
>
I think this might create some sort of sandbox.
P.S. Made this as a new answer as it's one of possible solutions and is ... |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | You may be interested in [seccomp](http://en.wikipedia.org/wiki/Seccomp). This is a feature with which Linux runs a process with only a very limited set of available system calls; the kernel kills the process at any attempt to execute any other call. This is, conceptually, the Right Way to do this kind of isolation: us... | What you are describing sounds a lot like Google's [NaCl](https://developers.google.com/native-client/). Google designed this as a safe way to run native x86 code in the web browser, but they have a sample that runs standalone with no browser. They include a GCC compiler that outputs NaCl-x86 rather than standard x86. |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | You may be interested in [seccomp](http://en.wikipedia.org/wiki/Seccomp). This is a feature with which Linux runs a process with only a very limited set of available system calls; the kernel kills the process at any attempt to execute any other call. This is, conceptually, the Right Way to do this kind of isolation: us... | Have you thought of using chroot?
<https://help.ubuntu.com/community/BasicChroot>
It's more freebsd'y but it will work. Seccomp takes care of syscalls, just removing the system libraries won't actually work since people can just add their syscalls. But chroot is another level of making sure they don't break out and an... |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | What you are describing sounds a lot like Google's [NaCl](https://developers.google.com/native-client/). Google designed this as a safe way to run native x86 code in the web browser, but they have a sample that runs standalone with no browser. They include a GCC compiler that outputs NaCl-x86 rather than standard x86. | Here is another option I found out about. Terminal command **gksu** has an option to execute command as another user:
>
> --user < user >, -u < user >
>
>
> Call as the specified user.
>
>
>
I think this might create some sort of sandbox.
P.S. Made this as a new answer as it's one of possible solutions and is ... |
10,495 | I'm not entirely sure if this is the right site for this, but I'll give it a shot.
Basically, I'm looking into different ways of setting up a single sign-on service for an existing corporate environment. Within this environment, there's anything from old legacy systems to new web services, all running on different pla... | 2012/01/08 | [
"https://security.stackexchange.com/questions/10495",
"https://security.stackexchange.com",
"https://security.stackexchange.com/users/6827/"
] | What you are describing sounds a lot like Google's [NaCl](https://developers.google.com/native-client/). Google designed this as a safe way to run native x86 code in the web browser, but they have a sample that runs standalone with no browser. They include a GCC compiler that outputs NaCl-x86 rather than standard x86. | Have you thought of using chroot?
<https://help.ubuntu.com/community/BasicChroot>
It's more freebsd'y but it will work. Seccomp takes care of syscalls, just removing the system libraries won't actually work since people can just add their syscalls. But chroot is another level of making sure they don't break out and an... |
10,317,459 | I am a user of hudson. I recently moved to jenkins. I know hudson does not support clustering of servers. Does jenkins provide that. Also elaborate things a little as I am new to this. Thanks in Advance. | 2012/04/25 | [
"https://Stackoverflow.com/questions/10317459",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1085984/"
] | If by clustering you mean having a single web interface and many workers behind, yes Jenkins (like Hudson from which Jenkins is forked) support it and it's called [Distributed Builds](https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds). It allows you to run jobs on differents workers called slaves.
See the... | Jenkins is fairly close to Hudson, feature-wise. Jenkins project forked off Hudson around 18 months ago and the basic architecture is still the same. So, even without knowing exactly what you mean by clustering, I am confident Jenkins does not support clustering if you say Hudson does not support it.
I have heard rumo... |
10,317,459 | I am a user of hudson. I recently moved to jenkins. I know hudson does not support clustering of servers. Does jenkins provide that. Also elaborate things a little as I am new to this. Thanks in Advance. | 2012/04/25 | [
"https://Stackoverflow.com/questions/10317459",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1085984/"
] | OS Jenkins does not support clustering.
Cloudbees Jenkins Enterprise has HA support using active and stand-by Jenkins masters.
<http://jenkins-enterprise.cloudbees.com/docs/user-guide-bundle/ha.html> | Jenkins is fairly close to Hudson, feature-wise. Jenkins project forked off Hudson around 18 months ago and the basic architecture is still the same. So, even without knowing exactly what you mean by clustering, I am confident Jenkins does not support clustering if you say Hudson does not support it.
I have heard rumo... |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | A friend of mine built a hydrophone then froze it into a lake - in north sweden. you can hear the results from here:
<http://www.riwid.net/works/singing-ice/> | Maybe not THAT extreme, but I did bury my hydrophone in my compost pile. It's out on loan, but I figure I'd need to let it sit for a few days before recording with it, and then would need to do so for a few hours to see what I could get...the initial session was too short to get much cool stuff. |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | A friend of mine built a hydrophone then froze it into a lake - in north sweden. you can hear the results from here:
<http://www.riwid.net/works/singing-ice/> | Maybe a bit more of a joke... but this dog was seriously psycho! And it obsessed over the fluffy a little too much. Got a few nips too. The sound was was what I needed so it paid off.
oops, just read "hydrophone" in the title... I always post quicker than I read. In anycase it was so slobbery, that I probably needed a... |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | Just found [this](http://www.sonic-terrain.com/2010/09/recording-of-the-week-maggots-fun-by-richard-devine/) on the Sonic-Terrain site. Definitely applies to this topic. | I tried putting the hydrophone inside a balloon filled with water to get interesting impacts, jiggles, etc., but unfortunately I couldn't figure out a way to avoid cable vibration/noise emanating from where it touched the tied neck of the balloon. Made some interesting sound though. |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | While I take no credit for doing it, an old friend of mine submerged one in his bathtub and fired off a bottle rocket. Him, the mic, and the bathtub/apartment survived. | Maybe a bit more of a joke... but this dog was seriously psycho! And it obsessed over the fluffy a little too much. Got a few nips too. The sound was was what I needed so it paid off.
oops, just read "hydrophone" in the title... I always post quicker than I read. In anycase it was so slobbery, that I probably needed a... |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | A friend of mine built a hydrophone then froze it into a lake - in north sweden. you can hear the results from here:
<http://www.riwid.net/works/singing-ice/> | While I take no credit for doing it, an old friend of mine submerged one in his bathtub and fired off a bottle rocket. Him, the mic, and the bathtub/apartment survived. |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | Maybe not THAT extreme, but I did bury my hydrophone in my compost pile. It's out on loan, but I figure I'd need to let it sit for a few days before recording with it, and then would need to do so for a few hours to see what I could get...the initial session was too short to get much cool stuff. | Maybe a bit more of a joke... but this dog was seriously psycho! And it obsessed over the fluffy a little too much. Got a few nips too. The sound was was what I needed so it paid off.
oops, just read "hydrophone" in the title... I always post quicker than I read. In anycase it was so slobbery, that I probably needed a... |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | A friend of mine built a hydrophone then froze it into a lake - in north sweden. you can hear the results from here:
<http://www.riwid.net/works/singing-ice/> | Just found [this](http://www.sonic-terrain.com/2010/09/recording-of-the-week-maggots-fun-by-richard-devine/) on the Sonic-Terrain site. Definitely applies to this topic. |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | While I take no credit for doing it, an old friend of mine submerged one in his bathtub and fired off a bottle rocket. Him, the mic, and the bathtub/apartment survived. | I tried putting the hydrophone inside a balloon filled with water to get interesting impacts, jiggles, etc., but unfortunately I couldn't figure out a way to avoid cable vibration/noise emanating from where it touched the tied neck of the balloon. Made some interesting sound though. |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | Just found [this](http://www.sonic-terrain.com/2010/09/recording-of-the-week-maggots-fun-by-richard-devine/) on the Sonic-Terrain site. Definitely applies to this topic. | Maybe a bit more of a joke... but this dog was seriously psycho! And it obsessed over the fluffy a little too much. Got a few nips too. The sound was was what I needed so it paid off.
oops, just read "hydrophone" in the title... I always post quicker than I read. In anycase it was so slobbery, that I probably needed a... |
3,282 | Who has risked their microphone investment and have it pay off?
* Submerged in boiling water
* Frozen in ice
* Dipped in liquids other than water,
ie. syrup, molasses, oil, etc
* Floated close to hazardous objects,
ie. garbage disposal blades,
propellors, etc
* Something else even crazier than the
above? | 2010/08/31 | [
"https://sound.stackexchange.com/questions/3282",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/61/"
] | A friend of mine built a hydrophone then froze it into a lake - in north sweden. you can hear the results from here:
<http://www.riwid.net/works/singing-ice/> | I tried putting the hydrophone inside a balloon filled with water to get interesting impacts, jiggles, etc., but unfortunately I couldn't figure out a way to avoid cable vibration/noise emanating from where it touched the tied neck of the balloon. Made some interesting sound though. |
45,745 | This is something I always wondered about but never really asked.
Say I have a rectangle box, image or other element in photoshop, when I make the desired element active and I check the info panel, The width / height never shows up - Should it? | 2009/09/23 | [
"https://superuser.com/questions/45745",
"https://superuser.com",
"https://superuser.com/users/2050/"
] | When you make a selection, the 'Info' panel should show the width (W:) and height (H:) of the selection. It has to be the active selection, though.
*Note: The active selection "marching ants" don't show up in the screen capture.*
 | Press 'Command-T' to transform the current layer. That will also show it's width and height in the info panel, as per Robert's answer (but more convenient). |
44,417 | How can increasing the radius of earth may cause an impact on the solar system ? Like, would earth may start making a bigger orbit (due to increase in size and wait) or vice versa ? or else ?
PS: The base of my question arises from the point of view of "Growing Population", and managing it by "artificially increasing ... | 2012/11/17 | [
"https://physics.stackexchange.com/questions/44417",
"https://physics.stackexchange.com",
"https://physics.stackexchange.com/users/6665/"
] | Radius has little to do with an object's orbital properties. Instead, consider its mass.
The mass of a satellite (in this case the Earth) does not affect any properties of its orbit. This makes sense, since the force of gravity is proportional to mass, and acceleration is proportional to force divided by mass. Therefo... | The Earth is getting bigger even now. Although very slowly. There is a constant rain of space dust onto the planet. But it won't make much of a noticeable difference to the planet's size or mass any time soon.
As an engineering effort to make more living space... not very practical. Where would the new mass come from?... |
44,417 | How can increasing the radius of earth may cause an impact on the solar system ? Like, would earth may start making a bigger orbit (due to increase in size and wait) or vice versa ? or else ?
PS: The base of my question arises from the point of view of "Growing Population", and managing it by "artificially increasing ... | 2012/11/17 | [
"https://physics.stackexchange.com/questions/44417",
"https://physics.stackexchange.com",
"https://physics.stackexchange.com/users/6665/"
] | Radius has little to do with an object's orbital properties. Instead, consider its mass.
The mass of a satellite (in this case the Earth) does not affect any properties of its orbit. This makes sense, since the force of gravity is proportional to mass, and acceleration is proportional to force divided by mass. Therefo... | Increasing the radius does not require new matter.
See Menger sponge as a conceptual model; and assume that when pieces of Earth are removed from its surface (excavation for raw materials) and then placed in a vertical order (buildings), Earth's surface takes a less dense form.
If Earth's surface were hypothetically c... |
77,589 | Some people do not move out of the way when walking even if it would be considered rude or socially unacceptable, like when the other person is much older, pregnant, or has small children. They expect others to move for them, but they aren't breaking any laws or rules, rather not following social norms.
This may seem ... | 2022/02/03 | [
"https://law.stackexchange.com/questions/77589",
"https://law.stackexchange.com",
"https://law.stackexchange.com/users/-1/"
] | Rudeness is not a crime
-----------------------
Thankfully, or I’d be writing this from jail.
The threat or actually of intentional and unwanted physical contact *is* a crime. Historically these were seperate common law crimes (and torts) of [assault](https://en.wikipedia.org/wiki/Assault) and [battery](https://en.wi... | Sometimes social norms matter.
This comes up not primarily in the area of criminal law and intentional torts like assault and battery, but in the area of negligence.
Suppose somebody doesn't get out of the way of an obviously fragile person and that causes the person to fall. Is the failure to get out of the way acti... |
77,589 | Some people do not move out of the way when walking even if it would be considered rude or socially unacceptable, like when the other person is much older, pregnant, or has small children. They expect others to move for them, but they aren't breaking any laws or rules, rather not following social norms.
This may seem ... | 2022/02/03 | [
"https://law.stackexchange.com/questions/77589",
"https://law.stackexchange.com",
"https://law.stackexchange.com/users/-1/"
] | Violation of social norms may often have legal effects, although not always.
Possible Outcomes
-----------------
If a person is being rude, forcing others to get out of the way, particularly including those apparently older or more fragile, many things may happen.
* A person who perceives himself or herself to be a ... | Sometimes social norms matter.
This comes up not primarily in the area of criminal law and intentional torts like assault and battery, but in the area of negligence.
Suppose somebody doesn't get out of the way of an obviously fragile person and that causes the person to fall. Is the failure to get out of the way acti... |
77,589 | Some people do not move out of the way when walking even if it would be considered rude or socially unacceptable, like when the other person is much older, pregnant, or has small children. They expect others to move for them, but they aren't breaking any laws or rules, rather not following social norms.
This may seem ... | 2022/02/03 | [
"https://law.stackexchange.com/questions/77589",
"https://law.stackexchange.com",
"https://law.stackexchange.com/users/-1/"
] | There are some instances where you might be allowed to do something only because it follows prevailing social norms. In the U.S., the Supreme Court has held that [“A license may be implied from the habits of the country.”](https://www.law.cornell.edu/supremecourt/text/260/127)
For example, the U.S. Supreme Court in [*... | Sometimes social norms matter.
This comes up not primarily in the area of criminal law and intentional torts like assault and battery, but in the area of negligence.
Suppose somebody doesn't get out of the way of an obviously fragile person and that causes the person to fall. Is the failure to get out of the way acti... |
51,899,513 | I need to start a project with angular in the company where I work. Currently, most projects are developed using version 4 but I have the chance to choose the version.
What do you recommend? I want to know the reasons for using and not using a specific version.
Thanks! | 2018/08/17 | [
"https://Stackoverflow.com/questions/51899513",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5819268/"
] | I recommend you always use the latest version which you can find by following [this](https://angular.io/docs) URL. As I think the main reason why you should choose latest one is that there are many improvements, speed optimizations and bug fixes. So why choose old version when you always can be up to date! | According to me you can choose the more stable version of any platform instead of choosing the latest version of it , because some of the features may be in preview state which is not reliable. So in your case going with Angular 4 or 5 would be good.
Refer this link for more details on [angular versions](https://angul... |
73,508 | Out of curiosity, I have a question about high voltage electricity sources. Hypothetically, the requirements are that the source must be no larger than a water bottle (although smaller is better), and that the source is capable of producing an arc at least 1 meter in length (longer is better). The source doesn't have t... | 2013/06/20 | [
"https://electronics.stackexchange.com/questions/73508",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/25495/"
] | You will need 3 × 10^6 V (*three megavolts*) to achieve a spark in dry air. That's rather a lot.
However, people have built hand-held Tesla coils that achieve roughly what you're asking for: <http://www.rmcybernetics.com/projects/DIY_Devices/plasma-gun-2.htm> (and they'll even sell you the parts!) As "Guess Who" point... | The (hypothetical) requirements for your device are insanely unrealistic. Air breakdown voltage (voltage required to create a spark of a certain length through air) varies based on a ton of things, but in general, the "standard" value (all variables aside) is about 3x10^6 V/m. That's a **huge** voltage. I remember hear... |
125,812 | I am investigating the design of a work queue processor where the QueueProcessor retrieves a Command Pattern object from the Queue and executes it in a new thread.
I am trying to get my head around a potential Queue lockup scenario where nested Commands may result in a deadlock.
E.G.
A FooCommand object is placed on... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125812",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14515/"
] | For simple cases like this an additional monitoring thread that can spin off more threads on demand is helpful.
Basically every N seconds check to see if any jobs have been finished, if not, add another thread.
This won't necessarily handle even more complex deadlock problems, but it will solve this one.
My recommen... | If you are building the Queue object yourself there are a few things you can try:
1. Dynamically add new service threads. Use a timer and add a thread if the available thread count has been zero for too long.
2. If a command is trying to queue another command and wait for the result then you should synchronously execu... |
125,812 | I am investigating the design of a work queue processor where the QueueProcessor retrieves a Command Pattern object from the Queue and executes it in a new thread.
I am trying to get my head around a potential Queue lockup scenario where nested Commands may result in a deadlock.
E.G.
A FooCommand object is placed on... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125812",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14515/"
] | You could redesign things so that FooCommand doesn't use the queue to run BarCommand but runs it directly, or you could split FooCommand into two, and have the first half stop immediately after queueing BarCommand, and have BarCommand queue the second have of FooCommand after it's done its work. | If you are building the Queue object yourself there are a few things you can try:
1. Dynamically add new service threads. Use a timer and add a thread if the available thread count has been zero for too long.
2. If a command is trying to queue another command and wait for the result then you should synchronously execu... |
125,812 | I am investigating the design of a work queue processor where the QueueProcessor retrieves a Command Pattern object from the Queue and executes it in a new thread.
I am trying to get my head around a potential Queue lockup scenario where nested Commands may result in a deadlock.
E.G.
A FooCommand object is placed on... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125812",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14515/"
] | Queuing implicitly assumes an asynchronous execution model. By waiting for the command to exit, you are working synchronously.
Maybe you can split up the commands in three parts: FooCommand1 that executes until the BarCommand has to be sent, BarCommand and finally FooCommand2 that continues after BarCommand has finish... | If you are building the Queue object yourself there are a few things you can try:
1. Dynamically add new service threads. Use a timer and add a thread if the available thread count has been zero for too long.
2. If a command is trying to queue another command and wait for the result then you should synchronously execu... |
86,336 | any chance that wireless access point, wrt54g type with ddwrt, could cause a cisco router to go buggy and drop dhcp requests and other network issues?
looking for some advice as the units are within a foot of each other and this is turning into a blame game between two companies that installed the equipment.
thanks
gd | 2009/11/19 | [
"https://serverfault.com/questions/86336",
"https://serverfault.com",
"https://serverfault.com/users/90428/"
] | Are these hooked into the same network in anyway (wrt54g goes into the same switch as the router, or the router itself)? If that is the case, maybe you have some **IP conflicts**. If they are both in the same broadcast domain, and are both running dhcp, then when clients request IP addresses you don't know which will a... | Logically, if configs are conflicting, sure. Physically located next to each other, I doubt it, unless the Linksys has some hardware malfunctioning in it. Is it possible to just shut off the Linksys temporarily? |
86,336 | any chance that wireless access point, wrt54g type with ddwrt, could cause a cisco router to go buggy and drop dhcp requests and other network issues?
looking for some advice as the units are within a foot of each other and this is turning into a blame game between two companies that installed the equipment.
thanks
gd | 2009/11/19 | [
"https://serverfault.com/questions/86336",
"https://serverfault.com",
"https://serverfault.com/users/90428/"
] | Are these hooked into the same network in anyway (wrt54g goes into the same switch as the router, or the router itself)? If that is the case, maybe you have some **IP conflicts**. If they are both in the same broadcast domain, and are both running dhcp, then when clients request IP addresses you don't know which will a... | I once had a device with a flakey powersupply. I don't understand exactly why, but it caused issues with other devices plugged into the same power distribution unit. So, if they are plugged into the same circuit, it is possible you might see something there, but I don't see where the physical location of a Wireless AP ... |
86,336 | any chance that wireless access point, wrt54g type with ddwrt, could cause a cisco router to go buggy and drop dhcp requests and other network issues?
looking for some advice as the units are within a foot of each other and this is turning into a blame game between two companies that installed the equipment.
thanks
gd | 2009/11/19 | [
"https://serverfault.com/questions/86336",
"https://serverfault.com",
"https://serverfault.com/users/90428/"
] | Are these hooked into the same network in anyway (wrt54g goes into the same switch as the router, or the router itself)? If that is the case, maybe you have some **IP conflicts**. If they are both in the same broadcast domain, and are both running dhcp, then when clients request IP addresses you don't know which will a... | If these devices are 1 foot apart, how long is the patch cable connecting the wireless router to the network? If it is running FastEthernet, there is a minimum 3 feet requirement for patch cables. Anything shorter can cause network connectivity problems. If it is connected to Gigabit, this "rule" doesn't apply, but sho... |
21,041 | I like doing bent-over rows. However, I've quickly outgrown my 50lb dumbbell, and am not strong enough yet to do pullups. I haven't any other equipment.
What else can I do to get to the point where I can do pullups? | 2014/12/31 | [
"https://fitness.stackexchange.com/questions/21041",
"https://fitness.stackexchange.com",
"https://fitness.stackexchange.com/users/13510/"
] | Since your goal here is to do pull ups, I'm going to focus more on that then just upper back strengthening as the title requests. There are three major factors that you should focus on improving: weight, strength, and technique.
1. **Lose weight.** Doing cardio to burn fat will make pull ups more manageable, since you... | Assuming that you have no other accessibility to additional equipment, as your description implies, I would recommend two things.
**Different angles**:
I would try varying the angles at which you exercise your back with the dumbbells. Varying the angles will allow you to strengthen supporting muscles and tissues that... |
4,516 | After creating a character using the Red Box and convincing my gaming group, all newbies to RPG's, to roll characters using the Red Box, I discovered that the Red Box doesn't seem to have an upgrade path for these characters. Is there an official or published method of leveling these chracters? | 2010/11/15 | [
"https://rpg.stackexchange.com/questions/4516",
"https://rpg.stackexchange.com",
"https://rpg.stackexchange.com/users/811/"
] | In the Dungeon Master's Book, the book contains instructions on how to level as per this [link](http://www.therpgsite.com/showthread.php?t=18583). If you're interested in having them level all the way to thirty, you'll need to grab the book "Heroes of the Fallen Lands".
Characters created as part of the Red Box are fi... | Although Brians answer was very helpful in pointing me in the right direction I was still a little confused about where to go after the new Red Box and what the relationship was between books like Heroes of the Fallen Lands and The Players Handbook and Dungeon Masters Guide. The Wizards web site is extremely unhelpful ... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | Like many questions from graduate students, I believe a possible answer to "How should I write and request to my collaborator to include my supervisor's name in the manuscript?" is "Ask your supervisor.".
The question to ask is something like this: "I'm about to write to Foreign Author to get your name added to the p... | If I were your collaborator on this paper, I would refuse to add the supervisor's name no matter how you asked. The only reason I would consider adding it is if the supervisor had actually made a contribution commensurate with authorship (if that were the case, you should have mentioned this to your collaborator a lot ... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | Like many questions from graduate students, I believe a possible answer to "How should I write and request to my collaborator to include my supervisor's name in the manuscript?" is "Ask your supervisor.".
The question to ask is something like this: "I'm about to write to Foreign Author to get your name added to the p... | After you have asserted that your supervisor really merits coauthorship, you could simply write to your collaborator:
"dear collaborator, could you please add [supervisor name] as coauthor? [supervisor name] has contributed to the research in this and this way. Thanks!" |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | You're in a difficult position and there aren't a lot of good options here. Your adivsor is wrong to have put you in this situation. From an ethical perspective, I think it would be wrong to have your supervisor as an author on this paper. On the other hand, you also clearly feel that you have no choice in the matter a... | After you have asserted that your supervisor really merits coauthorship, you could simply write to your collaborator:
"dear collaborator, could you please add [supervisor name] as coauthor? [supervisor name] has contributed to the research in this and this way. Thanks!" |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | If your supervisor has made no contribution, and there was no discussion with your collaborator about your supervisor, and especially if the work is already done, you should have another conversation with your supervisor as they should not be on the paper.
The only way I could see you asking the collaborator is by say... | It sounds like your colleague is the "corresponding author" on the paper, and therefore is the one who has the ability to say who should or should not be a co-author on the paper.
Consequently, depending on your co-author's seniority (relative to your advisor), he may have the ability to decline your advisor's demand... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | While conventions vary greatly from field to field, if your supervisor has made literally no contribution, he or she should not be listed as an author. There is been plenty of discussion here of this issue; see e.g.
* [Co-authorship for not very involved supervisor](https://academia.stackexchange.com/questions/6130/c... | It sounds like your colleague is the "corresponding author" on the paper, and therefore is the one who has the ability to say who should or should not be a co-author on the paper.
Consequently, depending on your co-author's seniority (relative to your advisor), he may have the ability to decline your advisor's demand... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | While conventions vary greatly from field to field, if your supervisor has made literally no contribution, he or she should not be listed as an author. There is been plenty of discussion here of this issue; see e.g.
* [Co-authorship for not very involved supervisor](https://academia.stackexchange.com/questions/6130/c... | If your supervisor has made no contribution, and there was no discussion with your collaborator about your supervisor, and especially if the work is already done, you should have another conversation with your supervisor as they should not be on the paper.
The only way I could see you asking the collaborator is by say... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | You're in a difficult position and there aren't a lot of good options here. Your adivsor is wrong to have put you in this situation. From an ethical perspective, I think it would be wrong to have your supervisor as an author on this paper. On the other hand, you also clearly feel that you have no choice in the matter a... | Like many questions from graduate students, I believe a possible answer to "How should I write and request to my collaborator to include my supervisor's name in the manuscript?" is "Ask your supervisor.".
The question to ask is something like this: "I'm about to write to Foreign Author to get your name added to the p... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | While conventions vary greatly from field to field, if your supervisor has made literally no contribution, he or she should not be listed as an author. There is been plenty of discussion here of this issue; see e.g.
* [Co-authorship for not very involved supervisor](https://academia.stackexchange.com/questions/6130/c... | Like many questions from graduate students, I believe a possible answer to "How should I write and request to my collaborator to include my supervisor's name in the manuscript?" is "Ask your supervisor.".
The question to ask is something like this: "I'm about to write to Foreign Author to get your name added to the p... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | If your supervisor has made no contribution, and there was no discussion with your collaborator about your supervisor, and especially if the work is already done, you should have another conversation with your supervisor as they should not be on the paper.
The only way I could see you asking the collaborator is by say... | If I were your collaborator on this paper, I would refuse to add the supervisor's name no matter how you asked. The only reason I would consider adding it is if the supervisor had actually made a contribution commensurate with authorship (if that were the case, you should have mentioned this to your collaborator a lot ... |
40,794 | I am collaborating with a foreign author. As I am still pursuing my degree, I have to add my supervisor's name in that paper, even though my supervisor has not contributed to the preparation of this manuscript.
How should I ask my collaborator (foreign author) to include my supervisor's name as a third author? I need ... | 2015/03/01 | [
"https://academia.stackexchange.com/questions/40794",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/13294/"
] | If your supervisor has made no contribution, and there was no discussion with your collaborator about your supervisor, and especially if the work is already done, you should have another conversation with your supervisor as they should not be on the paper.
The only way I could see you asking the collaborator is by say... | After you have asserted that your supervisor really merits coauthorship, you could simply write to your collaborator:
"dear collaborator, could you please add [supervisor name] as coauthor? [supervisor name] has contributed to the research in this and this way. Thanks!" |
1,254,657 | I am having a problem with a UITextField's text being blurred/anti-aliased even with a standard font size. The text will appear crisp when the control is the first responder, but blurred again when it loses focus:
[](https://i.stack.imgur.com/kmcmI.png)
(source: [mike... | 2009/08/10 | [
"https://Stackoverflow.com/questions/1254657",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/49658/"
] | In addition to using non-fractional positioning one should make sure to use a non-centered vertical alignment for the UITextField. Looks like centered vertical alignment in combination with an odd font size results in blurred text, too. | i tried using CGRectIntegral and stuff. In my case changing min font size and font size in IB did it. |
1,254,657 | I am having a problem with a UITextField's text being blurred/anti-aliased even with a standard font size. The text will appear crisp when the control is the first responder, but blurred again when it loses focus:
[](https://i.stack.imgur.com/kmcmI.png)
(source: [mike... | 2009/08/10 | [
"https://Stackoverflow.com/questions/1254657",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/49658/"
] | Use [CGRectIntegral](http://developer.apple.com/IPhone/library/documentation/GraphicsImaging/Reference/CGGeometry/Reference/reference.html#//apple_ref/c/func/CGRectIntegral) to make sure the text fields' frames are based on integer coordinates. You'll get fuzzy antialiasing when things lie on fractional coordinates. | i tried using CGRectIntegral and stuff. In my case changing min font size and font size in IB did it. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | SP1 solves a bit of the crashes, but indeed it crashes a lot. Especially when you mix and match winforms + WPF. The crashes alone were a reason to stick with winforms for a while for us ... | I know, it's not nice, but simply cleaning the solution works for me. At least until the next restart of VS, but until then you shouldn't get any crashes. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | I found the problem to be with the AnkhSvn plug-in. I went to a nightlybuild and it is working good now. Anything above 2.0.6110.379. | I and some other people at my company have had a lot of problems when editing a resource dictionary and while a XAML window that uses that resource dictionary is open. Moral of the story, close all XAML windows if you're going to edit a resource dictionary. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | <https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=375594>
Workaround:
Found real workaround at <http://www.dotnet6.com/blogs/wesley_walraeve/archive/2008/10/22/visual-studio-2008-sp1-crashes-toolbox-gt-choose-items.aspx>, which was removing TFS Power Commands 2008. Other people have ha... | We suffer the same problems... I noticed that resharper makes things worse for the WPF editor from time to time...
Ah well.. a daily VS crash keeps the doctor away ? |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | <https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=375594>
Workaround:
Found real workaround at <http://www.dotnet6.com/blogs/wesley_walraeve/archive/2008/10/22/visual-studio-2008-sp1-crashes-toolbox-gt-choose-items.aspx>, which was removing TFS Power Commands 2008. Other people have ha... | I and some other people at my company have had a lot of problems when editing a resource dictionary and while a XAML window that uses that resource dictionary is open. Moral of the story, close all XAML windows if you're going to edit a resource dictionary. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | <https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=375594>
Workaround:
Found real workaround at <http://www.dotnet6.com/blogs/wesley_walraeve/archive/2008/10/22/visual-studio-2008-sp1-crashes-toolbox-gt-choose-items.aspx>, which was removing TFS Power Commands 2008. Other people have ha... | VS crashes at my computer very often: several times per day when I work with WPF. But usually it stops responding and I don't remember it to crash silently. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | <https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=375594>
Workaround:
Found real workaround at <http://www.dotnet6.com/blogs/wesley_walraeve/archive/2008/10/22/visual-studio-2008-sp1-crashes-toolbox-gt-choose-items.aspx>, which was removing TFS Power Commands 2008. Other people have ha... | I know, it's not nice, but simply cleaning the solution works for me. At least until the next restart of VS, but until then you shouldn't get any crashes. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | I found the problem to be with the AnkhSvn plug-in. I went to a nightlybuild and it is working good now. Anything above 2.0.6110.379. | We suffer the same problems... I noticed that resharper makes things worse for the WPF editor from time to time...
Ah well.. a daily VS crash keeps the doctor away ? |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | I found the problem to be with the AnkhSvn plug-in. I went to a nightlybuild and it is working good now. Anything above 2.0.6110.379. | VS crashes at my computer very often: several times per day when I work with WPF. But usually it stops responding and I don't remember it to crash silently. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | I found the problem to be with the AnkhSvn plug-in. I went to a nightlybuild and it is working good now. Anything above 2.0.6110.379. | I know, it's not nice, but simply cleaning the solution works for me. At least until the next restart of VS, but until then you shouldn't get any crashes. |
485,518 | When working in VS2008 (C#) does VS2008 silently crash for anybody when working with WPF? If I touch the XAML it is most likely to crash. I can come back in, clean, then build, then run and it work until I have to touch the XAML again. Then start over again.
It is a solution with about 12 projects in it.
Thanks,
jeff | 2009/01/27 | [
"https://Stackoverflow.com/questions/485518",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/59546/"
] | SP1 solves a bit of the crashes, but indeed it crashes a lot. Especially when you mix and match winforms + WPF. The crashes alone were a reason to stick with winforms for a while for us ... | We suffer the same problems... I noticed that resharper makes things worse for the WPF editor from time to time...
Ah well.. a daily VS crash keeps the doctor away ? |
106,876 | Since taking a job about year ago as a senior developer, I've seen my fair share of work that, let's just say, is less than stellar. The company is full of developers (for the sake of this question their name is "Joe") and Joe does things that do not follow proper procedures, break quite often and create lots of mainte... | 2018/02/19 | [
"https://workplace.stackexchange.com/questions/106876",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/82381/"
] | Whether imagined or not, I detect a lack of tact here. If your goal is to improve Joe's work, and not just to blow off steam, you should think of another approach. You should be careful not to come across as a prima donna or know-it-all. Most devs think they write the world's best code, and all but one are wrong.
Inst... | You are in an unenviable situation. I take it that since you are senior developer, you are responsible for technical delivery of the module/sub-system. If that is the case, any failing of the module/sub-system would be attributed to you. In this case, it is only logical that you assume all responsibility and take charg... |
293,371 | I am trying to migrate an old VS2005 application to VS2010. I am trying to debug that application, but after I cleaned the project then tried to build it, MSVSMON.exe failed to start and an error message appears.
Any ideas? Googling around I find that I am trying to debug a 32bit app in a 64bit debbuger?
Cleaning the ... | 2011/06/06 | [
"https://superuser.com/questions/293371",
"https://superuser.com",
"https://superuser.com/users/27760/"
] | >
> In Regedit, navigate to
> HKEY\_LOCAL\_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
>
>
> Right-click Lsa and create a new DWORD
>
>
> value Name it DisableLoopbackCheck Set its value to 1
>
>
> Reboot (instead, I killed the msvsmon.exe process and restarted Visual Studio)
>
>
>
Check also the comment of... | Windows 7 x64, VS 2012, VB.NET
I fixed it like this:-
1. Create a shortcut on your desktop to "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\Remote Debugger\x64\msvsmon.exe".
2. Right-click shortcut and select "Properties" from the dropdown menu. Select the "Compatibity" tab, tick "Run this program ... |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | I don't think you'll get a magnetic field without faster rotation, and month-long sidereal day is not up to it.
Without tides from the primary you'll still have solar tides and tides from other moons (as with Pluto/Charon + 3 "regular" moons) and any libration if the orbit is not exactly circular and exactly over the ... | I do not think tides have any considerable role in forming the landscape. An influence of storms and weather patterns in general is much stronger.
For example, consider Black Sea which had no visible tides for few last Mys. You cannot tell the difference from any other seashore in a similar climatic area. |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | The tidal power effects are felt most greatly on larger bodies of water. Although waves are partly influenced by tides, most of their ferocity, and therefore costal erosion, is caused by winds so waves would remain largely unaffected by a tideless environment. Tides don't affect so much ferocity of waves but how far "i... | I don't think you'll get a magnetic field without faster rotation, and month-long sidereal day is not up to it.
Without tides from the primary you'll still have solar tides and tides from other moons (as with Pluto/Charon + 3 "regular" moons) and any libration if the orbit is not exactly circular and exactly over the ... |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | I believe in this case [Sun Tides](http://hyperphysics.phy-astr.gsu.edu/hbase/tide.html) will become dominant.
>
> Even though the Sun is 391 times as far away from the Earth as the Moon, its force on the Earth is about 175 times as large. Yet its tidal effect is smaller than that of the Moon because tides are caused... | I don't think you'll get a magnetic field without faster rotation, and month-long sidereal day is not up to it.
Without tides from the primary you'll still have solar tides and tides from other moons (as with Pluto/Charon + 3 "regular" moons) and any libration if the orbit is not exactly circular and exactly over the ... |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | The tidal power effects are felt most greatly on larger bodies of water. Although waves are partly influenced by tides, most of their ferocity, and therefore costal erosion, is caused by winds so waves would remain largely unaffected by a tideless environment. Tides don't affect so much ferocity of waves but how far "i... | I do not think tides have any considerable role in forming the landscape. An influence of storms and weather patterns in general is much stronger.
For example, consider Black Sea which had no visible tides for few last Mys. You cannot tell the difference from any other seashore in a similar climatic area. |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | I believe in this case [Sun Tides](http://hyperphysics.phy-astr.gsu.edu/hbase/tide.html) will become dominant.
>
> Even though the Sun is 391 times as far away from the Earth as the Moon, its force on the Earth is about 175 times as large. Yet its tidal effect is smaller than that of the Moon because tides are caused... | I do not think tides have any considerable role in forming the landscape. An influence of storms and weather patterns in general is much stronger.
For example, consider Black Sea which had no visible tides for few last Mys. You cannot tell the difference from any other seashore in a similar climatic area. |
30,325 | On Earth, the presence of tides due to the Sun and Moon influence certain currents and other movements of water. This in turn leads to different forms of erosion, which can transform a landscape.
I'm working on a moon that's tidally locked to a planet - pretty much identical to the Earth-Moon system, except that the m... | 2015/11/23 | [
"https://worldbuilding.stackexchange.com/questions/30325",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/627/"
] | I believe in this case [Sun Tides](http://hyperphysics.phy-astr.gsu.edu/hbase/tide.html) will become dominant.
>
> Even though the Sun is 391 times as far away from the Earth as the Moon, its force on the Earth is about 175 times as large. Yet its tidal effect is smaller than that of the Moon because tides are caused... | The tidal power effects are felt most greatly on larger bodies of water. Although waves are partly influenced by tides, most of their ferocity, and therefore costal erosion, is caused by winds so waves would remain largely unaffected by a tideless environment. Tides don't affect so much ferocity of waves but how far "i... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Some sort of ESP-like ability, which would allow the protagonist to either pinpoint another being, or possibly permit them to see through the eyes of another creature. Note that if they've been blind from birth, the ability to see through the eyes of another probably won't help unless they've had a lot of experience hu... | How about ability to see/detect minute alterations of Earth's magnetic field or electricity? That might allow him to detect live beigns from a distance. I assume a medieval background due to the presence of mythical creatures so no radiowaves everywhere to drive him crazy, though his perception of a thunderstorm would ... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | This is somewhat generic
(i.e., it goes to support the feasibility of a blind rider
controlling a flying beast, and not so much the archery aspect),
but, since telepathy has already been mentioned:
a psychic link between the rider and the steed would be very useful.
Even if it doesn’t go so far as to allow
the rider t... | Hidden power
=============
Your character has a hidden power that permanently allows them to see into the future. Hence their current eyesight has been traded for one out of sequence with time. They know where the arrow will be once they let go for they see it already having arrived.
To make sure this is not OP this... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Very acute hearing, like that of a barn owl. Barn owls can hunt in complete darkness and without an active sonar like bats.
All owls have one ear pointing up and another pointing down so they can pinpoint sound sources more accurately. Their disc-like face also acts like a parabolic antenna for sound. The ears are hid... | Some sort of ESP-like ability, which would allow the protagonist to either pinpoint another being, or possibly permit them to see through the eyes of another creature. Note that if they've been blind from birth, the ability to see through the eyes of another probably won't help unless they've had a lot of experience hu... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Some sort of ESP-like ability, which would allow the protagonist to either pinpoint another being, or possibly permit them to see through the eyes of another creature. Note that if they've been blind from birth, the ability to see through the eyes of another probably won't help unless they've had a lot of experience hu... | Hidden power
=============
Your character has a hidden power that permanently allows them to see into the future. Hence their current eyesight has been traded for one out of sequence with time. They know where the arrow will be once they let go for they see it already having arrived.
To make sure this is not OP this... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Very acute hearing, like that of a barn owl. Barn owls can hunt in complete darkness and without an active sonar like bats.
All owls have one ear pointing up and another pointing down so they can pinpoint sound sources more accurately. Their disc-like face also acts like a parabolic antenna for sound. The ears are hid... | Yeah, her/his other senses would need to be heightened, either by natural or unnatural means. Think Daredevil for instance. Other than just hearing, his heightened sense of touch allows him to feel variations in temperature/pressure/humidity, his heightened sense of smell/taste allow him to smell/taste particles in the... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Very acute hearing, like that of a barn owl. Barn owls can hunt in complete darkness and without an active sonar like bats.
All owls have one ear pointing up and another pointing down so they can pinpoint sound sources more accurately. Their disc-like face also acts like a parabolic antenna for sound. The ears are hid... | This is somewhat generic
(i.e., it goes to support the feasibility of a blind rider
controlling a flying beast, and not so much the archery aspect),
but, since telepathy has already been mentioned:
a psychic link between the rider and the steed would be very useful.
Even if it doesn’t go so far as to allow
the rider t... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Yeah, her/his other senses would need to be heightened, either by natural or unnatural means. Think Daredevil for instance. Other than just hearing, his heightened sense of touch allows him to feel variations in temperature/pressure/humidity, his heightened sense of smell/taste allow him to smell/taste particles in the... | How about ability to see/detect minute alterations of Earth's magnetic field or electricity? That might allow him to detect live beigns from a distance. I assume a medieval background due to the presence of mythical creatures so no radiowaves everywhere to drive him crazy, though his perception of a thunderstorm would ... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | This is somewhat generic
(i.e., it goes to support the feasibility of a blind rider
controlling a flying beast, and not so much the archery aspect),
but, since telepathy has already been mentioned:
a psychic link between the rider and the steed would be very useful.
Even if it doesn’t go so far as to allow
the rider t... | How about ability to see/detect minute alterations of Earth's magnetic field or electricity? That might allow him to detect live beigns from a distance. I assume a medieval background due to the presence of mythical creatures so no radiowaves everywhere to drive him crazy, though his perception of a thunderstorm would ... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Very acute hearing, like that of a barn owl. Barn owls can hunt in complete darkness and without an active sonar like bats.
All owls have one ear pointing up and another pointing down so they can pinpoint sound sources more accurately. Their disc-like face also acts like a parabolic antenna for sound. The ears are hid... | How about ability to see/detect minute alterations of Earth's magnetic field or electricity? That might allow him to detect live beigns from a distance. I assume a medieval background due to the presence of mythical creatures so no radiowaves everywhere to drive him crazy, though his perception of a thunderstorm would ... |
45,212 | I am trying to make an original character who is blind
and hunts with bow and arrow from a flying mount.
(Obviously, no existing animal can fly while bearing the weight of a human,
so let’s assume that the mount is a mythical/fantastical species;
for instance, a dragon or a gryphon.)
What physical qualities (internal... | 2016/06/23 | [
"https://worldbuilding.stackexchange.com/questions/45212",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/22065/"
] | Yeah, her/his other senses would need to be heightened, either by natural or unnatural means. Think Daredevil for instance. Other than just hearing, his heightened sense of touch allows him to feel variations in temperature/pressure/humidity, his heightened sense of smell/taste allow him to smell/taste particles in the... | Hidden power
=============
Your character has a hidden power that permanently allows them to see into the future. Hence their current eyesight has been traded for one out of sequence with time. They know where the arrow will be once they let go for they see it already having arrived.
To make sure this is not OP this... |
636 | Is there a definitive scalable 3D printer?
I've seen examples of Chinese companies printing entire houses, and I'm curious as to printers / filaments that are intended (or at least able) be scaled up for (very) large print jobs.
Since most hobby printers can take hundreds of hours for something that can still be he... | 2016/02/24 | [
"https://3dprinting.stackexchange.com/questions/636",
"https://3dprinting.stackexchange.com",
"https://3dprinting.stackexchange.com/users/702/"
] | One big challenge with scaling anything up (or down), is that not all properties or characteristics scale linearly.
Consider a trivial case: a small cube. If you double the size, you've quadrupled the surface area and octupled the weight.
If you take a desktop-sized 3d printer design, and just double the size, it wil... | If I understand your question correctly, it sounds like you're looking somewhere within the [RepRap](http://reprap.org/) realm. The RepRap community is mostly responsible for the boom in consumer 3D printing in the past 10 years, and that's most likely because it's **open source**. RepRap designs are mostly dynamic (an... |
636 | Is there a definitive scalable 3D printer?
I've seen examples of Chinese companies printing entire houses, and I'm curious as to printers / filaments that are intended (or at least able) be scaled up for (very) large print jobs.
Since most hobby printers can take hundreds of hours for something that can still be he... | 2016/02/24 | [
"https://3dprinting.stackexchange.com/questions/636",
"https://3dprinting.stackexchange.com",
"https://3dprinting.stackexchange.com/users/702/"
] | If I understand your question correctly, it sounds like you're looking somewhere within the [RepRap](http://reprap.org/) realm. The RepRap community is mostly responsible for the boom in consumer 3D printing in the past 10 years, and that's most likely because it's **open source**. RepRap designs are mostly dynamic (an... | As far as I know, right now, all the "3D printers" that can print houses, bridges, etc. are experimental models (and sometimes, vey elaborate art projects) - they just don't exist except as one-off creations designed as a proof-of-concept showing this can be done.
Maybe some of those project published their plans and ... |
636 | Is there a definitive scalable 3D printer?
I've seen examples of Chinese companies printing entire houses, and I'm curious as to printers / filaments that are intended (or at least able) be scaled up for (very) large print jobs.
Since most hobby printers can take hundreds of hours for something that can still be he... | 2016/02/24 | [
"https://3dprinting.stackexchange.com/questions/636",
"https://3dprinting.stackexchange.com",
"https://3dprinting.stackexchange.com/users/702/"
] | One big challenge with scaling anything up (or down), is that not all properties or characteristics scale linearly.
Consider a trivial case: a small cube. If you double the size, you've quadrupled the surface area and octupled the weight.
If you take a desktop-sized 3d printer design, and just double the size, it wil... | As far as I know, right now, all the "3D printers" that can print houses, bridges, etc. are experimental models (and sometimes, vey elaborate art projects) - they just don't exist except as one-off creations designed as a proof-of-concept showing this can be done.
Maybe some of those project published their plans and ... |
284,124 | I have been building an 18650 based battery pack for our new motor home and have run into a few snags that I cannot find answers for. Some issues have been addressed on this site but I am going to list them aswell for good merit.
Pack Specifications
18650 cells that are used but tested for mAh (2200+) and internal re... | 2017/02/03 | [
"https://electronics.stackexchange.com/questions/284124",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/135213/"
] | It is highly ***Not Recommended*** to mix batteries, of different age, charge conditions, brand, and yes, different chemistry. The difference in the cells will lead to uneven discharging and potentially one charging from the other, or inverting, and charging issues. With lipo cells, this could include a considerable ri... | Batteries of different chemistry will have different output in terms of voltage and current, which will vary over time of discharge. Combining them in optimal way will be a challenge.
It looks like your problem is similar to optimal combining of photo-voltaic (solar) panels that are under non-uniform and variable ins... |
2,113 | I come from a land of tea-drinkers and have only recently taken a fancy to coffee. I just ordered [this](http://www.amazon.in/gp/product/B00H34OA7U?psc=1&redirect=true&ref_=oh_aui_detailpage_o00_s00) coffee-maker for myself, which is the first that I'll ever own.
I am a bit perplexed as to what *type* of coffee is us... | 2015/09/06 | [
"https://coffee.stackexchange.com/questions/2113",
"https://coffee.stackexchange.com",
"https://coffee.stackexchange.com/users/1281/"
] | Ground coffee is just the roasted coffee beans ground up to a fine powder. In order to make the beverage coffee, you need to combine this with hot water to extract the flavour (there are many different ways to do this). Typically, there is a filter that makes sure that the water can pass through the ground coffee but n... | That is instant coffee(you only need hot water to make it). Like Niko said ground coffee are coffee beans ground to small bits.
Looks like you've bought a good espresso coffee maker. You need to find espresso coffee for that machine. My favorites are Lavazza <http://www.lavazza.com/> and <http://shop.meinl.com/default... |
2,113 | I come from a land of tea-drinkers and have only recently taken a fancy to coffee. I just ordered [this](http://www.amazon.in/gp/product/B00H34OA7U?psc=1&redirect=true&ref_=oh_aui_detailpage_o00_s00) coffee-maker for myself, which is the first that I'll ever own.
I am a bit perplexed as to what *type* of coffee is us... | 2015/09/06 | [
"https://coffee.stackexchange.com/questions/2113",
"https://coffee.stackexchange.com",
"https://coffee.stackexchange.com/users/1281/"
] | Ground coffee is just the roasted coffee beans ground up to a fine powder. In order to make the beverage coffee, you need to combine this with hot water to extract the flavour (there are many different ways to do this). Typically, there is a filter that makes sure that the water can pass through the ground coffee but n... | You have bought a wonderful coffee machine which produces espresso (concentrated coffee) which can be consumed whole or mixed with milk/water to create amazing drinks such as latte's or cappuccinos but not limited to these.
To make it simple for you, I will make a short list of what you need to produce coffee on that ... |
2,113 | I come from a land of tea-drinkers and have only recently taken a fancy to coffee. I just ordered [this](http://www.amazon.in/gp/product/B00H34OA7U?psc=1&redirect=true&ref_=oh_aui_detailpage_o00_s00) coffee-maker for myself, which is the first that I'll ever own.
I am a bit perplexed as to what *type* of coffee is us... | 2015/09/06 | [
"https://coffee.stackexchange.com/questions/2113",
"https://coffee.stackexchange.com",
"https://coffee.stackexchange.com/users/1281/"
] | Ground coffee is just the roasted coffee beans ground up to a fine powder. In order to make the beverage coffee, you need to combine this with hot water to extract the flavour (there are many different ways to do this). Typically, there is a filter that makes sure that the water can pass through the ground coffee but n... | Coffee maker usually only process ground coffee. If you put instant coffee in it, it's gonna get messy inside-out.
So, ground coffee can only be processed with coffee maker to produce coffee that is really concentrated, unlike the taste of 3-in-1 and instant coffee.
While 3-in-1 or instant coffee, only need a cup wi... |
2,113 | I come from a land of tea-drinkers and have only recently taken a fancy to coffee. I just ordered [this](http://www.amazon.in/gp/product/B00H34OA7U?psc=1&redirect=true&ref_=oh_aui_detailpage_o00_s00) coffee-maker for myself, which is the first that I'll ever own.
I am a bit perplexed as to what *type* of coffee is us... | 2015/09/06 | [
"https://coffee.stackexchange.com/questions/2113",
"https://coffee.stackexchange.com",
"https://coffee.stackexchange.com/users/1281/"
] | You have bought a wonderful coffee machine which produces espresso (concentrated coffee) which can be consumed whole or mixed with milk/water to create amazing drinks such as latte's or cappuccinos but not limited to these.
To make it simple for you, I will make a short list of what you need to produce coffee on that ... | That is instant coffee(you only need hot water to make it). Like Niko said ground coffee are coffee beans ground to small bits.
Looks like you've bought a good espresso coffee maker. You need to find espresso coffee for that machine. My favorites are Lavazza <http://www.lavazza.com/> and <http://shop.meinl.com/default... |
2,113 | I come from a land of tea-drinkers and have only recently taken a fancy to coffee. I just ordered [this](http://www.amazon.in/gp/product/B00H34OA7U?psc=1&redirect=true&ref_=oh_aui_detailpage_o00_s00) coffee-maker for myself, which is the first that I'll ever own.
I am a bit perplexed as to what *type* of coffee is us... | 2015/09/06 | [
"https://coffee.stackexchange.com/questions/2113",
"https://coffee.stackexchange.com",
"https://coffee.stackexchange.com/users/1281/"
] | You have bought a wonderful coffee machine which produces espresso (concentrated coffee) which can be consumed whole or mixed with milk/water to create amazing drinks such as latte's or cappuccinos but not limited to these.
To make it simple for you, I will make a short list of what you need to produce coffee on that ... | Coffee maker usually only process ground coffee. If you put instant coffee in it, it's gonna get messy inside-out.
So, ground coffee can only be processed with coffee maker to produce coffee that is really concentrated, unlike the taste of 3-in-1 and instant coffee.
While 3-in-1 or instant coffee, only need a cup wi... |
86,497 | I have a recipe for some chocolate chip cookies, and it's near and dear to my heart. I watched my mom making these when I was little, and it's older than I am, being from her mom too. They're both gone now though, and I have no idea what's wrong. I have not changed anything.
The ingredients are:
* 1 cup sugar
* 1 c... | 2017/12/18 | [
"https://cooking.stackexchange.com/questions/86497",
"https://cooking.stackexchange.com",
"https://cooking.stackexchange.com/users/63815/"
] | This problem is happening to me. Got a recipe, used it successfully for a year or two, then suddenly they just stopped coming out amazing.
I put it down to me remembering the recipe wrong, the change of oven over that time and other factors.
Also, I notice that one batch can come out differently depending on what tem... | This has been mentioned already, but it's kind of hidden in among a bunch of other advice: I'm almost certain your problems are due to changes in the formulation of Crisco. Puffier than they used to be, almost oily in texture, and weird aftertaste all point to the shortening being the culprit.
One test to try might be... |
86,497 | I have a recipe for some chocolate chip cookies, and it's near and dear to my heart. I watched my mom making these when I was little, and it's older than I am, being from her mom too. They're both gone now though, and I have no idea what's wrong. I have not changed anything.
The ingredients are:
* 1 cup sugar
* 1 c... | 2017/12/18 | [
"https://cooking.stackexchange.com/questions/86497",
"https://cooking.stackexchange.com",
"https://cooking.stackexchange.com/users/63815/"
] | Short answer:
I suggest you try all butter
----------------------------
...and make sure you don't make it too soft before creaming it.
---
By comparison, here is a famous and popular chocolate chip cookie recipe (just the ingredients, not the process):
* 2 1/4 cups all-purpose flour
* 1 teaspoon baking soda
* 1 t... | This has been mentioned already, but it's kind of hidden in among a bunch of other advice: I'm almost certain your problems are due to changes in the formulation of Crisco. Puffier than they used to be, almost oily in texture, and weird aftertaste all point to the shortening being the culprit.
One test to try might be... |
86,497 | I have a recipe for some chocolate chip cookies, and it's near and dear to my heart. I watched my mom making these when I was little, and it's older than I am, being from her mom too. They're both gone now though, and I have no idea what's wrong. I have not changed anything.
The ingredients are:
* 1 cup sugar
* 1 c... | 2017/12/18 | [
"https://cooking.stackexchange.com/questions/86497",
"https://cooking.stackexchange.com",
"https://cooking.stackexchange.com/users/63815/"
] | I'm an amateur but it sounds like your cookies contain too much flour. Focus on the consistency of your dough. Bake a batch of cookies from a different consistency of dough by adding the flour to the other ingredients last. Stop every once in a while when you add the flour to the batter and take out enough to make a co... | This has been mentioned already, but it's kind of hidden in among a bunch of other advice: I'm almost certain your problems are due to changes in the formulation of Crisco. Puffier than they used to be, almost oily in texture, and weird aftertaste all point to the shortening being the culprit.
One test to try might be... |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | Ryan Bates has a great videocast on deploying Rails apps to... Linode! Today's your lucky day :) Grab some popcorn and enjoy: <http://railscasts.com/episodes/335-deploying-to-a-vps> | You don't need a GitHub account to deploy on Linode. The deploy process happens between your local machine and the Linode servers, usually by means of the Capistrano gem.
This tutorial from Smashing Magazine is pretty good. <http://coding.smashingmagazine.com/2011/06/28/setup-a-ubuntu-vps-for-hosting-ruby-on-rails-app... |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | I've deployed a couple of simple applications on Linode and found their documentation to be excellent. In particular they have step-by-step tutorials tailored to specific environments. For example, in my case (like you) I wanted to use nginx, and I was using Ubuntu 10.04, so I followed this guide:
<http://library.lino... | Ryan Bates has a great videocast on deploying Rails apps to... Linode! Today's your lucky day :) Grab some popcorn and enjoy: <http://railscasts.com/episodes/335-deploying-to-a-vps> |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | Ryan Bates has a great videocast on deploying Rails apps to... Linode! Today's your lucky day :) Grab some popcorn and enjoy: <http://railscasts.com/episodes/335-deploying-to-a-vps> | Perfect Script for installation of nginx/ PostgreSQL/ Postfix/ Node.js/ Add deployer user/ rbenv

also refere this link <https://medrails.wordpress.com/?blogsub=confirming#subscribe-blog>
Thanks |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | I've deployed a couple of simple applications on Linode and found their documentation to be excellent. In particular they have step-by-step tutorials tailored to specific environments. For example, in my case (like you) I wanted to use nginx, and I was using Ubuntu 10.04, so I followed this guide:
<http://library.lino... | You don't need a GitHub account to deploy on Linode. The deploy process happens between your local machine and the Linode servers, usually by means of the Capistrano gem.
This tutorial from Smashing Magazine is pretty good. <http://coding.smashingmagazine.com/2011/06/28/setup-a-ubuntu-vps-for-hosting-ruby-on-rails-app... |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | You don't need a GitHub account to deploy on Linode. The deploy process happens between your local machine and the Linode servers, usually by means of the Capistrano gem.
This tutorial from Smashing Magazine is pretty good. <http://coding.smashingmagazine.com/2011/06/28/setup-a-ubuntu-vps-for-hosting-ruby-on-rails-app... | Perfect Script for installation of nginx/ PostgreSQL/ Postfix/ Node.js/ Add deployer user/ rbenv

also refere this link <https://medrails.wordpress.com/?blogsub=confirming#subscribe-blog>
Thanks |
11,838,923 | I'm planning to host a Rails application on Linode, but I'm still unsure about the requirements and process of deploying. I'm only getting the 512 plan since I'm expecting relative small traffic for the site.
My question is, do I need to get a repository such as Github to store my code? I'm also a bit concerned about ... | 2012/08/07 | [
"https://Stackoverflow.com/questions/11838923",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/536770/"
] | I've deployed a couple of simple applications on Linode and found their documentation to be excellent. In particular they have step-by-step tutorials tailored to specific environments. For example, in my case (like you) I wanted to use nginx, and I was using Ubuntu 10.04, so I followed this guide:
<http://library.lino... | Perfect Script for installation of nginx/ PostgreSQL/ Postfix/ Node.js/ Add deployer user/ rbenv

also refere this link <https://medrails.wordpress.com/?blogsub=confirming#subscribe-blog>
Thanks |
3,124,987 | What means:
Support for several bindings (e.g., raw HTTP, TCP, MSMQ, and named pipes)
allows to choose the most appropriate PLUMBING to transport message data. | 2010/06/26 | [
"https://Stackoverflow.com/questions/3124987",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/278618/"
] | 'Plumbing' is a pipe system (like the one for water in your house).
It's often used in IT to mean a support infrastructure. It's a particularly suitable term in this case, since the support infrastructure is actually a transport infrastructure, kinda like pipes indeed. | In this case it means - Underlying transport mechanism.
The idea is that it equates to low level infrastructure, like indoor plumbing does.
That is, you don't normally think about the pipes underground that transport water to and from your house (and other houses in the neighborhood) and they may be constructed and ... |
3,124,987 | What means:
Support for several bindings (e.g., raw HTTP, TCP, MSMQ, and named pipes)
allows to choose the most appropriate PLUMBING to transport message data. | 2010/06/26 | [
"https://Stackoverflow.com/questions/3124987",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/278618/"
] | 'Plumbing' is a pipe system (like the one for water in your house).
It's often used in IT to mean a support infrastructure. It's a particularly suitable term in this case, since the support infrastructure is actually a transport infrastructure, kinda like pipes indeed. | In this context, plumbing refers the communication layer. If you think of your data/information as "water" then "plumbing" refers to the way the data/information moves from various parts of your system. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.