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
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
I think coding standards are very important. There is nothing more frustrating than trying to find the differences between two revisions of a file only to find that the whole file has been changed by someone who reformatted it all. And I know someone is going to say that that sort of practice should be stamped out, but...
We have a kind of 'loose' standard. Maybe because of our inability to have agreement upon some of those 'how many spaces to put there and there', 'where to put my open brace, after the statement or on the next line'. However, as we have main developers for each of the dedicated modules or components, and some addition...
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
We take use of the Eclipse's save actions and formatters. We do have a suggested standard, but nobody is actually enforcing it, so there are some variations on what is actually formatted, and how. This is something of a nuisance (for me), as various whitespace variations are committed as updates to the SVN repository....
I have never seen a project fail because of lack of coding standards (or adherence to them), or even have any effect on productivity. If you are spending any time on enforcing them then you are wasting money. There are so many important things to worry about instead (like code quality). Create a set of suggested stand...
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
I think coding standards are very important. There is nothing more frustrating than trying to find the differences between two revisions of a file only to find that the whole file has been changed by someone who reformatted it all. And I know someone is going to say that that sort of practice should be stamped out, but...
> > Do you have coding standards? > What does it cover? > > > Yes, it has naming conventions, mandatory braces after if, while ... , no warning allowed, recommendations for 32/64 bits alignment, no magic number, header guards, variables initialization and formatting rules that favor consistency for legacy code....
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
Do you have coding standards? > > > > > > Yes, differs from project to project. > > > > > > > > > What does it cover? > > > > > > Code(class, variable, method, constant), SQL naming and formatting convention > > > > > > > > > Is it being followed by everyone? > > > > > > Yes, every new entrant...
Oh yes, I'm the coding standard police :) I just wrote a simple script to periodically check and fix the code (my coding standard is [simple enough](https://stackoverflow.com/questions/276173/what-are-your-favorite-c-coding-style-idioms#276560) to implement that.) I hope people will get the message after seeing all the...
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
I think coding standards are very important. There is nothing more frustrating than trying to find the differences between two revisions of a file only to find that the whole file has been changed by someone who reformatted it all. And I know someone is going to say that that sort of practice should be stamped out, but...
Oh yes, I'm the coding standard police :) I just wrote a simple script to periodically check and fix the code (my coding standard is [simple enough](https://stackoverflow.com/questions/276173/what-are-your-favorite-c-coding-style-idioms#276560) to implement that.) I hope people will get the message after seeing all the...
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
I think coding standards are very important. There is nothing more frustrating than trying to find the differences between two revisions of a file only to find that the whole file has been changed by someone who reformatted it all. And I know someone is going to say that that sort of practice should be stamped out, but...
I think the best way to look at coding standards is in terms of what you hope to achieve by applying, and the damage that they can cause if mis-applied. For example, I see the following as quite good; * Document and provide unit tests that illustrate all typical scenarios for usage of a given interface to a given rout...
377,218
I've worked on a couple of projects where we spent a great deal of time discussing and writing elaborate coding standards covering everything from syntax layout to actual best practices. However, I have also found that these are rarely followed to the full extent. Many developers seem to hesitate to reject a code revie...
2008/12/18
[ "https://Stackoverflow.com/questions/377218", "https://Stackoverflow.com", "https://Stackoverflow.com/users/38206/" ]
I've worked in places with barely-followed coding practices, and others where they're close to being enforced - or at least easily checked. A few suggestions: * The most important thing is to get buy-in to the idea that consistency trumps your personal preferred style. There should be discussion of the coding standar...
We take use of the Eclipse's save actions and formatters. We do have a suggested standard, but nobody is actually enforcing it, so there are some variations on what is actually formatted, and how. This is something of a nuisance (for me), as various whitespace variations are committed as updates to the SVN repository....
38,071,566
if I deploy Apache Drill in a existing Hadoop cluster, dose the Apache Drill have any negative influence on the other members of Hadoop ecosystem in the existing Hadoop cluster ?
2016/06/28
[ "https://Stackoverflow.com/questions/38071566", "https://Stackoverflow.com", "https://Stackoverflow.com/users/6521594/" ]
It wont have any negative impact on other members of ecosystem but it will hog a lot of memory of the node. Make sure you have enough memory before installing Drill.
It's Hadoop compatibility component. The influence only happen if you don't provide enough resource for all the members to operate. You can put Drill with HDFS in the same node or same cluster to get the best performance.
34,567
With early 2013 cameras, it's generally accepted that using contrast detection autofocus on SLRs (ie live view on *most* SLRs) is something which is really suitable only for static, or close to static, subjects due to the slow focusing speed. On the other hand, the current best of breed mirrorless cameras (the Olympus ...
2013/02/11
[ "https://photo.stackexchange.com/questions/34567", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/11371/" ]
Major reason is that the **DSLR lenses are optimized for Phase Detection**. Every component of the lens is tailored towards quick movement and stopping the glass in precisely picked moment. Contrast detection on the other hand works best with stepper motors capable of quickly switching directions so that you can move l...
It is simply a case of optimization. Sensors used on those cameras have been optimized to perform efficient autofocus. Some use contrast-detect while others even have phase-detect sensors. In the case of the OM-D E-M5, it uses Contrast-Detect which is basically a loop that measures local contrast, moves the lens and r...
34,567
With early 2013 cameras, it's generally accepted that using contrast detection autofocus on SLRs (ie live view on *most* SLRs) is something which is really suitable only for static, or close to static, subjects due to the slow focusing speed. On the other hand, the current best of breed mirrorless cameras (the Olympus ...
2013/02/11
[ "https://photo.stackexchange.com/questions/34567", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/11371/" ]
Major reason is that the **DSLR lenses are optimized for Phase Detection**. Every component of the lens is tailored towards quick movement and stopping the glass in precisely picked moment. Contrast detection on the other hand works best with stepper motors capable of quickly switching directions so that you can move l...
Update ------ Since this question and answer were originally written a lot has changed in the way different types of cameras implement AF and in the levels at which those implementations perform. Many current DSLRs now have imaging sensor based hybrid Phase Detection/Contrast Detection AF in Live View that rivals or ...
34,567
With early 2013 cameras, it's generally accepted that using contrast detection autofocus on SLRs (ie live view on *most* SLRs) is something which is really suitable only for static, or close to static, subjects due to the slow focusing speed. On the other hand, the current best of breed mirrorless cameras (the Olympus ...
2013/02/11
[ "https://photo.stackexchange.com/questions/34567", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/11371/" ]
Update ------ Since this question and answer were originally written a lot has changed in the way different types of cameras implement AF and in the levels at which those implementations perform. Many current DSLRs now have imaging sensor based hybrid Phase Detection/Contrast Detection AF in Live View that rivals or ...
It is simply a case of optimization. Sensors used on those cameras have been optimized to perform efficient autofocus. Some use contrast-detect while others even have phase-detect sensors. In the case of the OM-D E-M5, it uses Contrast-Detect which is basically a loop that measures local contrast, moves the lens and r...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
### Imagine this: The year is 2222 and human technology has advanced to the point that we are able to reach and colonize other planets. Life on Earth is thriving and things are going really well. However, there is still one problem. **The Amish.** They are still living their lives as they always have, but now they're ...
Have an existing spacefaring species from a different planet/solar system/whatever give opposing political factions nukes, tell them "the other guy" is going to kill them by the end of the day if they don't shoot first, and don't tell any of them how powerful the nukes are. This will likely kill everyone on the moon a...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
Apocalyptic cycle ----------------- This moon is much more volcanically active than Earth. It means every now and again there is a devastating volcanic eruption that causes a massive release of particles that end up blocking out the sun (or the equivalent of the sun on that moon). This results in a [volcanic winter](h...
They're too busy. The species has developed a hierarchy. Some individuals are at the top, and rule over everyone else. Those at the top demand that those under them work. The work mostly doesn't advance society. Some of it maintains the status quo by keeping everyone fed who deserves to be fed, and the rest of it most...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
Give them the internet. Give them e-mail, chat, and Zoom. Give them instagram, Facebook, TikTok. Gmail. Youtube. Give them Twitter. They will forget all about the stars.
They're too busy. The species has developed a hierarchy. Some individuals are at the top, and rule over everyone else. Those at the top demand that those under them work. The work mostly doesn't advance society. Some of it maintains the status quo by keeping everyone fed who deserves to be fed, and the rest of it most...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
Two big factors: 1. Limited resources. If everything is expended to support themselves, they will not have the faculties to invent new things. They may even spend their idle time sitting about so as to not waste more calories when they don't have them. 2. Local maxima. If they have achieved peak effectiveness such tha...
Extreme lack of supplies could exist in this planet that causes this species to spend nearly all of its time scavenging compared to engineering
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
They won't "develop" beyond 18th century fun anyway --------------------------------------------------- When I was playing war games in the universe conquering planets (yes we could) the primary goal of stage 1 colonization was to get yourself a "good" planet. That meant: a big one. You provide them with a natural lim...
No need to plan ahead --------------------- In our history, complex civilizations developed where there was a need to plan ahead. In temperate regions, like Europe and China, people had to stockpile enough food and firewood to survive the winter. In the Middle East, they needed irrigation because of the arid climate. ...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
### Imagine this: The year is 2222 and human technology has advanced to the point that we are able to reach and colonize other planets. Life on Earth is thriving and things are going really well. However, there is still one problem. **The Amish.** They are still living their lives as they always have, but now they're ...
Extreme lack of supplies could exist in this planet that causes this species to spend nearly all of its time scavenging compared to engineering
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
Two big factors: 1. Limited resources. If everything is expended to support themselves, they will not have the faculties to invent new things. They may even spend their idle time sitting about so as to not waste more calories when they don't have them. 2. Local maxima. If they have achieved peak effectiveness such tha...
No need to plan ahead --------------------- In our history, complex civilizations developed where there was a need to plan ahead. In temperate regions, like Europe and China, people had to stockpile enough food and firewood to survive the winter. In the Middle East, they needed irrigation because of the arid climate. ...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
No fossil fuels, no wood ------------------------ Without either fossil fuels or wood, any species is going to be hobbled in the fields of metallurgy and chemistry, as well most others. This goes double if there are very few lipids around. Lack of wood also means that the most convenient building and carpentry materi...
Have an existing spacefaring species from a different planet/solar system/whatever give opposing political factions nukes, tell them "the other guy" is going to kill them by the end of the day if they don't shoot first, and don't tell any of them how powerful the nukes are. This will likely kill everyone on the moon a...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
**Only one thing can stop development: an outside force** "How do I retard development?" isn't an unknown question on the Stack. The fundamental problem is that evolution is naturally competitive, meaning it's filled with creatures that know how to solve problems. You want to stop them from solving problems, to act ag...
An exterior magical force is what I've done with some of my worlds; there is an enchantment of some sort that does not allow the people of the planet to advance past the technologies that aren't wanted for that world. E.g. when someone on a 1500s timelocked world creates a lightbulb, it just vanishes. Thus they can't a...
238,948
How could a really intelligent species be kept from developing? For clarification, this species is the only creature of intelligent thought on the planet and they have a population of about 50 million across the planet about the size of the moon. However, they can't develop to the level that Britain reached in the indu...
2022/12/05
[ "https://worldbuilding.stackexchange.com/questions/238948", "https://worldbuilding.stackexchange.com", "https://worldbuilding.stackexchange.com/users/99785/" ]
**Only one thing can stop development: an outside force** "How do I retard development?" isn't an unknown question on the Stack. The fundamental problem is that evolution is naturally competitive, meaning it's filled with creatures that know how to solve problems. You want to stop them from solving problems, to act ag...
A frame challenege: > > they have a population of about 50 million across the planet about the size of the moon. > > > And by "the moon" I guess you mean the Moon, Luna, the moon of Earth. Part One: Facts About the Moon. The Moon has a mean radius of 1,737.4 kilometers (0.2727 that of Earth), a surface area of ...
2,177,886
I have a VSPackage that I would like to get information similar to that shown in the locals window when in debug mode (the values of variables for the current context). I have been experimenting with the DTE.Debugger.CurrentStackFrame instance which looked interesting because it exposed Argument and Local collections ...
2010/02/01
[ "https://Stackoverflow.com/questions/2177886", "https://Stackoverflow.com", "https://Stackoverflow.com/users/101642/" ]
It is not possible to get ahold of the value as an object. Mainly because the value doesn't exist in the same process as your VS Package. It exists in the debugee process. The Visual Studio Debugger has to go through the CLR API's to manipulate the value. The best you can do is get ahold of the string value from the VS...
You can get access to actual objects using a Visual Studio Visualizer. The info can be found [here](http://msdn.microsoft.com/en-US/library/zayyhzts%28v=VS.80%29.aspx).
40,778,576
I have two panels in my dashboard and i have applied a filter(select month) in the first panel and the issue i face is the same filter cannot be applied in panel 2. I don't want to apply same filter in panel 2 again . I want filter in panel 1 to control both the panels. [![*enter image description here*](https://i.stac...
2016/11/24
[ "https://Stackoverflow.com/questions/40778576", "https://Stackoverflow.com", "https://Stackoverflow.com/users/7017824/" ]
You can't like this. Your only option is to put the month in the filter bar :/
Try to embed the two panels into a container and apply the filter to it. This is the way to sinchronize scroll bars between two different grids, for example. Regards!
9,440,488
I saw a good article explaining how to have .net apps communicate directly with each other (http://ryanfarley.com/blog/archive/2004/05/10/605.aspx), but it involved overriding the WndProc method in your form which I obviously can't do in vb6. Do any other methods of inter-application communication exist that could be ...
2012/02/25
[ "https://Stackoverflow.com/questions/9440488", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1019215/" ]
There are many alternatives. If you say more about your requirements, I can provide a more detailed answer. In the mean time, have a look at named pipes: <http://support.microsoft.com/kb/871044> <http://msdn.microsoft.com/en-us/library/windows/desktop/aa365590(v=vs.85).aspx> If your programs reside on different ser...
You could make your VB6 EXE an ActiveX EXE (COM server) and then have the .Net component call it via COM interop. I.e. just [add a reference](http://msdn.microsoft.com/en-us/library/cwys3b23.aspx) to the VB6 EXE on the COM tab of the project references dialog. Alternatively you could use WCF. Create a COM-visible DLL...
90,592
I am in the process of migrating to a new AD DS from AD 2000. We have Exchange 2003 in the old and in the new domains. I am wondering if and how it's possible since I will be doing a slow migration (a group of users each day) to allow the users who have been moved to the new Domain and Exchange server to be able to sti...
2009/12/03
[ "https://serverfault.com/questions/90592", "https://serverfault.com", "https://serverfault.com/users/8093/" ]
Based on your comment to TJ, it sounds like you're looking for a unified Global Address List between the organizations and email delivery (presumably sharing the same Internet domain name) between both organizations. re: the GAL - Your choice is between third-party software or scripting something up yourself. If you'...
What you're doing is essentially a cross-forest migration of Exchange users. The Exchange Deployment guide has a section of this, find it at <http://technet.microsoft.com/en-us/library/bb125074%28EXCHG.65%29.aspx>. (Look for "Migrating Accounts and Mailboxes Across Forests")
29,265
I have a cell with wrapped text content in Excel and I want to format the cell so that its height will adjust to fit the content which can span over several lines. How can I achieve this behavior?
2009/08/25
[ "https://superuser.com/questions/29265", "https://superuser.com", "https://superuser.com/users/1868/" ]
If it doesn't automatically do it, then place your cursor over the small line between row numbers (ex: between 1 and 2) and double click, this will resize the row (directly above the small line, in the example: 1) so that everything is visible (from a vertical aspect).
Do you know macro? Put the following code in > > Application.ActiveCell.WrapText = True > > > inside your Worksheet\_SelectionChange subroutine.
29,265
I have a cell with wrapped text content in Excel and I want to format the cell so that its height will adjust to fit the content which can span over several lines. How can I achieve this behavior?
2009/08/25
[ "https://superuser.com/questions/29265", "https://superuser.com", "https://superuser.com/users/1868/" ]
From <http://support.microsoft.com/kb/149663> To adjust the height of the row to fit all the text in a cell, follow these steps: Select the row. > > In Microsoft Office Excel 2003 and in earlier versions of Excel, point > to Row on the Format menu, and then click AutoFit. > > > In Microsoft Office Excel 2007, cl...
The only way I can get it to work as expected is to highlight the whole sheet with CTRL-A, unclick the "Wrap Text" button in the toolbar, then re-select it. No other settings change, but each row is now the "proper" height for its contents.
29,265
I have a cell with wrapped text content in Excel and I want to format the cell so that its height will adjust to fit the content which can span over several lines. How can I achieve this behavior?
2009/08/25
[ "https://superuser.com/questions/29265", "https://superuser.com", "https://superuser.com/users/1868/" ]
Note that autofit doesn't work on merged cells. You have to do it manually. See this Microsoft answer: [You cannot use the AutoFit feature for rows or columns that contain merged cells in Excel](http://support.microsoft.com/kb/212010)
The only way I can get it to work as expected is to highlight the whole sheet with CTRL-A, unclick the "Wrap Text" button in the toolbar, then re-select it. No other settings change, but each row is now the "proper" height for its contents.
29,265
I have a cell with wrapped text content in Excel and I want to format the cell so that its height will adjust to fit the content which can span over several lines. How can I achieve this behavior?
2009/08/25
[ "https://superuser.com/questions/29265", "https://superuser.com", "https://superuser.com/users/1868/" ]
From <http://support.microsoft.com/kb/149663> To adjust the height of the row to fit all the text in a cell, follow these steps: Select the row. > > In Microsoft Office Excel 2003 and in earlier versions of Excel, point > to Row on the Format menu, and then click AutoFit. > > > In Microsoft Office Excel 2007, cl...
Do you know macro? Put the following code in > > Application.ActiveCell.WrapText = True > > > inside your Worksheet\_SelectionChange subroutine.
29,265
I have a cell with wrapped text content in Excel and I want to format the cell so that its height will adjust to fit the content which can span over several lines. How can I achieve this behavior?
2009/08/25
[ "https://superuser.com/questions/29265", "https://superuser.com", "https://superuser.com/users/1868/" ]
From <http://support.microsoft.com/kb/149663> To adjust the height of the row to fit all the text in a cell, follow these steps: Select the row. > > In Microsoft Office Excel 2003 and in earlier versions of Excel, point > to Row on the Format menu, and then click AutoFit. > > > In Microsoft Office Excel 2007, cl...
If it doesn't automatically do it, then place your cursor over the small line between row numbers (ex: between 1 and 2) and double click, this will resize the row (directly above the small line, in the example: 1) so that everything is visible (from a vertical aspect).
388,296
Windows (in this case XP) allows me to simply "share a folder" via its [SMB protocol](http://en.wikipedia.org/wiki/Server_Message_Block), and I can access it via Linux quite nicely (with [Samba](http://www.samba.org/)), no questions asked. That's what bothers me, it just does not feel secure, and the ["security" secti...
2012/02/10
[ "https://superuser.com/questions/388296", "https://superuser.com", "https://superuser.com/users/19668/" ]
A properly configured router with a built in firewall and network address translation (NAT) should give reasonable protection. There are many websites that will perform a port scan and tell you what file-sharing and other services are visible through your router. For example "Shields Up" at www.grc.com. ![Shields-Up!...
A work around I use is to put a 3rd party firewall on XP (disable XP firewall), set a rule to only allow the ip address of your other PCs to be able to connect to the XP box, I use the old Sygate firewall for this on all my XP boxes. Sygate is no longer supported but works flawlessly for me. Once installed you can all...
557,115
Is the writer employing a mixed metaphor here? > > A part of her was sinking languidly down into the passive pleasure of having returned to the familiar—**like a pebble**, she had been picked up and hurled back into the pond, and sunk down through the layer of green scum, through the secret cool depths to the soft la...
2021/01/10
[ "https://english.stackexchange.com/questions/557115", "https://english.stackexchange.com", "https://english.stackexchange.com/users/405662/" ]
I would describe it as a failed attempt at an [extended metaphor](https://literarydevices.net/extended-metaphor/). It is certainly mixed in the sense that pebbles don't have fins.
There are many many figures of speech. But "like" is a "simile" and **simile** describes something as being **similar** to something. It directly gives information to the readers to let them know how something can be similar to something. For mixed metaphor, you can access here : <https://www.grammarly.com/blog/meta...
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity does not have extensive integration with JIRA as Bamboo does, and I am not aware of a plugin that provides it. TeamCity does however, offer a generic integration option to external sites which can be used for basic JIRA integration. From their documentation: > > TeamCity allows to map patterns in VCS chang...
TeamCity has 3 build in Issue Tracking Systems: 1.BugZilla 2.JIRA 3.YouTrack And there's a way to install the custom plugin for other ITS. I did an integration with FogBugz issue tracking system with TeamCity 9.x. <https://github.com/jozefizso/teamcity-fogbugz>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. [EAP Release Notes](http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes) you still don't have the integration in Jira itself which I would prefer [![alt text](https://i.stack.imgur.com/6JPQU.png)](https://...
TeamCity has 3 build in Issue Tracking Systems: 1.BugZilla 2.JIRA 3.YouTrack And there's a way to install the custom plugin for other ITS. I did an integration with FogBugz issue tracking system with TeamCity 9.x. <https://github.com/jozefizso/teamcity-fogbugz>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
There is this plugin <https://marketplace.atlassian.com/plugins/com.stiltsoft.jira.teamcity>
TeamCity does have a free plugin for Atlassian Confluence. Its provides a nice way to show your build status on your wiki. You can find it in the Atlassian marketplace: <https://marketplace.atlassian.com/plugins/com.stiltsoft.confluence.extra.confluence-teamcity-plugin>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. [EAP Release Notes](http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes) you still don't have the integration in Jira itself which I would prefer [![alt text](https://i.stack.imgur.com/6JPQU.png)](https://...
There is this plugin <https://marketplace.atlassian.com/plugins/com.stiltsoft.jira.teamcity>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. [EAP Release Notes](http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes) you still don't have the integration in Jira itself which I would prefer [![alt text](https://i.stack.imgur.com/6JPQU.png)](https://...
TeamCity does not have extensive integration with JIRA as Bamboo does, and I am not aware of a plugin that provides it. TeamCity does however, offer a generic integration option to external sites which can be used for basic JIRA integration. From their documentation: > > TeamCity allows to map patterns in VCS chang...
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
There is this plugin <https://marketplace.atlassian.com/plugins/com.stiltsoft.jira.teamcity>
TeamCity has 3 build in Issue Tracking Systems: 1.BugZilla 2.JIRA 3.YouTrack And there's a way to install the custom plugin for other ITS. I did an integration with FogBugz issue tracking system with TeamCity 9.x. <https://github.com/jozefizso/teamcity-fogbugz>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. [EAP Release Notes](http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes) you still don't have the integration in Jira itself which I would prefer [![alt text](https://i.stack.imgur.com/6JPQU.png)](https://...
TeamCity does have a free plugin for Atlassian Confluence. Its provides a nice way to show your build status on your wiki. You can find it in the Atlassian marketplace: <https://marketplace.atlassian.com/plugins/com.stiltsoft.confluence.extra.confluence-teamcity-plugin>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity does not have extensive integration with JIRA as Bamboo does, and I am not aware of a plugin that provides it. TeamCity does however, offer a generic integration option to external sites which can be used for basic JIRA integration. From their documentation: > > TeamCity allows to map patterns in VCS chang...
TeamCity does have a free plugin for Atlassian Confluence. Its provides a nice way to show your build status on your wiki. You can find it in the Atlassian marketplace: <https://marketplace.atlassian.com/plugins/com.stiltsoft.confluence.extra.confluence-teamcity-plugin>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
**Yes, they are comming out with their own issue tracker. Read more in this blogpost: [first eap for jetbrains issue tracker Charisma](http://blogs.jetbrains.com/teamcity/2009/05/21/first-eap-for-jetbrains-issue-tracker/)** you can try it here [Charisma](http://jetbrains.net/tracker/issues/TW) and here you can see [...
TeamCity has 3 build in Issue Tracking Systems: 1.BugZilla 2.JIRA 3.YouTrack And there's a way to install the custom plugin for other ITS. I did an integration with FogBugz issue tracking system with TeamCity 9.x. <https://github.com/jozefizso/teamcity-fogbugz>
754,195
Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration. FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?
2009/04/15
[ "https://Stackoverflow.com/questions/754195", "https://Stackoverflow.com", "https://Stackoverflow.com/users/65313/" ]
TeamCity 5 EAP has support for showing issues from Jira on the tabs of your build. [EAP Release Notes](http://www.jetbrains.net/confluence/display/TW/Darjeeling+5.0+EAP+Release+Notes) you still don't have the integration in Jira itself which I would prefer [![alt text](https://i.stack.imgur.com/6JPQU.png)](https://...
**Yes, they are comming out with their own issue tracker. Read more in this blogpost: [first eap for jetbrains issue tracker Charisma](http://blogs.jetbrains.com/teamcity/2009/05/21/first-eap-for-jetbrains-issue-tracker/)** you can try it here [Charisma](http://jetbrains.net/tracker/issues/TW) and here you can see [...
10,296
Currently, I am looking for a new accommodation, I don't have much experience in renting (this is my first year in Europe), Kindly I will be appreciated if you share your experience. * what should I take care of when viewing? * Contract rules that I should take care of? * Did you face any bad experience before (share ...
2017/02/20
[ "https://expatriates.stackexchange.com/questions/10296", "https://expatriates.stackexchange.com", "https://expatriates.stackexchange.com/users/9887/" ]
Let's start with the "bad experiences" part of your question: This might be trivial for some, but: **Never ever pay any money before you've physically seen the apartment.** There are quite a few rent scammers who will give you all sorts of excuses for why you need to pay before you've seen the place - don't be fooled. ...
That is a quite subjective question, so here is my the quite subjective answer. I would look to: * Price including agent fees and deposit * Neighbourhood: infrastructure, criminal situation, recreation areas or points of interest * Time travel to workplace * Owner's common sense and openness: I would discuss possible...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
I think you identified the reason already: > > There is a very limited set of questions that (i) I think of and (ii) I can't reason out a plausible answer to, this is after all what my training as a physicist is supposed to make me capable of... or (iii) I can't find an answer to with a bit of research, another skill...
I have a PhD in physics and teach the subject at a community college, so I guess I would count as an expert. However, my expertise is concentrated in a couple of areas. My Q:A ratio is 29:262. Sometimes I ask questions about subjects I don't know as much about, e.g., field theory. Sometimes I ask questions and get zero...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
I think you identified the reason already: > > There is a very limited set of questions that (i) I think of and (ii) I can't reason out a plausible answer to, this is after all what my training as a physicist is supposed to make me capable of... or (iii) I can't find an answer to with a bit of research, another skill...
I recently asked [this question](https://physics.stackexchange.com/q/71598/8563) precisely in the spirit to have more "expert" questions, and I'd like to share this thought while it is still fresh in my mind: Reading a paper related to my research prompted a tangential question that became my Question. It took remarka...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
*Can we/should we/how can we encourage them/help them to ask more? I feel like there may be an untapped wealth of great questions lurking out there.* Yes, we should encourage expert users to ask more questions in their area of expertise. I agree with you that the proportion of good questions would be greater if the ex...
I have a PhD in physics and teach the subject at a community college, so I guess I would count as an expert. However, my expertise is concentrated in a couple of areas. My Q:A ratio is 29:262. Sometimes I ask questions about subjects I don't know as much about, e.g., field theory. Sometimes I ask questions and get zero...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
*Can we/should we/how can we encourage them/help them to ask more? I feel like there may be an untapped wealth of great questions lurking out there.* Yes, we should encourage expert users to ask more questions in their area of expertise. I agree with you that the proportion of good questions would be greater if the ex...
For me, if I have a question, I usually do the research myself and since I'm in grad school, I can use my library to get any paper I want to read. But the other side of the coin is that I'm **paid** to ask questions and answer them. That's what research is about. And in my field, the competition for money is fierce a...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
I think you identified the reason already: > > There is a very limited set of questions that (i) I think of and (ii) I can't reason out a plausible answer to, this is after all what my training as a physicist is supposed to make me capable of... or (iii) I can't find an answer to with a bit of research, another skill...
A view from the other side: why *did* I ask [a question](https://physics.stackexchange.com/questions/71184/are-quantum-effects-significant-in-lens-design) here? As with others, I am/was an "expert" (PhD in astrophysics, although that was 10 years ago and I left academia directly after it). However, that doesn't mean I ...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
Because writing a good question is *hard*. New users post questions that aren't so good -- not as much effort is put into it, etc etc. Veteran users are more careful about what they ask because they know hat it's like to be on the other side and will want to ask a question well-tailored to get answered. While I'm no e...
I had a longer answer, but I will limit it to this, for what it is worth. I do write many more answers than questions. I answer only relatively simple questions, as my math is no longer what it used to be. I am no expert in physics, but I am a scientist, and I can often find my own answers. I also learn by answering ...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
I believe I am in the minority of [high rep](https://physics.stackexchange.com/users?tab=reputation&filter=all) users who ask a lot of questions. I've asked 65 questions, and this is high compared to the next 5 users ahead of me, who've asked 3, 2, 20, 29, and 2 questions. When someone writes 200 answers and asks 2 que...
I have a PhD in physics and teach the subject at a community college, so I guess I would count as an expert. However, my expertise is concentrated in a couple of areas. My Q:A ratio is 29:262. Sometimes I ask questions about subjects I don't know as much about, e.g., field theory. Sometimes I ask questions and get zero...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
I really like this kind of question. I will not really try to answer it, since I consider Mark Rovetta already answered it perfectly [somewhere else on this page](https://physics.meta.stackexchange.com/a/4605/16689). Instead I will give my feeling and experience, as a user of this website from a research-like perspecti...
I had a longer answer, but I will limit it to this, for what it is worth. I do write many more answers than questions. I answer only relatively simple questions, as my math is no longer what it used to be. I am no expert in physics, but I am a scientist, and I can often find my own answers. I also learn by answering ...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
*Can we/should we/how can we encourage them/help them to ask more? I feel like there may be an untapped wealth of great questions lurking out there.* Yes, we should encourage expert users to ask more questions in their area of expertise. I agree with you that the proportion of good questions would be greater if the ex...
A view from the other side: why *did* I ask [a question](https://physics.stackexchange.com/questions/71184/are-quantum-effects-significant-in-lens-design) here? As with others, I am/was an "expert" (PhD in astrophysics, although that was 10 years ago and I left academia directly after it). However, that doesn't mean I ...
4,571
I've been kicking around this site for a little while now and I've realized that I'm very rarely even tempted to post a question. I'm an astronomy grad student with a background in physics, so naturally as I go about my life and work questions relevant to physics occur to me; it's one of my main areas of interest, afte...
2013/07/15
[ "https://physics.meta.stackexchange.com/questions/4571", "https://physics.meta.stackexchange.com", "https://physics.meta.stackexchange.com/users/11053/" ]
For me, if I have a question, I usually do the research myself and since I'm in grad school, I can use my library to get any paper I want to read. But the other side of the coin is that I'm **paid** to ask questions and answer them. That's what research is about. And in my field, the competition for money is fierce a...
I have a PhD in physics and teach the subject at a community college, so I guess I would count as an expert. However, my expertise is concentrated in a couple of areas. My Q:A ratio is 29:262. Sometimes I ask questions about subjects I don't know as much about, e.g., field theory. Sometimes I ask questions and get zero...
66,296
In the beginning of season 6 of *Doctor Who*, The Doctor was shot by an astronaut which triggered the regeneration process of The Doctor. But, he was shot again in the middle of regeneration process which killed him permanently. In the end of the season, we learned that that wasn't The Doctor who got killed. That was ...
2014/08/22
[ "https://scifi.stackexchange.com/questions/66296", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/931/" ]
The Doctor was pulling a con, on basically two groups of people: ### Amy and Rory Inviting Amy and Rory to his "death" allows the Doctor to prime them for two very important tasks: 1. **Guide *him* towards gaining knowledge of the Silence.** The Doctor is in an odd situation where he knows information *now* that he ...
He was fooling The Silence. They took his 'death' to be real, and figured they had finally succeeded. Admittedly, at that point, he didn't know it was The Silence. He faked his death to survive, so he could then find who was trying to kill him. Due to events later in the series [we know](https://scifi.stackexchange.co...
66,296
In the beginning of season 6 of *Doctor Who*, The Doctor was shot by an astronaut which triggered the regeneration process of The Doctor. But, he was shot again in the middle of regeneration process which killed him permanently. In the end of the season, we learned that that wasn't The Doctor who got killed. That was ...
2014/08/22
[ "https://scifi.stackexchange.com/questions/66296", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/931/" ]
The Doctor was pulling a con, on basically two groups of people: ### Amy and Rory Inviting Amy and Rory to his "death" allows the Doctor to prime them for two very important tasks: 1. **Guide *him* towards gaining knowledge of the Silence.** The Doctor is in an odd situation where he knows information *now* that he ...
The assassination attempt by the lakeside was explicitly noted as a fixed point. The Doctor has always been able to tell which events are in flux ("The Fires of Pompeii", "Cold Blood", etc.) and which events are fixed. Therefore it *had* to happen, and he *had* to go through with it. The Doctor couldn't simply "easily ...
236,153
"I think that’s what it means to be “real” as a parent or a teacher – to be vulnerable, to be capable of being hurt. The only way to avoid the pain of vulnerability is by shutting out all emotion and becoming cold, uncaring, heartless and selfish." Above is a quote from headmaster's newsletter. In the text, can "to be...
2015/03/28
[ "https://english.stackexchange.com/questions/236153", "https://english.stackexchange.com", "https://english.stackexchange.com/users/115268/" ]
I think the second sentence of your quotation establishes the context in which your colleague properly regards “vulnerable” and “capable of being hurt” as active capacities rather than passive susceptibilities. > > The only way to avoid the pain of vulnerability is by shutting out all emotion and becoming cold, uncar...
Yes, "**capable of** being hurt" can have the meaning of "**predisposed to/susceptible to** being hurt": > > **ca·pa·ble** adjective > > > 5 : **marked by or possessed of a predisposition to : having** > **characteristics or personality traits conducive to or admitting of** — > used postpositively with *of* ...
30,159
This question is in connection with my previous [question](https://hinduism.stackexchange.com/questions/26728/are-the-upanishads-later-to-the-puranas) related to Puranas and upanishads. It is also a follow up to my [another](https://hinduism.stackexchange.com/questions/18989/what-are-the-vedas-technically-how-can-upani...
2018/11/28
[ "https://hinduism.stackexchange.com/questions/30159", "https://hinduism.stackexchange.com", "https://hinduism.stackexchange.com/users/7853/" ]
Even Upanishads are to be considered part of Vedas(eternal). Perpetually all four Vedas co-exist, and because the yajur-mantras are the most prominent, the complete corpus can be called Yajur Veda by the hermeneutic rule, adhikyena vyapadesha bhavanti ("A name may be assigned according to the most prominent category of...
I assume the questioner would easily be satisfied if we can share two aspects, one the historic lineage of Vedas and its branches. Second, the evolution of theory -- to the concept -- to practical applications. I will answer the first part, for the second part, I will copy past an amazing post written by Ram Abloh (Ama...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
Not knowing the real problem your graph solves or the details of your graph, this may not be relevant. But, I suspect your basic solution will be inaccurate in two ways: tie-breaking and what I might call "megalomaniacs." In other words, if you're just counting inbound connections, you'll likely run into nodes with the...
I assume that you want to calculate only 1st-order connectedness (i.e. counting how many edges link directly to the node). I'll further assume you already have a list of all nodes with some place to store node weights and a list of all edges. You'll need: 1. A list of all nodes, and a place to store the calculated w...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
I've found the following picture a good key for the difference between different measures (although undirected graphs are depicted, some apply to directed as well). Degree centrality [D] is straightforward: who has most in/out links. Eigenvector-centrality [C] captures the notion of indirect influence better. See [Cent...
If it is not important which nodes connect to which, use a simple 2x2 matrix, which has a column for every node and a row that represent one node. each node that is connected get a value of 1 for the column. then add an extra column at the end of each row that counts the number of connections for that node. this does h...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
Not knowing the real problem your graph solves or the details of your graph, this may not be relevant. But, I suspect your basic solution will be inaccurate in two ways: tie-breaking and what I might call "megalomaniacs." In other words, if you're just counting inbound connections, you'll likely run into nodes with the...
Algorithms typically try to optimize one thing or the other. Even NP problems are solvable, except that they require all possible combinations to be tried, which makes them computationally expensive. In the problem you are trying to solve, the question is what is it that you are trying to optimize: time, memory, or som...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
I've found the following picture a good key for the difference between different measures (although undirected graphs are depicted, some apply to directed as well). Degree centrality [D] is straightforward: who has most in/out links. Eigenvector-centrality [C] captures the notion of indirect influence better. See [Cent...
I assume that you want to calculate only 1st-order connectedness (i.e. counting how many edges link directly to the node). I'll further assume you already have a list of all nodes with some place to store node weights and a list of all edges. You'll need: 1. A list of all nodes, and a place to store the calculated w...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
I've found the following picture a good key for the difference between different measures (although undirected graphs are depicted, some apply to directed as well). Degree centrality [D] is straightforward: who has most in/out links. Eigenvector-centrality [C] captures the notion of indirect influence better. See [Cent...
Algorithms typically try to optimize one thing or the other. Even NP problems are solvable, except that they require all possible combinations to be tried, which makes them computationally expensive. In the problem you are trying to solve, the question is what is it that you are trying to optimize: time, memory, or som...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
I assume that you want to calculate only 1st-order connectedness (i.e. counting how many edges link directly to the node). I'll further assume you already have a list of all nodes with some place to store node weights and a list of all edges. You'll need: 1. A list of all nodes, and a place to store the calculated w...
If it is not important which nodes connect to which, use a simple 2x2 matrix, which has a column for every node and a row that represent one node. each node that is connected get a value of 1 for the column. then add an extra column at the end of each row that counts the number of connections for that node. this does h...
226,567
I have a large (≈ 20 million nodes) directed Graph with in-edges & out-edges. I want to figure out which parts of of the graph deserve the most attention. Often most of the graph is boring, or at least it is already well understood. The way I am defining "attention" is by the concept of "connectedness" i.e. How can i f...
2014/02/03
[ "https://softwareengineering.stackexchange.com/questions/226567", "https://softwareengineering.stackexchange.com", "https://softwareengineering.stackexchange.com/users/6345/" ]
Not knowing the real problem your graph solves or the details of your graph, this may not be relevant. But, I suspect your basic solution will be inaccurate in two ways: tie-breaking and what I might call "megalomaniacs." In other words, if you're just counting inbound connections, you'll likely run into nodes with the...
If it is not important which nodes connect to which, use a simple 2x2 matrix, which has a column for every node and a row that represent one node. each node that is connected get a value of 1 for the column. then add an extra column at the end of each row that counts the number of connections for that node. this does h...
14,098
I am from Madagascar. We are in what is called a "povery trap". Building a business is very difficult because the population is agglomerating in the capital and the competition is very high. Moreover, there is a lack of public infrastructure that freezes the economy. What do you suggest me to do as a citizen without a...
2016/11/04
[ "https://economics.stackexchange.com/questions/14098", "https://economics.stackexchange.com", "https://economics.stackexchange.com/users/10977/" ]
I think the best way for an individual citizen to improve their country's economic development is to raise their productivity, while also following ethical standards. "Raising productivity" is a very traditional economic viewpoint, and it basically requires one to move away from rural or subsistence living and towards ...
The best kinds of economic stimulus come with making people better at making businesses locally and internationally. 1/Making skilled tradesmen, new trades, apprenticeship schems, education 2/Making communication with distant rich markets 3/Building organized advanced civil services (town halls, post boxes, churches, ...
14,098
I am from Madagascar. We are in what is called a "povery trap". Building a business is very difficult because the population is agglomerating in the capital and the competition is very high. Moreover, there is a lack of public infrastructure that freezes the economy. What do you suggest me to do as a citizen without a...
2016/11/04
[ "https://economics.stackexchange.com/questions/14098", "https://economics.stackexchange.com", "https://economics.stackexchange.com/users/10977/" ]
I appreciate your question because there is an assumed level of individual responsibility. Before I offer my answer, I want to make a recommendation. There is a fantastic book that addresses this question in great detail. It's called, "The Poverty of Nations" by Barry Asmus and Wayne Grudem. If you can get a hold of ...
The best kinds of economic stimulus come with making people better at making businesses locally and internationally. 1/Making skilled tradesmen, new trades, apprenticeship schems, education 2/Making communication with distant rich markets 3/Building organized advanced civil services (town halls, post boxes, churches, ...
34,553
We have just received a device with 10Gig BaseT ports (for copper cable with RJ45 endings) that needs to be connected to a Cisco Nexus 5548. This switch only has SFP+ ports and we're connecting them right now using a couple 1Gbps SFP. We really would like to use the 10Gig connection. I googled 10Gig Media converters a...
2016/09/02
[ "https://networkengineering.stackexchange.com/questions/34553", "https://networkengineering.stackexchange.com", "https://networkengineering.stackexchange.com/users/30154/" ]
Third party SFPs can be hit or miss. Make sure to check the compatibility matrix that cisco has. If the module is an unsupported module then it will not work right off the bat. There is a command to enable them, but a warning will pop up stating that Cisco doesn't recommend it and that they can't guarantee performanc...
The third party components will work fine. If you find otherwise, I would love to hear back... Don't resell them as Cisco though. People have gone to prison for doing so... Also, if you tell Cisco TAC they will void your SMARTnet contract out.
34,553
We have just received a device with 10Gig BaseT ports (for copper cable with RJ45 endings) that needs to be connected to a Cisco Nexus 5548. This switch only has SFP+ ports and we're connecting them right now using a couple 1Gbps SFP. We really would like to use the 10Gig connection. I googled 10Gig Media converters a...
2016/09/02
[ "https://networkengineering.stackexchange.com/questions/34553", "https://networkengineering.stackexchange.com", "https://networkengineering.stackexchange.com/users/30154/" ]
So the obvious question is how much all that media converter stuff costs versus just buying a cheap 10G NIC with an SFP+ port and using fiber, twinax or AOC to achieve a sane and supportable result? Will the converter work? Sure - most likely... will it be supportable and stable? It's definitely outside the realm of be...
Third party SFPs can be hit or miss. Make sure to check the compatibility matrix that cisco has. If the module is an unsupported module then it will not work right off the bat. There is a command to enable them, but a warning will pop up stating that Cisco doesn't recommend it and that they can't guarantee performanc...
34,553
We have just received a device with 10Gig BaseT ports (for copper cable with RJ45 endings) that needs to be connected to a Cisco Nexus 5548. This switch only has SFP+ ports and we're connecting them right now using a couple 1Gbps SFP. We really would like to use the 10Gig connection. I googled 10Gig Media converters a...
2016/09/02
[ "https://networkengineering.stackexchange.com/questions/34553", "https://networkengineering.stackexchange.com", "https://networkengineering.stackexchange.com/users/30154/" ]
So the obvious question is how much all that media converter stuff costs versus just buying a cheap 10G NIC with an SFP+ port and using fiber, twinax or AOC to achieve a sane and supportable result? Will the converter work? Sure - most likely... will it be supportable and stable? It's definitely outside the realm of be...
The third party components will work fine. If you find otherwise, I would love to hear back... Don't resell them as Cisco though. People have gone to prison for doing so... Also, if you tell Cisco TAC they will void your SMARTnet contract out.
10,293
I am playing a violin with a bridge sensor (currently a Schertler STAT-V <http://www.schertler.com/homepage_schertler/statv-en.html>). I am looking for good ideas for : * Delay pedals * Distortion / Overdrive pedals Much of the tests available on the web are done with electric guitars and although it can help to see ...
2013/04/10
[ "https://music.stackexchange.com/questions/10293", "https://music.stackexchange.com", "https://music.stackexchange.com/users/1036/" ]
As someone who uses various effects with my electric violin as well as with electric guitars, I can tell you that you don't need any special tests or reviews. * Delay pedals You are right that without the pick attack, a delay sounds different for a violin than for a strummed guitar, but it does sound very similar to ...
Many years ago in the 1980s I favoured a cheap Phaser pedal and processing through an old analogue synth to filter the sound. At the time I was pleased with the unique quality I obtained by this novel combination. I recommend experimenting with unlikely combinations of processing but try to keep it subtle.
28,818
I am the luckiest lady around! I am the most constricted of all. I am the richest lady on earth! Yet I own nothing at all. The world bends to my will! Yet I possess no power. Every girl wishes to be in my place! But I chose not to come and only leave at death. Who am I? Related: > > [The Happy Prison...
2016/03/11
[ "https://puzzling.stackexchange.com/questions/28818", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/19179/" ]
You're: > > Lady Luck. > > > I am the luckiest lady around! > > Self explanatory. > > > I am the most constricted of all. > > You're completely **constricted** by the laws of probably. > > > I am the richest lady on earth! > > All riches come from some sort of luck. Even if you're born into ...
It better not be > > Chell (from the Portal series). > > > I am the luckiest lady around! I am the most constricted of all. > > Only person around. > > > I am the richest lady on earth! Yet I own nothing at all. > > Again, only person around. Unlike most video game characters, has zero inventory space...
28,818
I am the luckiest lady around! I am the most constricted of all. I am the richest lady on earth! Yet I own nothing at all. The world bends to my will! Yet I possess no power. Every girl wishes to be in my place! But I chose not to come and only leave at death. Who am I? Related: > > [The Happy Prison...
2016/03/11
[ "https://puzzling.stackexchange.com/questions/28818", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/19179/" ]
You're: > > Lady Luck. > > > I am the luckiest lady around! > > Self explanatory. > > > I am the most constricted of all. > > You're completely **constricted** by the laws of probably. > > > I am the richest lady on earth! > > All riches come from some sort of luck. Even if you're born into ...
You could be > > Queen Elizabeth II > > > I am the luckiest lady around! I am the most constricted of all. > > Many people consider coins good luck, her portrait is on British coinage. As a portrait on a coin she cannot go anywhere so she is very restricted. Also, she herself is lucky to be the queen, but she i...
28,818
I am the luckiest lady around! I am the most constricted of all. I am the richest lady on earth! Yet I own nothing at all. The world bends to my will! Yet I possess no power. Every girl wishes to be in my place! But I chose not to come and only leave at death. Who am I? Related: > > [The Happy Prison...
2016/03/11
[ "https://puzzling.stackexchange.com/questions/28818", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/19179/" ]
You're: > > Lady Luck. > > > I am the luckiest lady around! > > Self explanatory. > > > I am the most constricted of all. > > You're completely **constricted** by the laws of probably. > > > I am the richest lady on earth! > > All riches come from some sort of luck. Even if you're born into ...
In line with my answer on the related question, I think you are: > > Eve > > > I am the luckiest lady around! > > Eve was blessed by God to enjoy the pleasures of life and Earth, but you could call His blessing luck. Plus, being made from a rib is pretty lucky. > > > I am the most constricted of all. > ...
28,818
I am the luckiest lady around! I am the most constricted of all. I am the richest lady on earth! Yet I own nothing at all. The world bends to my will! Yet I possess no power. Every girl wishes to be in my place! But I chose not to come and only leave at death. Who am I? Related: > > [The Happy Prison...
2016/03/11
[ "https://puzzling.stackexchange.com/questions/28818", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/19179/" ]
You could be > > Queen Elizabeth II > > > I am the luckiest lady around! I am the most constricted of all. > > Many people consider coins good luck, her portrait is on British coinage. As a portrait on a coin she cannot go anywhere so she is very restricted. Also, she herself is lucky to be the queen, but she i...
It better not be > > Chell (from the Portal series). > > > I am the luckiest lady around! I am the most constricted of all. > > Only person around. > > > I am the richest lady on earth! Yet I own nothing at all. > > Again, only person around. Unlike most video game characters, has zero inventory space...
28,818
I am the luckiest lady around! I am the most constricted of all. I am the richest lady on earth! Yet I own nothing at all. The world bends to my will! Yet I possess no power. Every girl wishes to be in my place! But I chose not to come and only leave at death. Who am I? Related: > > [The Happy Prison...
2016/03/11
[ "https://puzzling.stackexchange.com/questions/28818", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/19179/" ]
You could be > > Queen Elizabeth II > > > I am the luckiest lady around! I am the most constricted of all. > > Many people consider coins good luck, her portrait is on British coinage. As a portrait on a coin she cannot go anywhere so she is very restricted. Also, she herself is lucky to be the queen, but she i...
In line with my answer on the related question, I think you are: > > Eve > > > I am the luckiest lady around! > > Eve was blessed by God to enjoy the pleasures of life and Earth, but you could call His blessing luck. Plus, being made from a rib is pretty lucky. > > > I am the most constricted of all. > ...
5,228,466
I am new to highcharts with ruby on rails. Is there any tutorial or any idea how to fetch data from database ( SQLYog Community) and display it as chart ( Highchart) using Rails ??
2011/03/08
[ "https://Stackoverflow.com/questions/5228466", "https://Stackoverflow.com", "https://Stackoverflow.com/users/631964/" ]
Yes you can. You just have to return json object. You can google 'highcharts json' for more information. Example: [Reload chart data via JSON with Highcharts](https://stackoverflow.com/questions/4210879/reload-chart-data-via-json-with-highcharts)
I highly recommend the RailsCasts video tutorial for this. [This is a great tutorial](http://railscasts.com/episodes/223-charts) on getting Highcharts up and running with Rails. It will walk you through installing Highcharts and jQuery and getting your models and views set up to render charts nicely. Once you have t...
195,260
A while back I was wondering why my dvd was so quiet on my computer then solved it by chosing the 2.0 track instead of the 5.1 track. But now I have a DVD which only has 5.1, how can I watch it without losing the other channels? If it helps, I'm using Media Player Classic.
2010/10/03
[ "https://superuser.com/questions/195260", "https://superuser.com", "https://superuser.com/users/51157/" ]
Use the 5.1 track on the dvd, then set the output in the sound driver to stereo. it should mux the front and rear channels together in hardware. if it doesn't get a better soundcard
If you use VLC there is quite a few audio tweaks you can do, but in the standard Audio menu you can choose between 5.1, 2 front 2 rear, stereo and mono. I only had a quick look around the preferences so there might be something even better among the many settings. To get to the cool/advanced menus be sure to click the...
1,089
I need to understand the fine details, possibilities and pricing of Salesforce OEM model. I can't find an official link about this on salesforce and google, only link available is this 2008 pdf : <http://www.developerforce.com/tdf/2008/april/Force_ISV_Partner.pdf> Please share any good post/article on this.
2012/09/02
[ "https://salesforce.stackexchange.com/questions/1089", "https://salesforce.stackexchange.com", "https://salesforce.stackexchange.com/users/266/" ]
We did something similar, however we created a specific boolean field for this purpose: "locked\_\_c". The benefit of using this field instead of a 'first closed date', is it can be used in multiple ways and remains true to its meaning. For example, you may want to lock an Opportunity for a reason other than it was c...
The best non-record type solution I can think of is to have a time-based workflow change the owner. You could then use sharing rules to give other users read-only access to the records. In addition, while extra record types might be cumbersome to maintain they still might prove to be the simplest and cleanest solution...
1,089
I need to understand the fine details, possibilities and pricing of Salesforce OEM model. I can't find an official link about this on salesforce and google, only link available is this 2008 pdf : <http://www.developerforce.com/tdf/2008/april/Force_ISV_Partner.pdf> Please share any good post/article on this.
2012/09/02
[ "https://salesforce.stackexchange.com/questions/1089", "https://salesforce.stackexchange.com", "https://salesforce.stackexchange.com/users/266/" ]
I recently wrote a blog post about [locking records using approval processes](http://verticalcode.wordpress.com/2012/07/26/locking-a-record-from-editing/). It is a pretty big hack, but it allows you to lock a record without having to use separate page layouts or record types. Here's how it could work: 1. Set a time-ba...
The best non-record type solution I can think of is to have a time-based workflow change the owner. You could then use sharing rules to give other users read-only access to the records. In addition, while extra record types might be cumbersome to maintain they still might prove to be the simplest and cleanest solution...
101,848
To me, "over easy" seems to refer to the pan, because I think of a pan sitting atop an easy flame. "Over hard" makes me think it refers to the egg, because the liquid becomes solid. Then again, maybe it's something else altogether.
2013/01/27
[ "https://english.stackexchange.com/questions/101848", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3354/" ]
There's not really such a thing as *over easy* scrambled eggs. It originates with fried eggs, where it means turn them over *gently* (easy, carefully) and cook for for a few seconds more before serving, so the white is fully set (not "snotty"). That's *gently* because you don't want to break the yolk. The opposite to ...
Most likely, *easy* refers to going easy on the temperature and duration, and hard on the condition of the egg, as you suspect. We can play hard and work hard, but we don't really speak about cooking hard. The egg yolk gets solidifies atop even an easy flame, given enough time. And of course, *easy* doesn't refer to th...
101,848
To me, "over easy" seems to refer to the pan, because I think of a pan sitting atop an easy flame. "Over hard" makes me think it refers to the egg, because the liquid becomes solid. Then again, maybe it's something else altogether.
2013/01/27
[ "https://english.stackexchange.com/questions/101848", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3354/" ]
I'm pretty sure that "over hard" came first: it's [diner jargon](http://en.wikipedia.org/wiki/Diner_lingo) that the eggs should be flipped **over** and cooked until they are **hard**. Now if you want it flipped but not hard, well the opposite of hard is **easy**, right? (Sure, you could say soft or runny, but diner sla...
Most likely, *easy* refers to going easy on the temperature and duration, and hard on the condition of the egg, as you suspect. We can play hard and work hard, but we don't really speak about cooking hard. The egg yolk gets solidifies atop even an easy flame, given enough time. And of course, *easy* doesn't refer to th...
101,848
To me, "over easy" seems to refer to the pan, because I think of a pan sitting atop an easy flame. "Over hard" makes me think it refers to the egg, because the liquid becomes solid. Then again, maybe it's something else altogether.
2013/01/27
[ "https://english.stackexchange.com/questions/101848", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3354/" ]
There's not really such a thing as *over easy* scrambled eggs. It originates with fried eggs, where it means turn them over *gently* (easy, carefully) and cook for for a few seconds more before serving, so the white is fully set (not "snotty"). That's *gently* because you don't want to break the yolk. The opposite to ...
I'm pretty sure that "over hard" came first: it's [diner jargon](http://en.wikipedia.org/wiki/Diner_lingo) that the eggs should be flipped **over** and cooked until they are **hard**. Now if you want it flipped but not hard, well the opposite of hard is **easy**, right? (Sure, you could say soft or runny, but diner sla...
101,848
To me, "over easy" seems to refer to the pan, because I think of a pan sitting atop an easy flame. "Over hard" makes me think it refers to the egg, because the liquid becomes solid. Then again, maybe it's something else altogether.
2013/01/27
[ "https://english.stackexchange.com/questions/101848", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3354/" ]
There's not really such a thing as *over easy* scrambled eggs. It originates with fried eggs, where it means turn them over *gently* (easy, carefully) and cook for for a few seconds more before serving, so the white is fully set (not "snotty"). That's *gently* because you don't want to break the yolk. The opposite to ...
These terms refer to the egg, namely to its degree of cooked-ness: *over-easy* is cooked on both sides but yolk is runny; *over-medium* is less runny than over-easy, and *over-hard* is when both the yolk and white is cooked all the way through.
101,848
To me, "over easy" seems to refer to the pan, because I think of a pan sitting atop an easy flame. "Over hard" makes me think it refers to the egg, because the liquid becomes solid. Then again, maybe it's something else altogether.
2013/01/27
[ "https://english.stackexchange.com/questions/101848", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3354/" ]
I'm pretty sure that "over hard" came first: it's [diner jargon](http://en.wikipedia.org/wiki/Diner_lingo) that the eggs should be flipped **over** and cooked until they are **hard**. Now if you want it flipped but not hard, well the opposite of hard is **easy**, right? (Sure, you could say soft or runny, but diner sla...
These terms refer to the egg, namely to its degree of cooked-ness: *over-easy* is cooked on both sides but yolk is runny; *over-medium* is less runny than over-easy, and *over-hard* is when both the yolk and white is cooked all the way through.
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
The apostle Paul does admit the existence of other “gods” and “lords” (whether in heaven or on earth). Later in his epistle, he elaborates that these “gods” are in fact demons.1 > > 20 Rather, that the things which the Gentiles sacrifice they sacrifice to demons and not to God, and I do not want you to have fellowshi...
Peace. For me, the “other gods” are the doctrines and commandments of men scribed (the handwriting of ordinances…or rather dogmas) for others to worship and serve before the one God. The worship of the one God is then become vain. > > *Mark 7:7-9 KJV (7) Howbeit in vain do they worship me, teaching for doctrines t...
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
The apostle Paul does admit the existence of other “gods” and “lords” (whether in heaven or on earth). Later in his epistle, he elaborates that these “gods” are in fact demons.1 > > 20 Rather, that the things which the Gentiles sacrifice they sacrifice to demons and not to God, and I do not want you to have fellowshi...
We have to focus on the Bible **definition** of the term ‘god’. So, what is ‘god’ according the Scriptures? Paul wrote that ‘god’ (*θεος*) was equivalent to *σεβασμα* (2 Tes 2:4), that is ‘an object of veneration, or, worship’. Really, given a worshipper, or some of them, **anything in the universe of the entia is ab...
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
I think this question confuses two matters that the Bible is at pains to separate. In numerous places, the Bible freely discusses the many gods that there are but also declares that there is only one God. This is no contradiction. There are numerous places where the Bible clearly says that there is only ONE true God w...
Peace. For me, the “other gods” are the doctrines and commandments of men scribed (the handwriting of ordinances…or rather dogmas) for others to worship and serve before the one God. The worship of the one God is then become vain. > > *Mark 7:7-9 KJV (7) Howbeit in vain do they worship me, teaching for doctrines t...
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
The most important thing that should be mentioned is that there were no quotation marks in Koine Greek or Biblical Hebrew. Therefore, it can be ambiguous on what the author originally intended to mean. So it can be hard to tell if the Apostle Paul meant gods or if he meant "gods" (as in "so-called" gods). Another examp...
Peace. For me, the “other gods” are the doctrines and commandments of men scribed (the handwriting of ordinances…or rather dogmas) for others to worship and serve before the one God. The worship of the one God is then become vain. > > *Mark 7:7-9 KJV (7) Howbeit in vain do they worship me, teaching for doctrines t...
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
I think this question confuses two matters that the Bible is at pains to separate. In numerous places, the Bible freely discusses the many gods that there are but also declares that there is only one God. This is no contradiction. There are numerous places where the Bible clearly says that there is only ONE true God w...
We have to focus on the Bible **definition** of the term ‘god’. So, what is ‘god’ according the Scriptures? Paul wrote that ‘god’ (*θεος*) was equivalent to *σεβασμα* (2 Tes 2:4), that is ‘an object of veneration, or, worship’. Really, given a worshipper, or some of them, **anything in the universe of the entia is ab...
36,113
The scriptures say there is no “God but one,” then there are ‘many gods,’ who or what are they? > > DNKJB 1 Corinthians 8:4-6 “As concerning therefore the eating of those things that are offered in sacrifice unto idols, we know that an idol is nothing in the world, and that there is **none other God but one**. 5 For ...
2018/11/28
[ "https://hermeneutics.stackexchange.com/questions/36113", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/-1/" ]
The most important thing that should be mentioned is that there were no quotation marks in Koine Greek or Biblical Hebrew. Therefore, it can be ambiguous on what the author originally intended to mean. So it can be hard to tell if the Apostle Paul meant gods or if he meant "gods" (as in "so-called" gods). Another examp...
We have to focus on the Bible **definition** of the term ‘god’. So, what is ‘god’ according the Scriptures? Paul wrote that ‘god’ (*θεος*) was equivalent to *σεβασμα* (2 Tes 2:4), that is ‘an object of veneration, or, worship’. Really, given a worshipper, or some of them, **anything in the universe of the entia is ab...
84
Should we support tags of specific boards like the UDOO & Raspberry Pi? While a Raspberry Pi is different from an Arduino, the UDOO essentially is an Arduino Due and LInux Quad-core computer integrated into one device with shared processor communication. With that being said currently the UDOO has some issues with thei...
2014/02/24
[ "https://arduino.meta.stackexchange.com/questions/84", "https://arduino.meta.stackexchange.com", "https://arduino.meta.stackexchange.com/users/62/" ]
I think we could treat the UDOO as an "Arduino compatible" device, as per [this question](https://arduino.meta.stackexchange.com/questions/22/is-it-ok-to-ask-questions-about-arduino-compatible-micros-not-clones). That means questions about the Arduino side of it would be relevant. However, if somebody is asking a wholl...
I don't think most UDOO questions are on topic here... Unless the question is related to only the Arduino part of the system. If you can replace UDOO with Arduino in the question and it still makes sense, then it'd be on topic. Problems with the UDOO IDE are totally off topic. If we allow people to ask any UDOO relate...
1,069,784
I'm strugling to find any decent resources with regards consuming a webservice in an MVC/C# Asp.net App. Any suggestions?
2009/07/01
[ "https://Stackoverflow.com/questions/1069784", "https://Stackoverflow.com", "https://Stackoverflow.com/users/52912/" ]
<http://asp.net/mvc> is always a good place to start in general. If you have something more specific, post it here on SO :)
For working with WebServices, look at <http://asp.net/ajax> You use the ScriptManager to point to your web service, then you can call the web methods in about the same manner as you would in C#. Alternatively you can look at JQuery's ajax method for calling web services. But the Microsoft Ajax ScriptManager is easier...
1,069,784
I'm strugling to find any decent resources with regards consuming a webservice in an MVC/C# Asp.net App. Any suggestions?
2009/07/01
[ "https://Stackoverflow.com/questions/1069784", "https://Stackoverflow.com", "https://Stackoverflow.com/users/52912/" ]
Rick Strahl has an [awesome writeup](http://www.west-wind.com/presentations/jquery/jQueryPart2.aspx) on using JQuery with ASP.NET MVC to make AJAX callbacks to the server. Amongst other things, he covers: * Returning and dealing with JSON * Using JQuery with ASMX and WCF services * Updating client side screens using s...
For working with WebServices, look at <http://asp.net/ajax> You use the ScriptManager to point to your web service, then you can call the web methods in about the same manner as you would in C#. Alternatively you can look at JQuery's ajax method for calling web services. But the Microsoft Ajax ScriptManager is easier...
62,443
I have a Macbook Pro with Snow Leopard OS X. I use it's bootcamp utility to install Windows-XP and it has worked fine for me until one day I eject boot camp from my desktop. After that, when I want to reboot from bootcamp, it does not recognize that Windows is installed on my laptop!!!
2009/10/29
[ "https://superuser.com/questions/62443", "https://superuser.com", "https://superuser.com/users/6734/" ]
Have you tried holding the meta/alt key during startup? This should show you a list of all available partitions and devices.
I understand that this happen because a third-party software (NTFS-3g) It's a known bug (for quite some time, now). When installed, you can no longer have the Windows partition in the Startup Disk prefpane. [special Tanx to @Loïc Wolff](https://apple.stackexchange.com/questions/419/what-are-some-of-your-best-itunes-a...
152,573
When you play with a custom deck, you know every card that can show up, since you put each one of them in that deck. However, when you just pick a hero and play with his or her basic deck, you have anywhere between 10 and 20 basic cards that you can be sure of, depending on your progress with that hero, and the rest is...
2014/01/27
[ "https://gaming.stackexchange.com/questions/152573", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/66643/" ]
The basic deck attached to each character contains only free cards (neutral cards without gems) and the first 10 cards given to that class. These decks are always the same, and don't change when you receive additional basic class cards (while gaining levels) or open expert packs. Their purpose is to provide a simple ...
Resorath has answered the other stuff. > > Do different classes get different extra cards? > > > Each class has a number of unique cards to that specific class. Example: Fireball and Pyroblast. These cards are unique to the mage class and there are many more cards the mage has that are unique to mages only. A he...
152,573
When you play with a custom deck, you know every card that can show up, since you put each one of them in that deck. However, when you just pick a hero and play with his or her basic deck, you have anywhere between 10 and 20 basic cards that you can be sure of, depending on your progress with that hero, and the rest is...
2014/01/27
[ "https://gaming.stackexchange.com/questions/152573", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/66643/" ]
I did some research of my own instead of waiting for another answer. I played 4 games with my Level 5 Mage (leveling her up to level 8 in the process). In none of the games did I manage to use the whole deck, but I wrote down all the cards that I drew throughout all 4 games. First, to confirm Resorath's answer, none o...
The basic deck attached to each character contains only free cards (neutral cards without gems) and the first 10 cards given to that class. These decks are always the same, and don't change when you receive additional basic class cards (while gaining levels) or open expert packs. Their purpose is to provide a simple ...
152,573
When you play with a custom deck, you know every card that can show up, since you put each one of them in that deck. However, when you just pick a hero and play with his or her basic deck, you have anywhere between 10 and 20 basic cards that you can be sure of, depending on your progress with that hero, and the rest is...
2014/01/27
[ "https://gaming.stackexchange.com/questions/152573", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/66643/" ]
I did some research of my own instead of waiting for another answer. I played 4 games with my Level 5 Mage (leveling her up to level 8 in the process). In none of the games did I manage to use the whole deck, but I wrote down all the cards that I drew throughout all 4 games. First, to confirm Resorath's answer, none o...
Resorath has answered the other stuff. > > Do different classes get different extra cards? > > > Each class has a number of unique cards to that specific class. Example: Fireball and Pyroblast. These cards are unique to the mage class and there are many more cards the mage has that are unique to mages only. A he...
6,304,937
I was chatting frequently in Facebook and as I love to code more and more so I tried to create a Chat Script! Here it is ::: <http://wooflux.co.cc/ChatSystem.1.1/ChatSystem.1.1/> You try it out. But it is just a beta version so there are some bugs in it. And one of the biggest bug is that it requires a good internet ...
2011/06/10
[ "https://Stackoverflow.com/questions/6304937", "https://Stackoverflow.com", "https://Stackoverflow.com/users/637378/" ]
To do real time communication you need a proper connection. You can use [WebSockets](http://dev.w3.org/html5/websockets/) to give you a real Browser - Server TCP connection. The alternative to WebSockets would be a flash bridge (which uses websockets in flash) or [COMET](http://en.wikipedia.org/wiki/Comet_%28programm...
I don't know how Facebook does it, but we use `Node.js` for pushing. Visit <http://www.no-margin-for-errors.com/blog/2010/07/26/deliver-real-time-information-to-your-users-using-node-js/> for an example.
6,304,937
I was chatting frequently in Facebook and as I love to code more and more so I tried to create a Chat Script! Here it is ::: <http://wooflux.co.cc/ChatSystem.1.1/ChatSystem.1.1/> You try it out. But it is just a beta version so there are some bugs in it. And one of the biggest bug is that it requires a good internet ...
2011/06/10
[ "https://Stackoverflow.com/questions/6304937", "https://Stackoverflow.com", "https://Stackoverflow.com/users/637378/" ]
To do real time communication you need a proper connection. You can use [WebSockets](http://dev.w3.org/html5/websockets/) to give you a real Browser - Server TCP connection. The alternative to WebSockets would be a flash bridge (which uses websockets in flash) or [COMET](http://en.wikipedia.org/wiki/Comet_%28programm...
Use [COMET](http://en.wikipedia.org/wiki/Comet_%28programming%29) to push your messages to the client instead of polling your server all the time See: [Using comet with PHP?](https://stackoverflow.com/questions/603201/using-comet-with-php)
165,506
The Curse: > > **Clockwork Curse** > > All Attack Rolls the cursed target makes replace their d20 roll with a 10 instead of rolling, as per the effect of Clockwork Amulet. > > > Extra Details: * This curse is expected to apply for at least a full in-game day. * Encounters for the day will come from the Fores...
2020/02/27
[ "https://rpg.stackexchange.com/questions/165506", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/14873/" ]
This punishes player fun more than character mechanics ====================================================== Dependant on the AC of your enemies this curse is either a massive buff due to never missing, or a massive penalty due to never hitting. Either way it takes away the uncertainty and suspense of combat by makin...
Situational. Sounds like it would make hitting most low to medium enemies easy, but make it impossible to hit a boss or demi-boss. So useful for a front liner who will be wading through canon fodder mobs. Not directly useful against a armored one or boss, but silver lining. Against those, it would encourage the pla...