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 |
|---|---|---|---|---|---|
41,786 | I have Flash files that I would like to make edits on but I don't know how or with what.
Is there some software that can edit a Flash (.fla) file?
(Ideally something free.) | 2009/09/15 | [
"https://superuser.com/questions/41786",
"https://superuser.com",
"https://superuser.com/users/10319/"
] | You can install the free 1 month trail version of [Adobe Flash CS4 Professional](https://www.adobe.com/products/flash/), which you can use to edit and create free flash movies. If all you need to do is a one-time editing of the flash (.fla) file, you can get away using just the trial version. | there are no legally free programs that allows full capable editing of Flash source files (.fla). Only Adobe Flash (not Player!) can do it.
I suggest you stop wasting time hoping a free program like this comes along, and start using that time saved to work and buy a copy eventually. |
41,786 | I have Flash files that I would like to make edits on but I don't know how or with what.
Is there some software that can edit a Flash (.fla) file?
(Ideally something free.) | 2009/09/15 | [
"https://superuser.com/questions/41786",
"https://superuser.com",
"https://superuser.com/users/10319/"
] | Check [projects on osflash](http://www.osflash.org/projects). All of these are free. There are IDEs, command line tools, editors, game servers, etc
...and check [tutorials](http://osflash.org/tutorials). | there are no legally free programs that allows full capable editing of Flash source files (.fla). Only Adobe Flash (not Player!) can do it.
I suggest you stop wasting time hoping a free program like this comes along, and start using that time saved to work and buy a copy eventually. |
41,786 | I have Flash files that I would like to make edits on but I don't know how or with what.
Is there some software that can edit a Flash (.fla) file?
(Ideally something free.) | 2009/09/15 | [
"https://superuser.com/questions/41786",
"https://superuser.com",
"https://superuser.com/users/10319/"
] | You can download the 30-day trial version of [Adobe Flash Professional](http://www.adobe.com/products/flash/). I don't know of any free alternative that works as well. | there are no legally free programs that allows full capable editing of Flash source files (.fla). Only Adobe Flash (not Player!) can do it.
I suggest you stop wasting time hoping a free program like this comes along, and start using that time saved to work and buy a copy eventually. |
41,786 | I have Flash files that I would like to make edits on but I don't know how or with what.
Is there some software that can edit a Flash (.fla) file?
(Ideally something free.) | 2009/09/15 | [
"https://superuser.com/questions/41786",
"https://superuser.com",
"https://superuser.com/users/10319/"
] | You can install the free 1 month trail version of [Adobe Flash CS4 Professional](https://www.adobe.com/products/flash/), which you can use to edit and create free flash movies. If all you need to do is a one-time editing of the flash (.fla) file, you can get away using just the trial version. | Check [projects on osflash](http://www.osflash.org/projects). All of these are free. There are IDEs, command line tools, editors, game servers, etc
...and check [tutorials](http://osflash.org/tutorials). |
41,786 | I have Flash files that I would like to make edits on but I don't know how or with what.
Is there some software that can edit a Flash (.fla) file?
(Ideally something free.) | 2009/09/15 | [
"https://superuser.com/questions/41786",
"https://superuser.com",
"https://superuser.com/users/10319/"
] | You can install the free 1 month trail version of [Adobe Flash CS4 Professional](https://www.adobe.com/products/flash/), which you can use to edit and create free flash movies. If all you need to do is a one-time editing of the flash (.fla) file, you can get away using just the trial version. | You can download the 30-day trial version of [Adobe Flash Professional](http://www.adobe.com/products/flash/). I don't know of any free alternative that works as well. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | First, look into a UPS (un-interuptable power supply)
Second, look into creating persistent transactions, transactions that will save early and often, but not commit until you tell it to. This goes a little beyond the typical transactions in TSQL. | If it's a hard power-cut (like the battery removed on a laptop while unplugged), then there's not much you can do other than write to disk every. step. of. the. way. (Talk about a performance hit.) And also make sure that you have something recorded to let the application know when it starts back up what it was in the ... |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | First, look into a UPS (un-interuptable power supply)
Second, look into creating persistent transactions, transactions that will save early and often, but not commit until you tell it to. This goes a little beyond the typical transactions in TSQL. | PowerFailureException class will solve this. Actually just maintain power with a UPS. The only other option really is to maintain atomicity for database transactions. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | You can append the current information being received to the file system. It will be a performance hit, but will allow you to get back to the last item being captured.
When the application starts detect if there is a pending file, and provide the option to recover. Load the data saved in the file appropriately.
Once... | You might want to consider having your application use [SQLite](http://www.sqlite.org).
They have some great info on their [when to use page](http://www.sqlite.org/whentouse.html).
Some points that stand out are:
>
> * Updates happen atomically as application content is revised
> * Content is updated continuously a... |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | If it's a hard power-cut (like the battery removed on a laptop while unplugged), then there's not much you can do other than write to disk every. step. of. the. way. (Talk about a performance hit.) And also make sure that you have something recorded to let the application know when it starts back up what it was in the ... | You might want to consider having your application use [SQLite](http://www.sqlite.org).
They have some great info on their [when to use page](http://www.sqlite.org/whentouse.html).
Some points that stand out are:
>
> * Updates happen atomically as application content is revised
> * Content is updated continuously a... |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | If it's a hard power-cut (like the battery removed on a laptop while unplugged), then there's not much you can do other than write to disk every. step. of. the. way. (Talk about a performance hit.) And also make sure that you have something recorded to let the application know when it starts back up what it was in the ... | PowerFailureException class will solve this. Actually just maintain power with a UPS. The only other option really is to maintain atomicity for database transactions. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | If it's a hard power-cut (like the battery removed on a laptop while unplugged), then there's not much you can do other than write to disk every. step. of. the. way. (Talk about a performance hit.) And also make sure that you have something recorded to let the application know when it starts back up what it was in the ... | What you really want are atomic on disk transactions. There are many ways to perform these, but often times if you are using an existing database product it will be done for you.
If you rolled your own database or file formats, you have some work cut our for you depending on your file format. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | You can append the current information being received to the file system. It will be a performance hit, but will allow you to get back to the last item being captured.
When the application starts detect if there is a pending file, and provide the option to recover. Load the data saved in the file appropriately.
Once... | What you really want are atomic on disk transactions. There are many ways to perform these, but often times if you are using an existing database product it will be done for you.
If you rolled your own database or file formats, you have some work cut our for you depending on your file format. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | First, look into a UPS (un-interuptable power supply)
Second, look into creating persistent transactions, transactions that will save early and often, but not commit until you tell it to. This goes a little beyond the typical transactions in TSQL. | You can append the current information being received to the file system. It will be a performance hit, but will allow you to get back to the last item being captured.
When the application starts detect if there is a pending file, and provide the option to recover. Load the data saved in the file appropriately.
Once... |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | You can append the current information being received to the file system. It will be a performance hit, but will allow you to get back to the last item being captured.
When the application starts detect if there is a pending file, and provide the option to recover. Load the data saved in the file appropriately.
Once... | PowerFailureException class will solve this. Actually just maintain power with a UPS. The only other option really is to maintain atomicity for database transactions. |
736,712 | We are developing an RetailPOS .net (windows) application.
One of the customer asks 'What will happen to current data being processed in the application when a power went off suddenly?', 'Will the application able to recover the unsaved data?'
I am wondering, how this feature can be included in the .net application?... | 2009/04/10 | [
"https://Stackoverflow.com/questions/736712",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/53262/"
] | First, look into a UPS (un-interuptable power supply)
Second, look into creating persistent transactions, transactions that will save early and often, but not commit until you tell it to. This goes a little beyond the typical transactions in TSQL. | What you really want are atomic on disk transactions. There are many ways to perform these, but often times if you are using an existing database product it will be done for you.
If you rolled your own database or file formats, you have some work cut our for you depending on your file format. |
6,944 | Occasionally, I see a question for which I don't know enough to write a good answer, but I happen to know something that I think would be useful for someone asking that question to know.
* **[Example 1](https://rpg.stackexchange.com/questions/94633/how-to-create-a-custom-lycanthrope-in-heroforge-anew#comment218859_946... | 2017/04/13 | [
"https://rpg.meta.stackexchange.com/questions/6944",
"https://rpg.meta.stackexchange.com",
"https://rpg.meta.stackexchange.com/users/30299/"
] | No, these aren't acceptable. These are partial answers in comments.
A "lead", an "idea", and something that starts with "not an answer but..." are all answers in comments.
Your options are:
1. Take the time to find out and write an answer.
2. Hit them up in chat.
3. Let it lie.
Usually #3 is the best, because usua... | You do *technically* have a fourth option. If you actually have a good, substantial partial-answer but can't finish it off for whatever reason, consider posting it as a community wiki answer in its incomplete form. Community wiki answers should be rare, because we can generally answer a question without needing multipl... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Thats a apples to oranges question in my book. C/c++ don't have memory management at least not in the language thats your job. That being said java will allocate and destroy memory for you all the live long day but at the cost of control. For the standard business app this is not at issue. You are going to load some bl... | As for internal memory management, Java has the best of the three, since it automates disposing of objects.
If your question aims at performance, C or C++ would be a better bet. You would have to do all of the memory management yourself, but at the same time wouldn't have to wait for a Garbage Collector to do it's job... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Java has memory management. C and C++ don't, so it's memory management is a function of the programmer. | Programmer managed memory in c and c++ is the root cause of many software bugs in programs written in those languages. This is one of the main reasons modern languages like Java and C# have garbage collection. |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | The problem with Java is that since it does the garbage collection automatically, and you can only induce it to happen, you cannot free resources at the exact moment you want them to be freed. The advantage is that you do not have to worry about objects being left behind, because they won't affect your memory in the lo... | Programmer managed memory in c and c++ is the root cause of many software bugs in programs written in those languages. This is one of the main reasons modern languages like Java and C# have garbage collection. |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | As for internal memory management, Java has the best of the three, since it automates disposing of objects.
If your question aims at performance, C or C++ would be a better bet. You would have to do all of the memory management yourself, but at the same time wouldn't have to wait for a Garbage Collector to do it's job... | Programmer managed memory in c and c++ is the root cause of many software bugs in programs written in those languages. This is one of the main reasons modern languages like Java and C# have garbage collection. |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Java has memory management. C and C++ don't, so it's memory management is a function of the programmer. | The problem with Java is that since it does the garbage collection automatically, and you can only induce it to happen, you cannot free resources at the exact moment you want them to be freed. The advantage is that you do not have to worry about objects being left behind, because they won't affect your memory in the lo... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Java has memory management. C and C++ don't, so it's memory management is a function of the programmer. | As for internal memory management, Java has the best of the three, since it automates disposing of objects.
If your question aims at performance, C or C++ would be a better bet. You would have to do all of the memory management yourself, but at the same time wouldn't have to wait for a Garbage Collector to do it's job... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Thats a apples to oranges question in my book. C/c++ don't have memory management at least not in the language thats your job. That being said java will allocate and destroy memory for you all the live long day but at the cost of control. For the standard business app this is not at issue. You are going to load some bl... | Java and C# have both garbage collection. This is a good thing because the programmer has less problems with memory management, and can concentrate on other problems. In C and C++ you must manually manage memory - for this you need much time and patience and experience.
JVM's garbage collector is fast enough, hence you... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Thats a apples to oranges question in my book. C/c++ don't have memory management at least not in the language thats your job. That being said java will allocate and destroy memory for you all the live long day but at the cost of control. For the standard business app this is not at issue. You are going to load some bl... | Programmer managed memory in c and c++ is the root cause of many software bugs in programs written in those languages. This is one of the main reasons modern languages like Java and C# have garbage collection. |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | The problem with Java is that since it does the garbage collection automatically, and you can only induce it to happen, you cannot free resources at the exact moment you want them to be freed. The advantage is that you do not have to worry about objects being left behind, because they won't affect your memory in the lo... | Java and C# have both garbage collection. This is a good thing because the programmer has less problems with memory management, and can concentrate on other problems. In C and C++ you must manually manage memory - for this you need much time and patience and experience.
JVM's garbage collector is fast enough, hence you... |
3,910,625 | I just wanted to know which language has better memory management among C,C++ and Java,why is it so and it is based on what criteria?
I know that Java uses garbage collection for freeing memory and C uses DMA functions.Does this make java better at memory management since it's handled automatically? I do not know C++... | 2010/10/11 | [
"https://Stackoverflow.com/questions/3910625",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/472777/"
] | Java has memory management. C and C++ don't, so it's memory management is a function of the programmer. | Java and C# have both garbage collection. This is a good thing because the programmer has less problems with memory management, and can concentrate on other problems. In C and C++ you must manually manage memory - for this you need much time and patience and experience.
JVM's garbage collector is fast enough, hence you... |
134,478 | I would like to attach an eyebolt to the ridgeline of my metal roof. I can then attach a rope to that when I need to work on the roof. I am a climber and have the knowledge and gear to secure myself. The rope is mainly to allow me to get up the 10/12 central part of the roof (the ridgeline of which I'll mount the eye-b... | 2018/03/13 | [
"https://diy.stackexchange.com/questions/134478",
"https://diy.stackexchange.com",
"https://diy.stackexchange.com/users/34111/"
] | If I may suggest an alternative since putting a hole in any roof is better avoided.
I have a 10/12 pitched roof and I use an extension ladder with a stand-off stabilizer to reach the peak.
[](https://i.stack.imgur.com/gLCUR.jpg)
The ladder is laid flat on ... | Here's what I ended up doing:
1. I mounted a piece of 6x6 oak between two rafters, just down from the ridgeline, butted flat against the roof underlayment, and secured with three anodized 4" timber screws through the rafters at each end. I did two of these, one of each side of the ridgeline.
2. I sourced some 1/2" by ... |
134,478 | I would like to attach an eyebolt to the ridgeline of my metal roof. I can then attach a rope to that when I need to work on the roof. I am a climber and have the knowledge and gear to secure myself. The rope is mainly to allow me to get up the 10/12 central part of the roof (the ridgeline of which I'll mount the eye-b... | 2018/03/13 | [
"https://diy.stackexchange.com/questions/134478",
"https://diy.stackexchange.com",
"https://diy.stackexchange.com/users/34111/"
] | It may not look the best, but if you're going to install a fall arrest system on your roof this seems like a cheaper and tested solution. It's best not to try to MacGyver solutions when life safety is involved. I'd suggest covering the fasteners with a waterproofing tape once the system is installed to prevent as much ... | Here's what I ended up doing:
1. I mounted a piece of 6x6 oak between two rafters, just down from the ridgeline, butted flat against the roof underlayment, and secured with three anodized 4" timber screws through the rafters at each end. I did two of these, one of each side of the ridgeline.
2. I sourced some 1/2" by ... |
11,242,592 | I am facing a problem for several days and after many research I couldn't find anything that fit with my case.
Here's the thing :
I'm working with Visual Studio 2010 on a solution that contains several projects and a Setup Project. I want the setup project to create a MSI file to update the product from version 1.5 to... | 2012/06/28 | [
"https://Stackoverflow.com/questions/11242592",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1488053/"
] | This appears to be a bug with the plugin
"Microsoft Visual Studio 2017 Installer Projects".
The msi file gets built with an incorrect sequence number (too high). The uninstall of older products happens *after* the install of new files, so new files get incorrectly deleted.
Manual fix: Change the sequence so that un... | That article is just out of date in two respects:
1. It doesn't explain that the upgrade in later versions of Visual Studio setup projects was changed to be "on top" of the existing files, after which the older product is removed. This is not a bug, it's a feature. Example: If you installed a product with a database t... |
111,749 | How might I implement a local HTTP server using either Java, C#, C or purely Mathematica?
It should be able to respond with Mathematica input to GET and POST requests ideally on W7.
This is related although [doesn't really work.](https://mathematica.stackexchange.com/questions/72551/reading-from-a-socket-stream) If y... | 2016/04/03 | [
"https://mathematica.stackexchange.com/questions/111749",
"https://mathematica.stackexchange.com",
"https://mathematica.stackexchange.com/users/5615/"
] | The following is a sample implementation of a simple HTTP server in Wolfram Language code only:
<https://github.com/arnoudbuzing/wolfram-server>
You send it a POST request where the body data of the HTTP request contains the Wolfram Language code you wish to evaluate.
The (running) wolframserver.wls script processes... | Yes (and using pure Mathematica or WolframEngine)
<https://jerryi.github.io/tinyweb-mathematica/> |
43,314 | Is there a difference when the adverbs '*always, continually,forever,etc..*' are used with past simple and past progressive?
For example :
1. He **always/ continually** worked there.
2. He was **always/ continually** working there.
(What is the difference between the above two sentences?) | 2014/12/17 | [
"https://ell.stackexchange.com/questions/43314",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/10435/"
] | Let's say that a colleague mistakenly believes that Joe is a new hire. We might say:
*Joe has always worked here.*
to mean nothing more than the fact that Joe is not a new employee. He has been here for some while.
If we want to say that Joe never slacked off when he was working at Acme Widgets, but always took his ... | /simple past/ means **perfect** or done. /always/ can be used in past form when we want to **emphasize** the event.
past progressive follows simple past.
for ex:
*I was reading a novel* when *he knocked the door*.
you could also say:
He knocked the door while I was reading a novel.
as long as I know, adverb of freq /... |
43,314 | Is there a difference when the adverbs '*always, continually,forever,etc..*' are used with past simple and past progressive?
For example :
1. He **always/ continually** worked there.
2. He was **always/ continually** working there.
(What is the difference between the above two sentences?) | 2014/12/17 | [
"https://ell.stackexchange.com/questions/43314",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/10435/"
] | Sometimes, we use the past continuous as an alternative to the past simple for repeated or routine actions, with a little difference in meaning.
He always/continually worked there.
He was always/continually working there.
The first sentence literally implies that he always worked there, whereas, the second sentence ... | /simple past/ means **perfect** or done. /always/ can be used in past form when we want to **emphasize** the event.
past progressive follows simple past.
for ex:
*I was reading a novel* when *he knocked the door*.
you could also say:
He knocked the door while I was reading a novel.
as long as I know, adverb of freq /... |
43,314 | Is there a difference when the adverbs '*always, continually,forever,etc..*' are used with past simple and past progressive?
For example :
1. He **always/ continually** worked there.
2. He was **always/ continually** working there.
(What is the difference between the above two sentences?) | 2014/12/17 | [
"https://ell.stackexchange.com/questions/43314",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/10435/"
] | Let's say that a colleague mistakenly believes that Joe is a new hire. We might say:
*Joe has always worked here.*
to mean nothing more than the fact that Joe is not a new employee. He has been here for some while.
If we want to say that Joe never slacked off when he was working at Acme Widgets, but always took his ... | Sometimes, we use the past continuous as an alternative to the past simple for repeated or routine actions, with a little difference in meaning.
He always/continually worked there.
He was always/continually working there.
The first sentence literally implies that he always worked there, whereas, the second sentence ... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | Other answers are great, but I'll add my experience. When playing live with a band, you have a lot going on at the same time. So mistakes may be masked by the rest of the band.
Most importantly though, is that you roll with it. Not just from the perspective that mistakes can still work, but that if you let it get to y... | No. Professionals are so perfect they never hit a single note wrong, and if you try to play like they do and they find out you make mistakes, they will come to your house at night and you will be banned from playing in front of people until the end of your life (or the end of the world, whatever comes first.)
Ok, now ... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | If you are talking about mistakes made during a live performance, all guitarists make them and most of the time they will not play solos note for note as recorded on the studio version (see the many Youtube videos of Steve Vai's original and several live versions of "Tender Surrender").
If you are talking about a reco... | Other answers are great, but I'll add my experience. When playing live with a band, you have a lot going on at the same time. So mistakes may be masked by the rest of the band.
Most importantly though, is that you roll with it. Not just from the perspective that mistakes can still work, but that if you let it get to y... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | I would expect that the musicians in top bands play extremely consistently, due to sheer repetition and the fact that it's their career.
However, your question touches on a trickier idea: What exactly is a "mistake"? If the exact notes and rhythms are prescribed, then any deviation from that clearly constitutes a mist... | I am not a guitarist myself, but I know a really great one and he assures me that he has never played all the way through a song without making a mistake, nor has he ever played a piece through exactly the same way twice. He's always tweaking things here and there. If you're comparing yourself to recordings, you have t... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | 'Perfectly': never. 'Very Good': usually. Professionals tend to want to show you what they can do, rather than what they can't; it's their meal ticket, after all.
One of the skills in being an instrumentalist though is to practice techniques that allow you *to* power through small mistakes without disrupting the rhyth... | I am not a guitarist myself, but I know a really great one and he assures me that he has never played all the way through a song without making a mistake, nor has he ever played a piece through exactly the same way twice. He's always tweaking things here and there. If you're comparing yourself to recordings, you have t... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | If you are talking about mistakes made during a live performance, all guitarists make them and most of the time they will not play solos note for note as recorded on the studio version (see the many Youtube videos of Steve Vai's original and several live versions of "Tender Surrender").
If you are talking about a reco... | No. Professionals are so perfect they never hit a single note wrong, and if you try to play like they do and they find out you make mistakes, they will come to your house at night and you will be banned from playing in front of people until the end of your life (or the end of the world, whatever comes first.)
Ok, now ... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | 'Perfectly': never. 'Very Good': usually. Professionals tend to want to show you what they can do, rather than what they can't; it's their meal ticket, after all.
One of the skills in being an instrumentalist though is to practice techniques that allow you *to* power through small mistakes without disrupting the rhyth... | I'll talk about live performances since, as other posters have mentioned, recorded performances can easily be fixed with editing.
Mistakes? Yes. Always.
But don't let them stop you!
As a not-top-notch performer I can tell you that there is a stark difference between your (the performer's) perception of the performan... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | 'Perfectly': never. 'Very Good': usually. Professionals tend to want to show you what they can do, rather than what they can't; it's their meal ticket, after all.
One of the skills in being an instrumentalist though is to practice techniques that allow you *to* power through small mistakes without disrupting the rhyth... | No. Professionals are so perfect they never hit a single note wrong, and if you try to play like they do and they find out you make mistakes, they will come to your house at night and you will be banned from playing in front of people until the end of your life (or the end of the world, whatever comes first.)
Ok, now ... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | I would expect that the musicians in top bands play extremely consistently, due to sheer repetition and the fact that it's their career.
However, your question touches on a trickier idea: What exactly is a "mistake"? If the exact notes and rhythms are prescribed, then any deviation from that clearly constitutes a mist... | I'll talk about live performances since, as other posters have mentioned, recorded performances can easily be fixed with editing.
Mistakes? Yes. Always.
But don't let them stop you!
As a not-top-notch performer I can tell you that there is a stark difference between your (the performer's) perception of the performan... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | Other answers are great, but I'll add my experience. When playing live with a band, you have a lot going on at the same time. So mistakes may be masked by the rest of the band.
Most importantly though, is that you roll with it. Not just from the perspective that mistakes can still work, but that if you let it get to y... | “Never lose the groove in order to find a note.”
― Victor L. Wooten, The Music Lesson: A Spiritual Search for Growth Through Music
This acknowledges that musicians do play "wrong" notes, but what's more important is the flow of the piece. As for "wrong," it depends on how formalized the piece is. Some classical music... |
53,874 | I playing guitar since a couple of years (but not regularly) and I always wondered if guitarist from known bands always play their songs/solos perfectly?
Especially when the songs are fast paced, is it easier to make mistakes that no one will notice? When I play solos I am never really satisfied with my performance sin... | 2017/02/28 | [
"https://music.stackexchange.com/questions/53874",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/37313/"
] | If you are talking about mistakes made during a live performance, all guitarists make them and most of the time they will not play solos note for note as recorded on the studio version (see the many Youtube videos of Steve Vai's original and several live versions of "Tender Surrender").
If you are talking about a reco... | I'll talk about live performances since, as other posters have mentioned, recorded performances can easily be fixed with editing.
Mistakes? Yes. Always.
But don't let them stop you!
As a not-top-notch performer I can tell you that there is a stark difference between your (the performer's) perception of the performan... |
102,059 | Because of certain reasons, I'm sometimes tied to an extremely slow internet connection. What I realized with this, is that certain sites (for example, any subdomain of blog.hu) works in a way that needs a certain part of the site be loaded before comments are loaded too. I assume it's because of an AJAX operation, as ... | 2016/12/01 | [
"https://ux.stackexchange.com/questions/102059",
"https://ux.stackexchange.com",
"https://ux.stackexchange.com/users/76708/"
] | There are physical limits as to how long a line of text can be before it gets difficult to process. Much like breathing while speaking, the mind needs periodic breaks to process the string of letters and numbers it has just taken in. Line breaks provide an opportunity for this to occur. A general rule that I have heard... | @JoshDoebbert has a good point on the text legibility. [This other question](https://ux.stackexchange.com/questions/34120/relationship-between-font-size-and-width-of-container) has some interesting information on the topic.
I just wanted to add that percentages are good to let the content adapt to smaller screen size.... |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | Selenium is more designed for doing end-to-end testing, where it simulates actions within a browser. Jasmine and QUnit are both unit testing frameworks for testing the code. If you're looking to do end-to-end tests that are more compatible with JS, check out Protractor—it's made for AngularJS apps. Otherwise, if you're... | You can use this approach - "**VISUAL REGRESSION TESTING USING JEST, CHROMELESS AND AWS LAMBDA**" <https://novemberfive.co/blog/visual-regression-testing-jest-chromeless-lambda> |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | Selenium is a UI automation library whereas libraries like Jasmine is a general javascript test framework which can be utilized for the unit as well as UI testing automation for the assertions.
If you are purely unit testing, then probably you don't need selenium. | Selenium is more designed for doing end-to-end testing, where it simulates actions within a browser. Jasmine and QUnit are both unit testing frameworks for testing the code. If you're looking to do end-to-end tests that are more compatible with JS, check out Protractor—it's made for AngularJS apps. Otherwise, if you're... |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | **TL;DR**: Selenium is just to slow, compared to for example [Karma](https://karma-runner.github.io/2.0/index.html).
---
I guess most UI Frameworks manipulate the DOM. So verifying that the manipulation was correct is also done in the DOM. Most UI Frameworks seem to use Karma for cross-browser testing the DOM. By run... | Selenium is more designed for doing end-to-end testing, where it simulates actions within a browser. Jasmine and QUnit are both unit testing frameworks for testing the code. If you're looking to do end-to-end tests that are more compatible with JS, check out Protractor—it's made for AngularJS apps. Otherwise, if you're... |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | The reason is quick feedback. unit tests run much faster and selenium/protractor being e2e solutions runs slower. There is a clear separation between unit test and end to end testing.
Please let us know in specific what you need to understand. | You can use this approach - "**VISUAL REGRESSION TESTING USING JEST, CHROMELESS AND AWS LAMBDA**" <https://novemberfive.co/blog/visual-regression-testing-jest-chromeless-lambda> |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | Selenium is a UI automation library whereas libraries like Jasmine is a general javascript test framework which can be utilized for the unit as well as UI testing automation for the assertions.
If you are purely unit testing, then probably you don't need selenium. | You can use this approach - "**VISUAL REGRESSION TESTING USING JEST, CHROMELESS AND AWS LAMBDA**" <https://novemberfive.co/blog/visual-regression-testing-jest-chromeless-lambda> |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | **TL;DR**: Selenium is just to slow, compared to for example [Karma](https://karma-runner.github.io/2.0/index.html).
---
I guess most UI Frameworks manipulate the DOM. So verifying that the manipulation was correct is also done in the DOM. Most UI Frameworks seem to use Karma for cross-browser testing the DOM. By run... | You can use this approach - "**VISUAL REGRESSION TESTING USING JEST, CHROMELESS AND AWS LAMBDA**" <https://novemberfive.co/blog/visual-regression-testing-jest-chromeless-lambda> |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | Selenium is a UI automation library whereas libraries like Jasmine is a general javascript test framework which can be utilized for the unit as well as UI testing automation for the assertions.
If you are purely unit testing, then probably you don't need selenium. | The reason is quick feedback. unit tests run much faster and selenium/protractor being e2e solutions runs slower. There is a clear separation between unit test and end to end testing.
Please let us know in specific what you need to understand. |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | **TL;DR**: Selenium is just to slow, compared to for example [Karma](https://karma-runner.github.io/2.0/index.html).
---
I guess most UI Frameworks manipulate the DOM. So verifying that the manipulation was correct is also done in the DOM. Most UI Frameworks seem to use Karma for cross-browser testing the DOM. By run... | The reason is quick feedback. unit tests run much faster and selenium/protractor being e2e solutions runs slower. There is a clear separation between unit test and end to end testing.
Please let us know in specific what you need to understand. |
34,119 | I am writing unit testcases for a UI Framework using **Mocha**, **Chai** and **Karma**. I have analysed before whether to use selenium webdriver to do testing, but since most of the test cases involve working with DOMElement I have found it difficult to be working with selenium though javascript version( **WebDriverJS*... | 2018/06/07 | [
"https://sqa.stackexchange.com/questions/34119",
"https://sqa.stackexchange.com",
"https://sqa.stackexchange.com/users/28240/"
] | **TL;DR**: Selenium is just to slow, compared to for example [Karma](https://karma-runner.github.io/2.0/index.html).
---
I guess most UI Frameworks manipulate the DOM. So verifying that the manipulation was correct is also done in the DOM. Most UI Frameworks seem to use Karma for cross-browser testing the DOM. By run... | Selenium is a UI automation library whereas libraries like Jasmine is a general javascript test framework which can be utilized for the unit as well as UI testing automation for the assertions.
If you are purely unit testing, then probably you don't need selenium. |
13,142,384 | probably had these questions a thousand times already.
For a school project I want to make a HTML5 game where you can challenge someone and play against. Now I'm pretty new to game development. I don't now exactly where to start off. There is so much information/technologies on the net that I don't know which to use. ... | 2012/10/30 | [
"https://Stackoverflow.com/questions/13142384",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1785932/"
] | Since you're working in a .NET environment, take a look at SignalR, <http://signalr.net>. It's a very nice API around websockets (with fallbacks to other methods for older servers and browsers) that lets you do client-to-server and server-to-client communication.
Code on the client can invoke a Javascript function tha... | You will need a central server to relay messages between the two players.
WebSockets (and anything else you might find that plugs into a browser) are unsuitable for direct peer-to-peer communications. |
43,843,463 | Within the scope of a new project in Qt/QML, We are currently looking for an application architecture. We are thinking about an implementation of the Flux architecture from Facebook.
I found this good library which makes it in some ways : <https://github.com/benlau/quickflux>
In our case, we would like to manage Stor... | 2017/05/08 | [
"https://Stackoverflow.com/questions/43843463",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7979527/"
] | My answer may be outdated, but perhaps will help someone having the same question...
You can try to use C++/Qt implementation of Flux-like application pattern <https://github.com/eandritskiy/flux_qt>
Please check QML example.
There are only 2 classes that are exported to QML engine: ActionProvider and Store. Action... | It makes sense to consider a Flux-like app architecture as Ben Lau suggests.
However, for simple QML-driven apps an easier implementation of the same pattern is also possible. Especially since the introduction of Qt Quick Compiler, there's really no need to dive into complex C++ code.
You can find a simple guide for ... |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | If you keep getting rep for today then it will count toward the limit for the day after the recalc. So if you got a total of 220 today but 20 went away in a recalc then you would still get 200 for the day. The system still tracks your rep for the day even after you hit the limit. It just doesn't apply more than 200 per... | I think so, a rep recalc computes all your reputation from scratch, so the rep cap would be taken into account without counting the now deleted post and you'd get the reputation from the subsequent posts |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | I believe that *in theory* it should work like that, yes.
A few times I've had a rep recalc and still had what appeared to be some oddities. Here's a sample timeline:
* 2am: 5 genuine votes
* 3am: 20 upvotes from one user, hit cap after the first 15 of them
* 6am: Get online, post answers, get more upvotes, report vo... | If you keep getting rep for today then it will count toward the limit for the day after the recalc. So if you got a total of 220 today but 20 went away in a recalc then you would still get 200 for the day. The system still tracks your rep for the day even after you hit the limit. It just doesn't apply more than 200 per... |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | I think you should get that rep back. I want to believe that if you got 25 upvotes in a day, you should cap at 200. If you had an answer deleted that subtracted 2 upvotes that left you with 180, you should still in theory have 230 rep worth of upvotes, so during a recalc you should still make the 200 points. | I think so, a rep recalc computes all your reputation from scratch, so the rep cap would be taken into account without counting the now deleted post and you'd get the reputation from the subsequent posts |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | I believe that *in theory* it should work like that, yes.
A few times I've had a rep recalc and still had what appeared to be some oddities. Here's a sample timeline:
* 2am: 5 genuine votes
* 3am: 20 upvotes from one user, hit cap after the first 15 of them
* 6am: Get online, post answers, get more upvotes, report vo... | I think you should get that rep back. I want to believe that if you got 25 upvotes in a day, you should cap at 200. If you had an answer deleted that subtracted 2 upvotes that left you with 180, you should still in theory have 230 rep worth of upvotes, so during a recalc you should still make the 200 points. |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | I believe that *in theory* it should work like that, yes.
A few times I've had a rep recalc and still had what appeared to be some oddities. Here's a sample timeline:
* 2am: 5 genuine votes
* 3am: 20 upvotes from one user, hit cap after the first 15 of them
* 6am: Get online, post answers, get more upvotes, report vo... | I think so, a rep recalc computes all your reputation from scratch, so the rep cap would be taken into account without counting the now deleted post and you'd get the reputation from the subsequent posts |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | Well, if you **really want**, add a comment here and I'll try it. **However** You'd need to accept that you might actually *lose more rep* from other deleted posts etc.
The other day somebody requesting a rep recalc lost ~450 points.
On your head be it; there is no preview nor undo. Let me know. | I think so, a rep recalc computes all your reputation from scratch, so the rep cap would be taken into account without counting the now deleted post and you'd get the reputation from the subsequent posts |
15,214 | Today, I reached 200 rep, but 20 of them came from a now-deleted post (a duplicate answer posted really close in time to the first answer). I stopped getting rep from my answers after this was deleted and I hit 180 reputation on posted answers today (180 + the 20 from the deleted = the cap of 200).
After a rep recalcu... | 2009/08/18 | [
"https://meta.stackexchange.com/questions/15214",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/572/"
] | I believe that *in theory* it should work like that, yes.
A few times I've had a rep recalc and still had what appeared to be some oddities. Here's a sample timeline:
* 2am: 5 genuine votes
* 3am: 20 upvotes from one user, hit cap after the first 15 of them
* 6am: Get online, post answers, get more upvotes, report vo... | Well, if you **really want**, add a comment here and I'll try it. **However** You'd need to accept that you might actually *lose more rep* from other deleted posts etc.
The other day somebody requesting a rep recalc lost ~450 points.
On your head be it; there is no preview nor undo. Let me know. |
297,333 | this is my first post here. I am new to FPGAs. I would like to implement a NOT gate on the BASYS (Spartan3E-100) FPGA. I've been looking at the tutorial [HERE](https://docs.numato.com/kb/learning-fpga-verilog-beginners-guide-part-4-synthesis/) to work my way towards a synthesis. I wish to keep everything on-board, i.e.... | 2017/04/08 | [
"https://electronics.stackexchange.com/questions/297333",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/144681/"
] | Find a different tutorial!
The tutorial you're reading is written for a completely different board -- it's written for the Mimas v2, from Numato Labs. This board has almost nothing in common with the Basys, beyond that they both have Xilinx FPGAs on them.
Some of the general concepts will line up, but the details of ... | If you come with programming background, then probably FPGA-s will have some surprises for you. However I assume you know how to use ISE WebPack or whatever environment you use right now.
What you need is schematics for your board (probably delivered by Digilent). Second this is knowledge of constraint files. This fil... |
225 | In particular, I don't mean mere alternate spellings like *colour*, *honour*, but words that are entirely different: using *lift* instead of *elevator*, *fridge* instead of *refrigerator* etc.
What is the common outlook on using them in plain informal speech in the US? What are the chances they won't be recognized at ... | 2013/01/24 | [
"https://ell.stackexchange.com/questions/225",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/30/"
] | AFAIK *most* Americans know the British equivalents for their words, and vice versa.
Some people even use them (some Britons use the American words). It wouldn't be considered weird - an American would just assume you were British, or learnt British English. It wouldn't be considered unwelcome either, by the vast majo... | I think there is a chance that some of the less common words would not be recognised at all between the AmE and BritE, but it does depend on what sphere the words are from.
The common ones are fairly well known, others not so:
From cars:
Trunk, boot. Hood, bonnet. Rocker panel, sill etc
From culinary:
Bitter sweet... |
225 | In particular, I don't mean mere alternate spellings like *colour*, *honour*, but words that are entirely different: using *lift* instead of *elevator*, *fridge* instead of *refrigerator* etc.
What is the common outlook on using them in plain informal speech in the US? What are the chances they won't be recognized at ... | 2013/01/24 | [
"https://ell.stackexchange.com/questions/225",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/30/"
] | AFAIK *most* Americans know the British equivalents for their words, and vice versa.
Some people even use them (some Britons use the American words). It wouldn't be considered weird - an American would just assume you were British, or learnt British English. It wouldn't be considered unwelcome either, by the vast majo... | In general, I would say no, but there are some exceptions. The first time I encountered a sign in a public place saying "toilet," I felt it was quite crude. Americans would only use that word for the actual fixture, preferring restroom for such contexts. |
225 | In particular, I don't mean mere alternate spellings like *colour*, *honour*, but words that are entirely different: using *lift* instead of *elevator*, *fridge* instead of *refrigerator* etc.
What is the common outlook on using them in plain informal speech in the US? What are the chances they won't be recognized at ... | 2013/01/24 | [
"https://ell.stackexchange.com/questions/225",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/30/"
] | I think there is a chance that some of the less common words would not be recognised at all between the AmE and BritE, but it does depend on what sphere the words are from.
The common ones are fairly well known, others not so:
From cars:
Trunk, boot. Hood, bonnet. Rocker panel, sill etc
From culinary:
Bitter sweet... | In general, I would say no, but there are some exceptions. The first time I encountered a sign in a public place saying "toilet," I felt it was quite crude. Americans would only use that word for the actual fixture, preferring restroom for such contexts. |
28,924,130 | In other words, is it possible to create a Google Chrome app and package it as an .exe or .app so that users won't need Chrome to be installed to run it?
I'm working with NWJS at this time (previously known as Node-Webkit) but I'm interested in the bluetooth/usb APIs from Chrome. | 2015/03/08 | [
"https://Stackoverflow.com/questions/28924130",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/816478/"
] | The editor [Atom](https://atom.io/) uses this approach. It is distributed as a binary on many platforms, but underneath is using Chromium and io.js.
The cross-platform desktop application shell portion of atom has been broken into its own project: [atom-shell](https://github.com/atom/atom-shell).
In essence, you are ... | Generally, you cannot distribute Chrome Apps the way you are asking, no. Sorry. |
248,370 | I want to build a flat ground level deck approx 25x26ft. I have very limited space between the ground and the door, so it needs to be streamlined.
I plan to use 3 26’ 2x10 as primary frame supports and than use 12’ 2x10 as joists with 12” spacing.
Wondering how many posts do I need for each 26’ piece of lumber? Will 4... | 2022/04/27 | [
"https://diy.stackexchange.com/questions/248370",
"https://diy.stackexchange.com",
"https://diy.stackexchange.com/users/25752/"
] | Contact your power company. Say:
"Am I correct that my smart meter has a large contactor in it, so that you can remotely shut off my power with a few keystrokes on your computer?"
And
"If I have you do that for 10 minutes, will you require a permit and inspection to turn it back on?"
And this may lead to a short co... | There's a couple of ways to play this, assuming you don't want to just YOLO this and shove them on with your bare hand (not the greatest idea)
1. Ask your utility to kill the power to your house for a few minutes. They might not like coming out for something this minor, but I can't say how well this will or won't go. ... |
38,819 | [This question on SO](https://stackoverflow.com/questions/2215314/sybase-central-issues-on-64-bit-windows-2008-server-r2) clearly belongs elsewhere, but the asker already put a bounty on the question.
If the question is migrated, does the rep get refunded? Does the question continue to be a bounty question on the targ... | 2010/02/09 | [
"https://meta.stackexchange.com/questions/38819",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/136558/"
] | The correct procedure would be to flag for moderator attention. If required diamond moderators can migrate the question by removing the bounty.
* Bounty is removed and refunded
* Question is closed and migrated
I have flagged the question as well for the SO mods to look at it | Questions with bounties on them can't be closed or migrated (unless by a superpower of mod type personage). It'll stay until the bounty's accepted or expired. |
35,827,150 | I struggle since a few days to get a correct provisioning profile.
I am an independent iOS dev with my own iTunes connect account but I recently started to develop for a development team. Since then, I can't get a correct provisionning profile to run my app from xCode to my iPhone.
iOS documentation describes how to ... | 2016/03/06 | [
"https://Stackoverflow.com/questions/35827150",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2521010/"
] | Each team member is responsible for creating their own key/cert pair and adding it to their machine via Keychain Access. That is for Development builds. Distribution certs can only be created by an admin.
To create an app Id or provision on the member center you need to have admin access. If you don't have admin acces... | Ok, here are the steps:
1. Generate a new CSR from Keychain.
2. Go to iTunes Connect.
3. In Certificate section:
* Download Apple's World Wide Relations Authority Certificate using CSR.
* Download iOS Developer Certificate using CSR.
4. Add both these certificates to Keychain.
5. In Provisional Profile Section:
* ... |
1,115,973 | I've noticed an increasing number of jobs that are asking for experience with data mining and business intelligence technologies. This sounds like an incredibly broad topic but where would one go if they wanted to develop at least a partial understanding of this stuff if it were to come up in an interview? | 2009/07/12 | [
"https://Stackoverflow.com/questions/1115973",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/132153/"
] | A very good book with practical examples is the
[Programming Collective Intelligence: Building Smart Web 2.0 Applications](https://rads.stackoverflow.com/amzn/click/com/0596529325) by Toby Segaran. | Go read [Data Mining: Practical Machine Learning Tools and Techniques (Second Edition)](http://www.cs.waikato.ac.nz/~ml/weka/book.html).
Then use [Weka](http://www.cs.waikato.ac.nz/~ml/weka/index.html) on a pet project. Despite the name, this is a good book, and the Weka package has several levels of entry into the dat... |
1,115,973 | I've noticed an increasing number of jobs that are asking for experience with data mining and business intelligence technologies. This sounds like an incredibly broad topic but where would one go if they wanted to develop at least a partial understanding of this stuff if it were to come up in an interview? | 2009/07/12 | [
"https://Stackoverflow.com/questions/1115973",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/132153/"
] | Go read [Data Mining: Practical Machine Learning Tools and Techniques (Second Edition)](http://www.cs.waikato.ac.nz/~ml/weka/book.html).
Then use [Weka](http://www.cs.waikato.ac.nz/~ml/weka/index.html) on a pet project. Despite the name, this is a good book, and the Weka package has several levels of entry into the dat... | Consider reading [Ralph Kimball's books](http://www.amazon.com/s/ref=nb_ss?url=search-alias%3Daps&field-keywords=ralph+kimball&x=0&y=0) for an introduction to Business Intelligence.
Also, try to not stick to one technolgy-vendor, every company has its own biased vision of BI, you'll need a 360 overview. |
1,115,973 | I've noticed an increasing number of jobs that are asking for experience with data mining and business intelligence technologies. This sounds like an incredibly broad topic but where would one go if they wanted to develop at least a partial understanding of this stuff if it were to come up in an interview? | 2009/07/12 | [
"https://Stackoverflow.com/questions/1115973",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/132153/"
] | Go read [Data Mining: Practical Machine Learning Tools and Techniques (Second Edition)](http://www.cs.waikato.ac.nz/~ml/weka/book.html).
Then use [Weka](http://www.cs.waikato.ac.nz/~ml/weka/index.html) on a pet project. Despite the name, this is a good book, and the Weka package has several levels of entry into the dat... | Maybe you can also try to work with real BI - it is almost impossible to get in contact with data-filled and running SAS, MS, Oracle etc. I work in a team which integrates BI BellaDati for enterprises. For try-out and personal purposes it is free with some datastore limitations ( <http://www.trgiman.eu/en/belladati/pro... |
1,115,973 | I've noticed an increasing number of jobs that are asking for experience with data mining and business intelligence technologies. This sounds like an incredibly broad topic but where would one go if they wanted to develop at least a partial understanding of this stuff if it were to come up in an interview? | 2009/07/12 | [
"https://Stackoverflow.com/questions/1115973",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/132153/"
] | A very good book with practical examples is the
[Programming Collective Intelligence: Building Smart Web 2.0 Applications](https://rads.stackoverflow.com/amzn/click/com/0596529325) by Toby Segaran. | Consider reading [Ralph Kimball's books](http://www.amazon.com/s/ref=nb_ss?url=search-alias%3Daps&field-keywords=ralph+kimball&x=0&y=0) for an introduction to Business Intelligence.
Also, try to not stick to one technolgy-vendor, every company has its own biased vision of BI, you'll need a 360 overview. |
1,115,973 | I've noticed an increasing number of jobs that are asking for experience with data mining and business intelligence technologies. This sounds like an incredibly broad topic but where would one go if they wanted to develop at least a partial understanding of this stuff if it were to come up in an interview? | 2009/07/12 | [
"https://Stackoverflow.com/questions/1115973",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/132153/"
] | A very good book with practical examples is the
[Programming Collective Intelligence: Building Smart Web 2.0 Applications](https://rads.stackoverflow.com/amzn/click/com/0596529325) by Toby Segaran. | Maybe you can also try to work with real BI - it is almost impossible to get in contact with data-filled and running SAS, MS, Oracle etc. I work in a team which integrates BI BellaDati for enterprises. For try-out and personal purposes it is free with some datastore limitations ( <http://www.trgiman.eu/en/belladati/pro... |
18,219 | I'm going to try to provide a high level overview of the issue - realizing that more details/info will be necessary - but I don't want to write a novel that seems too overwhelming for people to respond to :)
**Background**:
Let's say I have 3 sets (A, B, C) of irregular point data of varying quality; A is "better" th... | 2011/12/26 | [
"https://gis.stackexchange.com/questions/18219",
"https://gis.stackexchange.com",
"https://gis.stackexchange.com/users/1384/"
] | When "best" is interpreted as "minimum variance unbiased estimator," then **the answer is [cokriging](http://www.gammadesign.com/gswinhelp/kriging_and_cokriging/cokriging.htm)**. This technique views the three datasets as realizations of three correlated spatial stochastic processes. It characterizes the process and th... | One thing I can come up with is to use simulation. For each of your observations you have a probability distribution, e.g. a normal distribution. For the low quality observations these probablity distributions are larger. From each of these observations you can draw a realization of the prob. distribution, interpolate ... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | "**Confirming the hypothesis**" always sounds good in a technical paper. Or "**as hypothesized**".
If you are noting agreement with previous results, you can say "**validating/confirming results from...**". | **Paralleled**
>
> a person or thing that is similar or analogous to another.
>
>
>
The experimental results **paralleled** the theoretically expected results outlined in Paper/Report/Experiment x/y/z
Alternatively:
* Corresponded
* Analogous
The correct word choice would also depend on the way the information... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | Consider [synonyms](http://thesaurus.com/browse/consistent) of *[consistent](http://en.wiktionary.org/wiki/consistent#Adjective)*, such as *[compatible](http://en.wiktionary.org/wiki/compatible#Adjective)* and *[congruent](http://en.wiktionary.org/wiki/congruent#Adjective)*; eg, “Results of experiment B were consistent... | If the results of your second experiment were predicted by the first experiment then there was no need to carry the former. Maybe you deduced from the first experiment's results that the second experiment might give certain results, or you had doubts about the reasons for the results of the first experiment. In this ca... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | "**Confirming the hypothesis**" always sounds good in a technical paper. Or "**as hypothesized**".
If you are noting agreement with previous results, you can say "**validating/confirming results from...**". | If the results of your second experiment were predicted by the first experiment then there was no need to carry the former. Maybe you deduced from the first experiment's results that the second experiment might give certain results, or you had doubts about the reasons for the results of the first experiment. In this ca... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | Consider [synonyms](http://thesaurus.com/browse/consistent) of *[consistent](http://en.wiktionary.org/wiki/consistent#Adjective)*, such as *[compatible](http://en.wiktionary.org/wiki/compatible#Adjective)* and *[congruent](http://en.wiktionary.org/wiki/congruent#Adjective)*; eg, “Results of experiment B were consistent... | The primary question asks for a **linking phrase** for a discussion of "***expected***" results from a secondary experiment. You could say the results of the second experiment were "***anticipated***".
>
> The results of the second experiment were "**anticipated in support
> of**" deductions made during the first ex... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | I think the word you are looking for is **corroborate**:
>
> [**corroborate**](http://www.merriam-webster.com/dictionary/corroborate): to
> support or help prove (a statement, theory, etc.) by providing information or evidence
>
>
>
So, you performed a first experiment resulting in "x". The result "x" supports y... | If the results of your second experiment were predicted by the first experiment then there was no need to carry the former. Maybe you deduced from the first experiment's results that the second experiment might give certain results, or you had doubts about the reasons for the results of the first experiment. In this ca... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | "Corollary" is the usual technical/scientific term to describe the consequent or expected sets of derivative results or conclusions of a main theory, hypothesis or experiment.
>
> [cor·ol·lar·y](http://www.thefreedictionary.com/corollary) (kôr-lr, kr-)
> n. pl. cor·ol·lar·ies
>
>
>
> 1. A proposition that follo... | "Therefore it proves that" also passes off in a technical paper. |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | How about: clearly, apparently, obviously, evidently, patently?
The word obviously can sometimes affect readers adversely, "well, it wasn't so obvious to me." | [Ergo](http://www.merriam-webster.com/dictionary/ergo)
>
> : therefore, hence
>
>
>
(definition from m-w.com) |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | Consider [synonyms](http://thesaurus.com/browse/consistent) of *[consistent](http://en.wiktionary.org/wiki/consistent#Adjective)*, such as *[compatible](http://en.wiktionary.org/wiki/compatible#Adjective)* and *[congruent](http://en.wiktionary.org/wiki/congruent#Adjective)*; eg, “Results of experiment B were consistent... | "Corollary" is the usual technical/scientific term to describe the consequent or expected sets of derivative results or conclusions of a main theory, hypothesis or experiment.
>
> [cor·ol·lar·y](http://www.thefreedictionary.com/corollary) (kôr-lr, kr-)
> n. pl. cor·ol·lar·ies
>
>
>
> 1. A proposition that follo... |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | The primary question asks for a **linking phrase** for a discussion of "***expected***" results from a secondary experiment. You could say the results of the second experiment were "***anticipated***".
>
> The results of the second experiment were "**anticipated in support
> of**" deductions made during the first ex... | "Therefore it proves that" also passes off in a technical paper. |
106,477 | I am writing a technical paper where I have described an experiment resulting in "x". Then I go on to describe the result of a second experiment whose result was expected since the reason was deduced in the previous experiment (x). I'm looking for a phrase to tie the two sentences together but I did not want to use "as... | 2013/03/07 | [
"https://english.stackexchange.com/questions/106477",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/38999/"
] | "**Confirming the hypothesis**" always sounds good in a technical paper. Or "**as hypothesized**".
If you are noting agreement with previous results, you can say "**validating/confirming results from...**". | "Corollary" is the usual technical/scientific term to describe the consequent or expected sets of derivative results or conclusions of a main theory, hypothesis or experiment.
>
> [cor·ol·lar·y](http://www.thefreedictionary.com/corollary) (kôr-lr, kr-)
> n. pl. cor·ol·lar·ies
>
>
>
> 1. A proposition that follo... |
37,318,319 | I have Two Question related to Native App Performance Testing?
1)I have a Payment App, and it comes with bank security which is installed at the time of app installation. It sends an token number and rest of the data in encrypted format. Is it possible to handle such kind of request using Jmeter or any other performan... | 2016/05/19 | [
"https://Stackoverflow.com/questions/37318319",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4252313/"
] | (1) Yes. This is why performance testing tools are built around general purpose programming languages, to allow you (as the tester) to leverage your foundation skills in programming to leverage the appropriate algorithms and libraries to represent the same behavior as the client
(2) This is why performance testing to... | I'm not an expert in JMeter. But work a lot with Loadrunner (LR) (Performance Testing Tool from HP). Though JMeter and LR are different tools, they work under same principle and objective and so objective of performance testing.
As James Pulley mentioned, the performance testing tool may have the capability. But the q... |
37,318,319 | I have Two Question related to Native App Performance Testing?
1)I have a Payment App, and it comes with bank security which is installed at the time of app installation. It sends an token number and rest of the data in encrypted format. Is it possible to handle such kind of request using Jmeter or any other performan... | 2016/05/19 | [
"https://Stackoverflow.com/questions/37318319",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/4252313/"
] | (1) Yes. This is why performance testing tools are built around general purpose programming languages, to allow you (as the tester) to leverage your foundation skills in programming to leverage the appropriate algorithms and libraries to represent the same behavior as the client
(2) This is why performance testing to... | With the raise of several mobile network technologies, load testing a mobile application has become a different ball game in comparison with normal web app load testing. This is because of the differences in the response times that occur in different mobile networks such as 2G, 3G, 4G, etc. Additionally the client bein... |
30,362 | My mate always tells me to remove the germ (the center) from garlic and onions, especially if it's turning green. What are the pros and cons of the germs of these plants? | 2013/01/24 | [
"https://cooking.stackexchange.com/questions/30362",
"https://cooking.stackexchange.com",
"https://cooking.stackexchange.com/users/15265/"
] | So... I was always taught that you remove it because it's bitter. I generally remove it if it's big enough.
However, there seems to be some contention as to whether this is true (and to what degree it's true). See:
<http://www.examiner.com/article/remove-the-garlic-germ-few-do-this-anymore>
and
<http://ruhlman.com/201... | I always remove mine as I too find it affects the taste of the garlic. However, since I started keeping my garlic in the refrigerator, I've noticed that the garlic keeps much longer and rarely develops green germs. |
257,454 | I don't know if this can be done in an home environment but I would like to make a powerful system and have that providing a way for all my home computers to connect to having their own profile as if they were logging into their own account on a windows machine.
I would prefer a Windows 7 Based OS.
Is there such thin... | 2011/03/14 | [
"https://superuser.com/questions/257454",
"https://superuser.com",
"https://superuser.com/users/46390/"
] | That sounds like the basic Roaming Profiles facility that all Windows Server editions (certainly since Server 2000) provides.
1. Install a windows server, and set it up as an Active Directory Server.
2. Join the workstations into the Domain you created as part of Step 1.
You now have centralised user management and p... | Both [Windows Home Server](http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx) (new release out soon which is 2008 R2 based) and [Windows Small Business Server 2011](http://www.microsoft.com/oem/en/products/servers/Pages/sbs_overview.aspx) offer features which should help.
Home server h... |
38,286 | I know that memorising the whole the Quran is fard kifaya but are there any other fard kifaya acts ? | 2017/03/05 | [
"https://islam.stackexchange.com/questions/38286",
"https://islam.stackexchange.com",
"https://islam.stackexchange.com/users/20796/"
] | The most known examples are the funeral prayer (salat al-Janazah beside the janazah -burying itself- and the ghusl of the dead person), jihad, memorizing quran, getting or seeking knowledge, enjoining what is good and forbidding what is evil and ijtihad.
What constitutes fard al-kifaya فرض كفاية is that it is an oblig... | example: The five daily prayers for which muslims are individually responsible! |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | If you are on PC, you can use the console to add and remove perks.
**Finding a perk id:**
help [name of perk] 4
*help Armsman 4*
**Removing a perk**
player.removeperk [perk id]
*player.removeperk 00079342*
**Adding a perk**
player.addperk [perk id]
*player.addperk 00079342*
Notes:
* You can use ... | You can get the skill up to 100, make it legendary to make the skill 15 again. The perks you dumped into it will be removed and you can reuse them |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | If you are on PC, you can use the console to add and remove perks.
**Finding a perk id:**
help [name of perk] 4
*help Armsman 4*
**Removing a perk**
player.removeperk [perk id]
*player.removeperk 00079342*
**Adding a perk**
player.addperk [perk id]
*player.addperk 00079342*
Notes:
* You can use ... | For PC.
An easy solution related to all perks, so you can basically recreate your char:
This mod will remove all perks and add the right ammount removed as perk points:
[Ishs Respec Mod](http://www.nexusmods.com/skyrim/mods/16471/?)
If there remain any perks after the above mod being used, use the console to rem... |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | You can remove perks you currently have by using:
>
> player.removeperk *perkid*
>
>
>
To find out the id of the perk, type this in:
>
> help "perk name here" 0
>
>
>
This will bring up a list of all items matching your query (hopefully it contains the perk in that list).
To add a perk:
>
> player.addper... | If you have the Dragonborn DLC, play through the main DLC questline. One of the rewards of completing the [At the Summit of Apocrypha](http://www.uesp.net/wiki/Dragonborn:At_the_Summit_of_Apocrypha) quest is:
>
> A book that transports you to Hermaeus Mora's realm, and allows you to reset perks at the cost of one Dr... |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | Alternatively to cheating, there are other options:
1. Get yourself killed, your perk won't be saved.
2. Quit the game abruptly without saving, your perk won't be saved.
3. Although not really fair, you could return to a previous save game. | For PC.
An easy solution related to all perks, so you can basically recreate your char:
This mod will remove all perks and add the right ammount removed as perk points:
[Ishs Respec Mod](http://www.nexusmods.com/skyrim/mods/16471/?)
If there remain any perks after the above mod being used, use the console to rem... |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | If you are on PC, you can use the console to add and remove perks.
**Finding a perk id:**
help [name of perk] 4
*help Armsman 4*
**Removing a perk**
player.removeperk [perk id]
*player.removeperk 00079342*
**Adding a perk**
player.addperk [perk id]
*player.addperk 00079342*
Notes:
* You can use ... | Alternatively to cheating, there are other options:
1. Get yourself killed, your perk won't be saved.
2. Quit the game abruptly without saving, your perk won't be saved.
3. Although not really fair, you could return to a previous save game. |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | You can get the skill up to 100, make it legendary to make the skill 15 again. The perks you dumped into it will be removed and you can reuse them | For PC.
An easy solution related to all perks, so you can basically recreate your char:
This mod will remove all perks and add the right ammount removed as perk points:
[Ishs Respec Mod](http://www.nexusmods.com/skyrim/mods/16471/?)
If there remain any perks after the above mod being used, use the console to rem... |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | If you have the Dragonborn DLC, play through the main DLC questline. One of the rewards of completing the [At the Summit of Apocrypha](http://www.uesp.net/wiki/Dragonborn:At_the_Summit_of_Apocrypha) quest is:
>
> A book that transports you to Hermaeus Mora's realm, and allows you to reset perks at the cost of one Dr... | Alternatively to cheating, there are other options:
1. Get yourself killed, your perk won't be saved.
2. Quit the game abruptly without saving, your perk won't be saved.
3. Although not really fair, you could return to a previous save game. |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | If you have the Dragonborn DLC, play through the main DLC questline. One of the rewards of completing the [At the Summit of Apocrypha](http://www.uesp.net/wiki/Dragonborn:At_the_Summit_of_Apocrypha) quest is:
>
> A book that transports you to Hermaeus Mora's realm, and allows you to reset perks at the cost of one Dr... | For PC.
An easy solution related to all perks, so you can basically recreate your char:
This mod will remove all perks and add the right ammount removed as perk points:
[Ishs Respec Mod](http://www.nexusmods.com/skyrim/mods/16471/?)
If there remain any perks after the above mod being used, use the console to rem... |
35,121 | While leveling in Skyrim I put a perk in a tree, but now I feel like it is wasted, since I've found blowing things up with spells is much more fun than stabbing things with a giant sword.
Is there anyway for me to recover the wasted perk? I'm on the PC so I was guessing console commands could help. | 2011/11/11 | [
"https://gaming.stackexchange.com/questions/35121",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/3015/"
] | You can remove perks you currently have by using:
>
> player.removeperk *perkid*
>
>
>
To find out the id of the perk, type this in:
>
> help "perk name here" 0
>
>
>
This will bring up a list of all items matching your query (hopefully it contains the perk in that list).
To add a perk:
>
> player.addper... | Alternatively to cheating, there are other options:
1. Get yourself killed, your perk won't be saved.
2. Quit the game abruptly without saving, your perk won't be saved.
3. Although not really fair, you could return to a previous save game. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.