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 |
|---|---|---|---|---|---|
3,931,337 | How would you go about handling Eclipse in a multiuser and multisite environment with, say, 500 or more developers?
Having each one downloading their own installation would lead to a support and maintenance nightmare.
Forcing each one to use a central installation doesnt feel ideal either and would limit the users o... | 2010/10/14 | [
"https://Stackoverflow.com/questions/3931337",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/207764/"
] | For Windows 2000 or later, there appears to be a fairly obvious solution (which I tested and seems to work with 2+ users going fairly gently at least).
Tweak the configuration file in your installation of Eclipse so that each user has her own configuration option stored inside her user profile.
1. File the Eclipse co... | I would use ant for compiling, building, generating Javadoc and checking code clarity.
If you have got more than 500 developers everyone should go agains a repository, be it CSV or VSN using a client appropiate to their client machine.
Dont even think about demmanding Eclipse as development environment, some people m... |
3,931,337 | How would you go about handling Eclipse in a multiuser and multisite environment with, say, 500 or more developers?
Having each one downloading their own installation would lead to a support and maintenance nightmare.
Forcing each one to use a central installation doesnt feel ideal either and would limit the users o... | 2010/10/14 | [
"https://Stackoverflow.com/questions/3931337",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/207764/"
] | The best solution will be [Yoxos Ondemand Eclipse](http://eclipsesource.com/en/yoxos/yoxos-ondemand/) + Maven
Yoxos has capabilities of creating templates of IDEs which you can distribute or update.
In some of the big java shops, they create their own edition of Eclipse (add plugins, tweaks etc), make it available on... | There are ways to install Eclipse in a shared environment so that plugins come from one place and are locked down, but the workspace/prefs are per-user. I've never done it, so check the documentation for more details.
But I would say that letting people be in charge of their own IDE destiny is a good way to go, and th... |
3,931,337 | How would you go about handling Eclipse in a multiuser and multisite environment with, say, 500 or more developers?
Having each one downloading their own installation would lead to a support and maintenance nightmare.
Forcing each one to use a central installation doesnt feel ideal either and would limit the users o... | 2010/10/14 | [
"https://Stackoverflow.com/questions/3931337",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/207764/"
] | For Windows 2000 or later, there appears to be a fairly obvious solution (which I tested and seems to work with 2+ users going fairly gently at least).
Tweak the configuration file in your installation of Eclipse so that each user has her own configuration option stored inside her user profile.
1. File the Eclipse co... | There are ways to install Eclipse in a shared environment so that plugins come from one place and are locked down, but the workspace/prefs are per-user. I've never done it, so check the documentation for more details.
But I would say that letting people be in charge of their own IDE destiny is a good way to go, and th... |
3,931,337 | How would you go about handling Eclipse in a multiuser and multisite environment with, say, 500 or more developers?
Having each one downloading their own installation would lead to a support and maintenance nightmare.
Forcing each one to use a central installation doesnt feel ideal either and would limit the users o... | 2010/10/14 | [
"https://Stackoverflow.com/questions/3931337",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/207764/"
] | The best solution will be [Yoxos Ondemand Eclipse](http://eclipsesource.com/en/yoxos/yoxos-ondemand/) + Maven
Yoxos has capabilities of creating templates of IDEs which you can distribute or update.
In some of the big java shops, they create their own edition of Eclipse (add plugins, tweaks etc), make it available on... | For Windows 2000 or later, there appears to be a fairly obvious solution (which I tested and seems to work with 2+ users going fairly gently at least).
Tweak the configuration file in your installation of Eclipse so that each user has her own configuration option stored inside her user profile.
1. File the Eclipse co... |
23,027,498 | I'm having some problems to navigate on a gridView using the keyboard (with up, down, left and right keys).
I'm new in Android and maybe this question has a simple answer. I looked for a solution and anything could help me.
The problem is that I would like to change the way of navigation among items of a grid view.... | 2014/04/12 | [
"https://Stackoverflow.com/questions/23027498",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1486953/"
] | How are you?
You could try use onKeyUp instead of onKeyDown, see the answer below:
<https://stackoverflow.com/a/20171618/1408986>
And Android documentation:
<http://developer.android.com/training/keyboard-input/commands.html>
Hope this help.. bye! | I solved this problem by implementing both listeners: onKey and OnItemSelected. The focus was everytime running of the grid used and jusing those listeners solved my problem. Thanks a lot. |
1,784,246 | I'm creating a UML Class Diagram for an inventory system as part of a class assignment. I used members such as String and Date in a few of my Classes. My group members are saying that I should include a Date class because it is an object.
My assumption is that we were using Java or some other language with a built in... | 2009/11/23 | [
"https://Stackoverflow.com/questions/1784246",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/195652/"
] | UML diagrams are not like architects plans; they are simply a way of communicating something visually. In your case where you’re using the date type in your class, I would just list it as date.
Try to keep the language and framework out of your diagrams as much as possible and just focus on the functionality of your ... | For you it will depend on whatever the person marking your assignment wants so you should ask them.
In general there seems little point adding it (thought there is arguably little point in most UML that gets produced) |
1,784,246 | I'm creating a UML Class Diagram for an inventory system as part of a class assignment. I used members such as String and Date in a few of my Classes. My group members are saying that I should include a Date class because it is an object.
My assumption is that we were using Java or some other language with a built in... | 2009/11/23 | [
"https://Stackoverflow.com/questions/1784246",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/195652/"
] | UML diagrams are not like architects plans; they are simply a way of communicating something visually. In your case where you’re using the date type in your class, I would just list it as date.
Try to keep the language and framework out of your diagrams as much as possible and just focus on the functionality of your ... | Modeling is about abstracting unimportant details. So, it depends on how import would Date be in your diagram. If you use heavily objects of that class you might want to show dependency. If your diagram should be language agnostic and you need date functionality, you might create an interface in your diagram which will... |
25,887,118 | We are developing a native Android app (iOS and web to follow) where users can collaboratively create an album.
We want as seamless as possible experience when device is not able to connect with server.
Something like mentioned in this [Hoodie blog](http://blog.hood.ie/2013/11/say-hello-to-offline-first/) but Hoodie i... | 2014/09/17 | [
"https://Stackoverflow.com/questions/25887118",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1435132/"
] | I am working on a project at the moment, and we need to track deliveries and verify deliveries even when user is offline. The approach I use is to make use of this [ContentProvider](https://www.google.com.ng/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CBoQFjAA&url=http%3A%2F%2Fdeveloper.android.com%2Fg... | Did you had a look in [CouchBase Server](http://www.couchbase.com/) and [CouchBase Lite](http://www.couchbase.com/mobile)?
They provide a powerfull tool called the [SyncGateway](http://www.couchbase.com/mobile#sync-gateway) wich handle for you all the syncronisation and the merging of the datas between the server and ... |
25,887,118 | We are developing a native Android app (iOS and web to follow) where users can collaboratively create an album.
We want as seamless as possible experience when device is not able to connect with server.
Something like mentioned in this [Hoodie blog](http://blog.hood.ie/2013/11/say-hello-to-offline-first/) but Hoodie i... | 2014/09/17 | [
"https://Stackoverflow.com/questions/25887118",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1435132/"
] | I am working on a project at the moment, and we need to track deliveries and verify deliveries even when user is offline. The approach I use is to make use of this [ContentProvider](https://www.google.com.ng/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CBoQFjAA&url=http%3A%2F%2Fdeveloper.android.com%2Fg... | You can check out an open source api for this called [Wendy](https://github.com/levibostian/Wendy-Android/blob/master/BEST_PRACTICES.md) the most amazing thing about it is that it uses your existing architecture. |
25,887,118 | We are developing a native Android app (iOS and web to follow) where users can collaboratively create an album.
We want as seamless as possible experience when device is not able to connect with server.
Something like mentioned in this [Hoodie blog](http://blog.hood.ie/2013/11/say-hello-to-offline-first/) but Hoodie i... | 2014/09/17 | [
"https://Stackoverflow.com/questions/25887118",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1435132/"
] | Did you had a look in [CouchBase Server](http://www.couchbase.com/) and [CouchBase Lite](http://www.couchbase.com/mobile)?
They provide a powerfull tool called the [SyncGateway](http://www.couchbase.com/mobile#sync-gateway) wich handle for you all the syncronisation and the merging of the datas between the server and ... | You can check out an open source api for this called [Wendy](https://github.com/levibostian/Wendy-Android/blob/master/BEST_PRACTICES.md) the most amazing thing about it is that it uses your existing architecture. |
4,394 | I read [this question](https://meta.superuser.com/questions/2726/users-asking-ubuntu-questions-should-be-informed-about-askubuntu), which helped, but where is the line?
Just because a question is about an Apple product, doesn't mean it is off-topic (not at all actually) just because another (more specific) site exists... | 2012/02/15 | [
"https://meta.superuser.com/questions/4394",
"https://meta.superuser.com",
"https://meta.superuser.com/users/36744/"
] | TL;DR version
-------------
The **only** reason *someone other than the OP*\* should suggest or request a migration to another site is: **The question is off topic here, on topic there, and not crap** (we don't migrate crap).
If there are multiple sites that could accept a question, the OP chooses his site and commun... | Preferably people don't ask questions on Super User that are not allowed, such as questions about iPads or iPhones. So there normally shouldn't be any reason to migrate a question, unless it lingers here and the user feels strongly about trying to get it more attention on one of the other sites.
The idea is that you a... |
4,394 | I read [this question](https://meta.superuser.com/questions/2726/users-asking-ubuntu-questions-should-be-informed-about-askubuntu), which helped, but where is the line?
Just because a question is about an Apple product, doesn't mean it is off-topic (not at all actually) just because another (more specific) site exists... | 2012/02/15 | [
"https://meta.superuser.com/questions/4394",
"https://meta.superuser.com",
"https://meta.superuser.com/users/36744/"
] | TL;DR version
-------------
The **only** reason *someone other than the OP*\* should suggest or request a migration to another site is: **The question is off topic here, on topic there, and not crap** (we don't migrate crap).
If there are multiple sites that could accept a question, the OP chooses his site and commun... | To extend on Ivo's answer …
>
> But when should it be marked off-topic then?
>
>
>
By you? Probably never. By the OP? If they want it migrated, e.g. because they didn't get too much attention or later thought it was a better fit for another site, then it should be this way. They can `flag` a question for attentio... |
162,112 | I have found a need for a standardization for storage and recording of data relating to diabetes information (I don't think there's any, but I may have missed it).
To that end I made [this github project](https://github.com/thedamon/opendatabetes) because I want to create one.. but I don't really know how to go about ... | 2012/08/24 | [
"https://softwareengineering.stackexchange.com/questions/162112",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/16462/"
] | **Have you found a need for a standardized format, or just a format?**
The need for a standardized format really only arises when you want to make data available to multiple clients, and want to enable other providers to provide data as well. In that case, you need to discuss this with all the interested organizations... | [Don't use XML](http://www.codinghorror.com/blog/2008/05/xml-the-angle-bracket-tax.html) or Mr. Atwood will find and destroy you. All kidding aside, JSON could be used, and can be loaded, manipulated, and saved out from a variety of tech these days, such as with Javascript (JQuery) on web pages. JQuery can load a file ... |
162,112 | I have found a need for a standardization for storage and recording of data relating to diabetes information (I don't think there's any, but I may have missed it).
To that end I made [this github project](https://github.com/thedamon/opendatabetes) because I want to create one.. but I don't really know how to go about ... | 2012/08/24 | [
"https://softwareengineering.stackexchange.com/questions/162112",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/16462/"
] | At first, you need to define an [*ontology*](http://en.wikipedia.org/wiki/Ontology_%28information_science%29): what are the "things" that need representation in your problem domain, what are their properties, how do they link together? If you're trying to define a general standard for sharing data, then your ontology n... | [Don't use XML](http://www.codinghorror.com/blog/2008/05/xml-the-angle-bracket-tax.html) or Mr. Atwood will find and destroy you. All kidding aside, JSON could be used, and can be loaded, manipulated, and saved out from a variety of tech these days, such as with Javascript (JQuery) on web pages. JQuery can load a file ... |
162,112 | I have found a need for a standardization for storage and recording of data relating to diabetes information (I don't think there's any, but I may have missed it).
To that end I made [this github project](https://github.com/thedamon/opendatabetes) because I want to create one.. but I don't really know how to go about ... | 2012/08/24 | [
"https://softwareengineering.stackexchange.com/questions/162112",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/16462/"
] | **Have you found a need for a standardized format, or just a format?**
The need for a standardized format really only arises when you want to make data available to multiple clients, and want to enable other providers to provide data as well. In that case, you need to discuss this with all the interested organizations... | At first, you need to define an [*ontology*](http://en.wikipedia.org/wiki/Ontology_%28information_science%29): what are the "things" that need representation in your problem domain, what are their properties, how do they link together? If you're trying to define a general standard for sharing data, then your ontology n... |
16,848 | A **Canon Powershot** series camera has **shutter priority, aperture priority and complete manual mode** that lets the user control the **shutter speed and aperture**
Even though an Entry-level DSLR has more features, this looks similar to an entry-level DSLR.
In other words, is it necessary for an amateur to own a D... | 2011/10/31 | [
"https://photo.stackexchange.com/questions/16848",
"https://photo.stackexchange.com",
"https://photo.stackexchange.com/users/7079/"
] | The 1st difference, and arguably the most important one, is the image sensor's size. DSLR has an [APS-C](http://en.wikipedia.org/wiki/APS-C) or Full-Frame (35mm) sizes CMOS sensors, where Powershots have much smaller, some CCD some CMOS sensors. this translates to superior image quality in terms of [digital image noise... | >
> What are the differences between an entry-level DSLR and a Canon Powershot?
>
>
>
The main differences between Canon's dSLR bodies and the Powershots are:
* The Powershot will have a fixed lens that cannot be changed
* The Powershots use smaller sensors (the largest is the 4/3"-format in the G1X series, more ... |
2,944 | I work as a volunteer for Cancer Research U.K. We have been donated massive amounts of vintage Lego.
Could you please advise how to sell. | 2014/02/28 | [
"https://bricks.stackexchange.com/questions/2944",
"https://bricks.stackexchange.com",
"https://bricks.stackexchange.com/users/3484/"
] | BrickLink or eBay. You could get significantly more if you go through the lot and separate out full sets then sell them on BrickLink. But if you don't have the time at least take a lot of really good pictures - in this case an eBay auction would be the better choice. | [Brick Link](https://www.bricklink.com/) is a site for buying and selling LEGO. Although it focuses on LEGO fans, who will take the time to enter each piece separately, they *do* have the option to sell 'unsorted lots', so perhaps that's an option for you. |
48,922,430 | I am trying to migrate from SQL SERVER 2012 to 2014 and found out I cannot use .bak files because of different versions. I know how to create a .sql back up file using the SSMS but I can't find a solution using a script or sqlcmd. | 2018/02/22 | [
"https://Stackoverflow.com/questions/48922430",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7377225/"
] | If you require to get the data in .sql files then the SQL Server's Generate Scripts wizard is the best option otherwise you can create .bak of your database and restore it on higher version.
[](https://i.stack.imgur.com/58CwU.png) | Why can't you use SSMS?
Exporting to .sql file has been discussed in [How to backup Sql Server to sql file?](https://stackoverflow.com/questions/5212580/how-to-backup-sql-server-to-sql-file)
Did you consider [Linked Servers](https://learn.microsoft.com/en-us/sql/relational-databases/linked-servers/linked-servers-da... |
48,922,430 | I am trying to migrate from SQL SERVER 2012 to 2014 and found out I cannot use .bak files because of different versions. I know how to create a .sql back up file using the SSMS but I can't find a solution using a script or sqlcmd. | 2018/02/22 | [
"https://Stackoverflow.com/questions/48922430",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7377225/"
] | turns out I could use .bak files to restore databases. The problem was I'm trying to restore the file from a directory that SSMS is not authorized. Was a silly mistake. Sorry. | Why can't you use SSMS?
Exporting to .sql file has been discussed in [How to backup Sql Server to sql file?](https://stackoverflow.com/questions/5212580/how-to-backup-sql-server-to-sql-file)
Did you consider [Linked Servers](https://learn.microsoft.com/en-us/sql/relational-databases/linked-servers/linked-servers-da... |
48,922,430 | I am trying to migrate from SQL SERVER 2012 to 2014 and found out I cannot use .bak files because of different versions. I know how to create a .sql back up file using the SSMS but I can't find a solution using a script or sqlcmd. | 2018/02/22 | [
"https://Stackoverflow.com/questions/48922430",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/7377225/"
] | turns out I could use .bak files to restore databases. The problem was I'm trying to restore the file from a directory that SSMS is not authorized. Was a silly mistake. Sorry. | If you require to get the data in .sql files then the SQL Server's Generate Scripts wizard is the best option otherwise you can create .bak of your database and restore it on higher version.
[](https://i.stack.imgur.com/58CwU.png) |
10,237,702 | I'm using Bootstrap for a site that uses XenForo for it's forums. I'd like to keep Bootstrap's navbar even when on XenForo, but the code for it is so strewn throughout the bootstrap.css file that I can't seem to carry over just those parts. Naturally, moving the entire bootstrap.css file screws up XenForo. Is there any... | 2012/04/19 | [
"https://Stackoverflow.com/questions/10237702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1248870/"
] | Use this tool to only include the css for the navigation bar:
<http://twitter.github.com/bootstrap/download.html> | Even if you generate navbar-only code with the Bootstrap generator, it's still going to mess with XenForo's styling.
If you really want to take upon this project, you will have to at the minimum rename individual CSS elements to resolve all conflicts.
It's quite a bit of work, the amount of which is also going to de... |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | The swap = 2 \* memory is coming from the old days when during a kernel crash the kernel dumped the memory to the swap device and you were able to check what happened after you rebooted your system. Nowadays for example linux is skipping this at all, and I don't run my system with enabled dump file setup. So, this doub... | It is no longer necessary to have swap in Solaris. If you know that your system will run completely in memory then you can set it to zero. Unless disk space is really a problem set it to the largest you can get away with as you will need some in critical situation.
[Solaris FAQ myths and facts](https://web.archive.org... |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | The swap = 2 \* memory is coming from the old days when during a kernel crash the kernel dumped the memory to the swap device and you were able to check what happened after you rebooted your system. Nowadays for example linux is skipping this at all, and I don't run my system with enabled dump file setup. So, this doub... | I would disagree with the argument that swap is no longer required. If you are using heavy applications, like, EDA, Space, Petroleum, Weather forecasting. The applications usually run of Physical Memory. So, it depends on the kind of applications your running, In short, there is unfortunately no single rule that fits e... |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | The swap = 2 \* memory is coming from the old days when during a kernel crash the kernel dumped the memory to the swap device and you were able to check what happened after you rebooted your system. Nowadays for example linux is skipping this at all, and I don't run my system with enabled dump file setup. So, this doub... | It is **recommended** to have enough RAM for all of your application actively used memory to fit in it and still have enough space for allowing the various kernel managed caches and other dynamic buffers to keep performance optimal. Otherwise you'll have too much pagination and the system will underperform.
On the oth... |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | The swap = 2 \* memory is coming from the old days when during a kernel crash the kernel dumped the memory to the swap device and you were able to check what happened after you rebooted your system. Nowadays for example linux is skipping this at all, and I don't run my system with enabled dump file setup. So, this doub... | This depends at lot on your applications.
Because Solaris doesn't not seem to be able to [overcommit memory](https://serverfault.com/questions/82129/how-do-i-enable-memory-overcommit-on-solaris), you may have to add tons of swap even if it's not physically used. |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | It is no longer necessary to have swap in Solaris. If you know that your system will run completely in memory then you can set it to zero. Unless disk space is really a problem set it to the largest you can get away with as you will need some in critical situation.
[Solaris FAQ myths and facts](https://web.archive.org... | This depends at lot on your applications.
Because Solaris doesn't not seem to be able to [overcommit memory](https://serverfault.com/questions/82129/how-do-i-enable-memory-overcommit-on-solaris), you may have to add tons of swap even if it's not physically used. |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | I would disagree with the argument that swap is no longer required. If you are using heavy applications, like, EDA, Space, Petroleum, Weather forecasting. The applications usually run of Physical Memory. So, it depends on the kind of applications your running, In short, there is unfortunately no single rule that fits e... | This depends at lot on your applications.
Because Solaris doesn't not seem to be able to [overcommit memory](https://serverfault.com/questions/82129/how-do-i-enable-memory-overcommit-on-solaris), you may have to add tons of swap even if it's not physically used. |
77,091 | we have an internal test-server that uses real, live mail addresses to send out status mails sometimes. We don't want these mails to end up with our users but for different reasons we can't use a catch\_all solution and we only have the one available mail server. What we need is a way to forward incoming mail from any ... | 2009/10/22 | [
"https://serverfault.com/questions/77091",
"https://serverfault.com",
"https://serverfault.com/users/-1/"
] | It is **recommended** to have enough RAM for all of your application actively used memory to fit in it and still have enough space for allowing the various kernel managed caches and other dynamic buffers to keep performance optimal. Otherwise you'll have too much pagination and the system will underperform.
On the oth... | This depends at lot on your applications.
Because Solaris doesn't not seem to be able to [overcommit memory](https://serverfault.com/questions/82129/how-do-i-enable-memory-overcommit-on-solaris), you may have to add tons of swap even if it's not physically used. |
33,090 | Definitely not a huge issue, but a little bit jarring on the latest Chrome release under Ubuntu Linux 9.10. Yes, technically still Beta (by Google's standards) but the bug appears to be in WebKit, which is definitely not.
If there's 3 or more digits in the view count, it overflows its box and hits the title of the que... | 2009/12/16 | [
"https://meta.stackexchange.com/questions/33090",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/140451/"
] | Despite widespread belief to the contrary, a font stack of Arial, Helvetica, sans-serif will *not* fall back to the default sans serif font on a typical linux box (Ubuntu included). Instead, the Helvetica font gets hijacked and replaced with something the distro thinks is reasonably similar. To find out what font that ... | The problem is with the fonts you're specifying in your CSS here and their order (Trebuchet MS, Helvetica, sans-serif).
The browser will go through the fonts in this list and use the first one it knows about. On Windows, Mac OS X, and some Linux installs (those with the Microsoft fonts installed) this will be Trebuche... |
7,313 | Journals are in my posession! If you ordered one [click here](https://chat.stackexchange.com/rooms/99879/world-building-journals) so we can sort out shipping.
--------------------------------------------------------------------------------------------------------------------------------------------------------------
-... | 2019/04/29 | [
"https://worldbuilding.meta.stackexchange.com/questions/7313",
"https://worldbuilding.meta.stackexchange.com",
"https://worldbuilding.meta.stackexchange.com/users/189/"
] | Hey there world builders. If you didn't get in on the initial order and would like a journal you can order them individually now that the initial setup stuff has been taken care of.
They are exceptionally awesome by the way. Worldbuilding (in the site font) is stamped into the front cover and the poster from the site ... | Journal received!!
------------------
And it looks **amazing**. Can’t wait to fill it with half-built worlds :)


Thanks again @James for making this happen! |
133,369 | I purchased 1000 shares of ACB stock a little over a year ago. I have now learned I have only 83 shares of stock. How can the company take away over 900 shares of my stock? | 2020/12/02 | [
"https://money.stackexchange.com/questions/133369",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/104350/"
] | Sometimes companies need to reduce the total number of outstanding shares. To do that, they do a **reverse split**. For example, after a 10:1 reverse split, your 1000 shares would become 100. That sounds like something went away, but if that's what happened, **everyone** has 1/10 as many shares as they had before the s... | On April 13, 2020, Aurora Cannabis announced its intention to consolidate its shares on a 12 to 1 basis. Share consolidations are also known as [reverse stock splits](https://en.wikipedia.org/wiki/Reverse_stock_split) or reverse splits. [Aurora Cannabis Provides Update on Initiatives to Strengthen Liquidity, Business T... |
437,053 | I've just rented a house that came with an equipped kitchen, and I've found that the microwave has a rather weird behavior - opening the doors seems to trigger it to start working, which the owners claim "has always been like that". Yet, I've been placing anything I want to heat as fast as possible and without complete... | 2019/05/05 | [
"https://electronics.stackexchange.com/questions/437053",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/27067/"
] | It is dangerous to humans because it heats up things that contain water.
You contain water. Some parts of you can't deal with this added heat (your eyes) and will be damaged first.
It also fries sensitive electronics like the embedded radio chips in your phone and laptop when they are close enough. (meters away, not ... | **IF the oven heats with the door open then
THE OVEN IS HORRENDOUSLY LETHALLY DANGEROUS AND
IT MUST NOT BE USED**
It is possible that the light and fan operate when the door is open BUT that the oven doesn't. Answers to these four questions will clarify the matter:
Q1. Can you cook/heat with the door closed?
... |
182,950 | Why we say "I am doing the shopping"? why not "I am doing shopping" like "I am going shopping"? | 2018/10/18 | [
"https://ell.stackexchange.com/questions/182950",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/55739/"
] | The two statements have different implications:
>
> I am out shopping right now.
>
>
>
While this is perfectly correct as a catch-all for any shopping activity; it is most commonly used to describe non-specific shopping where you are browsing stores. For example, when going shopping for clothing or other luxury g... | Well, like most "why" questions about language, the real answer is "because that's what we say".
But we can delve into the patterns of English a bit.
"Shopping" in "go shopping" is not a noun like "laundry" or "chores": it is a participle of the verb "to shop". It happens that "go" can be followed directly by a par... |
182,950 | Why we say "I am doing the shopping"? why not "I am doing shopping" like "I am going shopping"? | 2018/10/18 | [
"https://ell.stackexchange.com/questions/182950",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/55739/"
] | Well, like most "why" questions about language, the real answer is "because that's what we say".
But we can delve into the patterns of English a bit.
"Shopping" in "go shopping" is not a noun like "laundry" or "chores": it is a participle of the verb "to shop". It happens that "go" can be followed directly by a par... | The vs. a, an, some
-------------------
The article **the** indicates a sometimes subtle signal that the object in question is an instance of something that you and your conversation partner are already familiar with as a possible topic of discussion:
*the* policeman
*the* door
*the* furniture
When you use **the**... |
182,950 | Why we say "I am doing the shopping"? why not "I am doing shopping" like "I am going shopping"? | 2018/10/18 | [
"https://ell.stackexchange.com/questions/182950",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/55739/"
] | The two statements have different implications:
>
> I am out shopping right now.
>
>
>
While this is perfectly correct as a catch-all for any shopping activity; it is most commonly used to describe non-specific shopping where you are browsing stores. For example, when going shopping for clothing or other luxury g... | The vs. a, an, some
-------------------
The article **the** indicates a sometimes subtle signal that the object in question is an instance of something that you and your conversation partner are already familiar with as a possible topic of discussion:
*the* policeman
*the* door
*the* furniture
When you use **the**... |
547,622 | 3 sentences:-
1. A number of such incidents has/have been reported by the local residents so far.
2. The number of such incidents is/are very low.
3. The number of elephants in Kerala has/have been dwindling.
What is the correct form of verb in the sentences, and why? | 2020/09/25 | [
"https://english.stackexchange.com/questions/547622",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/337606/"
] | >
> [1] *A number of such incidents has/**have** been reported by the local*
> *residents so far*.
>
>
> [2] *The number of such incidents **is**/are very low.*
>
>
> [3] *The number of elephants in Kerala **has**/have been dwindling.*
>
>
>
In [1] "number", with the indefinite article "a", is a non-count quan... | >
> A number of such incidents has/have been reported by the local
> residents so far.
>
>
> The number of such incidents is/are very low.
>
>
> The number of elephants in Kerala has/have been dwindling.
>
>
>
You ask for British English. I'm British. However there are disagreements about this.
My opinion is ... |
3,404,013 | Does anyone know a quick and foolproof way of changing the namespace of a VS2008 solution/projects? In other words - I have a solution, and want to copy this as a template for a different application, but need different namespace obviously.
Thanks | 2010/08/04 | [
"https://Stackoverflow.com/questions/3404013",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/324381/"
] | Renaming Solution name will not affect namespace of projects in it.
If you want to change namespace - right click project file -> select "properties" -> select "Application" tab -> Change "default namespace".
Only best fool proof way in my opinion
* Open solution in VS2008
* Open Solution Explorer
* Right Click S... | Open the search & replace dialog:
Shift+Ctrl H
Find what:
namespace YOUROLDNAMESPACE
Replace what:
namespace YOURNEWNAMESPACE
Look in:
Entire solution
Find options:
Tick Match case
Tick Match whole word
Push button "Replace All"
HTH
Dimi |
12,764 | I often make and receive phone calls in a business context where the other person talks with too much jargon. Occasionally I need to interrupt them with questions to get a better understanding of what they are saying. How can I go about politely interrupting them for clarification without offending them? | 2018/04/04 | [
"https://interpersonal.stackexchange.com/questions/12764",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/7501/"
] | If people just continue talking and they don't pause just say:
>
> Wait!
>
>
>
**And then tell them that you like to understand them but you didn't understand this or that and could they please repeat this (and maybe explain it with other words).**
I think the important part is that you should tell the person th... | [55% of communication](https://www.psychologytoday.com/us/blog/beyond-words/201109/is-nonverbal-communication-numbers-game) is body language this makes it much more difficult to communicate with people over the phone and sometimes you need to resort to doing unnatural things.
Wait for them to finish and just explain y... |
12,764 | I often make and receive phone calls in a business context where the other person talks with too much jargon. Occasionally I need to interrupt them with questions to get a better understanding of what they are saying. How can I go about politely interrupting them for clarification without offending them? | 2018/04/04 | [
"https://interpersonal.stackexchange.com/questions/12764",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/7501/"
] | This is a very, very common scenario. So **don't worry too much** about how you come across.
So long as you **use normal pleasantries** (Excuse me, can we, etc.) you're all good. Meaning, **don't be rude or obnoxious**, that's your Manager's job if it comes to it.
>
> Them: By using the Snodgrass technique, we can o... | [55% of communication](https://www.psychologytoday.com/us/blog/beyond-words/201109/is-nonverbal-communication-numbers-game) is body language this makes it much more difficult to communicate with people over the phone and sometimes you need to resort to doing unnatural things.
Wait for them to finish and just explain y... |
12,764 | I often make and receive phone calls in a business context where the other person talks with too much jargon. Occasionally I need to interrupt them with questions to get a better understanding of what they are saying. How can I go about politely interrupting them for clarification without offending them? | 2018/04/04 | [
"https://interpersonal.stackexchange.com/questions/12764",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/7501/"
] | If people just continue talking and they don't pause just say:
>
> Wait!
>
>
>
**And then tell them that you like to understand them but you didn't understand this or that and could they please repeat this (and maybe explain it with other words).**
I think the important part is that you should tell the person th... | This is a very, very common scenario. So **don't worry too much** about how you come across.
So long as you **use normal pleasantries** (Excuse me, can we, etc.) you're all good. Meaning, **don't be rude or obnoxious**, that's your Manager's job if it comes to it.
>
> Them: By using the Snodgrass technique, we can o... |
2,253 | I need to update a site from Joomla 1.7.3 to J3.3. Am looking for best way to do this? Joomla manager>update does not find any updates. Online guides are quite vague on how exactly to manually update 1.7 to 2.5 or 3.
Would it rather be best to just build from ground up in J3.3, then import all 1.7 users and k2 items?... | 2014/06/10 | [
"https://joomla.stackexchange.com/questions/2253",
"https://joomla.stackexchange.com",
"https://joomla.stackexchange.com/users/1524/"
] | You need to click the two opposing triangles, at the top of the ordering column (far left), in oder to "activate" the menu ordering.
Then you can click and grap a menu and drop it into the right place in your menu structure.
You definitely don't need any "fix" to do this. | Try to **Rebuild** in the menu manager. If you change the order there, it must be reflected in the frontend. |
11,251 | According to "Investor Words" a forward curve is *a graph of forward interest rate values over different time periods. A forward curve is a way of evaluating the time value of money*.
How are those forward curves established and how trustworthy are they? Are they based on a defined mathematical system or are they manu... | 2011/09/27 | [
"https://money.stackexchange.com/questions/11251",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4373/"
] | As far as trading is concerned, these forward curves are the price at which you can speculate on the future value of the commodity. Basically, if you want to speculate on gold, you can either buy the physical and store it somewhere (which may have significant costs) or you can buy futures (ETFs typically hold futures o... | The forward curve for gold says little, in my opinion, about the expected price of gold. The Jan 16 price is 7.9% (or so) higher than the Jan 12 price. This reflects the current cost of money, today's low interest rates. When the short rates were 5%, the price 4 years out would be about 20% higher. No magic there. (The... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The "Agile delivery manager" seems to be an undefined/undocumented role, and from what I read in the job openings is mostly a combination of a Project Manager, a Product Owner and a Scrum Master. Sounds like utter bullshit to me. A made up title to map existing roles to a probably fake-Agile implementation, while using... | It is interesting how people seem to respond to this question like they are angry and I guess they are coming from Scrum Masters (possibly). The question is difference between a Scrum Master and a Delivery Manager. I am an Agile practitioner, functioned as a Scrum Master, an Agile Project Manager and currently working ... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The "Agile delivery manager" seems to be an undefined/undocumented role, and from what I read in the job openings is mostly a combination of a Project Manager, a Product Owner and a Scrum Master. Sounds like utter bullshit to me. A made up title to map existing roles to a probably fake-Agile implementation, while using... | >
> What I like about the “Delivery Manager” title is that there’s little question about the purpose – getting stuff delivered. The role is not about discovery, and it’s not about coaching on process; it’s all about getting stuff pushed live.
> ( <https://svpg.com/the-delivery-manager-role/> )
>
>
>
Reading the a... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | >
> What I like about the “Delivery Manager” title is that there’s little question about the purpose – getting stuff delivered. The role is not about discovery, and it’s not about coaching on process; it’s all about getting stuff pushed live.
> ( <https://svpg.com/the-delivery-manager-role/> )
>
>
>
Reading the a... | It is interesting how people seem to respond to this question like they are angry and I guess they are coming from Scrum Masters (possibly). The question is difference between a Scrum Master and a Delivery Manager. I am an Agile practitioner, functioned as a Scrum Master, an Agile Project Manager and currently working ... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | I second Niels opinion on "there is not real factual definition of the *Agile delivery manager*" (+1!), however it doesn't mean that some companies haven't faced a need to name a delivery manager role for Agile projects.
**Long story short:** That's likely to be a managerial role, responsible for aligning different ag... | The Scrum Master and the Agile Delivery Manager (ADM) are quite different (According to SAFe) For example:
1. The Scrum Master has no reporting relationship with the team members, where the ADM is the manager over the team members and is responsible for helping guide team members careers.
2. The Scrum Master is respon... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | I second Niels opinion on "there is not real factual definition of the *Agile delivery manager*" (+1!), however it doesn't mean that some companies haven't faced a need to name a delivery manager role for Agile projects.
**Long story short:** That's likely to be a managerial role, responsible for aligning different ag... | >
> What I like about the “Delivery Manager” title is that there’s little question about the purpose – getting stuff delivered. The role is not about discovery, and it’s not about coaching on process; it’s all about getting stuff pushed live.
> ( <https://svpg.com/the-delivery-manager-role/> )
>
>
>
Reading the a... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The "Agile delivery manager" seems to be an undefined/undocumented role, and from what I read in the job openings is mostly a combination of a Project Manager, a Product Owner and a Scrum Master. Sounds like utter bullshit to me. A made up title to map existing roles to a probably fake-Agile implementation, while using... | I second Niels opinion on "there is not real factual definition of the *Agile delivery manager*" (+1!), however it doesn't mean that some companies haven't faced a need to name a delivery manager role for Agile projects.
**Long story short:** That's likely to be a managerial role, responsible for aligning different ag... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | I’ve found that the Scrum Master role and the ADM role create conflict within the Scrum Team. Roles clearly need to be defined otherwise the Scrum Master position is compromised. The Scrum Master is task with protecting the team from outside and inside distraction. To me the ADM as I mentioned above can falls into this... | It is interesting how people seem to respond to this question like they are angry and I guess they are coming from Scrum Masters (possibly). The question is difference between a Scrum Master and a Delivery Manager. I am an Agile practitioner, functioned as a Scrum Master, an Agile Project Manager and currently working ... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The "Agile delivery manager" seems to be an undefined/undocumented role, and from what I read in the job openings is mostly a combination of a Project Manager, a Product Owner and a Scrum Master. Sounds like utter bullshit to me. A made up title to map existing roles to a probably fake-Agile implementation, while using... | I’ve found that the Scrum Master role and the ADM role create conflict within the Scrum Team. Roles clearly need to be defined otherwise the Scrum Master position is compromised. The Scrum Master is task with protecting the team from outside and inside distraction. To me the ADM as I mentioned above can falls into this... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The Scrum Master and the Agile Delivery Manager (ADM) are quite different (According to SAFe) For example:
1. The Scrum Master has no reporting relationship with the team members, where the ADM is the manager over the team members and is responsible for helping guide team members careers.
2. The Scrum Master is respon... | It is interesting how people seem to respond to this question like they are angry and I guess they are coming from Scrum Masters (possibly). The question is difference between a Scrum Master and a Delivery Manager. I am an Agile practitioner, functioned as a Scrum Master, an Agile Project Manager and currently working ... |
24,573 | Our team breaks down user stories in sub-tasks, then estimate their sizes in hours using the planning poker technique. The numbers we use are 2, 4, 6, 8, 12, 16, 24, 32 and it goes just like story points estimation using the Fibonacci sequence.
Are there techniques/games exclusive to hours estimation? | 2018/07/25 | [
"https://pm.stackexchange.com/questions/24573",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/32382/"
] | The "Agile delivery manager" seems to be an undefined/undocumented role, and from what I read in the job openings is mostly a combination of a Project Manager, a Product Owner and a Scrum Master. Sounds like utter bullshit to me. A made up title to map existing roles to a probably fake-Agile implementation, while using... | The Scrum Master and the Agile Delivery Manager (ADM) are quite different (According to SAFe) For example:
1. The Scrum Master has no reporting relationship with the team members, where the ADM is the manager over the team members and is responsible for helping guide team members careers.
2. The Scrum Master is respon... |
3,775,191 | Is it possible to build a SMTP/IMAP client that can run in the browser that uses only Javascript? | 2010/09/23 | [
"https://Stackoverflow.com/questions/3775191",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/207795/"
] | It's currently not possible to do in a normal web app in the browser. It is however possible to do in packaged apps with access to privileged APIs:
* Firefox Apps use the emerging W3C standard [TCPSocket](https://developer.mozilla.org/en-US/docs/Web/API/TCPSocket)
* Chrome Apps use a proprietary API [chrome.socket](ht... | Agree with Daniel, its not possible in javascript.
There is a new [WebSockets](http://en.wikipedia.org/wiki/WebSockets) API that's going to be added to browsers to allow communication over sockets, but even after that is introduced it will NOT be possible. WebSockets API goes to great lengths to ensure such a thing i... |
70,638 | The Monk's skill, [Inner Sanctuary](http://eu.battle.net/d3/en/class/monk/active/inner-sanctuary), reads
>
> Create a runic circle of protection on the ground for 5 seconds that
> cannot be passed by enemies.
>
>
>
Strangely enough, this seems to have a very high chance of fearing enemies. I'm positive I don't h... | 2012/05/28 | [
"https://gaming.stackexchange.com/questions/70638",
"https://gaming.stackexchange.com",
"https://gaming.stackexchange.com/users/8462/"
] | I have seen this as well, and it can also be seen in the video on the [official skill page for Inner Sanctuary](http://us.battle.net/d3/en/class/monk/active/inner-sanctuary). Part of the "enemies can't stand here" feature is implemented as "enemies standing here when the circle appears will flee out of the circle." Thi... | You can see it as an "invisible tooltip". Some skills are not fully documented, what we know so far :
>
> Barbarians :
>
>
> * Wrath of the Berserker breaks most CC that are on you and make you immune to them for the skill's duration.
> * The relentless passive allows you to use revenge without proc. beforehand. (t... |
20,815 | I managed the development of a kind of e-market place with some elements:
* App for buyers (anyone):
+ Android app
+ IOS app
* Website for buyers (anyone) to sell products
* Website platform for sellers (shop only): CMS-CRM-ERP
* App for sellers (shop only):
+ Android app
+ IOS app for sellers
* Website platform f... | 2017/01/11 | [
"https://pm.stackexchange.com/questions/20815",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/27167/"
] | It sounds like you've reached to the point where Scrum falls short (at least in my opinion). Scrum is really tough to implement when you have many interconnected teams that depend on one another. Why? Because you care about the whole and not about what's being produced in each and every team sprint.
I would REALLY rec... | There are numerous ways of slicing this answer but fundamentally you need to ask the question of yourself; **is each of those platform elements a separate project or are they all linked to a common project which serves a common user or set of users and, crucially, how many developments teams do you have working on the ... |
9,196,082 | So, for an independent programming class I am working in Xcode. I am using stanford's iOS development course to create a calculator. However, recently, the item *mainstoryboard.storyboard* has been unable to save. I removed the entitlement, which allowed the other files to save, but the storyboard has still been unable... | 2012/02/08 | [
"https://Stackoverflow.com/questions/9196082",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1197472/"
] | Try to clean your derived Data and try to clean and clean the build folder (you do this with alt+clean).
If you can't save the file again try to create a new project create a storyboard. If you can't create it on this way then you have to get to the Apple Dev Forums there is a bigger Problem then.
But anyway if you ... | You can delete the storyboard by clicking on it in the left pane and press delete button. When prompted choose delete rather than removing reference only. Then use command+n and in the popped window, choose storyboard and name it as MainStoryboard (Xcode will add .storyboard for you). |
9,196,082 | So, for an independent programming class I am working in Xcode. I am using stanford's iOS development course to create a calculator. However, recently, the item *mainstoryboard.storyboard* has been unable to save. I removed the entitlement, which allowed the other files to save, but the storyboard has still been unable... | 2012/02/08 | [
"https://Stackoverflow.com/questions/9196082",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1197472/"
] | Clean all targets, close Xcode, reboot your mac. Then restart Xcode and create a new iPhoneStoryboard.storyboard and try again!
I've solved in this way this problem! | You can delete the storyboard by clicking on it in the left pane and press delete button. When prompted choose delete rather than removing reference only. Then use command+n and in the popped window, choose storyboard and name it as MainStoryboard (Xcode will add .storyboard for you). |
9,196,082 | So, for an independent programming class I am working in Xcode. I am using stanford's iOS development course to create a calculator. However, recently, the item *mainstoryboard.storyboard* has been unable to save. I removed the entitlement, which allowed the other files to save, but the storyboard has still been unable... | 2012/02/08 | [
"https://Stackoverflow.com/questions/9196082",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1197472/"
] | Well, as it turns out, it was a problem with not having enough memory on the server. I've been looking at all the wrong things and can go back to working on my program. Thanks for all the help, too bad it was something else. | You can delete the storyboard by clicking on it in the left pane and press delete button. When prompted choose delete rather than removing reference only. Then use command+n and in the popped window, choose storyboard and name it as MainStoryboard (Xcode will add .storyboard for you). |
615,351 | Mathematically I can see that When **Iron Loss = Copper loss** there is maximum efficiency, But why is this true? As far as I know Iron losses are completely independent quantities, So I can't understand this condition intuitively. Please help. | 2022/04/10 | [
"https://electronics.stackexchange.com/questions/615351",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/311140/"
] | The purpose of a transformer is power throughput.
Power = volts x amps. You can get the same power with 100 V and 1 A, as with 10 V and 10 Amps, and 1 V and 100 A.
In a transformer, in a sense, the copper area is responsible for the current carrying. The iron area is responsible for the voltage handling.
You can bui... | Efficiency is a mathematical concept, so maximum efficiency doesn't really have a "physical meaning." Efficiency is an indication of resource optimization. You might say that waste is minimized when efficiency is maximized. However, you also need to consider load variation is a normal condition for the operation of man... |
615,351 | Mathematically I can see that When **Iron Loss = Copper loss** there is maximum efficiency, But why is this true? As far as I know Iron losses are completely independent quantities, So I can't understand this condition intuitively. Please help. | 2022/04/10 | [
"https://electronics.stackexchange.com/questions/615351",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/311140/"
] | The purpose of a transformer is power throughput.
Power = volts x amps. You can get the same power with 100 V and 1 A, as with 10 V and 10 Amps, and 1 V and 100 A.
In a transformer, in a sense, the copper area is responsible for the current carrying. The iron area is responsible for the voltage handling.
You can bui... | The statement that losses in a transformer can be minimized when copper losses equal core losses is only a design rule and not generally true. You are probably referring to a graph like this:
[](https://i.stack.imgur.com/wKDZg.png)
Source: Transformer... |
615,351 | Mathematically I can see that When **Iron Loss = Copper loss** there is maximum efficiency, But why is this true? As far as I know Iron losses are completely independent quantities, So I can't understand this condition intuitively. Please help. | 2022/04/10 | [
"https://electronics.stackexchange.com/questions/615351",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/311140/"
] | The purpose of a transformer is power throughput.
Power = volts x amps. You can get the same power with 100 V and 1 A, as with 10 V and 10 Amps, and 1 V and 100 A.
In a transformer, in a sense, the copper area is responsible for the current carrying. The iron area is responsible for the voltage handling.
You can bui... | I've asked myself this many times, but I've never paid much attention to the topic. In fact, I always thought that this was not related to the "Maximum Power Transfer Theorem". Apparently ([link](https://en.wikipedia.org/wiki/Maximum_power_transfer_theorem#:%7E:text=In%20electrical%20engineering%2C%20the%20maximum,view... |
70,111 | One day l was praying salat bad thoughts came to me. Somehow didn't repelled them. And l started to think about the by myself. And l have a question a we accountable for what l say in my mind. I think I said something bad in my mind but l don't know if l moved my tongue or lips
Please help l feel so sad and guilty l al... | 2021/07/20 | [
"https://islam.stackexchange.com/questions/70111",
"https://islam.stackexchange.com",
"https://islam.stackexchange.com/users/46213/"
] | It is applied offensively regarding polytheists and the jurists agreed on this:
>
> "The jurists agreed, with respect to the people who are to be fought,
> that they are all the polytheists (mushrikin), because of the words of
> the Exalted, “And fight them until persecution is no more and religion
> is all for Allah... | ***In The Name Of Allah. I bear witness there is none worthy of worship except Allah and I bear witness that Muhammad (Sallallahu'alaihiwassalam) is his servant and true messenger.***
I do not think that the Hadith says that Muslims should become offensive when it comes to Jizya tax. The Hadith you quoted itself says ... |
12,886 | I'm hoping there is something to pick up when I have misspelled variables and comments to save me some time when I'm checking my code and reduce the potential for any errors.
I normally use IntelliJ IDE for Terraform on a MAC but also have VS code set up that I can use.
Is there a plugin for either I could use or eve... | 2020/11/30 | [
"https://devops.stackexchange.com/questions/12886",
"https://devops.stackexchange.com",
"https://devops.stackexchange.com/users/17276/"
] | The tools that we have include in our Terraform pipelines to check code quality and best practises are;
1. [Tflint](https://github.com/terraform-linters/tflint)
2. [TFSec](https://github.com/tfsec/tfsec)
3. [Checkov](https://www.checkov.io/)
This way any issues get highlighted early at the MR stage. | VSCode has a Terraform Linter "l2fprod.terraform-fork"
Have NOT tried it. Did a simple search terra + lint.
HTH
DrewBai |
12,886 | I'm hoping there is something to pick up when I have misspelled variables and comments to save me some time when I'm checking my code and reduce the potential for any errors.
I normally use IntelliJ IDE for Terraform on a MAC but also have VS code set up that I can use.
Is there a plugin for either I could use or eve... | 2020/11/30 | [
"https://devops.stackexchange.com/questions/12886",
"https://devops.stackexchange.com",
"https://devops.stackexchange.com/users/17276/"
] | The tools that we have include in our Terraform pipelines to check code quality and best practises are;
1. [Tflint](https://github.com/terraform-linters/tflint)
2. [TFSec](https://github.com/tfsec/tfsec)
3. [Checkov](https://www.checkov.io/)
This way any issues get highlighted early at the MR stage. | You can use tflint project. It has lot of plugins for cloud providers.
<https://github.com/terraform-linters/tflint> |
17,022 | A rather popular belief on this topic is that h-pol is superior to v-pol. Probably that is traceable to published "far-field" patterns over a lossy ground plane generated by Method of Moments software such as NEC (Numerical Electromagnetics Code). This post is a deeper dive into the topic. | 2020/07/17 | [
"https://ham.stackexchange.com/questions/17022",
"https://ham.stackexchange.com",
"https://ham.stackexchange.com/users/10565/"
] | As clearly shown in the graphic clip first below, h-pol e-m waves radiated at low elevation angles tend to be canceled by their reflections from the Earth near the antenna site. Note the last sentence in the text column at the right side of that graphic. (This clip is taken from a textbook printed in the 1940s, but Phy... | I think frequency band and application need to be considered as a context.
* Satellite signals get randomly repolarized as they travel through the ionosphere, so I don't believe there is any advantage to one orthogonal polarization over another (e.g. horizontal vs. vertical, right-hand circular vs. left-hand circular,... |
28,604,069 | this month we are going to release our first CloudKit based app. It can sync data between a few users, a few users can work with shared data. Since we care about user data, we are looking for some way to make regular backup copies of cloud data. I haven't found any backup options in CloudKit Dashboard so I wondering if... | 2015/02/19 | [
"https://Stackoverflow.com/questions/28604069",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1885326/"
] | 1. Create a new record type (maybe name it Archive?). Add an asset type field to that record type.
2. In your app, fetch all of the records you want to backup.
3. In your app, convert them all into a NSData object. Perhaps use NSJSONSerialization if you want a user-readable format?
4. Attach that data to the asset fiel... | There isn't currently a way to back up data from the public database.
**UPDATE:** As Ramon mentioned, you can use the [CloudKit Web Service](https://developer.apple.com/library/ios/documentation/DataManagement/Conceptual/CloutKitWebServicesReference/Introduction/Introduction.html) API to access the public database fro... |
28,604,069 | this month we are going to release our first CloudKit based app. It can sync data between a few users, a few users can work with shared data. Since we care about user data, we are looking for some way to make regular backup copies of cloud data. I haven't found any backup options in CloudKit Dashboard so I wondering if... | 2015/02/19 | [
"https://Stackoverflow.com/questions/28604069",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1885326/"
] | 1. Create a new record type (maybe name it Archive?). Add an asset type field to that record type.
2. In your app, fetch all of the records you want to backup.
3. In your app, convert them all into a NSData object. Perhaps use NSJSONSerialization if you want a user-readable format?
4. Attach that data to the asset fiel... | You can use [CloudKit Web Services](https://developer.apple.com/library/ios/documentation/DataManagement/Conceptual/CloutKitWebServicesReference/Introduction/Introduction.html) to access public database data from your own server. |
66,486,883 | I have a a csv file called "amazon\_responded.csv" in which I am currently trying to format the dates in one of the columns in the file.
[](https://i.stack.imgur.com/HzRN2.png)
I need to format this date column called "tweet\_created\_at" into the fo... | 2021/03/05 | [
"https://Stackoverflow.com/questions/66486883",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/15264948/"
] | An alternative solution, you can run your query through Apache beam Dataflow runner. As Dataflow jobs can be easily be scheduled through Cron/Google Scheduler/Google Composer as per your requirement. A [sample Apache beam](https://stackoverflow.com/questions/65436564/apache-beam-io-bigquerysource-use-standard-sql-not-w... | Cloud Shell isn't a tool intended to be used as part of your production environment, the recommended in this types of cases is that you use the tools provided by the GCP products themselves instead of running a gcloud command.
You can find in [this tutotial](https://cloud.google.com/community/tutorials/schedule-datafl... |
9,715,269 | is there an open source tainting tool? I am trying to analyze a Java project and it's java source code. Therefore I can see where and which purpose are parameters used for. For instance, is it used in an if statement or is it assigned to another variable etc.
Thanks | 2012/03/15 | [
"https://Stackoverflow.com/questions/9715269",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1246775/"
] | You could try using the [Checker Framework](https://checkerframework.org/). | Modern java IDEs provide such information. IMHO, best one is IntelliJ IDEA , but comemrcial license will cost you about 130$ (there is free community edition
wuth somehow reduced functionality with source code published, or 30 day free trial
of full version)
Eclipse and netbean also provide similar functionality, b... |
9,715,269 | is there an open source tainting tool? I am trying to analyze a Java project and it's java source code. Therefore I can see where and which purpose are parameters used for. For instance, is it used in an if statement or is it assigned to another variable etc.
Thanks | 2012/03/15 | [
"https://Stackoverflow.com/questions/9715269",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1246775/"
] | You could try using the [Checker Framework](https://checkerframework.org/). | If you want a general purpose tool to track how a an arbitrary variable is used, or the source of values that feed into a variable, what you want is a [program slicer](http://en.wikipedia.org/wiki/Program_slicing). (Tainting is a special case, where one only wants to slice on certain inputs, usually from a source outsi... |
16,031 | Is there a easy way to migrate **a large number** of MS Office Live documents to Google Docs? Does Google has some tool for that? | 2011/06/07 | [
"https://webapps.stackexchange.com/questions/16031",
"https://webapps.stackexchange.com",
"https://webapps.stackexchange.com/users/11434/"
] | ...did you try UPLOAD button in your google doc page ?
[MS Office Live] --> [download to your desktop] --> [UPLOAD to Google docs] | Does Office Live also sync to your desktop (or allow you download all files in one go)?
If it does, you can then sync this folder with [Syncdocs](http://www.syncdocs.com/) to Google docs. It has been working very well for me. |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | By design of the tor network components it is not possible for the receiver to find out if the requester is the original source or if it's just a relayed request.
The behaviour you saw with Google was probably caused by a different security measure. Google detects if a logged-in user changes it's ip and presents a cap... | I think the focus on how it is 'impossible' to prevent a determined and technically savvy user from scraping a website is given too much significance. @Drew Noakes states that the website contains information that when taken in aggregate has some 'value'. If a website has aggregate data that is readily accessible by un... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | >
> I'm developing a website and am
> sensitive to people screen scraping my
> data
>
>
>
Forget about it. If it's on the web and someone wants it, it will be **impossible** to stop them from getting it. The more restrictions you put in place, the more you'll risk ruining user experience for legitimate users, wh... | You can check their ip address against a list of [Tor Exit Nodes](https://www.torproject.org/tordnsel/). I know for a fact this won't even slow someone down who is interested in scraping your site. Tor is too slow, most scrapers won't even consider it. There are tens of thousands of open proxy servers that can be easil... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | You can check their ip address against a list of [Tor Exit Nodes](https://www.torproject.org/tordnsel/). I know for a fact this won't even slow someone down who is interested in scraping your site. Tor is too slow, most scrapers won't even consider it. There are tens of thousands of open proxy servers that can be easil... | You can detect Tor users using TorDNSEL - <https://www.torproject.org/projects/tordnsel.html.en>.
You can just use this command-line/library - <https://github.com/assafmo/IsTorExit>. |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | >
> I'm developing a website and am
> sensitive to people screen scraping my
> data
>
>
>
Forget about it. If it's on the web and someone wants it, it will be **impossible** to stop them from getting it. The more restrictions you put in place, the more you'll risk ruining user experience for legitimate users, wh... | You can detect Tor users using TorDNSEL - <https://www.torproject.org/projects/tordnsel.html.en>.
You can just use this command-line/library - <https://github.com/assafmo/IsTorExit>. |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | You can check their ip address against a list of [Tor Exit Nodes](https://www.torproject.org/tordnsel/). I know for a fact this won't even slow someone down who is interested in scraping your site. Tor is too slow, most scrapers won't even consider it. There are tens of thousands of open proxy servers that can be easil... | I know this is old, but I got here from a Google search so I figured I'd get to the root concerns in the question here. I develop web applications, but I also do a ton of abusing and exploiting other peoples. I'm probably the guy you're trying to keep out.
Detecting tor traffic really isn't the route you want to go he... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | By design of the tor network components it is not possible for the receiver to find out if the requester is the original source or if it's just a relayed request.
The behaviour you saw with Google was probably caused by a different security measure. Google detects if a logged-in user changes it's ip and presents a cap... | You can detect Tor users using TorDNSEL - <https://www.torproject.org/projects/tordnsel.html.en>.
You can just use this command-line/library - <https://github.com/assafmo/IsTorExit>. |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | >
> I'm developing a website and am
> sensitive to people screen scraping my
> data
>
>
>
Forget about it. If it's on the web and someone wants it, it will be **impossible** to stop them from getting it. The more restrictions you put in place, the more you'll risk ruining user experience for legitimate users, wh... | I know this is old, but I got here from a Google search so I figured I'd get to the root concerns in the question here. I develop web applications, but I also do a ton of abusing and exploiting other peoples. I'm probably the guy you're trying to keep out.
Detecting tor traffic really isn't the route you want to go he... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | >
> I'm developing a website and am
> sensitive to people screen scraping my
> data
>
>
>
Forget about it. If it's on the web and someone wants it, it will be **impossible** to stop them from getting it. The more restrictions you put in place, the more you'll risk ruining user experience for legitimate users, wh... | By design of the tor network components it is not possible for the receiver to find out if the requester is the original source or if it's just a relayed request.
The behaviour you saw with Google was probably caused by a different security measure. Google detects if a logged-in user changes it's ip and presents a cap... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | >
> I'm developing a website and am
> sensitive to people screen scraping my
> data
>
>
>
Forget about it. If it's on the web and someone wants it, it will be **impossible** to stop them from getting it. The more restrictions you put in place, the more you'll risk ruining user experience for legitimate users, wh... | I think the focus on how it is 'impossible' to prevent a determined and technically savvy user from scraping a website is given too much significance. @Drew Noakes states that the website contains information that when taken in aggregate has some 'value'. If a website has aggregate data that is readily accessible by un... |
3,687,755 | I'm developing a website and am sensitive to people screen scraping my data. I'm not worried about scraping one or two pages -- I'm more concerned about someone scraping thousands of pages as the aggregate of that data is much more valuable than a small percentage would be.
I can imagine strategies to block users base... | 2010/09/10 | [
"https://Stackoverflow.com/questions/3687755",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/24874/"
] | You can check their ip address against a list of [Tor Exit Nodes](https://www.torproject.org/tordnsel/). I know for a fact this won't even slow someone down who is interested in scraping your site. Tor is too slow, most scrapers won't even consider it. There are tens of thousands of open proxy servers that can be easil... | I think the focus on how it is 'impossible' to prevent a determined and technically savvy user from scraping a website is given too much significance. @Drew Noakes states that the website contains information that when taken in aggregate has some 'value'. If a website has aggregate data that is readily accessible by un... |
9,226,680 | I have just inherited a java based web product. It is around 7 years old and have around 750,000 lines of code. Most of it is bespoke development but chunks of it are jars that we have bought from 3rd parties. One of the tasks handed over to me by my management is to come up with a architecture check list and then asse... | 2012/02/10 | [
"https://Stackoverflow.com/questions/9226680",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1096230/"
] | Take a look at [SonarJ](http://www.hello2morrow.com/videos) from Hello2morrow. | There is an eclipse plugin [structure 101](http://www.headwaysoftware.com/products/structure101/plugins/) that allows you to *communicate and influence your architecture*. |
11,349 | None of the Meta questions I could find (I did a search and then trawled through the "bumping" tag) seemed to answer this.
What's the etiquette on answering a question with no posted answers that's really old and by a user that has left? If the question asker were still around, I think I could post an answer that wou... | 2013/10/20 | [
"https://math.meta.stackexchange.com/questions/11349",
"https://math.meta.stackexchange.com",
"https://math.meta.stackexchange.com/users/26369/"
] | If you want to write an answer, then don't worry about the bump. You thought it was interesting, maybe others will too.
But if you don't find the question interesting, don't feel obligated to write an answer just for the sake of having one. If it's really dull, you can downvote it, and it will descend into oblivion. | Naturally, those participating in the [Crusade of Answers](http://chat.stackexchange.com/rooms/9141/the-crusade-of-answers) (a chatroom initiative to push back the number of Unanswered questions by drawing attention to old questions) encounter this situation quite often.
The primary consideration here is:
>
> If you... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | Practice, practice, practice. It doesn't recreate the stress of an interview, but it will help you form habits you can rely on when you are stressed. There are any number of book on programming interviews. Get together with a programmer friend and run through mock interviews. You may also get lucky in the real intervie... | Two thoughts on that:
1. If you're invited to the interview, your chances of getting the job are higher than winning the lottery. Are you afraid of not winning the jackpot?
2. You're asked to demonstrate something you enjoy (coding). Are you usually afraid when coding?
Even if you can't resemble the usual coding-envi... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | The interview is only a part of the hiring process, and coding during an interview is only a part of an interview.
If this is your weak part, ensure that:
1. Your profile is solid enough.
If the candidate has **dozens of open source large projects available on the web**, it is pretty sure that this person is able to... | Two thoughts on that:
1. If you're invited to the interview, your chances of getting the job are higher than winning the lottery. Are you afraid of not winning the jackpot?
2. You're asked to demonstrate something you enjoy (coding). Are you usually afraid when coding?
Even if you can't resemble the usual coding-envi... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | For me it's all about being aware of your situation, and not blowing it out of proportions.
Interviewers want to ask tough questions
----------------------------------------
1. It shows how well you perform under pressure and time limitations
2. It shows your ability to break things down and not give up even if the p... | A few thoughts that might be helpful.
1. A job interview is an unnatural situation, and the overwhelming majority of candidates is nervous. Interviewers are generally aware of this; it's usually easy to tell when a candidate is nervous, and the better ones will take this into account.
2. A job interview is two-way. A ... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | For me it's all about being aware of your situation, and not blowing it out of proportions.
Interviewers want to ask tough questions
----------------------------------------
1. It shows how well you perform under pressure and time limitations
2. It shows your ability to break things down and not give up even if the p... | The interview is only a part of the hiring process, and coding during an interview is only a part of an interview.
If this is your weak part, ensure that:
1. Your profile is solid enough.
If the candidate has **dozens of open source large projects available on the web**, it is pretty sure that this person is able to... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | A few thoughts that might be helpful.
1. A job interview is an unnatural situation, and the overwhelming majority of candidates is nervous. Interviewers are generally aware of this; it's usually easy to tell when a candidate is nervous, and the better ones will take this into account.
2. A job interview is two-way. A ... | Two thoughts on that:
1. If you're invited to the interview, your chances of getting the job are higher than winning the lottery. Are you afraid of not winning the jackpot?
2. You're asked to demonstrate something you enjoy (coding). Are you usually afraid when coding?
Even if you can't resemble the usual coding-envi... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | Practice, practice, practice. It doesn't recreate the stress of an interview, but it will help you form habits you can rely on when you are stressed. There are any number of book on programming interviews. Get together with a programmer friend and run through mock interviews. You may also get lucky in the real intervie... | For me it's all about being aware of your situation, and not blowing it out of proportions.
Interviewers want to ask tough questions
----------------------------------------
1. It shows how well you perform under pressure and time limitations
2. It shows your ability to break things down and not give up even if the p... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | For me it's all about being aware of your situation, and not blowing it out of proportions.
Interviewers want to ask tough questions
----------------------------------------
1. It shows how well you perform under pressure and time limitations
2. It shows your ability to break things down and not give up even if the p... | Two thoughts on that:
1. If you're invited to the interview, your chances of getting the job are higher than winning the lottery. Are you afraid of not winning the jackpot?
2. You're asked to demonstrate something you enjoy (coding). Are you usually afraid when coding?
Even if you can't resemble the usual coding-envi... |
6,128 | I have test anxiety, and when interviewing I often get so stressed that I have difficulty completing tasks in the interview that I normally wouldn't have trouble completing.
I recently went through an interview where I was so nervous that I feel like I did poorly on one coding question in particular, something that I ... | 2012/11/09 | [
"https://workplace.stackexchange.com/questions/6128",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/1816/"
] | Practice, practice, practice. It doesn't recreate the stress of an interview, but it will help you form habits you can rely on when you are stressed. There are any number of book on programming interviews. Get together with a programmer friend and run through mock interviews. You may also get lucky in the real intervie... | The interview is only a part of the hiring process, and coding during an interview is only a part of an interview.
If this is your weak part, ensure that:
1. Your profile is solid enough.
If the candidate has **dozens of open source large projects available on the web**, it is pretty sure that this person is able to... |
100,807 | I frequently encounter this in technical documents and I am wondering which one is correct.
>
> In the figure below
>
>
>
or
>
> In the below figure
>
>
> | 2013/01/21 | [
"https://english.stackexchange.com/questions/100807",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/36102/"
] | The first example is correct, not the second.
*Below* is generally used as an adverb or preposition, not as an adjective. See, e.g., [Cambridge](http://dictionary.cambridge.org/dictionary/american-english/below).
As such, it does not modify *figure*.
In the first example, it could be construed as either, based on ... | They're both correct, and amount to the same thing, but the second use of *below* as an adjective is less common.
So uncommon in fact, that you can find native speakers complaining to lexicographers about it. That in itself may be a reason to avoid it, though it has nearly a century of attested use. |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | A patch is always a scar on an image
------------------------------------
The question is wrongly formulated. You are taking for granted the existence of another component as something of correct use and valid as a design element in any image: a *patch*.
I think before asking if you behead a character inside an image... | **Yes and No!**
=> when it comes to branding all thing you should keep in mind and keep focused is = Brand name ; logo and what it clearly does or for what it is made (purpose) . and to achieve this you can do anything if your placed image is working as background (less focused)
but in your case the branding doesn't ... |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | When advertising, especially something which involves the human condition such as medical care, you *want* the viewer to be engaged and connected as much as possible. Human faces tend to soften advertising and if the faces appear kind, welcoming, engaged, themselves, then viewers tend to subconsciously pick up on that ... | **Yes and No!**
=> when it comes to branding all thing you should keep in mind and keep focused is = Brand name ; logo and what it clearly does or for what it is made (purpose) . and to achieve this you can do anything if your placed image is working as background (less focused)
but in your case the branding doesn't ... |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | **Yes and No!**
=> when it comes to branding all thing you should keep in mind and keep focused is = Brand name ; logo and what it clearly does or for what it is made (purpose) . and to achieve this you can do anything if your placed image is working as background (less focused)
but in your case the branding doesn't ... | In this particular case, the face removal doesn't worry me in the slightest. If the product is care-based rather than medicine-technology-based it's even an improvement. Quite different to the example @Matt offered (below) where the sidelining of the woman is open to so many levels of criticism!
I certainly wouldn't s... |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | When advertising, especially something which involves the human condition such as medical care, you *want* the viewer to be engaged and connected as much as possible. Human faces tend to soften advertising and if the faces appear kind, welcoming, engaged, themselves, then viewers tend to subconsciously pick up on that ... | A patch is always a scar on an image
------------------------------------
The question is wrongly formulated. You are taking for granted the existence of another component as something of correct use and valid as a design element in any image: a *patch*.
I think before asking if you behead a character inside an image... |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | A patch is always a scar on an image
------------------------------------
The question is wrongly formulated. You are taking for granted the existence of another component as something of correct use and valid as a design element in any image: a *patch*.
I think before asking if you behead a character inside an image... | In this particular case, the face removal doesn't worry me in the slightest. If the product is care-based rather than medicine-technology-based it's even an improvement. Quite different to the example @Matt offered (below) where the sidelining of the woman is open to so many levels of criticism!
I certainly wouldn't s... |
125,939 | Please see the image. Just to write the copy, I had to place white color over the upper half of the person on the right side.
Is it okay to do so in graphic design or is it terribly wrong here?
PS: Copy size and number of lines/words may vary.
[](ht... | 2019/06/25 | [
"https://graphicdesign.stackexchange.com/questions/125939",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/69916/"
] | When advertising, especially something which involves the human condition such as medical care, you *want* the viewer to be engaged and connected as much as possible. Human faces tend to soften advertising and if the faces appear kind, welcoming, engaged, themselves, then viewers tend to subconsciously pick up on that ... | In this particular case, the face removal doesn't worry me in the slightest. If the product is care-based rather than medicine-technology-based it's even an improvement. Quite different to the example @Matt offered (below) where the sidelining of the woman is open to so many levels of criticism!
I certainly wouldn't s... |
18,302,639 | 
Which key in UIDefaults should I change to change the border color of all JFrames in the application from blue to something else?
I know there is no code here but it is a very terse question.
**EDIT**
Attached below is the image... | 2013/08/18 | [
"https://Stackoverflow.com/questions/18302639",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1056010/"
] | >
> Which key in UIDefaults should I change to change the border color of
> all JFrames in the application from blue to something else?
>
>
>
* there isn't any key for JFrame (e.i.) on Java side
* borders and tittle bar is decorated by Native OS, current color (font, sizing) theme is applied to all windows,
* you... | Try the "windowBorder"-Key.
Source: <http://nadeausoftware.com/node/85#Systemcolors> |
13,637 | Renge usually greets people with "Nyanpasu". The sub says "Meowning" which probably comes from "Morning" as a greeting. But "Morning" as a greeting in Japanese is *Ohayo* which is quite different than "Nyanpasu".
[here's a YouTube video of how Renge said it](http://www.youtube.com/watch?v=JAEbJs-rnVc)
I don't really ... | 2014/08/26 | [
"https://anime.stackexchange.com/questions/13637",
"https://anime.stackexchange.com",
"https://anime.stackexchange.com/users/2869/"
] | I think it's just her random, meaningless word for "Good morning".
I found an [interview](http://mantan-web.jp/2013/11/09/20131108dog00m200066000c.html) with the producer of Non Non Biyori.
>
> --主要キャラクターの宮内れんげのせりふ「にゃんぱすー」はどういう意味があるのですか?
>
>
> 小学1年生が考えた「おはこんばんちわ」的な(笑い)、いろいろなときに対応できるあいさつです。また、れんげというキャラクターは1年生ですが、... | I have looked this up before and found [this](http://vultureofcritique.wordpress.com/2013/12/25/the-etymology-phonetics-and-linguistics-of-nyanpasu-could-be-considered-funky/):
>
> But have you considered why “Nyanpasu” is a creative coinage of a new term in Japanese?
>
>
> Japanese people and linguists may disagre... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.