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
107,148
I noticed this while using websites that require login/logout - I get used to accessing the "Logout" button at the bottom of the menu. For example: [![general layout of extended menu](https://i.stack.imgur.com/uxlh1.jpg)](https://i.stack.imgur.com/uxlh1.jpg) On burger menu, the *logout* option will always be at the b...
2017/04/19
[ "https://ux.stackexchange.com/questions/107148", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/100111/" ]
Make it harder to find destructive buttons ========================================== > > If you do need to include destructive buttons, you should definitely > find a way to make them harder to find than the primary action button > [Best practices for buttons](http://www.uxmatters.com/mt/archives/2012/05/7-basic-b...
It all depends on how important Log out is to your solution and the users goals. When you have a list of features, you can score them based on their relevance to the tasks the user is performing. Log out is rarely related to the primary tasks of the solution so this is why the position of Log out is often placed tow...
107,148
I noticed this while using websites that require login/logout - I get used to accessing the "Logout" button at the bottom of the menu. For example: [![general layout of extended menu](https://i.stack.imgur.com/uxlh1.jpg)](https://i.stack.imgur.com/uxlh1.jpg) On burger menu, the *logout* option will always be at the b...
2017/04/19
[ "https://ux.stackexchange.com/questions/107148", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/100111/" ]
Make it harder to find destructive buttons ========================================== > > If you do need to include destructive buttons, you should definitely > find a way to make them harder to find than the primary action button > [Best practices for buttons](http://www.uxmatters.com/mt/archives/2012/05/7-basic-b...
Best user experience: Track clicks and order list's items according to visitors preferences. Result: Log-out button may come first. Best corporate experience: Order items according to company's best interest. Result: Log-out button should be hard to reach.
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
The thing about stringbuilder is you're still trying to keep the entire contents in memory. You want to only keep a small portion in memory at a time, and that means using filestreams. Don't read an entire file into memory, open a stream on it and keep reading from the stream. The problem with xml is that you can't ju...
Please, define "merge". If you want just to concatenate the files, then use StreamReader, and read line by line. If you want actually to produce a new valid xml, then go with XmlTextReader. It does not read the whole file in memory.
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Please, define "merge". If you want just to concatenate the files, then use StreamReader, and read line by line. If you want actually to produce a new valid xml, then go with XmlTextReader. It does not read the whole file in memory.
It depends what you mean by merge, since you haven't posted any information about the schema. In the simplest case of homogeneous simple elements in a single collection, you would just merge directly to a new file on disk avoiding much in-memory work, ensuring that the outer containing elements are stripped off and ad...
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
The thing about stringbuilder is you're still trying to keep the entire contents in memory. You want to only keep a small portion in memory at a time, and that means using filestreams. Don't read an entire file into memory, open a stream on it and keep reading from the stream. The problem with xml is that you can't ju...
Merge them within the file system by invoking "copy a.xml + b.xml" command or by invoking the windows filesystem APIs used by the "copy" command.
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Please, define "merge". If you want just to concatenate the files, then use StreamReader, and read line by line. If you want actually to produce a new valid xml, then go with XmlTextReader. It does not read the whole file in memory.
Merge them within the file system by invoking "copy a.xml + b.xml" command or by invoking the windows filesystem APIs used by the "copy" command.
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Personally, when I *have* to deal with XML files (forced by threat of physical violence usually), I do this: 1. Load each file into a .NET DataSet via DataSet.ReadXML() 2. Combine the information (via DataSet queries). 3. Write out the combined DataSet to XML via DataSet.WriteXML() Then I aggressively delete the orgi...
Merge them within the file system by invoking "copy a.xml + b.xml" command or by invoking the windows filesystem APIs used by the "copy" command.
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
The details of what you need to merge are indeed vital. However, to start you off: you're likely to want an XmlReader for each of the input files, and an XmlWriter for the output file. That will let you stream both the input and the output. Another alternative would be to use XStreamingElement from LINQ to XML. I don'...
It depends what you mean by merge, since you haven't posted any information about the schema. In the simplest case of homogeneous simple elements in a single collection, you would just merge directly to a new file on disk avoiding much in-memory work, ensuring that the outer containing elements are stripped off and ad...
149,233
I have 7-8 xml files. Each one is approximately 50 MB in size. What is the best way to merge files programmatically in C# without getting System.OutOfMemory Exception? So far I have tried reading each file in a StringBuilder and than putting it in an array of string builder but I still get system.outofmemoery exception...
2008/09/29
[ "https://Stackoverflow.com/questions/149233", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Personally, when I *have* to deal with XML files (forced by threat of physical violence usually), I do this: 1. Load each file into a .NET DataSet via DataSet.ReadXML() 2. Combine the information (via DataSet queries). 3. Write out the combined DataSet to XML via DataSet.WriteXML() Then I aggressively delete the orgi...
Please, define "merge". If you want just to concatenate the files, then use StreamReader, and read line by line. If you want actually to produce a new valid xml, then go with XmlTextReader. It does not read the whole file in memory.
12,273
I played DnD 3.5 while in the military and due to a shortage of DMs, was constantly flooded by players. Some of my games would include up to 10 or 11. I discovered quickly that balancing for this in 3.5 was neigh impossible: either the enemies would die before they could react, or the players were so over matched they ...
2012/01/31
[ "https://rpg.stackexchange.com/questions/12273", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/2922/" ]
Are you perhaps picking monsters that are of an appropriate CR for the party? With a group of that size that's prone to exactly the problem you're observing. Instead, pick monsters of a CR appropriate to a normal party of 4 and use more of them.
I've had open fate games that fall into the "wow big group showed up tonight.. OMG there are like 3 more new people standing quietly behind me I didn't see till someone mentioned them!" end of the spectrum at a FLGS that range from a handful of regulars to "yea we are definitely going to move some of the tables!" In a...
12,273
I played DnD 3.5 while in the military and due to a shortage of DMs, was constantly flooded by players. Some of my games would include up to 10 or 11. I discovered quickly that balancing for this in 3.5 was neigh impossible: either the enemies would die before they could react, or the players were so over matched they ...
2012/01/31
[ "https://rpg.stackexchange.com/questions/12273", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/2922/" ]
Having run stable 13-player groups (with everyone showing up every week, no less) in several systems, a large group has 4 issues: 1) face time for every player 2) Synergy of group size. 3) Appropriate challenges for the group as a whole 4) GM communications 1 Face Time =========== Now, my big group for D&D3...
Are you perhaps picking monsters that are of an appropriate CR for the party? With a group of that size that's prone to exactly the problem you're observing. Instead, pick monsters of a CR appropriate to a normal party of 4 and use more of them.
12,273
I played DnD 3.5 while in the military and due to a shortage of DMs, was constantly flooded by players. Some of my games would include up to 10 or 11. I discovered quickly that balancing for this in 3.5 was neigh impossible: either the enemies would die before they could react, or the players were so over matched they ...
2012/01/31
[ "https://rpg.stackexchange.com/questions/12273", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/2922/" ]
Are you perhaps picking monsters that are of an appropriate CR for the party? With a group of that size that's prone to exactly the problem you're observing. Instead, pick monsters of a CR appropriate to a normal party of 4 and use more of them.
**This happens several times a year for me. We plan on people being absent, someone else has a friend they want to bring to fill in, and more people show up - the group goes from 5-6 to 8 or more.** Fortunately, i require a party leader and spell out what i expect. The party leader helps me to ensure each person gets s...
12,273
I played DnD 3.5 while in the military and due to a shortage of DMs, was constantly flooded by players. Some of my games would include up to 10 or 11. I discovered quickly that balancing for this in 3.5 was neigh impossible: either the enemies would die before they could react, or the players were so over matched they ...
2012/01/31
[ "https://rpg.stackexchange.com/questions/12273", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/2922/" ]
Having run stable 13-player groups (with everyone showing up every week, no less) in several systems, a large group has 4 issues: 1) face time for every player 2) Synergy of group size. 3) Appropriate challenges for the group as a whole 4) GM communications 1 Face Time =========== Now, my big group for D&D3...
I've had open fate games that fall into the "wow big group showed up tonight.. OMG there are like 3 more new people standing quietly behind me I didn't see till someone mentioned them!" end of the spectrum at a FLGS that range from a handful of regulars to "yea we are definitely going to move some of the tables!" In a...
12,273
I played DnD 3.5 while in the military and due to a shortage of DMs, was constantly flooded by players. Some of my games would include up to 10 or 11. I discovered quickly that balancing for this in 3.5 was neigh impossible: either the enemies would die before they could react, or the players were so over matched they ...
2012/01/31
[ "https://rpg.stackexchange.com/questions/12273", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/2922/" ]
Having run stable 13-player groups (with everyone showing up every week, no less) in several systems, a large group has 4 issues: 1) face time for every player 2) Synergy of group size. 3) Appropriate challenges for the group as a whole 4) GM communications 1 Face Time =========== Now, my big group for D&D3...
**This happens several times a year for me. We plan on people being absent, someone else has a friend they want to bring to fill in, and more people show up - the group goes from 5-6 to 8 or more.** Fortunately, i require a party leader and spell out what i expect. The party leader helps me to ensure each person gets s...
31,790
I have an AKG WMS40 wireless emitter/receiver combo which I use with a condenser mic that needs phantom power and gets it from the emitter bodypack. If I use a minijack to mini-XLR adapter cable, can I use this system to transmit any analogue signal, such as the signal coming from a headphone out minijack? Is there a ...
2014/11/25
[ "https://sound.stackexchange.com/questions/31790", "https://sound.stackexchange.com", "https://sound.stackexchange.com/users/11403/" ]
According to the service manual (available on the AKG website) the phantom power is 3.9v and is connected to pin 3, so the microphone connector should have pins 2 and 3 shorted. If I understand this correctly, the included cable won't have this short and will only connect pin 1 (ground) and pin 2 (signal) so there shou...
With a condenser microphone the 48-volt DC is applied to both audio lines, so it cancels out because the signal is sent as a difference between those two lines. With a headset jack the signal for each speaker is sent as the offset between a conductor and the ground line -- this is the same circuit as that used for deli...
31,790
I have an AKG WMS40 wireless emitter/receiver combo which I use with a condenser mic that needs phantom power and gets it from the emitter bodypack. If I use a minijack to mini-XLR adapter cable, can I use this system to transmit any analogue signal, such as the signal coming from a headphone out minijack? Is there a ...
2014/11/25
[ "https://sound.stackexchange.com/questions/31790", "https://sound.stackexchange.com", "https://sound.stackexchange.com/users/11403/" ]
With a condenser microphone the 48-volt DC is applied to both audio lines, so it cancels out because the signal is sent as a difference between those two lines. With a headset jack the signal for each speaker is sent as the offset between a conductor and the ground line -- this is the same circuit as that used for deli...
I finally wrote AKG and they confirmed there is no risk using the provided Mini-XLR to 6.3mm Jack cable, because with that cable no phantom power goes to the 6.3mm jack.
31,790
I have an AKG WMS40 wireless emitter/receiver combo which I use with a condenser mic that needs phantom power and gets it from the emitter bodypack. If I use a minijack to mini-XLR adapter cable, can I use this system to transmit any analogue signal, such as the signal coming from a headphone out minijack? Is there a ...
2014/11/25
[ "https://sound.stackexchange.com/questions/31790", "https://sound.stackexchange.com", "https://sound.stackexchange.com/users/11403/" ]
According to the service manual (available on the AKG website) the phantom power is 3.9v and is connected to pin 3, so the microphone connector should have pins 2 and 3 shorted. If I understand this correctly, the included cable won't have this short and will only connect pin 1 (ground) and pin 2 (signal) so there shou...
I finally wrote AKG and they confirmed there is no risk using the provided Mini-XLR to 6.3mm Jack cable, because with that cable no phantom power goes to the 6.3mm jack.
212,419
I was working with content types yesterday in the content type hub. I was able to publish items. This morning I can't publish things anymore. I get the following error: > > Sorry, something went wrong > > > The operation failed on one or more Metadata web service application > proxies: Taxonomy\_+q13bKzN06taIYblF...
2017/04/05
[ "https://sharepoint.stackexchange.com/questions/212419", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/66032/" ]
We can't help you as this is SharePoint Online and a service-related issue. Open a ticket with Microsoft via the Office 365 Admin portal.
I had the same problem yesterday and this morning. I tried again this afternoon and 2 Content Types Published OK. Then I got the error again on the 3rd and 4th etc... This from the Office 365 Admin's Advisory Panel SP98120 - Content type publishing issue Updated: 2017-04-07 21:51 (UTC) Start time: 2017-04-05 19:14 (...
212,419
I was working with content types yesterday in the content type hub. I was able to publish items. This morning I can't publish things anymore. I get the following error: > > Sorry, something went wrong > > > The operation failed on one or more Metadata web service application > proxies: Taxonomy\_+q13bKzN06taIYblF...
2017/04/05
[ "https://sharepoint.stackexchange.com/questions/212419", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/66032/" ]
We can't help you as this is SharePoint Online and a service-related issue. Open a ticket with Microsoft via the Office 365 Admin portal.
Just saw this update, hope this helps you out.. Title: Content type publishing issue User Impact: Users are receiving errors when publishing new site content types from the SharePoint Online content type hub. More info: The error received says: "The operation failed on one or more Metadata web service application pr...
212,419
I was working with content types yesterday in the content type hub. I was able to publish items. This morning I can't publish things anymore. I get the following error: > > Sorry, something went wrong > > > The operation failed on one or more Metadata web service application > proxies: Taxonomy\_+q13bKzN06taIYblF...
2017/04/05
[ "https://sharepoint.stackexchange.com/questions/212419", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/66032/" ]
You are not alone, I have the same issue on my tenant right now. I raised a ticket to Microsoft and spoke to them - as of today (7-April-2017), this is an issue in their production system at the moment and is effectively a Service Outage. They are working on identifying the root cause and fix, but could take some time...
I had the same problem yesterday and this morning. I tried again this afternoon and 2 Content Types Published OK. Then I got the error again on the 3rd and 4th etc... This from the Office 365 Admin's Advisory Panel SP98120 - Content type publishing issue Updated: 2017-04-07 21:51 (UTC) Start time: 2017-04-05 19:14 (...
212,419
I was working with content types yesterday in the content type hub. I was able to publish items. This morning I can't publish things anymore. I get the following error: > > Sorry, something went wrong > > > The operation failed on one or more Metadata web service application > proxies: Taxonomy\_+q13bKzN06taIYblF...
2017/04/05
[ "https://sharepoint.stackexchange.com/questions/212419", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/66032/" ]
You are not alone, I have the same issue on my tenant right now. I raised a ticket to Microsoft and spoke to them - as of today (7-April-2017), this is an issue in their production system at the moment and is effectively a Service Outage. They are working on identifying the root cause and fix, but could take some time...
Just saw this update, hope this helps you out.. Title: Content type publishing issue User Impact: Users are receiving errors when publishing new site content types from the SharePoint Online content type hub. More info: The error received says: "The operation failed on one or more Metadata web service application pr...
250,357
I am creating a form in sharepoint where a person can request service for one or more people. Sometime the request will be for just one person and sometime it will be for multiple person. Is there any way I can add a button say if a user needs to add another person on his form then creates another set of (Fname, LName,...
2018/10/05
[ "https://sharepoint.stackexchange.com/questions/250357", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/78994/" ]
I don't think you can do that out of the box in SPOnline and Designer. If it is enabled you could easily achieve that InfoPath (or maybe PowerApps but I don't have enough production experience on the latter to be sure)
Seems similar requirement as [this thread](https://social.msdn.microsoft.com/Forums/office/en-US/b18056f2-5ce4-418b-98a3-cea9e5d60f82/jquery-clone-repeater-parentchild-association-issues-to-save-sp-list?forum=sharepointdevelopment#f2b5e49c-6890-4d8d-8456-72f8479d107e), if so, you could create custom form and save data ...
250,357
I am creating a form in sharepoint where a person can request service for one or more people. Sometime the request will be for just one person and sometime it will be for multiple person. Is there any way I can add a button say if a user needs to add another person on his form then creates another set of (Fname, LName,...
2018/10/05
[ "https://sharepoint.stackexchange.com/questions/250357", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/78994/" ]
This isn't as easy as it might sound as you really need to know how many possible items (rows) the user potentially would want to add. Think of excel, you can add a huge amount of rows to the table, but eventually you will reach the limit. When I face this kind of requirement from clients I try to split the data into ...
Seems similar requirement as [this thread](https://social.msdn.microsoft.com/Forums/office/en-US/b18056f2-5ce4-418b-98a3-cea9e5d60f82/jquery-clone-repeater-parentchild-association-issues-to-save-sp-list?forum=sharepointdevelopment#f2b5e49c-6890-4d8d-8456-72f8479d107e), if so, you could create custom form and save data ...
50,369
So I understand Rudy wanted Dexter to feel the need to connect with him on their mutual urge to killing people in the altercation happening in the final episode of Dexter Season 1. But since Dexter was hesitant towards this, Rudy could have very well threatened Dexter by letting Debra know the true nature of Dexter ins...
2016/03/18
[ "https://movies.stackexchange.com/questions/50369", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/20827/" ]
Force abilities and sensitivities are not, *Skywalker family aside*, inherited. You don't have to have force-capable parents or grandparents or ancestors to be able to use the force. As the Prequel Trilogy shows, force abilities are just a subset of having a high count of midichlorians. Jedi's normally went around, loo...
We don't know. He was, afterall, a stormtrooper. The reason he might have Force sensitivity is that in the movie, it is revealed that stormtroopers are not clones anymore, but are stolen as children. So Finn was taken from his parents at birth, and we don't know who they are, so in that respect there's just not enough ...
174,990
I'm writing a script which involves the comparison of two objects. I keep finding myself referring to this sort of test as an "identicality" check. From my preliminary research, "identicality" does not seem to qualify as a word. Also, the more I think about it, the less sense it makes to me. A single object should not ...
2014/06/04
[ "https://english.stackexchange.com/questions/174990", "https://english.stackexchange.com", "https://english.stackexchange.com/users/78274/" ]
It makes sense to refer to the "identity" of two or more objects. Of course, outside maths, this sense is usually obscured by the 'distinguishing character or personality of an individual : individuality' [Merriam-Webster] sense. I had to search quite a way on the internet for: > > A human gene that shows identity ...
**Identicalness** *is* a word and I think it's the right word for your situation. **Identity** could be used too, but is liable to be confusing due to its more common meaning of "being the same thing" as opposed to "being alike in every way".
10,235,499
I am a novice at making websites but i need some help concerning my project. I have done some research and also some analysis on how to create websites but i have a problem. I want to create a social photo sharing website in which users can upload photos from their iphones unto the website via an app. I am considering ...
2012/04/19
[ "https://Stackoverflow.com/questions/10235499", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1344227/" ]
You don't need a separate database. Your website should just be a frontend to something like a LAMP server (Linux, Apache, MySQL, PHP). You're going to need to develop your own private database API to insert and retrieve items. In your app you'll probably be making use of NSURLConnection to send asynchronus requests ...
What @Justin Amberson said is true. You may check out this tutorial to give you an idea how to build it for your app. I hope that helps you. <http://www.raywenderlich.com/2941/how-to-write-a-simple-phpmysql-web-service-for-an-ios-app>
10,780,547
I am new to **OpenCV**. I would like to know if we can compare two images (one of the images made by *photoshop* i.e source image and the otherone will be taken from the camera) and find if they are same or not. I tried to compare the images using template matching. It does not work. Can you tell me what are the other ...
2012/05/28
[ "https://Stackoverflow.com/questions/10780547", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1421108/" ]
Comparison of images can be done in different ways depending on which purpose you have in mind: * if you just want to compare whether two images are approximately equal (with a few luminance differences), but with the same perspective and camera view, you can simply compute a pixel-to-pixel squared difference, per ...
You should try SIFT. You apply SIFT to your marker (image saved in memory) and you get some descriptors (points robust to be recognized). Then you can use FAST algorithm with the camera frames in order to find the coprrespondent keypoints of the marker in the camera image. You have many threads about this topic: [How ...
220,223
I came across this [website](https://forum.thefreedictionary.com/postst152124_doing-something-vs-by-doing-something.aspx). One member says this: "*If it (present participle) comes after the main phrase, that is what he did afterwards.* " And gives example: > > a- Tom took off his hat, ***putting*** it on the table. ...
2019/08/03
[ "https://ell.stackexchange.com/questions/220223", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/79626/" ]
**Yes, the present participle after a main clause can indicate what happened next, especially when the actions are closely related.** Generally, the present participle after the main clause gives us information about some aspects of the main clause: **purpose** (why the action was taken), **method** (how the action w...
The Question is, **" even though "what happened next" wasn't the result of the main action as in sentence A?** > > a- **Tom took off his hat, putting it on the table**. > > > Although this sounds wrong as it stands, this is **because it is not complete** [Note 1] if we add more to the sentence it begins to sound ...
28,366,901
Will this anti cheat technique work for a multiplayer game using private servers (publicly unknown executable): When the client starts the game it will auto update itself daily (using a launcher). The Servers will update themselves, too. Unless there is a real patch, the update only consists of changes in the gameobj...
2015/02/06
[ "https://Stackoverflow.com/questions/28366901", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1879285/" ]
Client-side technological arms race is a completely wrong way to do this. You will *never* be better or faster than a bunch of kids that have too much time to spare. You cannot compete with a horde of attackers that have no costs (other than not doing their homework) while your actions cost you both time and money. Thi...
I don't know whether such a system would be successful at avoiding cheating, but I would have concerns regarding producing and maintaining such system. For example, you say > > This is done using an automated system that auto generates and > randomizes (C++) classes. Maybe it could also add fake objects to the > h...
455,705
I'm developing a web app and I need to be able to get incoming traffic from 3rd party services I use. This is a classic webhooks situation: I send a request with a return address and receive the response (via HTTP) some time later to the given address. The simple solution would be to provide my external IP address and...
2012/12/06
[ "https://serverfault.com/questions/455705", "https://serverfault.com", "https://serverfault.com/users/8084/" ]
You're better off just retrieving the messages in one connection, not making an outbound that will cause the foreign system to initiate an inbound connection. Adding a third server for the daemon you mentioned simply increases the complexity and makes it more likely to break.
If you have control over the machine in your local network and some remote machine you could use [stunnel](https://www.stunnel.org/index.html)
455,705
I'm developing a web app and I need to be able to get incoming traffic from 3rd party services I use. This is a classic webhooks situation: I send a request with a return address and receive the response (via HTTP) some time later to the given address. The simple solution would be to provide my external IP address and...
2012/12/06
[ "https://serverfault.com/questions/455705", "https://serverfault.com", "https://serverfault.com/users/8084/" ]
Finally found what I was looking for! There's a cool project called [localtunnel](http://progrium.com/localtunnel/) which does just that: expose your local web server through a mediator server using an SSH tunnel.
If you have control over the machine in your local network and some remote machine you could use [stunnel](https://www.stunnel.org/index.html)
8,616
As I discuss in [this question](https://hinduism.stackexchange.com/q/3193/36), by far the most popular school of Hindu philosophy is the Vedanta school, which bases its tenets on the doctrines laid out in the Brahma Sutras, a work by the sage Vyasa which summarizes and systematizes the philosophical teachings of the Up...
2015/09/17
[ "https://hinduism.stackexchange.com/questions/8616", "https://hinduism.stackexchange.com", "https://hinduism.stackexchange.com/users/36/" ]
**Pakshi** in this context is **not bird**, but **Sukshma Sariram**. **Swami Paramarthananda Saraswati**, a direct disciple of **Swami Dayananda Saraswati of Arsha Vidya Gurukulam** has taught Brihadaranyaka Upanishad with Sankaracharya Bhashya. The transcript of his classes on Brihadaranyaka Upanishad can be found [he...
Sankara makes no reference to the *Rig Veda* in his comments to these verses, however, both Swami Nikhilananda's and Swami Madhavananda's separate translations footnotes the three *Rig Veda* verses you mentioned, but no footnote on verse 18. Both Swamis Madhavananda and Nikhilananda in their separate translations refe...
39,862,122
I have no idea what is the issue with it, today I've used it and it was working just fine, now I am trying to open it but it simply cannot open. There are no errors or such. I've searched everything everywhere no solution so far. The only thing I found was to add enviromental variable and so I did. But the same thing a...
2016/10/04
[ "https://Stackoverflow.com/questions/39862122", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Try "C:\Users\userX.AndroidStudio2.3" open "studio64.exe.vmoptions" with notepad and delete vm options (make this file empty) This worked for me.
Though the question was raised long back but posting the answer to help someone stuck in the recent days, as I was able to resolve the same issue by refer to the solution provided in Android Developer Portal, [Studio doesn't start after upgrade](https://developer.android.com/studio/known-issues#studio-config-directori...
353,777
Internet Explorer 8 freezes on me a lot and I'm tired of reloading the ten tabs I have open instead of just closing and re-opening the one tab that froze. I can't use Task Manager because it closes every page open. WinPatrol doesn't help either. Is there a program or something I could use to **force**-close one tab wh...
2011/11/04
[ "https://superuser.com/questions/353777", "https://superuser.com", "https://superuser.com/users/94953/" ]
No. The reason the tab is frozen is that it is unable to perform operations, including cleaning up such that the tab can be closed without harming the other objects in the same container.
You can upgrade to IE 9 which will kill individual tabs that hang. [Link](https://web.archive.org/web/20151121060942/http://blogs.msdn.com:80/b/ie/archive/2011/04/19/hang-resistance-in-ie9.aspx)
397,708
Trying to connect to the PostGIS DB for RiverGIS fails with Couldn't connect to river database: var@localhost Please, check you database connection settings! This happens despite the DB being connected to/loaded (see screenshot below) and already having loaded a layer from the DB into the currently open project which...
2021/05/25
[ "https://gis.stackexchange.com/questions/397708", "https://gis.stackexchange.com", "https://gis.stackexchange.com/users/184083/" ]
According to these documentations - <http://rivergis.com/requirements.html> - the database name should be rivergis. Your settings have localhost as the server, var as the database and rivergis as the user. Try switching database to rivergis, and using postgres as a username if you're still having issues.
I faced the same issue and solved it by editing the connection configuration: * from menu Layer > Add layer > Add PostGIS layers * select the connection (rivergis in this case), fill the highlighted panel in the picture below and click on "Convert to configuration". [![enter image description here](https://i.stack.im...
34,700
I’ve seen a few “behind the scenes” clips in which you can hear a lot of background noise not pertinent with the shooting. Recently on many sites there’s a clip of a sex scene; you can hear the director talking, giving instructions, while (quite distorted) music is played. I’m involved in audio production and I’m wonde...
2015/05/24
[ "https://movies.stackexchange.com/questions/34700", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/20927/" ]
Many shots where there is no specific dialogue will be shot "[MOS](http://en.wikipedia.org/wiki/MOS_%28filmmaking%29)" - without sound running. > > MOS is a standard filmmaking jargon abbreviation, used in production reports to indicate an associated film segment has no synchronous audio track. It stands for "motor o...
For interior sets some effort will be made to exclude extraneous background noise and sound recording equipment will be set of to focus on dialogue, for example by using boom mics just out of shot. Even then most of the incidental sounds on the actual movie soundtrack will be added in post production by [foley artist...
34,700
I’ve seen a few “behind the scenes” clips in which you can hear a lot of background noise not pertinent with the shooting. Recently on many sites there’s a clip of a sex scene; you can hear the director talking, giving instructions, while (quite distorted) music is played. I’m involved in audio production and I’m wonde...
2015/05/24
[ "https://movies.stackexchange.com/questions/34700", "https://movies.stackexchange.com", "https://movies.stackexchange.com/users/20927/" ]
I agree with @Catija: ADR is very common with action, drama, and musicals because it is far easier (and less expensive) to rerecord the dialog in a recording booth than it is to get dozens to hundreds of people, who are near the shot, to be absolutely silent or to remove the sound in post production. The only genre wh...
For interior sets some effort will be made to exclude extraneous background noise and sound recording equipment will be set of to focus on dialogue, for example by using boom mics just out of shot. Even then most of the incidental sounds on the actual movie soundtrack will be added in post production by [foley artist...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
I do not confirm most of the answers! 1. They ignore morale 2. They ignore the fact that Stalingrad might not have been happened To 1: Nazigermany was build on a broken nation. The people had big problems and Hitler gave them very effective solutions. (Not to say he was a hero, don't get me wrong. But he did right i...
I like the answer by Royal Canadian Bandit. But there is also yet another twist that somehow nobody considered. If Moscow had been taken, it's (almost ?) given that Hitler would have come to visit it (and specifically the Kremlin) - it'd be a big milestone, and even without other reasons, the propaganda machine must ha...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
Moscow wouldn't have made much difference. Remember that Napoleon 'captured' Moscow, and it didn't do him any good at all. Moscow was just a symbol. It was a potent symbol, but it was just a symbol. What Germany needed from Russia was the natural resources further south, especially oil from the Caucasus. In the end, H...
I like the answer by Royal Canadian Bandit. But there is also yet another twist that somehow nobody considered. If Moscow had been taken, it's (almost ?) given that Hitler would have come to visit it (and specifically the Kremlin) - it'd be a big milestone, and even without other reasons, the propaganda machine must ha...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
Moscow wouldn't have made much difference. Remember that Napoleon 'captured' Moscow, and it didn't do him any good at all. Moscow was just a symbol. It was a potent symbol, but it was just a symbol. What Germany needed from Russia was the natural resources further south, especially oil from the Caucasus. In the end, H...
Surely, capturing Moscow would have made little difference. At this point, the soviets knew what Hitler was about. Why would you surrender, knowing that the future would be bleak for you at this point - if you even had one, let alone the worry of what would become of your family? Why would you surrender then, just beca...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
Capturing Moscow would not have helped the German army much. The Soviets would have fought to death like they did at Stalingrad. They were under heavy pressure by their own state. The Soviets were not allowed to flee the battle. This is something we see a lot in wars but discipline was very strict at the moment of the ...
I like the answer by Royal Canadian Bandit. But there is also yet another twist that somehow nobody considered. If Moscow had been taken, it's (almost ?) given that Hitler would have come to visit it (and specifically the Kremlin) - it'd be a big milestone, and even without other reasons, the propaganda machine must ha...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
The military and strategic benefit to Germany would probably be minimal. If anything, it might have hastened Germany's defeat. * The USSR had contingency plans to evacuate Moscow. In fact, most military and civilian officials [evacuated the city](http://ww2db.com/battle_spec.php?battle_id=37) between 14-28 October 194...
Moscow wouldn't have made much difference. Remember that Napoleon 'captured' Moscow, and it didn't do him any good at all. Moscow was just a symbol. It was a potent symbol, but it was just a symbol. What Germany needed from Russia was the natural resources further south, especially oil from the Caucasus. In the end, H...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
The military and strategic benefit to Germany would probably be minimal. If anything, it might have hastened Germany's defeat. * The USSR had contingency plans to evacuate Moscow. In fact, most military and civilian officials [evacuated the city](http://ww2db.com/battle_spec.php?battle_id=37) between 14-28 October 194...
It's uncertain what would have happened. On the one hand, Moscow was (and still is) effectively the hub of the Soviet transportation system: the vast majority of road and rail routes pass through it. Capturing Moscow, or even besieging it, would greatly hamper the Soviet ability to move troops and supplies. Having sol...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
It's uncertain what would have happened. On the one hand, Moscow was (and still is) effectively the hub of the Soviet transportation system: the vast majority of road and rail routes pass through it. Capturing Moscow, or even besieging it, would greatly hamper the Soviet ability to move troops and supplies. Having sol...
I do not confirm most of the answers! 1. They ignore morale 2. They ignore the fact that Stalingrad might not have been happened To 1: Nazigermany was build on a broken nation. The people had big problems and Hitler gave them very effective solutions. (Not to say he was a hero, don't get me wrong. But he did right i...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
Capturing Moscow would not have helped the German army much. The Soviets would have fought to death like they did at Stalingrad. They were under heavy pressure by their own state. The Soviets were not allowed to flee the battle. This is something we see a lot in wars but discipline was very strict at the moment of the ...
Surely, capturing Moscow would have made little difference. At this point, the soviets knew what Hitler was about. Why would you surrender, knowing that the future would be bleak for you at this point - if you even had one, let alone the worry of what would become of your family? Why would you surrender then, just beca...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
It's uncertain what would have happened. On the one hand, Moscow was (and still is) effectively the hub of the Soviet transportation system: the vast majority of road and rail routes pass through it. Capturing Moscow, or even besieging it, would greatly hamper the Soviet ability to move troops and supplies. Having sol...
I like the answer by Royal Canadian Bandit. But there is also yet another twist that somehow nobody considered. If Moscow had been taken, it's (almost ?) given that Hitler would have come to visit it (and specifically the Kremlin) - it'd be a big milestone, and even without other reasons, the propaganda machine must ha...
3,753
During [Operation Barbarossa](http://en.wikipedia.org/wiki/Operation_Barbarossa), the Germans came dangerously close to capturing Moscow - in fact they were [within 20km of the city](http://en.wikipedia.org/wiki/Battle_of_Moscow), and some could even see its buildings. The failure to take Moscow is often considered a c...
2014/11/07
[ "https://worldbuilding.stackexchange.com/questions/3753", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/77/" ]
It's uncertain what would have happened. On the one hand, Moscow was (and still is) effectively the hub of the Soviet transportation system: the vast majority of road and rail routes pass through it. Capturing Moscow, or even besieging it, would greatly hamper the Soviet ability to move troops and supplies. Having sol...
Surely, capturing Moscow would have made little difference. At this point, the soviets knew what Hitler was about. Why would you surrender, knowing that the future would be bleak for you at this point - if you even had one, let alone the worry of what would become of your family? Why would you surrender then, just beca...
269,872
What programming language introduced the word "field" to describe what we might call a member variable in C++? What modern programming languages carry on this usage as the preferred term? I've seen this word used in both a C and C++ context but it always feels a bit foreign. I don't have a copy of the C standard, but ...
2015/01/13
[ "https://softwareengineering.stackexchange.com/questions/269872", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/128967/" ]
*Field* is used in Eiffel, Java, C#, and VB.NET. In Smalltalk and some of its descendants and languages inspired by it (e.g. Ruby), it is called *instance variable*, in Self and languages inspired by it (Newspeak, Io, Korz), it is called *slot*. Simula and Python call it *attribute* (which means something else in C# an...
The concept / use of field, a logical part of any data, has been with us since at least punched cards/tape. These fields were typically fixed length. All of the first languages probably used the term since they were processing punched cards / tape. I say 'probably' because I used 'All' and did not program using them a...
1,050,473
Does anyone know of an ASP.NET guide to implementing OpenID and what information can be returned by the OpenID provider? I understand you can get the email address but if someone logs in with their Google OpenID can you get access to their addresses?
2009/06/26
[ "https://Stackoverflow.com/questions/1050473", "https://Stackoverflow.com", "https://Stackoverflow.com/users/103504/" ]
Yes, OpenID Providers can and often do offer 'claims' or 'attributes' about the people logging in if the OpenID relying party requests them and the user consents to these data being shared. If you use [DotNetOpenAuth](http://www.dotnetopenauth.net) for your ASP.NET OpenID library, it has built-in support for several w...
This should help: <http://www.eggheadcafe.com/tutorials/aspnet/4b3c7c9b-fe80-4e6e-a34e-0e9efed5c575/integrate-openid-authenti.aspx> Or a "simpler" one: <http://madskristensen.net/post/OpenID-implementation-in-Csharp-and-ASPNET.aspx>
1,050,473
Does anyone know of an ASP.NET guide to implementing OpenID and what information can be returned by the OpenID provider? I understand you can get the email address but if someone logs in with their Google OpenID can you get access to their addresses?
2009/06/26
[ "https://Stackoverflow.com/questions/1050473", "https://Stackoverflow.com", "https://Stackoverflow.com/users/103504/" ]
Yes, OpenID Providers can and often do offer 'claims' or 'attributes' about the people logging in if the OpenID relying party requests them and the user consents to these data being shared. If you use [DotNetOpenAuth](http://www.dotnetopenauth.net) for your ASP.NET OpenID library, it has built-in support for several w...
[Document describes](http://code.google.com/apis/accounts/docs/OpenID.html) how to implement Google login into your web application and Third-party web sites and let you aware how OpenID authentication works. [Here](http://www.fryan0911.com/2010/09/use-google-openid-authentication-in.html) is the step-by-step process ...
1,050,473
Does anyone know of an ASP.NET guide to implementing OpenID and what information can be returned by the OpenID provider? I understand you can get the email address but if someone logs in with their Google OpenID can you get access to their addresses?
2009/06/26
[ "https://Stackoverflow.com/questions/1050473", "https://Stackoverflow.com", "https://Stackoverflow.com/users/103504/" ]
Yes, OpenID Providers can and often do offer 'claims' or 'attributes' about the people logging in if the OpenID relying party requests them and the user consents to these data being shared. If you use [DotNetOpenAuth](http://www.dotnetopenauth.net) for your ASP.NET OpenID library, it has built-in support for several w...
I just blogged about this here. this shows how you can get extra information from these providers <http://blogs.msdn.com/b/webdev/archive/2012/08/22/extra-information-from-oauth-openid-provider.aspx>
24,509
> > **Possible Duplicate:** > > [How come 32.5 = 31.5?](https://math.stackexchange.com/questions/287/how-come-32-5-31-5) > > > ![Image](https://i.stack.imgur.com/B5cCT.gif)
2011/03/01
[ "https://math.stackexchange.com/questions/24509", "https://math.stackexchange.com", "https://math.stackexchange.com/users/6335/" ]
Eye trick! Look at the angles formed where the red and green triangle meet.
It isn't true. See the [Wikipedia page](http://en.wikipedia.org/wiki/Missing_square_puzzle) about this puzzle.
24,509
> > **Possible Duplicate:** > > [How come 32.5 = 31.5?](https://math.stackexchange.com/questions/287/how-come-32-5-31-5) > > > ![Image](https://i.stack.imgur.com/B5cCT.gif)
2011/03/01
[ "https://math.stackexchange.com/questions/24509", "https://math.stackexchange.com", "https://math.stackexchange.com/users/6335/" ]
Eye trick! Look at the angles formed where the red and green triangle meet.
Take your credit card, driver's license, or some other readily available straightedge and put it against the hypotenuse. You'll find the composite shape is not a triangle, but a cleverly disguised irregular quadrilateral. The better, more mathy answers made sense once I got my brain away from the idea that there were t...
27,576,935
I am going through a list of algorithm that I found and try to implement them for learning purpose. Right now I am coding K mean and is confused in the following. 1. How do you know how many cluster there is in the original data set 2. Is there any particular format that I have follow in choosing the initial cluster c...
2014/12/20
[ "https://Stackoverflow.com/questions/27576935", "https://Stackoverflow.com", "https://Stackoverflow.com/users/4379891/" ]
With k-means you are minimizing a sum of squared distances. One approach is to try all plausible values of k. As k increases the sum of squared distances should decrease, but if you plot the result you may see that the sum of squared distances decreases quite sharply up to some value of k, and then much more slowly aft...
In the standard K-Means the K value is chosen by you, sometimes based on the problem itself ( when you know how many classes exists OR how many classes you want to exists) other times a "more or less" random value. Typically the first iteration consists of randomly selecting K points from the dataset to serve as centro...
11,749
I wonder why Arduino doesn't run at 20 MHz, the frequency the AVR is specified for. Now, running at 16 MHz, we're wasting 20% performance for nothing. I don't think there are *any* implications when you replace the 16 MHz resonator with a 20 MHz type, with probably the sole exception for the baudrate in the bootloade...
2015/05/12
[ "https://arduino.stackexchange.com/questions/11749", "https://arduino.stackexchange.com", "https://arduino.stackexchange.com/users/6834/" ]
There's no hardware reason (as far as I'm aware) that you couldn't run a suitable Arduino at 20 MHz. You'd run into minor timing inaccuracies in software though, as the standard Arduino configuration apparently works best if the clock speed is either 8 or 16MHz. I suspect this is largely for historical reasons. Early ...
You can, and I do. It's not technically an Arduino anymore, I guess. I made my own board, replacing a resonator on a board will require some fine soldering, but it is definitely possible. There are some gotchas: Anything time-related (e.g. millis() ) will be run faster than is should - 25% more millis() per second. A...
35,185
Does the dedication "To my beloved John" need a comma after "beloved"?
2011/07/22
[ "https://english.stackexchange.com/questions/35185", "https://english.stackexchange.com", "https://english.stackexchange.com/users/7758/" ]
It depends on how you want the dedication to read. There are two main options: > > To my beloved, John > > > Here, *beloved* is a noun. This says that John is equivalent to your beloved. A fine point to this is that this implies that you have only one "beloved". If you happen to have multiple beloveds (or multipl...
The answer would be clearer with a complete sentence, but it is an introductory clause, and therefore needs a comma after 'John', but not after 'beloved'. Here, 'beloved' is an adjective, not a noun synonomous with 'John'.
35,185
Does the dedication "To my beloved John" need a comma after "beloved"?
2011/07/22
[ "https://english.stackexchange.com/questions/35185", "https://english.stackexchange.com", "https://english.stackexchange.com/users/7758/" ]
The answer would be clearer with a complete sentence, but it is an introductory clause, and therefore needs a comma after 'John', but not after 'beloved'. Here, 'beloved' is an adjective, not a noun synonomous with 'John'.
Yeah it depends on the usage. But, frankly, in a book dedication, if you REALLLLY wanted to say John was your beloved, you would be more likely to say To John, my beloved, rather than To my beloved, John. I mean in the subtle ectoplasm of linguistic nuance, in the second instance, John is almost an afterthought. Like, ...
35,185
Does the dedication "To my beloved John" need a comma after "beloved"?
2011/07/22
[ "https://english.stackexchange.com/questions/35185", "https://english.stackexchange.com", "https://english.stackexchange.com/users/7758/" ]
It depends on how you want the dedication to read. There are two main options: > > To my beloved, John > > > Here, *beloved* is a noun. This says that John is equivalent to your beloved. A fine point to this is that this implies that you have only one "beloved". If you happen to have multiple beloveds (or multipl...
Yeah it depends on the usage. But, frankly, in a book dedication, if you REALLLLY wanted to say John was your beloved, you would be more likely to say To John, my beloved, rather than To my beloved, John. I mean in the subtle ectoplasm of linguistic nuance, in the second instance, John is almost an afterthought. Like, ...
176,829
My site resolves and loads much faster when I type www.mydomain.com in my browser compared to when I just type mydomain.com. To be clear, the site loads without typing the www prefix, it is just several seconds longer before the page begins to load when I do that. What might cause this slowness resolving the url witho...
2010/08/31
[ "https://serverfault.com/questions/176829", "https://serverfault.com", "https://serverfault.com/users/-1/" ]
You should definitely check your .htaccess file. There may be a rule that could be the culprit. Would you mind listing it here?
This should not happen. 1. Are you sure it is slower? 2. Have you logged non-cached times in Firebug? 3. Are you using any rewriting rules?
176,829
My site resolves and loads much faster when I type www.mydomain.com in my browser compared to when I just type mydomain.com. To be clear, the site loads without typing the www prefix, it is just several seconds longer before the page begins to load when I do that. What might cause this slowness resolving the url witho...
2010/08/31
[ "https://serverfault.com/questions/176829", "https://serverfault.com", "https://serverfault.com/users/-1/" ]
You should definitely check your .htaccess file. There may be a rule that could be the culprit. Would you mind listing it here?
This turned out to be a difference in my DNS internal versus external network config. I realized this when I saw that outside name resolution for the missing www was much faster than internal. Thanks all!
34,186
Most people seem to focus solely on one vs. the other, but I'd imagine many people want both. Can you train for both of them adequately? For example, train to get bigger and maximize muscle size; but also train to get stronger and be able to lift more weight and have more overall power too. I follow my own routines wh...
2017/05/27
[ "https://fitness.stackexchange.com/questions/34186", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/-1/" ]
Muscle size **weakly** correlates to muscle strength. See [this](http://onlinelibrary.wiley.com/doi/10.1111/j.1475-097X.1985.tb00590.x/full) study that compares size to strength in leg muscles and [this](http://journals.lww.com/acsm-essr/Abstract/2003/01000/Role_of_Body_Size_in_the_Relation_Between_Muscle.3.aspx) study...
Muscle mass corresponds to muscle strength. This is they way it is and has always been. Now, are they are equivalent? No. You want to hit the sweet spot, between muscle strength and hypertrophy? Conventional wisdom tells us, it is doing 3/4 sets of 5-8 repetitions, to failure. Have you reached 7-8 repetitions in an ex...
34,186
Most people seem to focus solely on one vs. the other, but I'd imagine many people want both. Can you train for both of them adequately? For example, train to get bigger and maximize muscle size; but also train to get stronger and be able to lift more weight and have more overall power too. I follow my own routines wh...
2017/05/27
[ "https://fitness.stackexchange.com/questions/34186", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/-1/" ]
Size comes with having strength in the hypertrophy rep range. Focus on building strength using very heavy weight compound lifts with 10 sets of 2-4 reps, and sometimes singles to get maximum strength, so that when you workout for size, you will be able to lift much heavier weight, in the 6-10 rep range. Anyone that c...
Muscle mass corresponds to muscle strength. This is they way it is and has always been. Now, are they are equivalent? No. You want to hit the sweet spot, between muscle strength and hypertrophy? Conventional wisdom tells us, it is doing 3/4 sets of 5-8 repetitions, to failure. Have you reached 7-8 repetitions in an ex...
34,186
Most people seem to focus solely on one vs. the other, but I'd imagine many people want both. Can you train for both of them adequately? For example, train to get bigger and maximize muscle size; but also train to get stronger and be able to lift more weight and have more overall power too. I follow my own routines wh...
2017/05/27
[ "https://fitness.stackexchange.com/questions/34186", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/-1/" ]
Muscle size **weakly** correlates to muscle strength. See [this](http://onlinelibrary.wiley.com/doi/10.1111/j.1475-097X.1985.tb00590.x/full) study that compares size to strength in leg muscles and [this](http://journals.lww.com/acsm-essr/Abstract/2003/01000/Role_of_Body_Size_in_the_Relation_Between_Muscle.3.aspx) study...
Size comes with having strength in the hypertrophy rep range. Focus on building strength using very heavy weight compound lifts with 10 sets of 2-4 reps, and sometimes singles to get maximum strength, so that when you workout for size, you will be able to lift much heavier weight, in the 6-10 rep range. Anyone that c...
68,875,892
Context: while compiling some C code compilers may show high RAM consumption. Preliminary investigation shows that (at least some) C compilers do not immediately free "further unused" memories: despite that such (previously allocated) memories are not used anymore, they are still kept in the RAM. The C compiler continu...
2021/08/21
[ "https://Stackoverflow.com/questions/68875892", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1778275/" ]
I don't know where you get your analysis from. Most parts like the abstract syntax tree is kept because it is used in all different passes. It might be that some, especially simple compilers don't free stuff because it's not considered necessary for a C compiler. It's a one shot compilation unit operation and than the...
> > allocating more memories in the RAM, until it reaches OOM (out of > memory). > > > None of the compilers I use ever run out of memory. Please give an example of such behaviour. If you are an Arduino user and think about the code which will not fit into the memory - it is not the problem of the compiler, only ...
34,997
I summon [World Breaker](http://gatherer.wizards.com/Pages/Search/Default.aspx?name=%2b%5bWorld%20Breaker%5d) and want to destroy my opponent's land. But my opponent thinks I should exile one of my own lands, as cost to summon a World Breaker. Whose lands am I allowed or required to exile in this case?
2017/04/22
[ "https://boardgames.stackexchange.com/questions/34997", "https://boardgames.stackexchange.com", "https://boardgames.stackexchange.com/users/14669/" ]
Worldbreaker's cast trigger says: > > When you cast World Breaker, exile target artifact, enchantment, or land. > > > So, when you cast World Breaker, you pick a target. It doesn't have to be one of your artifacts, enchantments or lands. However, for the return ability: > > {2}{C}, Sacrifice a land: Return Wo...
If any effect/ability states "target (insert card type here)", it can be any permanent of that type.
2,473,374
When navigating to previous calls/events during debugging with IntelliTrace, I can't see a snapshot of the value of locally-defined variables. When hovering with the mouse I get the message "Intellitrace data has not been collected". Does anyone know why?
2010/03/18
[ "https://Stackoverflow.com/questions/2473374", "https://Stackoverflow.com", "https://Stackoverflow.com/users/171134/" ]
The Intellitrace team covered this a bit in one of their blog entries. Here is the link (it's in the comment section) * <http://blogs.msdn.com/ianhu/archive/2009/11/16/intellitrace-itrace-files.aspx> The short version though is that collecting all local variables was too much of a performance hit. Instead they only s...
Note that a later blog post from the same blogger - <http://blogs.msdn.com/ianhu/archive/2010/03/16/intellitrace-what-we-collect.aspx> - expanded quite on the limitations and how you can get around them somewhat.
304,980
I've been running some tests on USB charges from different manufacturers checking voltagem and current. I noticed that some usb charges do deliver 4.9 to 5.2 volts and from 500mA to 2.4A. My manufacturer's charger (Apple) delivers 1000mA @ 5.05v to my phone. My questions are: * If I use a 600mA @ 4.96v could reduc...
2017/05/12
[ "https://electronics.stackexchange.com/questions/304980", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/148976/" ]
To summarize the question, you want to get a analog signal across isolation. The bandwidth is 1 Hz, and you need about 1 part in 32k accuracy. This needs to be done digitally. Analog methods good to 15 bits will be hard to find, and expensive if you do. This low bandwidth is well within the range of delta-sigma A/D c...
You should probably post more info about your scenario, to give us more hooks into your issues. You don't even tell us what you need to amplify, so it seems like you need an analog isolator, not an isolation amp, per se. You haven't mentioned specs for accuracy, either. Isolators that are rail to rail might be problem...
304,980
I've been running some tests on USB charges from different manufacturers checking voltagem and current. I noticed that some usb charges do deliver 4.9 to 5.2 volts and from 500mA to 2.4A. My manufacturer's charger (Apple) delivers 1000mA @ 5.05v to my phone. My questions are: * If I use a 600mA @ 4.96v could reduc...
2017/05/12
[ "https://electronics.stackexchange.com/questions/304980", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/148976/" ]
You should probably post more info about your scenario, to give us more hooks into your issues. You don't even tell us what you need to amplify, so it seems like you need an analog isolator, not an isolation amp, per se. You haven't mentioned specs for accuracy, either. Isolators that are rail to rail might be problem...
Consider using a linearized optocoupler - this is specifically what they're for. Since you're short on space you'll want one of the SMD packages like: * [LOC112](https://www.digikey.ca/product-detail/en/ixys-integrated-circuits-division/LOC112S/LOC112S-ND/654965) (or 110 or 111) * [IL300](https://www.digikey.ca/produc...
304,980
I've been running some tests on USB charges from different manufacturers checking voltagem and current. I noticed that some usb charges do deliver 4.9 to 5.2 volts and from 500mA to 2.4A. My manufacturer's charger (Apple) delivers 1000mA @ 5.05v to my phone. My questions are: * If I use a 600mA @ 4.96v could reduc...
2017/05/12
[ "https://electronics.stackexchange.com/questions/304980", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/148976/" ]
To summarize the question, you want to get a analog signal across isolation. The bandwidth is 1 Hz, and you need about 1 part in 32k accuracy. This needs to be done digitally. Analog methods good to 15 bits will be hard to find, and expensive if you do. This low bandwidth is well within the range of delta-sigma A/D c...
Consider using a linearized optocoupler - this is specifically what they're for. Since you're short on space you'll want one of the SMD packages like: * [LOC112](https://www.digikey.ca/product-detail/en/ixys-integrated-circuits-division/LOC112S/LOC112S-ND/654965) (or 110 or 111) * [IL300](https://www.digikey.ca/produc...
371,011
I am trying to understand the functionality of a circuit found in [TIDA-00121](http://www.ti.com/tool/TIDA-00121) (you can download the design file from [here](http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=tidu220&fileType=pdf)) [![microcontroller interface](https://i.stack.imgur.com/nUCZ2.p...
2018/04/27
[ "https://electronics.stackexchange.com/questions/371011", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/69076/" ]
> > What is the role of the pnp transistor network? > > > [![enter image description here](https://i.stack.imgur.com/U1wVL.png)](https://i.stack.imgur.com/U1wVL.png) It's a differential voltage to current converter followed by a load (R34 and R35). The voltage between P+ and P- sets a voltage across R31. This (mi...
> > I'm still confused on the purpose of using this circuit. I thought that the connection of the mosfet's internal diode (Q1) is the same as grounding the solar panel(voltage read wille be equal to the panel's voltage minus Q1's diode voltage drop). > > > That is true when the system is operating, but the system ...
483,301
The applications in question are: * nUnit 2.6.1: "NUnit requires .NET 2.0, .NET, 4.0 or Mono to be installed as a prerequisite." * PowerCommands for VS2008: "Please install .NET framework 3.5" The versions of .NET I currently have on my system are: * 3.5.1 (Windows 7 feature) * Compact framework 2.0 SP2 * Compact fr...
2012/10/04
[ "https://superuser.com/questions/483301", "https://superuser.com", "https://superuser.com/users/89355/" ]
I had the same error installing NUnit 2.6.0 on Windows 7, despite the fact that I have all the .NET Framework versions up to 4.0 installed (1.0, 1.1, 2.0, 3.0, 3.5, 4.0). I got past the error message by running the installer with administrator privileges (Right click > Run as admin).
I rather suggest you properly run a windows update to fix the problem. Windows 7 are the best reliable built-in .NET framework 3.5 or even higher. So, try updating your system (if the update really works) and you will see it working.
483,301
The applications in question are: * nUnit 2.6.1: "NUnit requires .NET 2.0, .NET, 4.0 or Mono to be installed as a prerequisite." * PowerCommands for VS2008: "Please install .NET framework 3.5" The versions of .NET I currently have on my system are: * 3.5.1 (Windows 7 feature) * Compact framework 2.0 SP2 * Compact fr...
2012/10/04
[ "https://superuser.com/questions/483301", "https://superuser.com", "https://superuser.com/users/89355/" ]
I too faced same problem, to solve what I did is Go to RUN -> CMD -> Open commandPrompt with 'Run As Administrator' change the directory path to your Nunit location ex: >D:\softwares now type the Nuint complete name with extensions ex: D:\softwares> NUnit-2.6.3.msi , hit ENTER You will be prompted with s...
I had the same error installing NUnit 2.6.0 on Windows 7, despite the fact that I have all the .NET Framework versions up to 4.0 installed (1.0, 1.1, 2.0, 3.0, 3.5, 4.0). I got past the error message by running the installer with administrator privileges (Right click > Run as admin).
483,301
The applications in question are: * nUnit 2.6.1: "NUnit requires .NET 2.0, .NET, 4.0 or Mono to be installed as a prerequisite." * PowerCommands for VS2008: "Please install .NET framework 3.5" The versions of .NET I currently have on my system are: * 3.5.1 (Windows 7 feature) * Compact framework 2.0 SP2 * Compact fr...
2012/10/04
[ "https://superuser.com/questions/483301", "https://superuser.com", "https://superuser.com/users/89355/" ]
I too faced same problem, to solve what I did is Go to RUN -> CMD -> Open commandPrompt with 'Run As Administrator' change the directory path to your Nunit location ex: >D:\softwares now type the Nuint complete name with extensions ex: D:\softwares> NUnit-2.6.3.msi , hit ENTER You will be prompted with s...
I rather suggest you properly run a windows update to fix the problem. Windows 7 are the best reliable built-in .NET framework 3.5 or even higher. So, try updating your system (if the update really works) and you will see it working.
119,247
I'm confused about which one is correct : **well exploit** or **exploit well** and what is the rule ? I wanted to use it in the following sentence: > > the people didn't exploit well the resources > > > thank you in advance :)
2017/02/12
[ "https://ell.stackexchange.com/questions/119247", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/40424/" ]
(A short comment first: I'd use the generic "People" rather than "The people.") The general rule says that adverbials should come after objects, so a more correct sentence would be: * People did not exploit the resources **well**. "well" is quite a light adverb and perhaps a better one should be found for your sente...
I think the sentence should be phrased > > the people didn't exploit the resources very well. > > > since you are trying to describe how much advantage was taken from the resources. The equivalent would be > > the resources were not well exploited. > > >
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
Questions concerning heterodox schools of thought should be perfectly acceptable. If we are to assume that economics is an objective discipline with methodologies driven towards positive instead of normative truths, then heterodox school questions should be fine. However, I do think someone asking a heterodox school qu...
There's no place for it during the private beta. Such questions are magnets for cranks. The more crank posts we have, the harder it will be to attract experts. And building a community of experts is crucial for the private beta. I want a site for which I can proudly send private beta invitations to my economist colleag...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
Frankly, I think the best argument *against* heterodoxy in the ***private* beta** stage is that questions of that nature will--in all likelihood--simply go *unanswered*, left to rot during a period when high *percentage-answered* and *answers-per-question* stats matter most. Now, just to clarify things a little, when ...
There's no place for it during the private beta. Such questions are magnets for cranks. The more crank posts we have, the harder it will be to attract experts. And building a community of experts is crucial for the private beta. I want a site for which I can proudly send private beta invitations to my economist colleag...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
I think we must distinguish between hetrodoxy and crankery. We should be open to all points of view that actually try to understand economic phenomena. We should be strict against conspiracy theories and attempt to misuse this site to propagate sects or carry out sectarian debates instead of asking and answering concre...
There's no place for it during the private beta. Such questions are magnets for cranks. The more crank posts we have, the harder it will be to attract experts. And building a community of experts is crucial for the private beta. I want a site for which I can proudly send private beta invitations to my economist colleag...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
I think all schools should be welcomed, but that does not mean that one can be non scientific, e.g., why wouldn't neoclassical economics accept the such and such theory? That is not an expert question, it should be rephrased in terms not of vacuous group confrontation but either self contained: e.g., how does the theor...
There's no place for it during the private beta. Such questions are magnets for cranks. The more crank posts we have, the harder it will be to attract experts. And building a community of experts is crucial for the private beta. I want a site for which I can proudly send private beta invitations to my economist colleag...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
Frankly, I think the best argument *against* heterodoxy in the ***private* beta** stage is that questions of that nature will--in all likelihood--simply go *unanswered*, left to rot during a period when high *percentage-answered* and *answers-per-question* stats matter most. Now, just to clarify things a little, when ...
Questions concerning heterodox schools of thought should be perfectly acceptable. If we are to assume that economics is an objective discipline with methodologies driven towards positive instead of normative truths, then heterodox school questions should be fine. However, I do think someone asking a heterodox school qu...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
Frankly, I think the best argument *against* heterodoxy in the ***private* beta** stage is that questions of that nature will--in all likelihood--simply go *unanswered*, left to rot during a period when high *percentage-answered* and *answers-per-question* stats matter most. Now, just to clarify things a little, when ...
I think we must distinguish between hetrodoxy and crankery. We should be open to all points of view that actually try to understand economic phenomena. We should be strict against conspiracy theories and attempt to misuse this site to propagate sects or carry out sectarian debates instead of asking and answering concre...
21
We've already had a couple of questions that are into that grey area where heterodoxy and crankery flow seamlessly into each other. And while a developed public beta, or better a fully graduated site, can have the resources to deal with heterodoxy productively, the private beta is a different phase, and has a differen...
2014/11/19
[ "https://economics.meta.stackexchange.com/questions/21", "https://economics.meta.stackexchange.com", "https://economics.meta.stackexchange.com/users/44/" ]
Frankly, I think the best argument *against* heterodoxy in the ***private* beta** stage is that questions of that nature will--in all likelihood--simply go *unanswered*, left to rot during a period when high *percentage-answered* and *answers-per-question* stats matter most. Now, just to clarify things a little, when ...
I think all schools should be welcomed, but that does not mean that one can be non scientific, e.g., why wouldn't neoclassical economics accept the such and such theory? That is not an expert question, it should be rephrased in terms not of vacuous group confrontation but either self contained: e.g., how does the theor...
911,040
I want to use URL encoder for my C program. I am wondering if there is any freely available URL encoding function implemented in C (on the web)??? I tried searching it, but couldn't get one :(
2009/05/26
[ "https://Stackoverflow.com/questions/911040", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Use setTimeout to generate the next chunk of the table, by giving up the UI thread for a little bit, it'll display the table parts as they are generated. By calling the generation code in the bottom of the generated code, you were never relinquishing the thread.
Why would you want 5K rows in a webapp? I strongly suggest you use paging. Otherwise, the solution c) seems the best and should work. Perhaps you just need some small tweaks. Are you calling the next batch of data with an ajax call? What do you see while it's loading the next batch of data? Is the browser stalling?
911,040
I want to use URL encoder for my C program. I am wondering if there is any freely available URL encoding function implemented in C (on the web)??? I tried searching it, but couldn't get one :(
2009/05/26
[ "https://Stackoverflow.com/questions/911040", "https://Stackoverflow.com", "https://Stackoverflow.com/users/-1/" ]
Use setTimeout to generate the next chunk of the table, by giving up the UI thread for a little bit, it'll display the table parts as they are generated. By calling the generation code in the bottom of the generated code, you were never relinquishing the thread.
paging would be the best solution. there are already a number of good jquery datagrid plugins out on the scene such as [flexigrid](http://code.google.com/p/flexigrid/) and [jqgrid](http://www.trirand.com/blog/). check those out.
12,639,825
We try to get the unique stats on Facebook Ads API and we've some difficult to get. Currently, we can only pull the reach (unique\_impressions) and the social reach (social\_unique\_impressions) for one day otherwise when we specify date criteria these fields are returned as zero. We know that unique stats aren't meant...
2012/09/28
[ "https://Stackoverflow.com/questions/12639825", "https://Stackoverflow.com", "https://Stackoverflow.com/users/910818/" ]
Ok! I got a response from Facebook team, it isn't possible to get the unique stats via our own date criteria. It's limit!
This is a limitation of Facebook's data and is specifically mentioned in the [Ad Statistics Documentation](https://developers.facebook.com/docs/reference/ads-api/adstatistics/) - the unique stats are only calculated on Facebook's side in 1, 7 or 28 day ranges: > > Querying Unique Stats > > > Unique stats are avail...
14,079
In India, a land of Hindus, cows are worshiped across the nation. Any significance of it?
2016/07/14
[ "https://hinduism.stackexchange.com/questions/14079", "https://hinduism.stackexchange.com", "https://hinduism.stackexchange.com/users/577/" ]
> > **गाव: स्वर्गस्य सोपानं गाव: स्वर्गेपी पूजितः । गाव: कामदुहो > देव्यो:नांन्यत किंचित परं स्मृतं ।।** > > > Cows are the path to heaven, they are worshipable even in heaven. Cows > grant a desirable objects, therefore there is nothing superior to the > cows. > > > (गाव:) = cow > > > **ब्रह्म सूर्यसमं ज्योत...
Cows are the only animals that gives milk to humanity. As a baby takes birth only a mother can feed it. Comparing this two, we can say cow is mother who is sacrificing milk which is prerogative of its own child for humanity.Many medicines are made from the urine of cows. There is a verse > > gavo me vyagrato santu g...
37,475
We had a coin trapped under our front loading washing machine drum (found out after it was removed). The washing machine engineer got it out by prising the lip of the inside of the drum upwards, pulled out the coin, then bashed the edge of the drum back down with a metal wrench. This has now left the drum dented and ...
2014/01/04
[ "https://diy.stackexchange.com/questions/37475", "https://diy.stackexchange.com", "https://diy.stackexchange.com/users/19007/" ]
In the end, the roofing company had ceased to exist which was why it was difficult to get hold of them. I got a reputable building company to sort out the cracks in the walls and weatherproof the render - they did an amazing job and they even found a fault in the way the new roof was fitted... and fixed it for free. T...
Certainly the roofers should take care of the originating problem if you have a guarantee. Also, be aware that most any kind of do-it-yourself fixes could be construed as voiding the guarantee. The OP says you are "trying" to contact the roofers. I don't really get that part. Certainly there must be a way to contac...
16,200,516
To my understanding, MVC is a way to implement the separation of presentation tier from business and data tier. Am I understanding this correctly? If so, MVC should separate the business logic completely from presentation, right? So to me it seems like javascript (or jquery) is somehow violating the MVC design since i...
2013/04/24
[ "https://Stackoverflow.com/questions/16200516", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2308038/" ]
You seem to have a decent understanding of MVC. The trouble is that you are looking at two different potential MVC structures as one and the same. On the server, you can have data models, controllers, and views. On the client side, you can ALSO have data models, controllers, and views. If you want to look at your clien...
What you describe does actually pose a challenge for a lot of implementations. Frameworks such as the ASP.NET MVC Framework have been making attempts to auto-render JavaScript to the UI based on business logic in the middle tier (validation rules for form fields, primarily). But they're a long way off from having a tru...
16,200,516
To my understanding, MVC is a way to implement the separation of presentation tier from business and data tier. Am I understanding this correctly? If so, MVC should separate the business logic completely from presentation, right? So to me it seems like javascript (or jquery) is somehow violating the MVC design since i...
2013/04/24
[ "https://Stackoverflow.com/questions/16200516", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2308038/" ]
You seem to have a decent understanding of MVC. The trouble is that you are looking at two different potential MVC structures as one and the same. On the server, you can have data models, controllers, and views. On the client side, you can ALSO have data models, controllers, and views. If you want to look at your clien...
> > **Congratulations!** Your understanding of MVC is completely wrong. It has nothing to do with n-tier architecture (which is what you seem to be confusing it with). > > > The core idea of MVC is [separation of concerns](http://en.wikipedia.org/wiki/Separation_of_concerns). This is used by dividing the applicati...
16,200,516
To my understanding, MVC is a way to implement the separation of presentation tier from business and data tier. Am I understanding this correctly? If so, MVC should separate the business logic completely from presentation, right? So to me it seems like javascript (or jquery) is somehow violating the MVC design since i...
2013/04/24
[ "https://Stackoverflow.com/questions/16200516", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2308038/" ]
You seem to have a decent understanding of MVC. The trouble is that you are looking at two different potential MVC structures as one and the same. On the server, you can have data models, controllers, and views. On the client side, you can ALSO have data models, controllers, and views. If you want to look at your clien...
You can go to <http://www.asp.net/mvc> site and refer tutorials / samples to learn about MVC using Microsoft technologies.
16,200,516
To my understanding, MVC is a way to implement the separation of presentation tier from business and data tier. Am I understanding this correctly? If so, MVC should separate the business logic completely from presentation, right? So to me it seems like javascript (or jquery) is somehow violating the MVC design since i...
2013/04/24
[ "https://Stackoverflow.com/questions/16200516", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2308038/" ]
What you describe does actually pose a challenge for a lot of implementations. Frameworks such as the ASP.NET MVC Framework have been making attempts to auto-render JavaScript to the UI based on business logic in the middle tier (validation rules for form fields, primarily). But they're a long way off from having a tru...
> > **Congratulations!** Your understanding of MVC is completely wrong. It has nothing to do with n-tier architecture (which is what you seem to be confusing it with). > > > The core idea of MVC is [separation of concerns](http://en.wikipedia.org/wiki/Separation_of_concerns). This is used by dividing the applicati...
16,200,516
To my understanding, MVC is a way to implement the separation of presentation tier from business and data tier. Am I understanding this correctly? If so, MVC should separate the business logic completely from presentation, right? So to me it seems like javascript (or jquery) is somehow violating the MVC design since i...
2013/04/24
[ "https://Stackoverflow.com/questions/16200516", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2308038/" ]
What you describe does actually pose a challenge for a lot of implementations. Frameworks such as the ASP.NET MVC Framework have been making attempts to auto-render JavaScript to the UI based on business logic in the middle tier (validation rules for form fields, primarily). But they're a long way off from having a tru...
You can go to <http://www.asp.net/mvc> site and refer tutorials / samples to learn about MVC using Microsoft technologies.
118,309
I just got the "Daily vote limit reached"-message. I was just about to up-vote a great comment, but now I've got to wait for 10 hours, and that's just plain stupid. As [this blog entry](https://blog.stackoverflow.com/2009/04/comments-now-with-flags-and-votes/) shows, a user has got 30 comment-votes and 5 comment-fla...
2012/01/08
[ "https://meta.stackexchange.com/questions/118309", "https://meta.stackexchange.com", "https://meta.stackexchange.com/users/146847/" ]
According to [How does comment voting and flagging work?](https://meta.stackexchange.com/questions/17364/how-do-comment-voting-and-flagging-work), the number of comment flags you get increases with a combination of higher reputation and flag weight. (Don't know what the cap is, but it's above 50.) So that's already ...
If a single question/answer can have multiple comments, it would be logical to give higher comment vote limit, for example 80. As alternative, if you vote on question/answer, you get **1 free vote** on comment/question to that answer. If you're encouraged (at least by downvoting) to leave a comment why you think that...
43,984
[Here](https://builtwithscience.com/overhead-press-mistakes/) it is written, about the Overhead Press, that > > At the bottom position, you need to be initiating the press in > something called the scapular plane. Such that at the bottom position > your elbows are pointed slightly forward, or in other words at roughl...
2021/06/19
[ "https://fitness.stackexchange.com/questions/43984", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/34413/" ]
I see that you have multiple questions. I can't help you with all of them, but I can help with the main question you have i.e. avoiding shoulder issues when overhead pressing. I have supraspinatous tendinosis on my right shoulder from strain and bad form. Thanks to this, I can tell when any exercise I'm doing has bad ...
One suggestion is to remember your forearms must be perpendicular to the ground, no incline either forward or backwards. About the change in plane on the top. [That's to get full range of movement](https://stronglifts.com/overhead-press/), if you retain the scapular plane you aren't able to get to full extension of th...
43,984
[Here](https://builtwithscience.com/overhead-press-mistakes/) it is written, about the Overhead Press, that > > At the bottom position, you need to be initiating the press in > something called the scapular plane. Such that at the bottom position > your elbows are pointed slightly forward, or in other words at roughl...
2021/06/19
[ "https://fitness.stackexchange.com/questions/43984", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/34413/" ]
> > **First question:** is the choice of working in the scapular plane made to reduce shoulder impingement (like in lateral raises)? If it is, can you explain me why? Does having a 30 degree angle between the elbows and the frontal plane creates space between the humerous and the AC joint for the rotator cuff tissues?...
I see that you have multiple questions. I can't help you with all of them, but I can help with the main question you have i.e. avoiding shoulder issues when overhead pressing. I have supraspinatous tendinosis on my right shoulder from strain and bad form. Thanks to this, I can tell when any exercise I'm doing has bad ...
43,984
[Here](https://builtwithscience.com/overhead-press-mistakes/) it is written, about the Overhead Press, that > > At the bottom position, you need to be initiating the press in > something called the scapular plane. Such that at the bottom position > your elbows are pointed slightly forward, or in other words at roughl...
2021/06/19
[ "https://fitness.stackexchange.com/questions/43984", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/34413/" ]
> > **First question:** is the choice of working in the scapular plane made to reduce shoulder impingement (like in lateral raises)? If it is, can you explain me why? Does having a 30 degree angle between the elbows and the frontal plane creates space between the humerous and the AC joint for the rotator cuff tissues?...
One suggestion is to remember your forearms must be perpendicular to the ground, no incline either forward or backwards. About the change in plane on the top. [That's to get full range of movement](https://stronglifts.com/overhead-press/), if you retain the scapular plane you aren't able to get to full extension of th...
128,492
Designing a sort of cyper-punkish, futuristic megacity where flying cars have been adopted as opposed to land-based cars to create more space on land and to reduce traffic issues. It can be assumed that these flying cars work in similar ways to land-based cars (except they fly), so **what kind of safety features would...
2018/10/25
[ "https://worldbuilding.stackexchange.com/questions/128492", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/31401/" ]
Barring 100% autopilot, a proper safety feature would be a system that: * Detects and prevents collisions. System has sensors on the vehicle, and it broadcasts position, speed, and direction to other cars, so they can coordinate. * Avoids designated areas. Not just White house, but 500 feet above residential areas. * ...
The trouble with questions of this type is that the answers are open ended lists which isn't appropriate to the format. However there's one critical aspect that makes most of the others redundant. * Permanent autopilot with no possibility of manual control and I'm afraid you're not getting your personal flying vehicl...
128,492
Designing a sort of cyper-punkish, futuristic megacity where flying cars have been adopted as opposed to land-based cars to create more space on land and to reduce traffic issues. It can be assumed that these flying cars work in similar ways to land-based cars (except they fly), so **what kind of safety features would...
2018/10/25
[ "https://worldbuilding.stackexchange.com/questions/128492", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/31401/" ]
Heavily cushioned base with a low centre of gravity; seats with heavy hydraulic dampening; seatbelts; multiple small reinforced windows instead of a large windscreen; height limiters built in; default forced landing in case of emergency, with regularly spaced emergency landing areas; very loud, very annoying fuel, batt...
The trouble with questions of this type is that the answers are open ended lists which isn't appropriate to the format. However there's one critical aspect that makes most of the others redundant. * Permanent autopilot with no possibility of manual control and I'm afraid you're not getting your personal flying vehicl...
140,316
So, I'm in the position of considering where (within a given city/real-estate-market) I and my family want to build our next house (which will also be our first experience as homeowners -- we've lived in houses for some time now, but always as tenants). So far, we know that your typical suburban (new plat/subdivision) ...
2021/04/27
[ "https://money.stackexchange.com/questions/140316", "https://money.stackexchange.com", "https://money.stackexchange.com/users/82670/" ]
What you do with proceeds from a rental property are entirely up to you. As long as you pay any taxes due (and there are [special rules for landlords who let property in the UK but live abroad](https://www.gov.uk/tax-uk-income-live-abroad/rent)), and have a contingency fund available to pay for any issues that come up...
> > I'd like to rent out (let) the house while I'm living abroad and I'd like that rent money to go into a managed investment account. Is this possible in the UK or would I be prevented from re-investing rent money because I'm living away? > > > It's completely, totally, possible and normal. 10,000s of brits do th...
8,441
**This is NOT [this question](https://christianity.stackexchange.com/questions/901/does-god-have-free-will)** I've been reading a lot about Arianism and this is an interesting point that they have: > > Arius believed the Son Jesus was capable of His own free will of right > and wrong, and that "were He in the true...
2012/07/10
[ "https://christianity.stackexchange.com/questions/8441", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/-1/" ]
It would be the heresy of [monophysitism](http://en.wikipedia.org/wiki/Monophysitism) (or, pushed to an extreme docetism) to deny Jesus' free will. The classic text on the matter is in this matter is Luke 22:42 - > > "Father, if you are willing, take this cup from me; yet not my will, but yours be done." > > > ...
> > For we do not have a high priest who is unable to sympathize with our weaknesses, but we have one who has been tempted in every way, just as we are--yet was without sin. (NIV Hebrews 4:15) > > > the prince of this world is coming. He has no hold on me (NIV John14:30) > > > Jesus had free will, but not the ab...
8,441
**This is NOT [this question](https://christianity.stackexchange.com/questions/901/does-god-have-free-will)** I've been reading a lot about Arianism and this is an interesting point that they have: > > Arius believed the Son Jesus was capable of His own free will of right > and wrong, and that "were He in the true...
2012/07/10
[ "https://christianity.stackexchange.com/questions/8441", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/-1/" ]
It would be the heresy of [monophysitism](http://en.wikipedia.org/wiki/Monophysitism) (or, pushed to an extreme docetism) to deny Jesus' free will. The classic text on the matter is in this matter is Luke 22:42 - > > "Father, if you are willing, take this cup from me; yet not my will, but yours be done." > > > ...
Arianism introduced the teaching that Christ possessed a "conditional deity" therefore His Deity was conferred or gifted by the only -wise God ( The Father ) so according to Arianism it was absolutely possible for 'The Christ' to sin and loose His 'conditional deity' thus resulting in His eternal annihilation by Ultima...