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
467
Due to the size of transaction log file (it grew up to 200 GB) I had to delete it because the disk was running out of space. I know this is not a good practice but anyway after that the performance is very bad. Does anyone know whether it is possible to improve performace and how in this situation?
2011/01/10
[ "https://dba.stackexchange.com/questions/467", "https://dba.stackexchange.com", "https://dba.stackexchange.com/users/176/" ]
The problem probably occurred because in order to delete the transaction log you would have had to stop the SQL Server. This causes the buffer pool (cached data and execution plans) to be erased - nothing can be in memory for a process that isn't running anymore. Now that you've restarted your server, all of your execu...
There are two ways to prevent a database's transaction logs from growing without end: 1. Backup the transaction log, or 2. Set the database recovery mode to SIMPLE. Many people think that doing a full database backup will truncate the log - it does not! Only a log backup will truncate the log. Setting the recovery ...
3,747,821
At this time I want to build a MVC framework. Everything is going fine but now I got a problem between controller and view. Hope you can help me. My MVC is not so different from MVC, it uses the same concept, but technically I got an issue. The question is: how to take data from the controller once the view is loaded?...
2010/09/19
[ "https://Stackoverflow.com/questions/3747821", "https://Stackoverflow.com", "https://Stackoverflow.com/users/411274/" ]
You probably want to bind a list of variables to the view's namespace. You could peruse [Kohana's View class](http://github.com/kohana/core/blob/master/classes/kohana/view.php) for some inspiration or ideas.
You must pass the view a reference to the controller object or the view must use static methods on a related controller class. The view then calls methods on the controller to display results. The view also submits form data to the controller through the controller object or class.
3,747,821
At this time I want to build a MVC framework. Everything is going fine but now I got a problem between controller and view. Hope you can help me. My MVC is not so different from MVC, it uses the same concept, but technically I got an issue. The question is: how to take data from the controller once the view is loaded?...
2010/09/19
[ "https://Stackoverflow.com/questions/3747821", "https://Stackoverflow.com", "https://Stackoverflow.com/users/411274/" ]
The point behind the MVC framework is that a View should not need to be aware of the Controller and it's implementation. A View should just have a list of variables that it needs to be present to render correctly, and the Controller implementation worries about making sure those variables are present in the View. Migh...
You must pass the view a reference to the controller object or the view must use static methods on a related controller class. The view then calls methods on the controller to display results. The view also submits form data to the controller through the controller object or class.
3,747,821
At this time I want to build a MVC framework. Everything is going fine but now I got a problem between controller and view. Hope you can help me. My MVC is not so different from MVC, it uses the same concept, but technically I got an issue. The question is: how to take data from the controller once the view is loaded?...
2010/09/19
[ "https://Stackoverflow.com/questions/3747821", "https://Stackoverflow.com", "https://Stackoverflow.com/users/411274/" ]
You probably want to bind a list of variables to the view's namespace. You could peruse [Kohana's View class](http://github.com/kohana/core/blob/master/classes/kohana/view.php) for some inspiration or ideas.
If your View implementation uses a template engine, there is usually a mechanism for adding arbitrary key/value data to the template's scope. If you haven't progressed to that point it's probably worth thinking about a similar strategy.
3,747,821
At this time I want to build a MVC framework. Everything is going fine but now I got a problem between controller and view. Hope you can help me. My MVC is not so different from MVC, it uses the same concept, but technically I got an issue. The question is: how to take data from the controller once the view is loaded?...
2010/09/19
[ "https://Stackoverflow.com/questions/3747821", "https://Stackoverflow.com", "https://Stackoverflow.com/users/411274/" ]
The point behind the MVC framework is that a View should not need to be aware of the Controller and it's implementation. A View should just have a list of variables that it needs to be present to render correctly, and the Controller implementation worries about making sure those variables are present in the View. Migh...
If your View implementation uses a template engine, there is usually a mechanism for adding arbitrary key/value data to the template's scope. If you haven't progressed to that point it's probably worth thinking about a similar strategy.
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
What you are really discussing is not what shell and search engine should be used (I personally use Bing because I don't trust Google one bit), what you are discussing is who has the power. You want him to do the work the way you want him to do it. Tell you what, if you joined my team you could say goodbye to zsh - oh ...
Yes, but only where it matters. What search engine someone uses makes no difference to the finished product. Neither does the text editor they prefer. If it causes compatibility issues where one person's code won't work (compile/run/whatever) on another person's system, then that matters. In bigger companies, there w...
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
What you are really discussing is not what shell and search engine should be used (I personally use Bing because I don't trust Google one bit), what you are discussing is who has the power. You want him to do the work the way you want him to do it. Tell you what, if you joined my team you could say goodbye to zsh - oh ...
If a company states which tools must be used, (yes, even something seemingly as trivial as "their search engine" or "their keyboard") that's what they use. There's nothing much else to be said. {Regarding the off-topic discussion of whether it's petty/sensible to require certain tools: (i) you can trivially see exa...
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
What you are really discussing is not what shell and search engine should be used (I personally use Bing because I don't trust Google one bit), what you are discussing is who has the power. You want him to do the work the way you want him to do it. Tell you what, if you joined my team you could say goodbye to zsh - oh ...
You've stated this new developer isn't proficient with his tools. So he has no case. Your question is broadly phrased as "Should I let a new developer use his tools over the team's standardized tools" but really you are asking, "should I let a noob developer that doesn't know how to do stuff, shoot himself in the foot...
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
Yes, but only where it matters. What search engine someone uses makes no difference to the finished product. Neither does the text editor they prefer. If it causes compatibility issues where one person's code won't work (compile/run/whatever) on another person's system, then that matters. In bigger companies, there w...
If a company states which tools must be used, (yes, even something seemingly as trivial as "their search engine" or "their keyboard") that's what they use. There's nothing much else to be said. {Regarding the off-topic discussion of whether it's petty/sensible to require certain tools: (i) you can trivially see exa...
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
Yes, but only where it matters. What search engine someone uses makes no difference to the finished product. Neither does the text editor they prefer. If it causes compatibility issues where one person's code won't work (compile/run/whatever) on another person's system, then that matters. In bigger companies, there w...
You've stated this new developer isn't proficient with his tools. So he has no case. Your question is broadly phrased as "Should I let a new developer use his tools over the team's standardized tools" but really you are asking, "should I let a noob developer that doesn't know how to do stuff, shoot himself in the foot...
122,992
I've recruited a junior profile, recently. So far, so good, tenacious, learning and willing to stick the hours to do so. However, one thing is a bit irritating to me and the other members of my team : He doesn't want to use the tools that all of us, use and that have been defined by the sysadmin. All of our workstat...
2018/11/17
[ "https://workplace.stackexchange.com/questions/122992", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/50826/" ]
You've stated this new developer isn't proficient with his tools. So he has no case. Your question is broadly phrased as "Should I let a new developer use his tools over the team's standardized tools" but really you are asking, "should I let a noob developer that doesn't know how to do stuff, shoot himself in the foot...
If a company states which tools must be used, (yes, even something seemingly as trivial as "their search engine" or "their keyboard") that's what they use. There's nothing much else to be said. {Regarding the off-topic discussion of whether it's petty/sensible to require certain tools: (i) you can trivially see exa...
364,993
For a flyback converter, 120 V AC in and 400 V - 2000 V out, is it necessary to provide galvanic isolation between the input and output? First, from a safety point, would not having a direct connection provide any benefit? And from a certification perspective, if a product were to be sold to the public, would having ...
2018/03/27
[ "https://electronics.stackexchange.com/questions/364993", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/179503/" ]
Yes, of course galvanic isolation is valuable. Regardless of the voltages being used on the secondary side, it prevents the user from being shocked by the mains voltage in the event of some sort of fault. Now, given that you are *probably* providing lots of isolation between the high secondary voltage and the end user...
The question and other answers ignore the 2 most important criteria for AC product safety. ------------------------------------------------------------------------------------------ 1) HIPOT Leakage current to ground ( 100% product testing ) - A much higher voltage is ramped (>3kVdc )between Input (Line AND Neutral sh...
364,993
For a flyback converter, 120 V AC in and 400 V - 2000 V out, is it necessary to provide galvanic isolation between the input and output? First, from a safety point, would not having a direct connection provide any benefit? And from a certification perspective, if a product were to be sold to the public, would having ...
2018/03/27
[ "https://electronics.stackexchange.com/questions/364993", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/179503/" ]
The answer to this is: It depends there are applications where provided you know the exact use its OK for the output of a circuit to not be isolated but you have to understand the exact load. For example in a range of power supplies I developed we had a two module solution. The first module took mains in and produce...
The question and other answers ignore the 2 most important criteria for AC product safety. ------------------------------------------------------------------------------------------ 1) HIPOT Leakage current to ground ( 100% product testing ) - A much higher voltage is ramped (>3kVdc )between Input (Line AND Neutral sh...
86,886
I was thinking about anagrams and I was wondering if there was a name for anagrams that keep the relative order of the letters, but instead rearranges them by moving the starting point of the word and moving the earlier letters to the end of the word. The new construction would also have to be a word. Examples: * st...
2019/08/05
[ "https://puzzling.stackexchange.com/questions/86886", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/61808/" ]
The [National Puzzlers' League](http://enigma.puzzlers.org) calls this a [transpogram](http://enigma.puzzlers.org/guide/move#transpogram). > > A word or phrase becomes another when divided into two parts, which are interchanged. For example: ONE = **rock-hard**, TWO = **hard rock** (referring to the kind of music). A...
I'm not aware of an existing name for the method of constructing anagrams you describe. The method for creating any anagram is, of course, to rearrange the letters to form a new word or words, which could be achieved by moving one letter, or any number of letters, so no matter how many letters you move or where you mov...
12,226
How can I generate a frequency of 5 GHZ with a crystal
2011/03/29
[ "https://electronics.stackexchange.com/questions/12226", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/-1/" ]
Through frequency multiplication, e.g. 50x100MHz, or 100x50MHz etc. This can be done either directly using [frequency multipliers](http://www.qsl.net/va3iul/Frequency_Multipliers/Frequency_Multipliers.pdf), or indirectly using phase locked loop, and locking 5 GHz oscillator to crystal reference oscillator.
Use one of [these](http://www.analog.com/en/rfif-components/pll-synthesizersvcos/adf4108/products/product.html) PLL chips with a suitable crystal oscillator for the reference signal and one of [these](http://www.crystek.com/microwave/?gclid=CN-N2p7786cCFYFB4Qodt1G7ZA) VCOs. You will need a suitable MCU to configure the...
12,226
How can I generate a frequency of 5 GHZ with a crystal
2011/03/29
[ "https://electronics.stackexchange.com/questions/12226", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/-1/" ]
Through frequency multiplication, e.g. 50x100MHz, or 100x50MHz etc. This can be done either directly using [frequency multipliers](http://www.qsl.net/va3iul/Frequency_Multipliers/Frequency_Multipliers.pdf), or indirectly using phase locked loop, and locking 5 GHz oscillator to crystal reference oscillator.
If you are using the 5 GHz for wireless application you will need to check to see if exactly 5 GHz is required, many times stuff is said to be a certain frequency, but it is actually a slightly different frequency needed. For example, [here](http://parts.digikey.com/1/parts/1390828-osc-vco-5256-5356mhz-smd-5x-5-cvco55b...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Although post-processing may have been involved, it is not necessary. What I see: * **Shallow depth-of-field**: Means a bright aperture, F/2 or brighter most likely. This is a type of lens you buy and the photo has to be shot that way. It creates separation between background and foreground. * **Over-saturated colors*...
This picture is slightly overexposed and then [cross processed](http://en.wikipedia.org/wiki/Cross_processing). Cross processing is a technique carried over from the film days where a film was processed with a chemical meant for a different kind of film. In digital photography, similar effect can be achieved [in photos...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Although post-processing may have been involved, it is not necessary. What I see: * **Shallow depth-of-field**: Means a bright aperture, F/2 or brighter most likely. This is a type of lens you buy and the photo has to be shot that way. It creates separation between background and foreground. * **Over-saturated colors*...
I am no expert in some of the other techniques mentioned already (cross processing in photoshop over saturated colours, etc.) but the other thing I would suggest is going on is masking of the subject and background to apply different effects to each. The over saturation and cross processing techniques (whatever the co...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Although post-processing may have been involved, it is not necessary. What I see: * **Shallow depth-of-field**: Means a bright aperture, F/2 or brighter most likely. This is a type of lens you buy and the photo has to be shot that way. It creates separation between background and foreground. * **Over-saturated colors*...
It also looks like the images (first and last) have fairly high levels of black clipping. In other words, contrast was increased by darkening the shadows until parts of the image that were likely near-black to start, became very black by the time processing was done. This can be done with the black clipping tool in RAW...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Although post-processing may have been involved, it is not necessary. What I see: * **Shallow depth-of-field**: Means a bright aperture, F/2 or brighter most likely. This is a type of lens you buy and the photo has to be shot that way. It creates separation between background and foreground. * **Over-saturated colors*...
Apart from what others have already answered, i also noticed that there are very few colors in the photos but they are contrasting in nature. [Red against Green background](http://a6.sphotos.ak.fbcdn.net/hphotos-ak-snc7/298012_10150298378521701_115476621700_8187592_166744655_n.jpg), [Blue and Red against yellow-green b...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
I am no expert in some of the other techniques mentioned already (cross processing in photoshop over saturated colours, etc.) but the other thing I would suggest is going on is masking of the subject and background to apply different effects to each. The over saturation and cross processing techniques (whatever the co...
This picture is slightly overexposed and then [cross processed](http://en.wikipedia.org/wiki/Cross_processing). Cross processing is a technique carried over from the film days where a film was processed with a chemical meant for a different kind of film. In digital photography, similar effect can be achieved [in photos...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
It also looks like the images (first and last) have fairly high levels of black clipping. In other words, contrast was increased by darkening the shadows until parts of the image that were likely near-black to start, became very black by the time processing was done. This can be done with the black clipping tool in RAW...
This picture is slightly overexposed and then [cross processed](http://en.wikipedia.org/wiki/Cross_processing). Cross processing is a technique carried over from the film days where a film was processed with a chemical meant for a different kind of film. In digital photography, similar effect can be achieved [in photos...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Apart from what others have already answered, i also noticed that there are very few colors in the photos but they are contrasting in nature. [Red against Green background](http://a6.sphotos.ak.fbcdn.net/hphotos-ak-snc7/298012_10150298378521701_115476621700_8187592_166744655_n.jpg), [Blue and Red against yellow-green b...
This picture is slightly overexposed and then [cross processed](http://en.wikipedia.org/wiki/Cross_processing). Cross processing is a technique carried over from the film days where a film was processed with a chemical meant for a different kind of film. In digital photography, similar effect can be achieved [in photos...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
It also looks like the images (first and last) have fairly high levels of black clipping. In other words, contrast was increased by darkening the shadows until parts of the image that were likely near-black to start, became very black by the time processing was done. This can be done with the black clipping tool in RAW...
I am no expert in some of the other techniques mentioned already (cross processing in photoshop over saturated colours, etc.) but the other thing I would suggest is going on is masking of the subject and background to apply different effects to each. The over saturation and cross processing techniques (whatever the co...
16,158
I am just getting in to photography (as a hobby), and both me and my wife really like the style this photographer uses. See [her website](http://www.jennifertibbetts.com/) for some examples. I don't know how to describe it other than it is almost a bit foggy (especially in the 2nd one), and sometimes it looks like the...
2011/10/04
[ "https://photo.stackexchange.com/questions/16158", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/-1/" ]
Apart from what others have already answered, i also noticed that there are very few colors in the photos but they are contrasting in nature. [Red against Green background](http://a6.sphotos.ak.fbcdn.net/hphotos-ak-snc7/298012_10150298378521701_115476621700_8187592_166744655_n.jpg), [Blue and Red against yellow-green b...
I am no expert in some of the other techniques mentioned already (cross processing in photoshop over saturated colours, etc.) but the other thing I would suggest is going on is masking of the subject and background to apply different effects to each. The over saturation and cross processing techniques (whatever the co...
36,929
So of course, I seem to have lost the key to my locking lug nuts. I'd like to be proactive about the situation and remedy it *before* I have a flat on the side of the road. I've read several guides that say "Just jam a socket on it and hit it with a hammer", but mine being perfectly round I don't think that will work. ...
2016/09/30
[ "https://mechanics.stackexchange.com/questions/36929", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/7087/" ]
There are sockets designed specifically for this job. Here is an example of one; they have a reverse thread on them and are made of hardened material so as you turn them anti-clockwise, they tighten themselves over the locked wheel nut until they are fully tight and the nut begins to loosen. They are made by most tool...
I guess your best chance would be to visit the dealer. These things are made to go of only with the right socket
36,929
So of course, I seem to have lost the key to my locking lug nuts. I'd like to be proactive about the situation and remedy it *before* I have a flat on the side of the road. I've read several guides that say "Just jam a socket on it and hit it with a hammer", but mine being perfectly round I don't think that will work. ...
2016/09/30
[ "https://mechanics.stackexchange.com/questions/36929", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/7087/" ]
Weld a new (cheap) nut onto the rounded one and use a regular socket to remove them both together
I guess your best chance would be to visit the dealer. These things are made to go of only with the right socket
36,929
So of course, I seem to have lost the key to my locking lug nuts. I'd like to be proactive about the situation and remedy it *before* I have a flat on the side of the road. I've read several guides that say "Just jam a socket on it and hit it with a hammer", but mine being perfectly round I don't think that will work. ...
2016/09/30
[ "https://mechanics.stackexchange.com/questions/36929", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/7087/" ]
These are usually made by a company like McGard. Our dealership has a master set you can use to identify the correct key, which you can then purchase for around $30.
I guess your best chance would be to visit the dealer. These things are made to go of only with the right socket
36,929
So of course, I seem to have lost the key to my locking lug nuts. I'd like to be proactive about the situation and remedy it *before* I have a flat on the side of the road. I've read several guides that say "Just jam a socket on it and hit it with a hammer", but mine being perfectly round I don't think that will work. ...
2016/09/30
[ "https://mechanics.stackexchange.com/questions/36929", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/7087/" ]
There are sockets designed specifically for this job. Here is an example of one; they have a reverse thread on them and are made of hardened material so as you turn them anti-clockwise, they tighten themselves over the locked wheel nut until they are fully tight and the nut begins to loosen. They are made by most tool...
Weld a new (cheap) nut onto the rounded one and use a regular socket to remove them both together
36,929
So of course, I seem to have lost the key to my locking lug nuts. I'd like to be proactive about the situation and remedy it *before* I have a flat on the side of the road. I've read several guides that say "Just jam a socket on it and hit it with a hammer", but mine being perfectly round I don't think that will work. ...
2016/09/30
[ "https://mechanics.stackexchange.com/questions/36929", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/7087/" ]
There are sockets designed specifically for this job. Here is an example of one; they have a reverse thread on them and are made of hardened material so as you turn them anti-clockwise, they tighten themselves over the locked wheel nut until they are fully tight and the nut begins to loosen. They are made by most tool...
These are usually made by a company like McGard. Our dealership has a master set you can use to identify the correct key, which you can then purchase for around $30.
678,546
Is YUI3 ready mature enough? What are its advantages and disadvantages compared to YUI?
2009/03/24
[ "https://Stackoverflow.com/questions/678546", "https://Stackoverflow.com", "https://Stackoverflow.com/users/63051/" ]
@Corwin is incorrect about files changing on the yui.yahooapis.com servers -- if you use the YUI 3 PR 2 release from our servers, those files will remain there even when subsequent releases come out. It's true that the API will change some as we move toward beta 1 (scheduled for June) and then to GA. We will undoubted...
YUI3 is still in flux. The code-base is going to keep changing and features or syntax you rely on now may change abruptly if you link directly to the YUI3 files on the yahoo servers. YUI2 is quite capable and would be the safer bet if you don't want to go rewriting your code to accommodate unforeseen changes.
678,546
Is YUI3 ready mature enough? What are its advantages and disadvantages compared to YUI?
2009/03/24
[ "https://Stackoverflow.com/questions/678546", "https://Stackoverflow.com", "https://Stackoverflow.com/users/63051/" ]
I've been using YUI3 exclusively since the PR2 release. There has been a lot that has changed since then, but my specific application code didn't have to change too much. I have also been tracking all the major changes in YUI3 during the past months. It's now June, and things appear to be coming close to beta 1 as I'm...
YUI3 is still in flux. The code-base is going to keep changing and features or syntax you rely on now may change abruptly if you link directly to the YUI3 files on the yahoo servers. YUI2 is quite capable and would be the safer bet if you don't want to go rewriting your code to accommodate unforeseen changes.
678,546
Is YUI3 ready mature enough? What are its advantages and disadvantages compared to YUI?
2009/03/24
[ "https://Stackoverflow.com/questions/678546", "https://Stackoverflow.com", "https://Stackoverflow.com/users/63051/" ]
@Corwin is incorrect about files changing on the yui.yahooapis.com servers -- if you use the YUI 3 PR 2 release from our servers, those files will remain there even when subsequent releases come out. It's true that the API will change some as we move toward beta 1 (scheduled for June) and then to GA. We will undoubted...
I've been using YUI3 exclusively since the PR2 release. There has been a lot that has changed since then, but my specific application code didn't have to change too much. I have also been tracking all the major changes in YUI3 during the past months. It's now June, and things appear to be coming close to beta 1 as I'm...
678,546
Is YUI3 ready mature enough? What are its advantages and disadvantages compared to YUI?
2009/03/24
[ "https://Stackoverflow.com/questions/678546", "https://Stackoverflow.com", "https://Stackoverflow.com/users/63051/" ]
@Corwin is incorrect about files changing on the yui.yahooapis.com servers -- if you use the YUI 3 PR 2 release from our servers, those files will remain there even when subsequent releases come out. It's true that the API will change some as we move toward beta 1 (scheduled for June) and then to GA. We will undoubted...
I'd go with YUI3. Still, you may find some features that hasn't been ported yet to YUI3 (for example, few months ago I've needed autocomplete and, at the moment, YUI3 AC was still in beta), and in that case you may try this: <https://github.com/yui/2in3> It helps you to import YUI2 dependencies while using YUI3.
678,546
Is YUI3 ready mature enough? What are its advantages and disadvantages compared to YUI?
2009/03/24
[ "https://Stackoverflow.com/questions/678546", "https://Stackoverflow.com", "https://Stackoverflow.com/users/63051/" ]
I've been using YUI3 exclusively since the PR2 release. There has been a lot that has changed since then, but my specific application code didn't have to change too much. I have also been tracking all the major changes in YUI3 during the past months. It's now June, and things appear to be coming close to beta 1 as I'm...
I'd go with YUI3. Still, you may find some features that hasn't been ported yet to YUI3 (for example, few months ago I've needed autocomplete and, at the moment, YUI3 AC was still in beta), and in that case you may try this: <https://github.com/yui/2in3> It helps you to import YUI2 dependencies while using YUI3.
41,782,707
I need to write my app to 3 languages. I need to have a web version, iOS, and Android version for my app. I wrote an Android version already. I'm looking for a way that I can run apk file on a simulator written in PHP or any way that I can write my code to one language and can run it on Android, iOS and the web.
2017/01/21
[ "https://Stackoverflow.com/questions/41782707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2826905/" ]
I'm not sure if it's what you're looking for, but I used [IonicFramework](https://ionicframework.com) a while ago, and it's excellent. It allows to export to Android and iOS, but I'm unsure about the web. I'd recommend taking a look at it. I also don't recommend using the same code for both Web and Mobile applications...
Simply. You can't run an APK with php. However, if you developed that app, it comes with a debugger/emulator. What are you trying to do here? Don't make life harder than it already is. And you won't be able to compile things in another language. That's c#, and objective c in which you'll need to learn. Have fun
41,782,707
I need to write my app to 3 languages. I need to have a web version, iOS, and Android version for my app. I wrote an Android version already. I'm looking for a way that I can run apk file on a simulator written in PHP or any way that I can write my code to one language and can run it on Android, iOS and the web.
2017/01/21
[ "https://Stackoverflow.com/questions/41782707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2826905/" ]
Simply. You can't run an APK with php. However, if you developed that app, it comes with a debugger/emulator. What are you trying to do here? Don't make life harder than it already is. And you won't be able to compile things in another language. That's c#, and objective c in which you'll need to learn. Have fun
To me, your procedure is not very clear. There are very nice projects like Unity which allows you for multiplatform development, i.e. build once, deploy everywhere [from their website]. It really depends on the specification of your project whether you can effectively use such frameworks/tools. <https://unity3d.com/u...
41,782,707
I need to write my app to 3 languages. I need to have a web version, iOS, and Android version for my app. I wrote an Android version already. I'm looking for a way that I can run apk file on a simulator written in PHP or any way that I can write my code to one language and can run it on Android, iOS and the web.
2017/01/21
[ "https://Stackoverflow.com/questions/41782707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2826905/" ]
I'm not sure if it's what you're looking for, but I used [IonicFramework](https://ionicframework.com) a while ago, and it's excellent. It allows to export to Android and iOS, but I'm unsure about the web. I'd recommend taking a look at it. I also don't recommend using the same code for both Web and Mobile applications...
To me, your procedure is not very clear. There are very nice projects like Unity which allows you for multiplatform development, i.e. build once, deploy everywhere [from their website]. It really depends on the specification of your project whether you can effectively use such frameworks/tools. <https://unity3d.com/u...
41,782,707
I need to write my app to 3 languages. I need to have a web version, iOS, and Android version for my app. I wrote an Android version already. I'm looking for a way that I can run apk file on a simulator written in PHP or any way that I can write my code to one language and can run it on Android, iOS and the web.
2017/01/21
[ "https://Stackoverflow.com/questions/41782707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2826905/" ]
I'm not sure if it's what you're looking for, but I used [IonicFramework](https://ionicframework.com) a while ago, and it's excellent. It allows to export to Android and iOS, but I'm unsure about the web. I'd recommend taking a look at it. I also don't recommend using the same code for both Web and Mobile applications...
You are asking about cross-platform app building approach for all three platforms (i.e *Android*, *IOS* and *Windows*) there are several *SDK* or *IDE*s like **[Phone Gap](http://phonegap.com/)**, **[Xamarin](https://www.xamarin.com/)**, which allow you to write your code logic once and it will be built for all the thr...
41,782,707
I need to write my app to 3 languages. I need to have a web version, iOS, and Android version for my app. I wrote an Android version already. I'm looking for a way that I can run apk file on a simulator written in PHP or any way that I can write my code to one language and can run it on Android, iOS and the web.
2017/01/21
[ "https://Stackoverflow.com/questions/41782707", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2826905/" ]
You are asking about cross-platform app building approach for all three platforms (i.e *Android*, *IOS* and *Windows*) there are several *SDK* or *IDE*s like **[Phone Gap](http://phonegap.com/)**, **[Xamarin](https://www.xamarin.com/)**, which allow you to write your code logic once and it will be built for all the thr...
To me, your procedure is not very clear. There are very nice projects like Unity which allows you for multiplatform development, i.e. build once, deploy everywhere [from their website]. It really depends on the specification of your project whether you can effectively use such frameworks/tools. <https://unity3d.com/u...
89,858
At Fatima, in a vision, Our Lady told Lucia Dos Santos that "Russia will spread its errors throughout the world, raising up wars and persecutions against the Church. The good will be martyred, the Holy Father will have much to suffer, and various nations will be annihilated". After the assimilation of several countries...
2022/03/01
[ "https://christianity.stackexchange.com/questions/89858", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/4/" ]
**Is the Fatima prophecy still relevant in the 21st century?** **Absolutely** At least according to Pope Benedict XVI, who thinks it is not only still relevant, but not yet complete. > > At Mass this morning in the Fatima shrine's square, Pope Benedict said that it would be "mistaken" to consider the prophetic miss...
Pope Benedict, in 2010, concluded his message about the Fatima message with the prayer: > > “May the seven years which separate us from the centenary of the > apparitions hasten the fulfillment of the prophecy of the triumph of > the Immaculate Heart of Mary, to the glory of the Most Holy Trinity.” > > > Now that...
151,347
The Cypher System Rulebook on page 184 states: > > If you wield a weapon that you have no experience with, the difficulty > of making an attack with that weapon is increased by one step > > > That is pretty straightforward, but the Special Ability *Practiced With Light Weapons* on page 31 makes things a little ...
2019/07/08
[ "https://rpg.stackexchange.com/questions/151347", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/3171/" ]
Looking at the (newly) revised Cypher System Rulebook, much of the ambiguity and apparent contradiction has been fixed. Some definitions (p 207): - Inability: The opposite of trained — you’re hindered whenever you attempt a task that you have an inability in. If you also become trained in the task, the training and t...
I cannot find any *official* ruling regarding the Cypher System, or the original (and identically worded) Numenera rules. Comparing with the updated rules found in Numenera: Discovery, I think the poorly expressed intent of the rule you quote was: 1. All light weapons reduce difficulty by 1 step "because they are fast...
14,232
There is a persistent stereotype that geeks (let's formally define that as people a couple of standard deviations better than average in math, computers or other related abilities) as a whole have relatively poor language/communication skills, especially compared to other smart people with different talents (e.g. lawye...
2012/12/25
[ "https://skeptics.stackexchange.com/questions/14232", "https://skeptics.stackexchange.com", "https://skeptics.stackexchange.com/users/1044/" ]
It depends what you mean by communication skills but at least on the level of testable verbal skills the average physics student far outstrips the average psychology or sociology student. [![GRE intended major](https://i.stack.imgur.com/t6HzZ.png)](https://i.stack.imgur.com/t6HzZ.png) Overall there's a positive corr...
ADHD is associated with problems in both math and peer-relations according to, among others, [a Berkeley news report](http://www.berkeley.edu/news/media/releases/2009/04/27_adhd.shtml). If there is a common core component to ADHD, one might *speculate* that numerical working memory capacity and social working memory ov...
1,658,278
What is the approximate ratio of time you typically spend debugging high-level versus low-level bugs? For the purposes of this discussion, high-level bugs are things like incorrect algorithms, bad assumptions about input data and/or operating environment, cases that were overlooked in the initial implementation of som...
2009/11/01
[ "https://Stackoverflow.com/questions/1658278", "https://Stackoverflow.com", "https://Stackoverflow.com/users/23903/" ]
By your definition almost all of the bugs I see are "High-level" bugs. I work in C# using the .net framework. The framework takes care of almost everything you define as low-level bugs.
Low level bugs are usually fixed by the compiler only.So, first look at the high level bugs and then low level bugs(if needed at all).Because trying to construct a building and thinking of making strong walls on a weakly constructed base is totally useless. Its funny but true.Think about it.
1,658,278
What is the approximate ratio of time you typically spend debugging high-level versus low-level bugs? For the purposes of this discussion, high-level bugs are things like incorrect algorithms, bad assumptions about input data and/or operating environment, cases that were overlooked in the initial implementation of som...
2009/11/01
[ "https://Stackoverflow.com/questions/1658278", "https://Stackoverflow.com", "https://Stackoverflow.com/users/23903/" ]
By your definition almost all of the bugs I see are "High-level" bugs. I work in C# using the .net framework. The framework takes care of almost everything you define as low-level bugs.
If I understand your question correctly, you separate the bugs into two types - those that are caused by poor programming practice and those that are caused by problems in the design and spec. Assuming my understanding is indeed correct, I would say that as a developer I spend more time tracking down low level bugs, es...
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The movie does not provide an answer to this question. When Vincent Vega asks Mia Wallace what really happened, she says something to the effect of "that's between Marcellus and Tony Rocky Horror," and leaves it at that.
Marcellus threw Antwan Rockamora out of a window because Antwan stole the case from Marcellus. Antwan owns Big Kahuna Burger (being a large and half Samoan), where Brett and Marvin go to collect the case as well as a few tasty burgers.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The movie does not provide an answer to this question. When Vincent Vega asks Mia Wallace what really happened, she says something to the effect of "that's between Marcellus and Tony Rocky Horror," and leaves it at that.
The only people who know the reason are Marcellus and Antwan "Tony Rocky Horror". So here's my theory, but needs little explaining. After Zed incident, Marcellus tells Butch the only people that will ever know about the "incident" are himself, Butch and Zed (though not for much longer once he tortures him to death.) So...
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The only people who know the reason are Marcellus and Antwan "Tony Rocky Horror". So here's my theory, but needs little explaining. After Zed incident, Marcellus tells Butch the only people that will ever know about the "incident" are himself, Butch and Zed (though not for much longer once he tortures him to death.) So...
It's kind of a rumour actually. Maybe the rumour was spread to cover the actual purpose of Marcellus throwing Antwan off the window. So I think it is made up.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The only people who know the reason are Marcellus and Antwan "Tony Rocky Horror". So here's my theory, but needs little explaining. After Zed incident, Marcellus tells Butch the only people that will ever know about the "incident" are himself, Butch and Zed (though not for much longer once he tortures him to death.) So...
Marcellus threw Antwan Rockamora out of a window because Antwan stole the case from Marcellus. Antwan owns Big Kahuna Burger (being a large and half Samoan), where Brett and Marvin go to collect the case as well as a few tasty burgers.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The movie does not provide an answer to this question. When Vincent Vega asks Mia Wallace what really happened, she says something to the effect of "that's between Marcellus and Tony Rocky Horror," and leaves it at that.
It's kind of a rumour actually. Maybe the rumour was spread to cover the actual purpose of Marcellus throwing Antwan off the window. So I think it is made up.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
It's a reference to the movie The Tenant directed by Roman Polanski in 1976. In the movie, a girl tries to commit suicide by jumping from the balcony of her apartment, falling 4 stories through a greenhouse roof. When visited in the hospital, she is unable to speak, and only screams, therefore she "developed a speech ...
Marcellus threw Antwan Rockamora out of a window because Antwan stole the case from Marcellus. Antwan owns Big Kahuna Burger (being a large and half Samoan), where Brett and Marvin go to collect the case as well as a few tasty burgers.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The only people who know the reason are Marcellus and Antwan "Tony Rocky Horror". So here's my theory, but needs little explaining. After Zed incident, Marcellus tells Butch the only people that will ever know about the "incident" are himself, Butch and Zed (though not for much longer once he tortures him to death.) So...
"When you little scamps get together you're worse than a sewing circle. " That pretty much says it all. Mia was obviously involved in the dirty side of Marcellus's business and it was clear she felt whatever happened to Rocky Horror want anybody else's business.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
It's a reference to the movie The Tenant directed by Roman Polanski in 1976. In the movie, a girl tries to commit suicide by jumping from the balcony of her apartment, falling 4 stories through a greenhouse roof. When visited in the hospital, she is unable to speak, and only screams, therefore she "developed a speech ...
It's kind of a rumour actually. Maybe the rumour was spread to cover the actual purpose of Marcellus throwing Antwan off the window. So I think it is made up.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
The movie does not provide an answer to this question. When Vincent Vega asks Mia Wallace what really happened, she says something to the effect of "that's between Marcellus and Tony Rocky Horror," and leaves it at that.
"When you little scamps get together you're worse than a sewing circle. " That pretty much says it all. Mia was obviously involved in the dirty side of Marcellus's business and it was clear she felt whatever happened to Rocky Horror want anybody else's business.
11,348
In Pulp Fiction, Jules and Vincent discuss the rumour that Marcellus Wallace has thrown Tony Rocky Horror out of a window (causing Tony to develop a speech impediment). It's rumoured that Marcellus did this becuase Tony gave Marcellus' wife a foot massage. Later, Vincent asks Mia Wallace about this. She claims only to...
2013/05/10
[ "https://movies.stackexchange.com/questions/11348", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/4805/" ]
It's a reference to the movie The Tenant directed by Roman Polanski in 1976. In the movie, a girl tries to commit suicide by jumping from the balcony of her apartment, falling 4 stories through a greenhouse roof. When visited in the hospital, she is unable to speak, and only screams, therefore she "developed a speech ...
"When you little scamps get together you're worse than a sewing circle. " That pretty much says it all. Mia was obviously involved in the dirty side of Marcellus's business and it was clear she felt whatever happened to Rocky Horror want anybody else's business.
3,478,586
Recently I've been very interested with GWT and Google App Engine. Although I know little of the latter, I think I have a basic understanding of what is it. From what I've read (and using my novice computer science comprehension) I've come up with: Google App engine is a service that allows you to host your code on G...
2010/08/13
[ "https://Stackoverflow.com/questions/3478586", "https://Stackoverflow.com", "https://Stackoverflow.com/users/406957/" ]
GWT and GAE are two separate products, yes they can work together or independently. GWT Allows you to write Java Code and have it compile to JavaScript to run on the browser. GWT also has some server components that run in a Java Servlet engine. GAE is a Java Servlet Engine that happens to be able to run the Server p...
Caveat: I am not very familiar with the Java implementation of GAE. I have experience with the python version. Google App Engine is a framework for writing websites and web applications. The compilation all happens on the server. There is no compilation on the PC. If you are interested in writing a blog for practice,...
44,563
From what I understand, stock prices go down when large amounts of the stock are sold (thereby lowering the price to attract buyers), and go up when large amounts are bought (vice versa - buyers rise the price to attract sells). So why cant I make "free money" by simply selling my stake in a company at any price (the...
2015/02/17
[ "https://money.stackexchange.com/questions/44563", "https://money.stackexchange.com", "https://money.stackexchange.com/users/14500/" ]
There are a few people that do this for a living. They are called ["market makers"](http://en.wikipedia.org/wiki/Market_maker) or "specialists" in a particular stock. First of all, this requires a lot of capital. You can get burned on a few trades, a process known as "gambler's ruin," but if you have enough capital to...
The main thing you're missing is that while you bear all the costs of manipulating the market, you have no special ability to capture the profits yourself. You make money by buying low and selling high. But if you want to push the price up, you have to keep buying even though the price is getting high. So you are buyi...
90,859
Does the associative/commutative/distributive/etc property hold for arithmetic performed with IEEE 754 floats? Obviously the answer is no to most of those questions, but do any of the properties of standard arithmetic hold? How can one formulate proofs (or at least proof-like statements) explaining why any particular ...
2018/04/18
[ "https://cs.stackexchange.com/questions/90859", "https://cs.stackexchange.com", "https://cs.stackexchange.com/users/41407/" ]
The IEEE 754 standard defines exactly how floating-point arithmetic is performed. For many interesting theorems, you will need to examine the exact definition. For some less interesting ones, like a+b = b+a or ab = ba, all you need to know that IEEE 754 always calculates the exact result, rounded in a deterministic way...
Check e.g. [Goldberg's "What every computer scientist should know about floating point"](https://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html). Heavy reading, but a must.
36,255,175
I have used some CRUD generator for simple database with laravel. However, im working now on a project with many-to-one relationship and one-to-many just wanna ask if anyone can recommend me a good CRUD generator with relations for laravel 5.2 thanx in advance
2016/03/28
[ "https://Stackoverflow.com/questions/36255175", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2405714/" ]
you may try link below : [Laravel Crud with scaffold-interface](https://github.com/amranidev/scaffold-interface)
See if this one helps you. [Laravel crud generator](http://dry-project.lateraljs.org/laravel_gen/)! Note: i found generated code is fully customization too.
36,255,175
I have used some CRUD generator for simple database with laravel. However, im working now on a project with many-to-one relationship and one-to-many just wanna ask if anyone can recommend me a good CRUD generator with relations for laravel 5.2 thanx in advance
2016/03/28
[ "https://Stackoverflow.com/questions/36255175", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2405714/" ]
you may try link below : [Laravel Crud with scaffold-interface](https://github.com/amranidev/scaffold-interface)
Make a Laravel Application on top of well structed database from this repo. <https://github.com/digitaldreams/laracrud>
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
Two ways to handle this. You need to make a list of prerequisites for your app. You at least need to specify the minimum Windows version that you are willing to support. And you can add the requirement that the Windows install has the .NET framework version you need. The vast majority of machines will meet this require...
Create a setup/deployment project in .NET. If .NET isn't installed when the user attempts to install your application, the installation wizard will force your end user to download the .NET framework through the GUI.
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
I'm not sure what you are using as an Installer, but an easy and free option would be to use a Setup and Deployment Project in Visual Studio. Once you add the output of your main project to the Setup and Deployment Project, the Framework dependency will be detected and the user will be prompted to install .NET if it i...
Create a setup/deployment project in .NET. If .NET isn't installed when the user attempts to install your application, the installation wizard will force your end user to download the .NET framework through the GUI.
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
Create a setup/deployment project in .NET. If .NET isn't installed when the user attempts to install your application, the installation wizard will force your end user to download the .NET framework through the GUI.
I'm not familiar with the nullsoft installer, so I can't help you out there, but Microsoft provides "redistributable" packages for the various versions of the .Net framework for the purpose of including it with the deployment of your application. If you anticipate having to install it on a machine that doesn't already...
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
Two ways to handle this. You need to make a list of prerequisites for your app. You at least need to specify the minimum Windows version that you are willing to support. And you can add the requirement that the Windows install has the .NET framework version you need. The vast majority of machines will meet this require...
I'm not sure what you are using as an Installer, but an easy and free option would be to use a Setup and Deployment Project in Visual Studio. Once you add the output of your main project to the Setup and Deployment Project, the Framework dependency will be detected and the user will be prompted to install .NET if it i...
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
Two ways to handle this. You need to make a list of prerequisites for your app. You at least need to specify the minimum Windows version that you are willing to support. And you can add the requirement that the Windows install has the .NET framework version you need. The vast majority of machines will meet this require...
if you are creating the installer through deployment project then there is a prerequisite settings in which you can specify whether to bundle .net framework along with your installer or have it downloaded from the internet
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
Two ways to handle this. You need to make a list of prerequisites for your app. You at least need to specify the minimum Windows version that you are willing to support. And you can add the requirement that the Windows install has the .NET framework version you need. The vast majority of machines will meet this require...
I'm not familiar with the nullsoft installer, so I can't help you out there, but Microsoft provides "redistributable" packages for the various versions of the .Net framework for the purpose of including it with the deployment of your application. If you anticipate having to install it on a machine that doesn't already...
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
I'm not sure what you are using as an Installer, but an easy and free option would be to use a Setup and Deployment Project in Visual Studio. Once you add the output of your main project to the Setup and Deployment Project, the Framework dependency will be detected and the user will be prompted to install .NET if it i...
if you are creating the installer through deployment project then there is a prerequisite settings in which you can specify whether to bundle .net framework along with your installer or have it downloaded from the internet
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
I'm not sure what you are using as an Installer, but an easy and free option would be to use a Setup and Deployment Project in Visual Studio. Once you add the output of your main project to the Setup and Deployment Project, the Framework dependency will be detected and the user will be prompted to install .NET if it i...
I'm not familiar with the nullsoft installer, so I can't help you out there, but Microsoft provides "redistributable" packages for the various versions of the .Net framework for the purpose of including it with the deployment of your application. If you anticipate having to install it on a machine that doesn't already...
3,374,220
I'm developing an application in C# based on the .Net Framework. The problem is that on certain computers there is no .Net. So is there a app (preferably free) that can check it and suggest a download if no .Net is available that i can run during the installer, or an app that wraps my assembly with the .net assemblys s...
2010/07/30
[ "https://Stackoverflow.com/questions/3374220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/216083/" ]
if you are creating the installer through deployment project then there is a prerequisite settings in which you can specify whether to bundle .net framework along with your installer or have it downloaded from the internet
I'm not familiar with the nullsoft installer, so I can't help you out there, but Microsoft provides "redistributable" packages for the various versions of the .Net framework for the purpose of including it with the deployment of your application. If you anticipate having to install it on a machine that doesn't already...
594,881
I am trying to use an old phone charger with 5V DC output. I measured the output to be 6.4V. It works for powering an ESP8266 through VIN but does not work to power an IR receiver I want to use. The receiver works when I power it through a different source (5V or 3V and ground from an Arduino.) It also does not work ...
2021/11/13
[ "https://electronics.stackexchange.com/questions/594881", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/299922/" ]
> > *Can anyone explain this behavior to me?* > > > Ground on one charger does not necessarily mean it connects to ground on another charger or "system". Ground is **not** "earth" so there is almost certainly a massive galvanic isolation between the two. Earth is different; earths are meant to be galvanically conn...
IR Rx's require low ripple Vdc to function due to the AGC sensitivity to supply noise. **Your charger is unregulated and noisy**, and therefore **the IR Rx needs a linear regulator** to remove the noise within it's DC operating range. Ground is just a local 0V reference. PE or protective Earth is ground somewhere con...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
Interestingly, in my experience we have often started our projects with this very intent. Down the line we have often failed to act on this intent due to constraints on the newer project and a belief that the cross training is too expensive. I do always wish we had managed it though, as long term I believe it is benef...
**TL;DR** *Make it one team and then it's one team supporting 2 projects.* To echo @Aaronaught I think mixing teams can be problematic as it may take time to acclimate to new practices, processes, etc. If you rotate too many people to quickly the team will lose it's identity. This leads to more questions, confusion an...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I don't see much of a downside here myself. The rotation gets you: * Cross pollination of institutional knowlege -- everyone will know the legacy project and the new one, at least in theory. * Cross training -- different projects require different things often. You grow much more as a developer working in ugly, legacy...
Agree with Aaronaught that is very strange to see how many people just don't see downsides.. Few bad thinks, that you can point very quick - code doesn't have owner and when everyone is responsible for everything is not that good for quality. Developers aren't resources (even they are called like that very often by ma...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I don't see much of a downside here myself. The rotation gets you: * Cross pollination of institutional knowlege -- everyone will know the legacy project and the new one, at least in theory. * Cross training -- different projects require different things often. You grow much more as a developer working in ugly, legacy...
Rotation is a good thing for the company, and can be a good thing for the developers too. There are lots of good reasons and Wyatt has mentioned many of them in his answer. That being said, in your situation, you may find when introducing this, the developers who are moving off the newer project onto the legacy proje...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I'm surprised that everybody thinks this is such a good thing. The authors of [*Peopleware*](http://rads.stackoverflow.com/amzn/click/0932633439) (which, IMO, is still one of the precious few software project management books actually worth reading) strongly disagree. Almost the entire Part IV of the book is dedicated ...
Agree with Aaronaught that is very strange to see how many people just don't see downsides.. Few bad thinks, that you can point very quick - code doesn't have owner and when everyone is responsible for everything is not that good for quality. Developers aren't resources (even they are called like that very often by ma...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
Interestingly, in my experience we have often started our projects with this very intent. Down the line we have often failed to act on this intent due to constraints on the newer project and a belief that the cross training is too expensive. I do always wish we had managed it though, as long term I believe it is benef...
Agree with Aaronaught that is very strange to see how many people just don't see downsides.. Few bad thinks, that you can point very quick - code doesn't have owner and when everyone is responsible for everything is not that good for quality. Developers aren't resources (even they are called like that very often by ma...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I agree with Aaronaught's top answer and I have some additions. * People do not like to be pushed around. * In a hierarchical business setting, people may be assigned responsibilities that are later taken away from them again. This may just be part of the job. However, the more often this happens, the less likely will...
**TL;DR** *Make it one team and then it's one team supporting 2 projects.* To echo @Aaronaught I think mixing teams can be problematic as it may take time to acclimate to new practices, processes, etc. If you rotate too many people to quickly the team will lose it's identity. This leads to more questions, confusion an...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I agree with Aaronaught's top answer and I have some additions. * People do not like to be pushed around. * In a hierarchical business setting, people may be assigned responsibilities that are later taken away from them again. This may just be part of the job. However, the more often this happens, the less likely will...
Rotation of Programmers is good thing from company point of view and developer point of view. **From a company perspective** 1. Management will get to know , the strength and weakness of particular developer whether they can handle multitasking or not and adaptive to changes . 2. If some developer leaves company for ...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I don't see much of a downside here myself. The rotation gets you: * Cross pollination of institutional knowlege -- everyone will know the legacy project and the new one, at least in theory. * Cross training -- different projects require different things often. You grow much more as a developer working in ugly, legacy...
**TL;DR** *Make it one team and then it's one team supporting 2 projects.* To echo @Aaronaught I think mixing teams can be problematic as it may take time to acclimate to new practices, processes, etc. If you rotate too many people to quickly the team will lose it's identity. This leads to more questions, confusion an...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
I'm surprised that everybody thinks this is such a good thing. The authors of [*Peopleware*](http://rads.stackoverflow.com/amzn/click/0932633439) (which, IMO, is still one of the precious few software project management books actually worth reading) strongly disagree. Almost the entire Part IV of the book is dedicated ...
Interestingly, in my experience we have often started our projects with this very intent. Down the line we have often failed to act on this intent due to constraints on the newer project and a belief that the cross training is too expensive. I do always wish we had managed it though, as long term I believe it is benef...
210,668
I'm working on a small team that will begin working on a large new project with another small team. The other team is currently working on a legacy system that they have been working on for years. The manager has decided that the developers from my team will be rotating every few months to replace developers working ...
2013/09/06
[ "https://softwareengineering.stackexchange.com/questions/210668", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/8093/" ]
Rotation is a good thing for the company, and can be a good thing for the developers too. There are lots of good reasons and Wyatt has mentioned many of them in his answer. That being said, in your situation, you may find when introducing this, the developers who are moving off the newer project onto the legacy proje...
Rotation of Programmers is good thing from company point of view and developer point of view. **From a company perspective** 1. Management will get to know , the strength and weakness of particular developer whether they can handle multitasking or not and adaptive to changes . 2. If some developer leaves company for ...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
It's not true that all the different interpretations are not (in principle) experimentally distinguishable. Let's consider the difference between Copenhagen Interpretation (CI), De Broglie–Bohm theory (BT) and the Many Worlds Interpretation (MWI). BT assumes that under normal circumstances we have so-called quantum equ...
On paper, the difference between a theory and an interpretation is very clear. If two distinct sets of ideas/explanations generate experimentally distinguishable predictions, then they are two different theories. If they use different concepts but produce identical experimentally verifiable predictions, then they are t...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
It's not true that all the different interpretations are not (in principle) experimentally distinguishable. Let's consider the difference between Copenhagen Interpretation (CI), De Broglie–Bohm theory (BT) and the Many Worlds Interpretation (MWI). BT assumes that under normal circumstances we have so-called quantum equ...
In the name "interpretations" it is implied that these are believed to not be empirically distinguishable. What everyone agrees on is how to calculate empirically testable predictions. That is essentially mathematics, and if you are very mathematically minded, you can propose to axiomize it, that is, find a minimum num...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
I do not know that whether or not all interpretations can be distinguishable from each other. But after going through the link once, I thought Asher Peres probably implied that all the interpretations(De Broglie Bohm, MWI etc) will not have any effect on the probability of measurement outcomes (predictions of QM) i.e. ...
In the name "interpretations" it is implied that these are believed to not be empirically distinguishable. What everyone agrees on is how to calculate empirically testable predictions. That is essentially mathematics, and if you are very mathematically minded, you can propose to axiomize it, that is, find a minimum num...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
It's not true that all the different interpretations are not (in principle) experimentally distinguishable. Let's consider the difference between Copenhagen Interpretation (CI), De Broglie–Bohm theory (BT) and the Many Worlds Interpretation (MWI). BT assumes that under normal circumstances we have so-called quantum equ...
I do not know that whether or not all interpretations can be distinguishable from each other. But after going through the link once, I thought Asher Peres probably implied that all the interpretations(De Broglie Bohm, MWI etc) will not have any effect on the probability of measurement outcomes (predictions of QM) i.e. ...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
On paper, the difference between a theory and an interpretation is very clear. If two distinct sets of ideas/explanations generate experimentally distinguishable predictions, then they are two different theories. If they use different concepts but produce identical experimentally verifiable predictions, then they are t...
In the name "interpretations" it is implied that these are believed to not be empirically distinguishable. What everyone agrees on is how to calculate empirically testable predictions. That is essentially mathematics, and if you are very mathematically minded, you can propose to axiomize it, that is, find a minimum num...
133,906
Are the different interpretations of Quantum mechanics just different viewpoints of the same physical reality? Or can experiments distinguish them? Are they empirically distinguishable or not? I have read a paper in which Asher Peres states that quantum mechanics needs no interpretation and we can understand it by a m...
2014/09/04
[ "https://physics.stackexchange.com/questions/133906", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/-1/" ]
No, interpretations of quantum mechanics are not distiguishable in a physical experiment, otherwise they would be called theories rather than interpretations. It should be noted that there are some theories whom their authors call "interpretations" but they in fact are not. For instance the "objective collapse theori...
In the name "interpretations" it is implied that these are believed to not be empirically distinguishable. What everyone agrees on is how to calculate empirically testable predictions. That is essentially mathematics, and if you are very mathematically minded, you can propose to axiomize it, that is, find a minimum num...
43,761,571
i've integrated google tag manager in my iOS app. I'm stuck at some points: 1. How to preview the version before making it live.I followed [this](https://developers.google.com/tag-manager/ios/v5/#add-gtm-to-project) link & added the urls in plist file. How to do the following step mentioned on this link > > Stop you...
2017/05/03
[ "https://Stackoverflow.com/questions/43761571", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4297260/" ]
I just tried to use the container preview as you asked me to ;) It seems that it was working for me, so I'm gonna try to explain the step for you to follow in order to make it work. 1. The step you seem to be stuck at is pretty easy, and I achieved it on the simulator : 1. Launch your app on the simulator by clickin...
We're working on implementing GTM+Firebase for our iOS app and we've been testing the implementation for a few days now. The approach has been to check the FireBase DebugView to see the events are firing properly and they're tagged with firebase\_event\_origin = app+gtm Should note that we've done this selectively for...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
The rules text say it is both. So it is both. I can think of two reasonable ways to be both a cone and be a thin sheet. First, a cone whose surface is a thin sheet of flames matches both descriptions. But here, it is hard to explain why something in the center of the cone would take damage (sure, radiant heat, but it...
It's a conic section. But that's being unnecessarily complex. It's easier to say that "When the game says 'cone' it doesn't necessarily mean 'cone' in the geometric sense." Since everything is represented on a 2D map, and probably for historical reasons (Citation needed) effects that hit a triangle shape on the map a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
### It's a cone In two out of three points of the spell description, the term used is **cone.** The spell header has the following data. > > Burning Hands; 1st-level evocation; Casting Time: 1 action; **Range: Self > (15-foot cone);** Components: V, S; Duration: Instantaneous > > > As you note from the text, it ...
It's a conic section. But that's being unnecessarily complex. It's easier to say that "When the game says 'cone' it doesn't necessarily mean 'cone' in the geometric sense." Since everything is represented on a 2D map, and probably for historical reasons (Citation needed) effects that hit a triangle shape on the map a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
### It's a cone In two out of three points of the spell description, the term used is **cone.** The spell header has the following data. > > Burning Hands; 1st-level evocation; Casting Time: 1 action; **Range: Self > (15-foot cone);** Components: V, S; Duration: Instantaneous > > > As you note from the text, it ...
* The spell *creates* a thin sheet of flame. * The spell *affects* a conical volume. These two assertions are both true. One way they can both be true is if the casting of the spell involves moving the sheet of flame. By rotating or sweeping the sheet of flame one could cause it to come in contact with everything in a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
### It's a cone In two out of three points of the spell description, the term used is **cone.** The spell header has the following data. > > Burning Hands; 1st-level evocation; Casting Time: 1 action; **Range: Self > (15-foot cone);** Components: V, S; Duration: Instantaneous > > > As you note from the text, it ...
Its a cone formed by multiple sheets of flames coming from each finger. Probably expanding as all hot things do. Think of each as if you have ten flamethrowers, one strapped to each finger in your hand. That would make a roughly conic shape overall, maybe a little flatter vertically, but not too much (hot air does go ...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
It's a conic section. But that's being unnecessarily complex. It's easier to say that "When the game says 'cone' it doesn't necessarily mean 'cone' in the geometric sense." Since everything is represented on a 2D map, and probably for historical reasons (Citation needed) effects that hit a triangle shape on the map a...
* The spell *creates* a thin sheet of flame. * The spell *affects* a conical volume. These two assertions are both true. One way they can both be true is if the casting of the spell involves moving the sheet of flame. By rotating or sweeping the sheet of flame one could cause it to come in contact with everything in a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
Functionally it is a 3D cone ============================ While the description says it appears as though a thin sheet of flames shoots out (thin being subjective), for whatever reason you want to imagine it affects all creatures in a 15 foot 3D cone. It says that they all must save or take damage. The two statements...
It's a conic section. But that's being unnecessarily complex. It's easier to say that "When the game says 'cone' it doesn't necessarily mean 'cone' in the geometric sense." Since everything is represented on a 2D map, and probably for historical reasons (Citation needed) effects that hit a triangle shape on the map a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
The rules text say it is both. So it is both. I can think of two reasonable ways to be both a cone and be a thin sheet. First, a cone whose surface is a thin sheet of flames matches both descriptions. But here, it is hard to explain why something in the center of the cone would take damage (sure, radiant heat, but it...
Its a cone formed by multiple sheets of flames coming from each finger. Probably expanding as all hot things do. Think of each as if you have ten flamethrowers, one strapped to each finger in your hand. That would make a roughly conic shape overall, maybe a little flatter vertically, but not too much (hot air does go ...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
The rules text say it is both. So it is both. I can think of two reasonable ways to be both a cone and be a thin sheet. First, a cone whose surface is a thin sheet of flames matches both descriptions. But here, it is hard to explain why something in the center of the cone would take damage (sure, radiant heat, but it...
Functionally it is a 3D cone ============================ While the description says it appears as though a thin sheet of flames shoots out (thin being subjective), for whatever reason you want to imagine it affects all creatures in a 15 foot 3D cone. It says that they all must save or take damage. The two statements...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
The rules text say it is both. So it is both. I can think of two reasonable ways to be both a cone and be a thin sheet. First, a cone whose surface is a thin sheet of flames matches both descriptions. But here, it is hard to explain why something in the center of the cone would take damage (sure, radiant heat, but it...
* The spell *creates* a thin sheet of flame. * The spell *affects* a conical volume. These two assertions are both true. One way they can both be true is if the casting of the spell involves moving the sheet of flame. By rotating or sweeping the sheet of flame one could cause it to come in contact with everything in a...
132,453
*[Burning hands](https://www.dndbeyond.com/spells/burning-hands)* says two things about the shape of the spell’s area of effect (PHB, p. 220): 1. > > a thin sheet of flames shoots forth from your outstretched fingertips > > > 2. > > Each creature in a 15-foot cone [is affected by the spell] > > > These seem to ...
2018/09/26
[ "https://rpg.stackexchange.com/questions/132453", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/321/" ]
* The spell *creates* a thin sheet of flame. * The spell *affects* a conical volume. These two assertions are both true. One way they can both be true is if the casting of the spell involves moving the sheet of flame. By rotating or sweeping the sheet of flame one could cause it to come in contact with everything in a...
Its a cone formed by multiple sheets of flames coming from each finger. Probably expanding as all hot things do. Think of each as if you have ten flamethrowers, one strapped to each finger in your hand. That would make a roughly conic shape overall, maybe a little flatter vertically, but not too much (hot air does go ...
866,726
I have a server running Windows Server 2016 with ADDS, DNS, DHCP and RRAS roles. I am experiencing the following issue: My server's LAN IP is 192.168.0.1 and the second interface, connected to DMZ, has IP 192.168.18.1. The clients sometimes resolve the server's name with IP 192.168.18.1, I have noticed that the recor...
2017/08/03
[ "https://serverfault.com/questions/866726", "https://serverfault.com", "https://serverfault.com/users/429461/" ]
The DNS server will register the ip address for each interface that it is bound to. The fix is to "unbind" the 192.168.18.1 interface in the DNS server properties. From the DNS management console, right click the server, select properties from the context menu, and on the interface tab select the **Only the following ...
Server 2016 introduced DNS policies, with DNS policies you can dictate which IP Address is resolved for a request. So for your network you can use them to make sure that when the clients query for the IP Address of the server they will always get 192.168.0.1 Here is a link with some details. <https://docs.microsoft.c...
25,920,208
I'm having this error pop up once I start Visual Studio professional 2013 with update 3. I don't know whats going on and also when I created a web form and try to put items from the toolbox into a table in my code it doesn't let me. the items are dim and can't select them any more. before I would make a table and try ...
2014/09/18
[ "https://Stackoverflow.com/questions/25920208", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3188062/" ]
Visual Studio 2013 Update 4 Tools -> Extensions and Updates Disabled "Release Management for Visual Studio 2013 v2.1". That worked for me.
I got the same issue today, but the error message should be giving you some guidance. Take a look at mine, it tells me to check the "ActivityLog.xml" for more information. ![Error Message](https://i.stack.imgur.com/yHavo.jpg) After looking at the entry my error showed me that it ocured the evening before around 5:30p...
25,920,208
I'm having this error pop up once I start Visual Studio professional 2013 with update 3. I don't know whats going on and also when I created a web form and try to put items from the toolbox into a table in my code it doesn't let me. the items are dim and can't select them any more. before I would make a table and try ...
2014/09/18
[ "https://Stackoverflow.com/questions/25920208", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3188062/" ]
I got the same issue today, but the error message should be giving you some guidance. Take a look at mine, it tells me to check the "ActivityLog.xml" for more information. ![Error Message](https://i.stack.imgur.com/yHavo.jpg) After looking at the entry my error showed me that it ocured the evening before around 5:30p...
I uninstalled and reinstalled Visual Studio and the problem went away for a little bit. It eventually came back complaining about different packages. Then I noticed my home directory was encrypted. I decrypted the directory and the problem went away. If it is not an encryption issue, I'd try just uninstalling and re...