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
9,705
I have security camera recordings which are 1 - 8 hours in duration and I need to be able to view them in a short period of time to review long periods of time. Windows Media Player supports 8 seconds per second but this really doesn't do the job for me. I'd have to sit and wait a very long time to get through 8 hours...
2014/07/10
[ "https://softwarerecs.stackexchange.com/questions/9705", "https://softwarerecs.stackexchange.com", "https://softwarerecs.stackexchange.com/users/6320/" ]
You can try `VLC` from [videolan.org](https://www.videolan.org). It is free, but you should donate if you use it (especially in a business environment). :) It supports up to 32x playback speed - 32 seconds real footage in 1 second - so, 8 hours in 15 minutes. But you should ask yourself - you really can catch up some...
I'd recommend using Media Player Classic Home Cinema. Easy simple extremely well made application. Even ideal for ultra slow machines able to maintain perfect playback of 1080p video without hardware acceleration. Anyway you can "Increase Rate" by use of CTRL + UP or "Decrease Rate" - CTRL + DOWN or "Reset Rate" - CTR...
9,705
I have security camera recordings which are 1 - 8 hours in duration and I need to be able to view them in a short period of time to review long periods of time. Windows Media Player supports 8 seconds per second but this really doesn't do the job for me. I'd have to sit and wait a very long time to get through 8 hours...
2014/07/10
[ "https://softwarerecs.stackexchange.com/questions/9705", "https://softwarerecs.stackexchange.com", "https://softwarerecs.stackexchange.com/users/6320/" ]
You can use [smplayer](http://smplayer.sourceforge.net/), its a freeware, open-source project based on [mplayer](http://www.mplayerhq.hu/design7/news.html), a very robust and fast media player. It's available for Windows and Linux. You can configure the seek time through its configuration panel to whatever amount fits...
Try [Virtualdub](http://www.virtualdub.org/) - it has 'next scene' button, maybe based on image analysis. But give it a test - how much change does it take to be 'next scene', does'nt it overlook your required changes. Also take look at [iSpy](http://www.ispyconnect.com/) to either completely redo your system, or feed...
9,705
I have security camera recordings which are 1 - 8 hours in duration and I need to be able to view them in a short period of time to review long periods of time. Windows Media Player supports 8 seconds per second but this really doesn't do the job for me. I'd have to sit and wait a very long time to get through 8 hours...
2014/07/10
[ "https://softwarerecs.stackexchange.com/questions/9705", "https://softwarerecs.stackexchange.com", "https://softwarerecs.stackexchange.com/users/6320/" ]
You can use [smplayer](http://smplayer.sourceforge.net/), its a freeware, open-source project based on [mplayer](http://www.mplayerhq.hu/design7/news.html), a very robust and fast media player. It's available for Windows and Linux. You can configure the seek time through its configuration panel to whatever amount fits...
I'd recommend using Media Player Classic Home Cinema. Easy simple extremely well made application. Even ideal for ultra slow machines able to maintain perfect playback of 1080p video without hardware acceleration. Anyway you can "Increase Rate" by use of CTRL + UP or "Decrease Rate" - CTRL + DOWN or "Reset Rate" - CTR...
153,669
Since the days of Aristotle and Descartes, it has been known that under certain circumstances warm water freezes faster than cold water. This effect is now commonly known as the [Mpemba effect](https://en.wikipedia.org/wiki/Mpemba_effect), named after a student who rediscovered the effect in the sixties. Several theori...
2014/01/05
[ "https://mathoverflow.net/questions/153669", "https://mathoverflow.net", "https://mathoverflow.net/users/36090/" ]
Try this reference: O:H-O Bond Anomalous Relaxation Resolving Mpemba Paradox, by Xi Zhang Yongli Huang, Zengsheng Ma and Chang Q Sun <https://arxiv.org/abs/1310.6514> P.S. I see you have already found this reference. Some useful information about Mpemba effect can be found here <https://math.ucr.edu/home/baez/physics...
Try: X. Zhang, Y. Huang, Z. Ma, Y. Zhou, J. Zhou, W. Zheng, Q. Jiang, and C.Q. Sun, Hydrogen-bond memory and water-skin supersolidity resolving the Mpemba paradox. PCCP, 2014. 16(42): 22995-23002. X. Zhang, Y. Huang, Z. Ma, Y. Zhou, W. Zheng, J. Zhou, and C.Q. Sun, A common supersolid skin covering both water and ice...
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
> > Are comments compiled in to C# Silverlight Applications? > > > No. > > I am not worried about some getting access to my source > > > You should be. > > Is it safe to store information such as usernames and passwords within comments in your source code? > > > Safe against what attack? It is not s...
Is it safe to store user names and passwords in comments? --------------------------------------------------------- Probably not because IME too many people have access to your source code and likely someone you don't want reading them. Are comments compiled into your application: ------------------------------------...
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
Is it safe to store user names and passwords in comments? --------------------------------------------------------- Probably not because IME too many people have access to your source code and likely someone you don't want reading them. Are comments compiled into your application: ------------------------------------...
Comments are ignored by the compiler. They will not be put into the output executable.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
Is it safe to store user names and passwords in comments? --------------------------------------------------------- Probably not because IME too many people have access to your source code and likely someone you don't want reading them. Are comments compiled into your application: ------------------------------------...
Since comments are ignored by the compiler it does not mean that you should add comments like username and password to your code. As a good coding practice you should not store such information in your code.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
Is it safe to store user names and passwords in comments? --------------------------------------------------------- Probably not because IME too many people have access to your source code and likely someone you don't want reading them. Are comments compiled into your application: ------------------------------------...
The answers have already covered it well however just in case it needs to be made clear but since this is a Silverlight question. Any comments you include in your Xaml **will** be included in the final XAP.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
> > Are comments compiled in to C# Silverlight Applications? > > > No. > > I am not worried about some getting access to my source > > > You should be. > > Is it safe to store information such as usernames and passwords within comments in your source code? > > > Safe against what attack? It is not s...
Comments are ignored by the compiler. They will not be put into the output executable.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
> > Are comments compiled in to C# Silverlight Applications? > > > No. > > I am not worried about some getting access to my source > > > You should be. > > Is it safe to store information such as usernames and passwords within comments in your source code? > > > Safe against what attack? It is not s...
Since comments are ignored by the compiler it does not mean that you should add comments like username and password to your code. As a good coding practice you should not store such information in your code.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
> > Are comments compiled in to C# Silverlight Applications? > > > No. > > I am not worried about some getting access to my source > > > You should be. > > Is it safe to store information such as usernames and passwords within comments in your source code? > > > Safe against what attack? It is not s...
The answers have already covered it well however just in case it needs to be made clear but since this is a Silverlight question. Any comments you include in your Xaml **will** be included in the final XAP.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
Comments are ignored by the compiler. They will not be put into the output executable.
The answers have already covered it well however just in case it needs to be made clear but since this is a Silverlight question. Any comments you include in your Xaml **will** be included in the final XAP.
2,738,493
Is it safe to store information such as usernames and passwords within comments in your source code? I am not worried about some getting access to my source but I am concerned in regards to someone decompiling my compiled silverlight XAP file. Is anybody 100% sure if the compiler strips off commented code. I would assu...
2010/04/29
[ "https://Stackoverflow.com/questions/2738493", "https://Stackoverflow.com", "https://Stackoverflow.com/users/323353/" ]
Since comments are ignored by the compiler it does not mean that you should add comments like username and password to your code. As a good coding practice you should not store such information in your code.
The answers have already covered it well however just in case it needs to be made clear but since this is a Silverlight question. Any comments you include in your Xaml **will** be included in the final XAP.
193,327
There is a complex live system - few vlans. In each of them there are linux servers, and on every server there are services. Services connect together - for example service http on host A connect to service mysql on host B to port 3306/tcp. I would like to automated mapping this type of configuration to a database and...
2015/03/30
[ "https://unix.stackexchange.com/questions/193327", "https://unix.stackexchange.com", "https://unix.stackexchange.com/users/85895/" ]
In my opinion your best bet will be to use a [configuration management](https://en.wikipedia.org/wiki/Software_configuration_management) tool like [Puppet](https://puppetlabs.com/), [Chef](https://www.chef.io/chef/), [CFEngine](http://cfengine.com/) or [Ansible](http://www.ansible.com/home) so you can define your polic...
Consider to use fwbuilder (<http://www.fwbuilder.org/>). It's an opensource tool that manage a sort of kinds of firewall.
193,327
There is a complex live system - few vlans. In each of them there are linux servers, and on every server there are services. Services connect together - for example service http on host A connect to service mysql on host B to port 3306/tcp. I would like to automated mapping this type of configuration to a database and...
2015/03/30
[ "https://unix.stackexchange.com/questions/193327", "https://unix.stackexchange.com", "https://unix.stackexchange.com/users/85895/" ]
Some time ago I used [ferm](http://ferm.foo-projects.org/) and a custom and simple bash script to generate rulesets and insert it in the correct order vía "include" directive in **ferm.** If you want logging connections, etc... you can use **ulog-mysql**, and save specific data matched with a specific iptables rule in...
Consider to use fwbuilder (<http://www.fwbuilder.org/>). It's an opensource tool that manage a sort of kinds of firewall.
63,056
I just posed this [question](https://scifi.stackexchange.com/q/14119/3804) on sci-fi.stackexchange and had my wording corrected from *reveal* to *revelation*. > > I realise that to have said that too early in the film would have ruined the big **reveal**. Is there some in-universe reason for Palpatine to refer to Luk...
2012/04/02
[ "https://english.stackexchange.com/questions/63056", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15661/" ]
*[Reveal](http://oxforddictionaries.com/definition/reveal)* is used as a noun to mean a final revelation previously kept from the characters or viewers in a film or television show.
*Reveal* is fine; in this context it is synonymous with *revelation*. *Reveal* is more commonly a verb than a noun, so this is probably a case of overcorrection; it's probably more common than alternatives like *divulgence*, for example.
63,056
I just posed this [question](https://scifi.stackexchange.com/q/14119/3804) on sci-fi.stackexchange and had my wording corrected from *reveal* to *revelation*. > > I realise that to have said that too early in the film would have ruined the big **reveal**. Is there some in-universe reason for Palpatine to refer to Luk...
2012/04/02
[ "https://english.stackexchange.com/questions/63056", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15661/" ]
Not only is it fine: it's [in Oxford Dictionaries](http://oxforddictionaries.com/definition/reveal?q=reveal). > > (In a film or television programme) A final revelation of information that has previously been kept from the characters or viewers: > > > *The big reveal at the end of the movie answers all questions* >...
*Reveal* is fine; in this context it is synonymous with *revelation*. *Reveal* is more commonly a verb than a noun, so this is probably a case of overcorrection; it's probably more common than alternatives like *divulgence*, for example.
63,056
I just posed this [question](https://scifi.stackexchange.com/q/14119/3804) on sci-fi.stackexchange and had my wording corrected from *reveal* to *revelation*. > > I realise that to have said that too early in the film would have ruined the big **reveal**. Is there some in-universe reason for Palpatine to refer to Luk...
2012/04/02
[ "https://english.stackexchange.com/questions/63056", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15661/" ]
According to the OED this use of reveal as a noun was common until the 18th century, after that it was considered obsolete. But it came into use again with the predecessors of reality TV in the 1950s (think Candid Camera). I suspect it has gained in usage as an alternative to "revelation" because of the religious or co...
*Reveal* is fine; in this context it is synonymous with *revelation*. *Reveal* is more commonly a verb than a noun, so this is probably a case of overcorrection; it's probably more common than alternatives like *divulgence*, for example.
63,056
I just posed this [question](https://scifi.stackexchange.com/q/14119/3804) on sci-fi.stackexchange and had my wording corrected from *reveal* to *revelation*. > > I realise that to have said that too early in the film would have ruined the big **reveal**. Is there some in-universe reason for Palpatine to refer to Luk...
2012/04/02
[ "https://english.stackexchange.com/questions/63056", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15661/" ]
*[Reveal](http://oxforddictionaries.com/definition/reveal)* is used as a noun to mean a final revelation previously kept from the characters or viewers in a film or television show.
Not only is it fine: it's [in Oxford Dictionaries](http://oxforddictionaries.com/definition/reveal?q=reveal). > > (In a film or television programme) A final revelation of information that has previously been kept from the characters or viewers: > > > *The big reveal at the end of the movie answers all questions* >...
63,056
I just posed this [question](https://scifi.stackexchange.com/q/14119/3804) on sci-fi.stackexchange and had my wording corrected from *reveal* to *revelation*. > > I realise that to have said that too early in the film would have ruined the big **reveal**. Is there some in-universe reason for Palpatine to refer to Luk...
2012/04/02
[ "https://english.stackexchange.com/questions/63056", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15661/" ]
*[Reveal](http://oxforddictionaries.com/definition/reveal)* is used as a noun to mean a final revelation previously kept from the characters or viewers in a film or television show.
According to the OED this use of reveal as a noun was common until the 18th century, after that it was considered obsolete. But it came into use again with the predecessors of reality TV in the 1950s (think Candid Camera). I suspect it has gained in usage as an alternative to "revelation" because of the religious or co...
100,048
For example: another player, 'Player A', currently has the highest bounty, and the [pirates](http://sinsofasolarempire.wikia.com/wiki/Pirates) are now raiding a planet or asteroid controlled by them. If I also attack and send my ships to the planet or asteroid controlled by 'Player A' that the pirates are raiding, wi...
2013/01/10
[ "https://gaming.stackexchange.com/questions/100048", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/4797/" ]
Here is what happens when a pirate bounty is set: 1. A pirate fleet jumps/appears into the pirate system. 2. They select one of the closer planets (not guarenteed though) of the target race that has the bounty. 3. Their fleet then heads for that sector. If you or your ships are along their flight path, they'll exchan...
If you're not the current target of their raiding, they should leave you alone right up until you either start shooting at them (note that your ships will automatically open fire on pirates by default as they're always flagged hostile). It's been a while since I last played, however; things may have changed in the int...
32,641
Suppose you are playing a game against an opponent whom you know only uses pure strategies. My question is, is there any such game in which using a mixed strategy in response is better than all the pure strategies you have at your disposal?
2019/11/08
[ "https://economics.stackexchange.com/questions/32641", "https://economics.stackexchange.com", "https://economics.stackexchange.com/users/4447/" ]
Fixing the strategy of the opponent, a mixed strategy never yields a strictly higher utility if you are expected utility-maximizing. The reason is that the expected utility from a mixed strategy is at most as high as the highest utility from the pure strategies which this mixed strategy plays with positive probability....
Yes. For example, consider the rather trivial game \begin{array}{|c|c|}\hline &A&B\\\hline A&0,0&0,0\\\hline B&0,0&0,0&\\\hline \end{array} Clearly, playing a mixed strategy is a best response to either of the pure strategies (since all strategies, mixed or otherwise, yield a payoff of 0). Of course, as pointed out ...
32,641
Suppose you are playing a game against an opponent whom you know only uses pure strategies. My question is, is there any such game in which using a mixed strategy in response is better than all the pure strategies you have at your disposal?
2019/11/08
[ "https://economics.stackexchange.com/questions/32641", "https://economics.stackexchange.com", "https://economics.stackexchange.com/users/4447/" ]
Fixing the strategy of the opponent, a mixed strategy never yields a strictly higher utility if you are expected utility-maximizing. The reason is that the expected utility from a mixed strategy is at most as high as the highest utility from the pure strategies which this mixed strategy plays with positive probability....
Repeated games and nonlinear utility ------------------------------------ Let's assume a trivial two-player game where each player has two options A and B; and the payout is +1/-1 if players pick the same and -1/+1 if players pick differently. Let's assume that the game is repeated 100 times with the strategies chose...
164,934
While setting up my Eclipse IDE it seems that I don't know how to change the background color of this Java-assisted search: ![enter image description here](https://i.stack.imgur.com/yk1RZ.png) How can I do that?
2010/07/17
[ "https://superuser.com/questions/164934", "https://superuser.com", "https://superuser.com/users/43297/" ]
That's a tricky one! These are the marked occurrences. You change them in the preferences, under General → Editors → Text Editors → Annotations, and select Occurrences from the list. ![enter image description here](https://i.stack.imgur.com/73gzg.gif)
This thread might help you <https://stackoverflow.com/questions/96981/color-themes-for-eclipse>
153,700
I am trying to use Post Man for SOAP Calls. I am having issues finding where the Auth URL is for salesforce marketing cloud/ exacttarget. Please refer to the pic below: [![enter image description here](https://i.stack.imgur.com/xXEaR.png)](https://i.stack.imgur.com/xXEaR.png) I will appreciate help with this.
2016/12/25
[ "https://salesforce.stackexchange.com/questions/153700", "https://salesforce.stackexchange.com", "https://salesforce.stackexchange.com/users/31726/" ]
From what I can tell from the documentation there is no Auth URL. At least none mentioned in the documentation. You simply use your Client Id and Secret to request a token Maybe this collection of calls will help you get started in getting a token via rest them making your SOAP call from postman with payload: > > Yo...
I would like to suggest to get the SOAP Request and Response and call it using APEX code. Before that use the SOAPUI free version to test the request and response with the endpoint URL. The SOAPUI Link - <https://www.soapui.org/> POSTMAN is very much helpful for the RESTFull services.
2,190
I keep accidentally pressing the button on the earbuds when it's in my pocket. Any of these would be great for me: 1. Disable the button only when the device is locked 2. Disable the button always
2010/10/15
[ "https://android.stackexchange.com/questions/2190", "https://android.stackexchange.com", "https://android.stackexchange.com/users/743/" ]
[Headset blocker](http://www.appbrain.com/app/headset-blocker/com.idunnolol.headsetblocker) will disable those buttons. It's a widget, not an app.
Try [Galaxy Music [Button Disabler]](https://play.google.com/store/apps/details?id=com.rltmultimedia.serviceMusicButtonDisabler). It is the best solution for locking the music button. It **costs** .99 cent though. ![screenshot](https://i.stack.imgur.com/qrAQ7.jpg)
10,277
Specifically, how can decoherence explain the appearance of flecks of metallic silver on a photographic plate when exposed to the very weak light of a distant star? EDIT: Perhaps the advocates of decoherence need some context for this question. There is a certain definite quantity of energy on the order of one or two ...
2011/05/23
[ "https://physics.stackexchange.com/questions/10277", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/3253/" ]
Almost phenomenologically, "the appearance of flecks of metallic silver on a photographic plate" is a thermodynamic transition that happens at different rates depending on the details of how the plate is prepared and on details of the exposure of the photographic plate. Such thermodynamic transitions are often correlat...
The answer is simple: Decoherence doesn't explain wavefunction collapse and it couldn't possibly do such a thing. Decoherence and collapse are complementary phenomenons, but they are fundamentally different Decoherence at most will make all interference terms to have essentially random phases, which will average out t...
10,277
Specifically, how can decoherence explain the appearance of flecks of metallic silver on a photographic plate when exposed to the very weak light of a distant star? EDIT: Perhaps the advocates of decoherence need some context for this question. There is a certain definite quantity of energy on the order of one or two ...
2011/05/23
[ "https://physics.stackexchange.com/questions/10277", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/3253/" ]
Almost phenomenologically, "the appearance of flecks of metallic silver on a photographic plate" is a thermodynamic transition that happens at different rates depending on the details of how the plate is prepared and on details of the exposure of the photographic plate. Such thermodynamic transitions are often correlat...
> > Any explanation must explain where this energy comes from. > > > The energy comes from the energy of a single photon that has come all that way from a distant star. E=h\*nu , nu the frequency. > > How does "decoherence" claim to do this? > > > Decoherence has little to do with single photons or particle...
10,277
Specifically, how can decoherence explain the appearance of flecks of metallic silver on a photographic plate when exposed to the very weak light of a distant star? EDIT: Perhaps the advocates of decoherence need some context for this question. There is a certain definite quantity of energy on the order of one or two ...
2011/05/23
[ "https://physics.stackexchange.com/questions/10277", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/3253/" ]
The answer is simple: Decoherence doesn't explain wavefunction collapse and it couldn't possibly do such a thing. Decoherence and collapse are complementary phenomenons, but they are fundamentally different Decoherence at most will make all interference terms to have essentially random phases, which will average out t...
> > Any explanation must explain where this energy comes from. > > > The energy comes from the energy of a single photon that has come all that way from a distant star. E=h\*nu , nu the frequency. > > How does "decoherence" claim to do this? > > > Decoherence has little to do with single photons or particle...
42,232
My brother is being refused admission to a school that I attended for 9 years. This is because when I was in school, the teachers traumatised me and we complained about it in a feedback form. The principal of the school called me to her office and gave me a earful for "not being grateful" to the school for all the oppo...
2019/06/19
[ "https://law.stackexchange.com/questions/42232", "https://law.stackexchange.com", "https://law.stackexchange.com/users/26292/" ]
Because the contract is between the creator and the backer ---------------------------------------------------------- > > Kickstarter is not a part of this contract — the contract is a direct legal agreement between creators and their backers. Here are the terms that govern that agreement: > > > Kickstarter has s...
> > how a backer can sue a creator who fails to deliver a promised functionality for a product? > > > "*Legal action on behalf of your backers*" means that Kickstarter (not the backers) will sue the creator. It will do that after the backers complain — to honor its contract with them and/or as a goodwill gesture.
67,935,120
I'm trying to let an api send a mail on behalf of a user. I have an UWP application (Azure AD App "A") that posts some data to the API (Azure AD App "B") The API are then going to collect some more data and send a mail as the user that posted that data. When the post is received by the API the bearer token has "AUD"...
2021/06/11
[ "https://Stackoverflow.com/questions/67935120", "https://Stackoverflow.com", "https://Stackoverflow.com/users/5962462/" ]
We can't send mail on\_behalf\_of with a guest user account because a guest user doesn't have O365 Exchange Online license in this tenant. Although maybe the guest user has O365 Exchange Online license in its own tenant, it is not allowed to send mail from this tenant. It is expected. > > What can I do to bypass th...
Thanks Allen! Now when I cooled of a bit (I have extremely hot in my work area) I realized what I tried to do and why it didnt work ;) I'm solving the problem by looking at the bearertoken and see if it is a Guest user who uses the app and send from an "no-reply" account in those cases.
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
You will need to go to Store->Sign Out, then sign in with your own account. After that, delete the software that is asking for the old account password, and reinstall it under your account. If the software is not free, you will need to buy the software again. You do not have a license to use the software, unfortunatel...
Go to System Preferneces Check the box next to Allow user to reset password using Apple ID. This will let you change the locked Apple ID
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
You will need to go to Store->Sign Out, then sign in with your own account. After that, delete the software that is asking for the old account password, and reinstall it under your account. If the software is not free, you will need to buy the software again. You do not have a license to use the software, unfortunatel...
The reason why app prompt the old user account is because the app was installed by the old user, and the purchase/install history (App Store called it purchase even the app is free) was made by the old user. To solve this, you need to delete the app first (move to bin) than reinstall it again. Reinstall the app will ...
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
Since you do not know the previous user Apple ID, unfortunately you will have to start from scratch. You will have to rebuild your computer OS and all Apple applications under your user ID in order to keep it up to date with software updates in the future. Here are the detailed instructions how to do that. [Changing...
Yes this process of removing the installed app by moving it to trash and downloading again from store needs to be done for each app individually. Is there any way to do it for all the installed apps that need updates?
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
Go to System Preferences > App Store and change the first drop-down menu in the last section of the window (Purchases and In-App Purchases). This should be enough to force the system re-asking your credentials. If you already set up your account somewhere else, aka iCloud than the username will be automatically filled ...
Yes this process of removing the installed app by moving it to trash and downloading again from store needs to be done for each app individually. Is there any way to do it for all the installed apps that need updates?
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
You will need to go to Store->Sign Out, then sign in with your own account. After that, delete the software that is asking for the old account password, and reinstall it under your account. If the software is not free, you will need to buy the software again. You do not have a license to use the software, unfortunatel...
Since you do not know the previous user Apple ID, unfortunately you will have to start from scratch. You will have to rebuild your computer OS and all Apple applications under your user ID in order to keep it up to date with software updates in the future. Here are the detailed instructions how to do that. [Changing...
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
You will need to go to Store->Sign Out, then sign in with your own account. After that, delete the software that is asking for the old account password, and reinstall it under your account. If the software is not free, you will need to buy the software again. You do not have a license to use the software, unfortunatel...
Go to System Preferences > App Store and change the first drop-down menu in the last section of the window (Purchases and In-App Purchases). This should be enough to force the system re-asking your credentials. If you already set up your account somewhere else, aka iCloud than the username will be automatically filled ...
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
To switch Appstore user you can go to 'Featured' tab -- there link named as "Welcome " is clickable and open the window with the button "Log out".
Go to System Preferences > App Store and change the first drop-down menu in the last section of the window (Purchases and In-App Purchases). This should be enough to force the system re-asking your credentials. If you already set up your account somewhere else, aka iCloud than the username will be automatically filled ...
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
To switch Appstore user you can go to 'Featured' tab -- there link named as "Welcome " is clickable and open the window with the button "Log out".
Yes this process of removing the installed app by moving it to trash and downloading again from store needs to be done for each app individually. Is there any way to do it for all the installed apps that need updates?
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
Go to System Preferences > App Store and change the first drop-down menu in the last section of the window (Purchases and In-App Purchases). This should be enough to force the system re-asking your credentials. If you already set up your account somewhere else, aka iCloud than the username will be automatically filled ...
On Mojave(10.14.4). This is how I tried and changed it. 1. Open App Store app and click on "Discover" option on the left hand side bar. 2. Scroll down and click on "Add Funds to Apple ID" 3. Which then prompts you to add you Apple ID and Password, fill them 4. After successful login, it prompts you with account detail...
152,893
I bought a used MacBook Pro, and I need to update some software. When I click the 'update all' button to proceed, it asks for the App Store password of the old user's account: ![App Store screenshot](https://i.stack.imgur.com/62wN6.png) How do I remove the old user's account so that I can update my software?
2014/10/25
[ "https://apple.stackexchange.com/questions/152893", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/97564/" ]
Since you do not know the previous user Apple ID, unfortunately you will have to start from scratch. You will have to rebuild your computer OS and all Apple applications under your user ID in order to keep it up to date with software updates in the future. Here are the detailed instructions how to do that. [Changing...
On Mojave(10.14.4). This is how I tried and changed it. 1. Open App Store app and click on "Discover" option on the left hand side bar. 2. Scroll down and click on "Add Funds to Apple ID" 3. Which then prompts you to add you Apple ID and Password, fill them 4. After successful login, it prompts you with account detail...
43,952
I recently finished watching the two seasons of Owari no Seraph. A new season seems unlikely to happen, so I want to pick up the manga. Where does the story continue in the manga, after the 12th episode in the anime (second season)?
2017/12/26
[ "https://anime.stackexchange.com/questions/43952", "https://anime.stackexchange.com", "https://anime.stackexchange.com/users/31538/" ]
According to [Japanese Wikipedia](https://ja.wikipedia.org/wiki/%E7%B5%82%E3%82%8F%E3%82%8A%E3%81%AE%E3%82%BB%E3%83%A9%E3%83%95#%E5%90%84%E8%A9%B1%E3%83%AA%E3%82%B9%E3%83%88), [Wikia](http://owarinoseraph.wikia.com/wiki/Seraph_of_the_End_(Episode)) and many Reddit threads (e.g. [this](https://www.reddit.com/r/OwarinoSe...
Other than the ending of Ch. 41 and the ending of Season 2, The Manga (Ch. 1-41) and Anime (Seasons 1 and 2) are, for all intensive purposes, pretty much identical.
323,536
In my actual Asteroid, I have a huge amount of polluted water. What is the best way to destroy it (free the space) or use it in large amounts to get the space quickly? (I don't need to purify it, because I can use several [Steam Geysers](https://oxygennotincluded.gamepedia.com/Steam_Geyser). Do you have any other id...
2017/12/23
[ "https://gaming.stackexchange.com/questions/323536", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/54377/" ]
I would use it in the fertilizer synthesizer. 1) This produces natural gas, which can be used with the natural gas generator to make power. (The N.G. generator also produces more polluted water, but much less than the fertilizer generators consume). 2) You'll get a lot of fertilizer that you don't need, but storage ...
I believe you can boil polluted water to get steam and it will drop polluted dirt. Then you can compost the polluted dirt and do whatever you want with the steam
121,963
I mistakenly deleted my compositing layout. I've tried to open the file without the Load UI and I've also restored the settings to default but still can't find the layout. Although if I open a new file entirely, the layout is back but not on the saved project. How can I bring the compositing layout back?
2018/11/04
[ "https://blender.stackexchange.com/questions/121963", "https://blender.stackexchange.com", "https://blender.stackexchange.com/users/64297/" ]
The custom screen layouts are saved in a blend file but they don't show up when we append data from another file. This leaves two choices, recreate the layout that is missing, or open the file without the screen layouts and replace all of the screens in the file. To create a new screen layout click the `+` next to the...
Go to top left corner there you will see a box with up and down arrows click on that for drop menu there find (i) info click on that you will get back compositing layout.
11,259,175
I need to choose a Database for storing data remotely from a big number (thousands to tens of thousands) of sensors that would generate around one entry per minute each. The said data needs to be queried in a variety of ways from counting data with certain characteristics for statistics to simple outputting for plott...
2012/06/29
[ "https://Stackoverflow.com/questions/11259175", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1490721/" ]
There is usually no "best" database since they all involve trade-offs of one kind or another. Your question is also very vague because you don't say anything about your performance needs other than the number of inserts per minute (how much data per insert?) and that you need "scalability". It also looks like a case o...
you can try to use Redis noSQL database
11,259,175
I need to choose a Database for storing data remotely from a big number (thousands to tens of thousands) of sensors that would generate around one entry per minute each. The said data needs to be queried in a variety of ways from counting data with certain characteristics for statistics to simple outputting for plott...
2012/06/29
[ "https://Stackoverflow.com/questions/11259175", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1490721/" ]
Found this question while googling for "database for sensor data" One of very helpful search-results (along with this SO question) was this [blog](http://tinkerman.eldiariblau.net/storing-and-publishing-sensor-data/): Actually I've started a similar project (<http://reatha.de>) but realized too late, that I'm using n...
you can try to use Redis noSQL database
11,259,175
I need to choose a Database for storing data remotely from a big number (thousands to tens of thousands) of sensors that would generate around one entry per minute each. The said data needs to be queried in a variety of ways from counting data with certain characteristics for statistics to simple outputting for plott...
2012/06/29
[ "https://Stackoverflow.com/questions/11259175", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1490721/" ]
There is usually no "best" database since they all involve trade-offs of one kind or another. Your question is also very vague because you don't say anything about your performance needs other than the number of inserts per minute (how much data per insert?) and that you need "scalability". It also looks like a case o...
Found this question while googling for "database for sensor data" One of very helpful search-results (along with this SO question) was this [blog](http://tinkerman.eldiariblau.net/storing-and-publishing-sensor-data/): Actually I've started a similar project (<http://reatha.de>) but realized too late, that I'm using n...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
First off, I would probably recommend you to dive into WPF rather than winforms these days. Winforms is the "old" way of doing .NET windows applications, and WPF is the way of the (at least near) future. That said, [windowsclient.net](http://windowsclient.net/) seems to be the official MS information outlet regarding t...
Look also into WPF, which is winform successor...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
Look also into WPF, which is winform successor...
Hahahahaha. Well in my opinion pretty much every single example of Winforms lacks good software design principles. This is due to the "form first" development style that visual studio uses by default. In most demonstrations and samples there is no benefit in producing a more pleasing design as you're trying to demonst...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
Actually, coming from a web background will probably help you write thick-client software (WinForms or WPF; I can think of many reasons to continue work on WinForms), because many of the pittfalls of winform development are simply not possible in a web environment (such as keeping connections open between units-of-work...
Look also into WPF, which is winform successor...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
**Windows Forms 2.0 Programming (Microsoft .NET Development Series)** by Chris Sells and Michael Weinhardt **Programming WPF** by Chris Sells, Ian Griffiths **Applications = Code + Markup: A Guide to the Microsoft Windows Presentation Foundation (Pro - Developer)** by Charles Petzold If you're looking to build...
Look also into WPF, which is winform successor...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
First off, I would probably recommend you to dive into WPF rather than winforms these days. Winforms is the "old" way of doing .NET windows applications, and WPF is the way of the (at least near) future. That said, [windowsclient.net](http://windowsclient.net/) seems to be the official MS information outlet regarding t...
Hahahahaha. Well in my opinion pretty much every single example of Winforms lacks good software design principles. This is due to the "form first" development style that visual studio uses by default. In most demonstrations and samples there is no benefit in producing a more pleasing design as you're trying to demonst...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
First off, I would probably recommend you to dive into WPF rather than winforms these days. Winforms is the "old" way of doing .NET windows applications, and WPF is the way of the (at least near) future. That said, [windowsclient.net](http://windowsclient.net/) seems to be the official MS information outlet regarding t...
**Windows Forms 2.0 Programming (Microsoft .NET Development Series)** by Chris Sells and Michael Weinhardt **Programming WPF** by Chris Sells, Ian Griffiths **Applications = Code + Markup: A Guide to the Microsoft Windows Presentation Foundation (Pro - Developer)** by Charles Petzold If you're looking to build...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
Actually, coming from a web background will probably help you write thick-client software (WinForms or WPF; I can think of many reasons to continue work on WinForms), because many of the pittfalls of winform development are simply not possible in a web environment (such as keeping connections open between units-of-work...
Hahahahaha. Well in my opinion pretty much every single example of Winforms lacks good software design principles. This is due to the "form first" development style that visual studio uses by default. In most demonstrations and samples there is no benefit in producing a more pleasing design as you're trying to demonst...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
**Windows Forms 2.0 Programming (Microsoft .NET Development Series)** by Chris Sells and Michael Weinhardt **Programming WPF** by Chris Sells, Ian Griffiths **Applications = Code + Markup: A Guide to the Microsoft Windows Presentation Foundation (Pro - Developer)** by Charles Petzold If you're looking to build...
Hahahahaha. Well in my opinion pretty much every single example of Winforms lacks good software design principles. This is due to the "form first" development style that visual studio uses by default. In most demonstrations and samples there is no benefit in producing a more pleasing design as you're trying to demonst...
1,714,513
I am what I would consider a very experienced web developer, not to mention programmer in general. One area I have never seriously moved into is winforms development. Could someone recommend some resources that would be assist me in getting familiar with winforms? Many of the resources I have found are less than desira...
2009/11/11
[ "https://Stackoverflow.com/questions/1714513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/208591/" ]
Actually, coming from a web background will probably help you write thick-client software (WinForms or WPF; I can think of many reasons to continue work on WinForms), because many of the pittfalls of winform development are simply not possible in a web environment (such as keeping connections open between units-of-work...
**Windows Forms 2.0 Programming (Microsoft .NET Development Series)** by Chris Sells and Michael Weinhardt **Programming WPF** by Chris Sells, Ian Griffiths **Applications = Code + Markup: A Guide to the Microsoft Windows Presentation Foundation (Pro - Developer)** by Charles Petzold If you're looking to build...
3,150
I have seen 'Muslim' and 'Islamic' both used as adjectives to describe things relating to Islam. Is there a nuanced difference between the two words? I know that 'Muslim' can also be used as a noun, as in: > > Muslims as the people who practice Islam. > > > But, are the following sentences both correct? Are they...
2010/09/17
[ "https://english.stackexchange.com/questions/3150", "https://english.stackexchange.com", "https://english.stackexchange.com/users/433/" ]
*Muslim* or *Moslem* is always referring to [a man](http://en.wikipedia.org/wiki/Muslim), meaning "one who submits", with a female form *Muslima*, while *Islamic* denotes "belonging to Islam". Therefore, instead of saying > > Muslim people practice Islam. > > > one can also say > > Muslims practice Islam. > >...
They are roughly equivalent in meaning when used adjectivally, although I find people who respect Muslims calling them "Muslim" and people who don't respect Muslims calling them "Islamic."
148,748
I have some money in an IRA account with NEW YORK LIFE. I would like to transfer this money into a Fedelity brokerage account since I can buy individual stocks there. Who do I contact to arrange the transfer NEW YORK LIFE agent or Fidelity customer support? My NEW YORK LIFE agent said she is not able to help me and I w...
2022/01/22
[ "https://money.stackexchange.com/questions/148748", "https://money.stackexchange.com", "https://money.stackexchange.com/users/114846/" ]
The easiest way to do move money from one IRA account to another IRA account is by a trustee-to-trustee transfer where the money goes directly from one custodian (New York Life in this case) to the other custodian (Fidelity in this case). The easiest way of accomplishing this is to call Fidelity or go online on their w...
You should to talk to both. The receiving company will be happy to get your money. The sending company will wish you weren't leaving. The methods they use might clash. While a seamless electronic transfer would be ideal, what you want to avoid is them sending you a check made out to you. If they have to do it by check...
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
There is also a specific ChartJS.Blazor package available for free, just a small NuGet package. And compatible with client-side and server-side Blazor applications. * [ChartJS.Blazor](https://www.nuget.org/packages/ChartJs.Blazor/) package by Marius Muntean * Or search for "ChartJS.Blazor" in NuGet Package manager in ...
There is also [Blazly](https://github.com/lqdev/Blazly) even though it doesn't seem to be much activity lately it is quite easy to adapt to specific needs.
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
[Plotly.Blazor](https://www.nuget.org/packages/Plotly.Blazor) is now another option. > > Plotly.Blazor is a wrapper for plotly.js. > Built on top of d3.js and stack.gl, plotly.js is a high-level, declarative charting library. It ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. > ...
There are beautiful charts available on Blazorise.com. Please check them and give a try: <https://bootstrapdemo.blazorise.com/tests/charts>
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
To answer the question myself, [this](https://github.com/stsrki/Blazorise) is the library which looks the most promising and it is also free.
You can find the library for bar chart, and lot of other components here: [radzen.com](https://blazor.radzen.com/bar-chart)
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
There is also a specific ChartJS.Blazor package available for free, just a small NuGet package. And compatible with client-side and server-side Blazor applications. * [ChartJS.Blazor](https://www.nuget.org/packages/ChartJs.Blazor/) package by Marius Muntean * Or search for "ChartJS.Blazor" in NuGet Package manager in ...
You can find the library for bar chart, and lot of other components here: [radzen.com](https://blazor.radzen.com/bar-chart)
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
[Plotly.Blazor](https://www.nuget.org/packages/Plotly.Blazor) is now another option. > > Plotly.Blazor is a wrapper for plotly.js. > Built on top of d3.js and stack.gl, plotly.js is a high-level, declarative charting library. It ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. > ...
There is also [Blazly](https://github.com/lqdev/Blazly) even though it doesn't seem to be much activity lately it is quite easy to adapt to specific needs.
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
[Plotly.Blazor](https://www.nuget.org/packages/Plotly.Blazor) is now another option. > > Plotly.Blazor is a wrapper for plotly.js. > Built on top of d3.js and stack.gl, plotly.js is a high-level, declarative charting library. It ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. > ...
You can find the library for bar chart, and lot of other components here: [radzen.com](https://blazor.radzen.com/bar-chart)
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
There are beautiful charts available on Blazorise.com. Please check them and give a try: <https://bootstrapdemo.blazorise.com/tests/charts>
You can find the library for bar chart, and lot of other components here: [radzen.com](https://blazor.radzen.com/bar-chart)
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
To answer the question myself, [this](https://github.com/stsrki/Blazorise) is the library which looks the most promising and it is also free.
There are beautiful charts available on Blazorise.com. Please check them and give a try: <https://bootstrapdemo.blazorise.com/tests/charts>
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
To answer the question myself, [this](https://github.com/stsrki/Blazorise) is the library which looks the most promising and it is also free.
There is also [Blazly](https://github.com/lqdev/Blazly) even though it doesn't seem to be much activity lately it is quite easy to adapt to specific needs.
56,504,754
So basically I want to create charts with server-side blazor, I was searching around for some packages which would allow me to create charts. The problem being that they are all pretty expensive: 1. [telerik](https://docs.telerik.com/blazor-ui/components/chart/overview) 2. [syncfusion](https://www.syncfusion.com/blazo...
2019/06/08
[ "https://Stackoverflow.com/questions/56504754", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10070647/" ]
There is also [Blazly](https://github.com/lqdev/Blazly) even though it doesn't seem to be much activity lately it is quite easy to adapt to specific needs.
You can find the library for bar chart, and lot of other components here: [radzen.com](https://blazor.radzen.com/bar-chart)
105,130
I'm a non-EU citizen with Palestinian nationality, married to a Spanish citizen. We got married a few weeks ago in Palestine (we both live in Palestine). She travels to Spain regularly to visit her family there. We're in contact with the Spanish consulate in Palestine to get our marriage recognized and get the Libro d...
2017/11/11
[ "https://travel.stackexchange.com/questions/105130", "https://travel.stackexchange.com", "https://travel.stackexchange.com/users/70222/" ]
Yes, you need a visa. You may be able to get it free of charge because Spain apparently extends to family of its own citizens rights similar to those extended to the family of European Union citizens. You say you are already in contact with the Spanish consulate. You should ask there to apply for a visa as the spouse...
I visited the Spanish consulate. They asked for minimum info, no finances etc. They just asked for international health insurance. I will get the insurance and send them my passport by mail. I'll keep the post updated.
13,746,824
I would like to ask if you know any opensource java implemented lemmatizer. Or if not opensource, at least any java implemented lemmatizer that can be used without having to pay for the licence.
2012/12/06
[ "https://Stackoverflow.com/questions/13746824", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1866291/" ]
Have you tried GATE? Its written in Java. Much of it is pure Java, and some parts are just Java wrappers around other stuff. It probably has a plugin for the language or text-type your want to lemmatize. <http://gate.ac.uk/gate/doc/plugins.html> Its should be considered research quality, but its highly featured. I us...
The Stanford NLP package performs lemmatization. It is licensed under the GNU General Public License. See the [Stanford NLP site](http://nlp.stanford.edu/software/corenlp.shtml) for more specific information.
13,014,481
I have recently switched to Coda 2 on Mac (OSX 10.8.2) and under site definitions the host, username and all other information save fine. It will not, however save my passwords. I DO NOT have "ask each time" checked (preemptive answer). Any help would be greatly appreciated.
2012/10/22
[ "https://Stackoverflow.com/questions/13014481", "https://Stackoverflow.com", "https://Stackoverflow.com/users/845308/" ]
Found a solution for this. If you open up Keychain Access, find the key that is named after your site so for example ftp.sitename.com. Double click it and go to access. Make it so that any program can use it. Then if you go back to Coda, enter the password once and d/c. It should be saved when you re-open the program :...
Great! But the only thing is missing, that you didn't mention how or from where to open KeyChain access. I used mac spotlight to find it. Actual location to open Keychain access: under Applications > Utility > KeychainAccess Just select the ftp.yourwebsiteurl.com Doubleclick on it There will be two tabs. Click on Acc...
13,014,481
I have recently switched to Coda 2 on Mac (OSX 10.8.2) and under site definitions the host, username and all other information save fine. It will not, however save my passwords. I DO NOT have "ask each time" checked (preemptive answer). Any help would be greatly appreciated.
2012/10/22
[ "https://Stackoverflow.com/questions/13014481", "https://Stackoverflow.com", "https://Stackoverflow.com/users/845308/" ]
Found a solution for this. If you open up Keychain Access, find the key that is named after your site so for example ftp.sitename.com. Double click it and go to access. Make it so that any program can use it. Then if you go back to Coda, enter the password once and d/c. It should be saved when you re-open the program :...
Coda 2.x has built in FTP, git, SSH, and more. Coda's way of dealing with FTP is to have you set up your files as a "Site" Once you set it up this way, it saves FTP logins, git logins, ssh logins, etc for all aspects of that site. Do this: 1. Open Coda - Coda should automatically open at the 'sites' page. If not,...
13,014,481
I have recently switched to Coda 2 on Mac (OSX 10.8.2) and under site definitions the host, username and all other information save fine. It will not, however save my passwords. I DO NOT have "ask each time" checked (preemptive answer). Any help would be greatly appreciated.
2012/10/22
[ "https://Stackoverflow.com/questions/13014481", "https://Stackoverflow.com", "https://Stackoverflow.com/users/845308/" ]
Great! But the only thing is missing, that you didn't mention how or from where to open KeyChain access. I used mac spotlight to find it. Actual location to open Keychain access: under Applications > Utility > KeychainAccess Just select the ftp.yourwebsiteurl.com Doubleclick on it There will be two tabs. Click on Acc...
Coda 2.x has built in FTP, git, SSH, and more. Coda's way of dealing with FTP is to have you set up your files as a "Site" Once you set it up this way, it saves FTP logins, git logins, ssh logins, etc for all aspects of that site. Do this: 1. Open Coda - Coda should automatically open at the 'sites' page. If not,...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Palpatine himself refers to it as a "battle station": > > **The Emperor**: [In the throne room, Luke is watching the Imperial fleet attack the Rebels from the huge throne room window] As you can see, my young apprentice, your friends have failed. Now witness the firepower of this fully ARMED and OPERATIONAL battle st...
### It had a few, more official sounding, names: * Death Star I * First Death Star * DS-1 platform * Ultimate Weapon * Sentinel Base > > [The Death Star](https://starwars.fandom.com/wiki/Death_Star), also known as the **Death Star I, First Death Star, DS-1 platform** and previously known as the **Ultimate Weapon and...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Canon ----- According to *Rogue One*: > > Galen Erso, the lead engineer on the Death Star project, says in a hologram to his daughter Jyn that "We call it the Death Star... there's no better name for it." This seems to indicate that the name originated with the engineering team. > > > Legends ------- Here's wh...
In *Rogue One* and in the book *Thrawn: Treason* by Timothy Zahn, both of which are Disney Canon, have numerous references to the Death Star, but it is mostly referred to as "Project Stardust," named after Galen Erso's nickname for Jyn Erso. The Death Star was the more common name for the battle station, as it was used...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Canon ----- According to *Rogue One*: > > Galen Erso, the lead engineer on the Death Star project, says in a hologram to his daughter Jyn that "We call it the Death Star... there's no better name for it." This seems to indicate that the name originated with the engineering team. > > > Legends ------- Here's wh...
A stormtrooper in *A New Hope*, when searching the *Tantive IV*, says to Darth Vader: > > "The Death Star plans are not in the main computer." > > > This may indicate that the name is official or may have been a slip on that trooper's part.
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Palpatine himself refers to it as a "battle station": > > **The Emperor**: [In the throne room, Luke is watching the Imperial fleet attack the Rebels from the huge throne room window] As you can see, my young apprentice, your friends have failed. Now witness the firepower of this fully ARMED and OPERATIONAL battle st...
A stormtrooper in *A New Hope*, when searching the *Tantive IV*, says to Darth Vader: > > "The Death Star plans are not in the main computer." > > > This may indicate that the name is official or may have been a slip on that trooper's part.
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
**Yes**; in the radio dramatization of *A New Hope* we hear a conversation between Leia and Captain Antilles (not Wedge Antilles who later flew the Death Star mission with Luke, but rather the Captain of the *Tantive IV*) where she asks him: > > "Have you ever heard of an Imperial base code-named 'Death Star'?" > > ...
In *Rogue One* and in the book *Thrawn: Treason* by Timothy Zahn, both of which are Disney Canon, have numerous references to the Death Star, but it is mostly referred to as "Project Stardust," named after Galen Erso's nickname for Jyn Erso. The Death Star was the more common name for the battle station, as it was used...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
According to the new (Disney Canon) junior novel, [*Star Wars: The Princess, the Scoundrel and the Farm Boy*](https://starwars.fandom.com/wiki/A_New_Hope:_The_Princess,_the_Scoundrel,_and_the_Farm_Boy), the Station was ***codenamed* the Death Star**; > > But the system had been swarming with Imperials. They’d caught ...
In *Rogue One* and in the book *Thrawn: Treason* by Timothy Zahn, both of which are Disney Canon, have numerous references to the Death Star, but it is mostly referred to as "Project Stardust," named after Galen Erso's nickname for Jyn Erso. The Death Star was the more common name for the battle station, as it was used...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Canon ----- According to *Rogue One*: > > Galen Erso, the lead engineer on the Death Star project, says in a hologram to his daughter Jyn that "We call it the Death Star... there's no better name for it." This seems to indicate that the name originated with the engineering team. > > > Legends ------- Here's wh...
**Yes**; in the radio dramatization of *A New Hope* we hear a conversation between Leia and Captain Antilles (not Wedge Antilles who later flew the Death Star mission with Luke, but rather the Captain of the *Tantive IV*) where she asks him: > > "Have you ever heard of an Imperial base code-named 'Death Star'?" > > ...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
According to the new (Disney Canon) junior novel, [*Star Wars: The Princess, the Scoundrel and the Farm Boy*](https://starwars.fandom.com/wiki/A_New_Hope:_The_Princess,_the_Scoundrel,_and_the_Farm_Boy), the Station was ***codenamed* the Death Star**; > > But the system had been swarming with Imperials. They’d caught ...
### It had a few, more official sounding, names: * Death Star I * First Death Star * DS-1 platform * Ultimate Weapon * Sentinel Base > > [The Death Star](https://starwars.fandom.com/wiki/Death_Star), also known as the **Death Star I, First Death Star, DS-1 platform** and previously known as the **Ultimate Weapon and...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
Palpatine himself refers to it as a "battle station": > > **The Emperor**: [In the throne room, Luke is watching the Imperial fleet attack the Rebels from the huge throne room window] As you can see, my young apprentice, your friends have failed. Now witness the firepower of this fully ARMED and OPERATIONAL battle st...
Canon ----- According to *Rogue One*: > > Galen Erso, the lead engineer on the Death Star project, says in a hologram to his daughter Jyn that "We call it the Death Star... there's no better name for it." This seems to indicate that the name originated with the engineering team. > > > Legends ------- Here's wh...
110,585
In *A New Hope*, the Death Star is only referred to as such (in dialogue) on four separate occasions; three of which are the intercom at the rebel base on Yavin 4, so I'm not sure they count as truly separate. It does appear in writing in the opening crawl and, likewise, in *The Empire Strikes Back* (where it is obviou...
2015/12/15
[ "https://scifi.stackexchange.com/questions/110585", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/57245/" ]
According to the new (Disney Canon) junior novel, [*Star Wars: The Princess, the Scoundrel and the Farm Boy*](https://starwars.fandom.com/wiki/A_New_Hope:_The_Princess,_the_Scoundrel,_and_the_Farm_Boy), the Station was ***codenamed* the Death Star**; > > But the system had been swarming with Imperials. They’d caught ...
A stormtrooper in *A New Hope*, when searching the *Tantive IV*, says to Darth Vader: > > "The Death Star plans are not in the main computer." > > > This may indicate that the name is official or may have been a slip on that trooper's part.
133,326
I want to know the exact difference between Recession, Depression and Financial Crisis.
2020/12/01
[ "https://money.stackexchange.com/questions/133326", "https://money.stackexchange.com", "https://money.stackexchange.com/users/103000/" ]
A [recession](https://en.wikipedia.org/wiki/Economic_depression) *was* defined by a drop in GDP over two consecutive quarters. Now it has a more nebulous definition: > > In the United States, it is defined as "a significant decline in economic activity spread across the market, lasting more than a few months, normall...
There are **absolutely no** firm, defined, "scientific" meanings of these words. You can use them any way you want. They are simply descriptive. It is absolutely commonplace that (say, on a talk show) people will disagree about whether or not "it is a recession". Some particular bodies may have some written definit...
4,788,152
Is there any plotting control/library for Windows Phone 7 / Silverlight? I want to plot a signal, ideally with the ability to pinch zoom it and pan it (but thats too much to expect probably :)?
2011/01/24
[ "https://Stackoverflow.com/questions/4788152", "https://Stackoverflow.com", "https://Stackoverflow.com/users/309588/" ]
Here's a free one, and if you're only plotting one set of data, it's great. Pinch-Zoom on the horizontal axis. <http://touchgraphwp7.codeplex.com/>
I have played around with the tools here: <http://www.visifire.com/> They have a 30 day trial, but you have to buy the full version if you want to actually use it for your apps. It is pretty nice, and it supports zooming and scrolling. I didn't end up using it very much in the app I was making though, so I don't reall...
4,788,152
Is there any plotting control/library for Windows Phone 7 / Silverlight? I want to plot a signal, ideally with the ability to pinch zoom it and pan it (but thats too much to expect probably :)?
2011/01/24
[ "https://Stackoverflow.com/questions/4788152", "https://Stackoverflow.com", "https://Stackoverflow.com/users/309588/" ]
Here's a free one, and if you're only plotting one set of data, it's great. Pinch-Zoom on the horizontal axis. <http://touchgraphwp7.codeplex.com/>
You should check out Quick Charts by amCharts. It's a set of free controls that might be able to do the job. Check out their website [here](http://wpf.amcharts.com/quick)
2,412,997
I may be asking a bit much here but I have faith in the community so it's worth trying. I'm making a game and I'm trying to pick the connection type to use for communicating between a Java mobile client and a Java server backend. Socket programing in Java is easy - there's a [lovely tutorial](http://java.sun.com/docs/...
2010/03/09
[ "https://Stackoverflow.com/questions/2412997", "https://Stackoverflow.com", "https://Stackoverflow.com/users/111734/" ]
Doing long polling on the device has some disadvantages on a mobile device. * If the handset is moving your it will constantly loose the connection and you have to recognize this and reestablish it. Most of the time it will make your game unusable if the player is sitting in a train or car. * The connection will caus...
As Jim Lewis mentions, TCP is entirely possible. Whatever transport you use, you're always going to end up having to deal with working on mobile — i.e. loss of service, reconnecting etc. Check out this previous question along the same lines: [Best approach to send data from a server to an Android device](https://st...
2,412,997
I may be asking a bit much here but I have faith in the community so it's worth trying. I'm making a game and I'm trying to pick the connection type to use for communicating between a Java mobile client and a Java server backend. Socket programing in Java is easy - there's a [lovely tutorial](http://java.sun.com/docs/...
2010/03/09
[ "https://Stackoverflow.com/questions/2412997", "https://Stackoverflow.com", "https://Stackoverflow.com/users/111734/" ]
Doing long polling on the device has some disadvantages on a mobile device. * If the handset is moving your it will constantly loose the connection and you have to recognize this and reestablish it. Most of the time it will make your game unusable if the player is sitting in a train or car. * The connection will caus...
The [Comet](http://en.wikipedia.org/wiki/Comet_(programming)) model tries to solve this problem when using HTTP. There's some Java examples [here](http://www.ibm.com/developerworks/web/library/wa-cometjava/index.html). You'll find examples/articles mostly talking about ajax/XMLHttpRequest on the client side, but all ...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
> > How do you have to activate an open source license? Just including the text of the license in all files? > > > I don't know what the exact legal requirement is, but normal practice is to include a small header comment at the start of each file: * that states who owns the copyright, and * that states that the...
You can use whatever license you want (even make your own ) on the work which belongs to you (you have the copyright) this is usually done by including a copy of the license in the file `COPYING` along with the source code. What you are looking for is [XFree86 1.1 styled License](http://www.xfree86.org/current/LICENSE...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
The Free Software Foundation has been very successful in pursuing litigation against people who have violated the terms of their open source license. I remember an article from ~2006 showing they were 4 for 4 at that time; more recently they have settled lawsuits against Cisco, Skype, and Verizon, all resulting in paym...
> > How do you have to activate an open source license? Just including the text of the license in all files? > > > I don't know what the exact legal requirement is, but normal practice is to include a small header comment at the start of each file: * that states who owns the copyright, and * that states that the...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
Here's a handy guide: > > ![http://i.stack.imgur.com/GvOBw.png](https://i.stack.imgur.com/GvOBw.png "flowchart") > > > References to PDF and [Graffle](http://en.wikipedia.org/wiki/OmniGraffle "what's this") versions of above flowchart are available at [Karl Fogel's blog](http://www.rants.org/2011/04/06/open-sourc...
I don't think there is a license that exactly matches your requirements. It sounds like you want some kind of mixture of the AGPL and the LGPL. But the FSF has not yet got around to creating such a license! You can see their official response here: <https://stackoverflow.com/questions/3330792/why-isnt-there-a-lesser-af...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
**I am not a lawyer** and the following is not legal advice, but what I've gathered about copyright law as a programmer. If you author a piece of software, you have the copyright on it unless someone paid you to write it. You should state the copyright in the software or in a `README`, followed by the license terms or...
You can use whatever license you want (even make your own ) on the work which belongs to you (you have the copyright) this is usually done by including a copy of the license in the file `COPYING` along with the source code. What you are looking for is [XFree86 1.1 styled License](http://www.xfree86.org/current/LICENSE...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
Here's a handy guide: > > ![http://i.stack.imgur.com/GvOBw.png](https://i.stack.imgur.com/GvOBw.png "flowchart") > > > References to PDF and [Graffle](http://en.wikipedia.org/wiki/OmniGraffle "what's this") versions of above flowchart are available at [Karl Fogel's blog](http://www.rants.org/2011/04/06/open-sourc...
The Free Software Foundation has been very successful in pursuing litigation against people who have violated the terms of their open source license. I remember an article from ~2006 showing they were 4 for 4 at that time; more recently they have settled lawsuits against Cisco, Skype, and Verizon, all resulting in paym...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
Here's a handy guide: > > ![http://i.stack.imgur.com/GvOBw.png](https://i.stack.imgur.com/GvOBw.png "flowchart") > > > References to PDF and [Graffle](http://en.wikipedia.org/wiki/OmniGraffle "what's this") versions of above flowchart are available at [Karl Fogel's blog](http://www.rants.org/2011/04/06/open-sourc...
**I am not a lawyer** and the following is not legal advice, but what I've gathered about copyright law as a programmer. If you author a piece of software, you have the copyright on it unless someone paid you to write it. You should state the copyright in the software or in a `README`, followed by the license terms or...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
I don't think there is a license that exactly matches your requirements. It sounds like you want some kind of mixture of the AGPL and the LGPL. But the FSF has not yet got around to creating such a license! You can see their official response here: <https://stackoverflow.com/questions/3330792/why-isnt-there-a-lesser-af...
> > How do you have to activate an open source license? Just including the text of the license in all files? > > > I don't know what the exact legal requirement is, but normal practice is to include a small header comment at the start of each file: * that states who owns the copyright, and * that states that the...
70,822
I have a code that I'd like to share, but I'd like to publish it using an open source license. But I don't know how you have to use that licenses. How do you have to activate an open source license? Just including the text of the license in all files? What else do I have to do? Do I need to buy some right? Include a r...
2011/04/22
[ "https://softwareengineering.stackexchange.com/questions/70822", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/116230/" ]
Here's a handy guide: > > ![http://i.stack.imgur.com/GvOBw.png](https://i.stack.imgur.com/GvOBw.png "flowchart") > > > References to PDF and [Graffle](http://en.wikipedia.org/wiki/OmniGraffle "what's this") versions of above flowchart are available at [Karl Fogel's blog](http://www.rants.org/2011/04/06/open-sourc...
You can use whatever license you want (even make your own ) on the work which belongs to you (you have the copyright) this is usually done by including a copy of the license in the file `COPYING` along with the source code. What you are looking for is [XFree86 1.1 styled License](http://www.xfree86.org/current/LICENSE...
10,019,513
I developed a program in c++ and when I run it in windows XP it uses all the available CPU to 100% of usage but when I run the application in windows 7 the app could hardly makes it's way to 40% even by setting the task to real-time or high priority one in taskbar is there a way that I could force the OS to let my appl...
2012/04/04
[ "https://Stackoverflow.com/questions/10019513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1146097/" ]
This is more than likely due to you having more than one core. In order to use 100% of your CPU you may need to have multiple threads created.
If your app is using any kind of IO, and that IO is messed up in XP (bad driver and/or something else), that might be causing your app to spin the CPU entirely. 7 is maybe better optimized in such areas, so it frees the CPU until slow (disk, network) stuff is completed.
10,019,513
I developed a program in c++ and when I run it in windows XP it uses all the available CPU to 100% of usage but when I run the application in windows 7 the app could hardly makes it's way to 40% even by setting the task to real-time or high priority one in taskbar is there a way that I could force the OS to let my appl...
2012/04/04
[ "https://Stackoverflow.com/questions/10019513", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1146097/" ]
This is more than likely due to you having more than one core. In order to use 100% of your CPU you may need to have multiple threads created.
Also depending on what this thread is doing and how often it spends time off the processor (Sleep, object waits) can be a factor, but MK pretty much summed it up for you. You could also have a look here: <http://msdn.microsoft.com/en-us/library/windows/desktop/ms686277%28v=vs.85%29.aspx>
40,543,637
Do you know if there's a more or less certain date for the GA (General Availability) of App Engine Flexible? What would be the worst-case-scenario of driving our production on App Engine Flexible right now? What kind of failures are more likely than others?
2016/11/11
[ "https://Stackoverflow.com/questions/40543637", "https://Stackoverflow.com", "https://Stackoverflow.com/users/7145079/" ]
NEXT 2017 update ([source](https://cloudplatform.googleblog.com/2017/03/your-favorite-languages-now-on-Google-App-Engine.html)): App engine flexible is now GA for Node.js, Ruby, Java 8, Python 2.7 or 3.5, and Go 1.8. PHP 5.6/7.0/7.1 and ASP.NET are released but are in beta. You can also bring your own environment wi...
I've had the same question a few months ago when we started using AppEngine flex. I have asked the GCP team a few times and the latest answer I got was :Q1 2017. That being said, we've been using them for the past 2.5 months and the services were working just fine. The AppEngine team is very responsive in answering...
145,155
We're currently developing an intranet solution for a client, and am wondering if we can deploy with various webpart properties configured in a default way. For instance, I dont want the 'help text' populated whenever they add a new webpart, and would like the Chrome Type be 'Title' by default. Is this possible, or s...
2015/06/04
[ "https://sharepoint.stackexchange.com/questions/145155", "https://sharepoint.stackexchange.com", "https://sharepoint.stackexchange.com/users/41055/" ]
I say train them on how to use the web parts, they become more self sufficient and it can be confusing seeing duplicate web parts. You are talking about basic web part configuration of ootb web parts here. Now if you were building and deploying your own, then sure set the applicable default values so they are configure...
You can Add a web part and then make the desired changes. Now you can export this web part and upload it into Web Part Gallery. Advise users to use the new web part instead of default one.