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
342,737
When creating links for an an html based email, how critical is it to use absolute links? Also, What are the benefits in using relative links in general?
2008/12/05
[ "https://Stackoverflow.com/questions/342737", "https://Stackoverflow.com", "https://Stackoverflow.com/users/39781/" ]
Relative links allow you use less code to traverse your structure, and they allow you to move domains without having to do any extra work. You simply copy your directory structure to the new domain, and it works. As a lesser consideration, Absolute links don't make you worry about the position of your document relati...
I think when you're sending html based mail, you should always use absolute links, remember that the mail is going to be read in the email client program of the users, and the relative links will be useless unless you specify a [BASE](http://www.w3schools.com/TAGS/tag_base.asp) tag.
342,737
When creating links for an an html based email, how critical is it to use absolute links? Also, What are the benefits in using relative links in general?
2008/12/05
[ "https://Stackoverflow.com/questions/342737", "https://Stackoverflow.com", "https://Stackoverflow.com/users/39781/" ]
Relative links allow you use less code to traverse your structure, and they allow you to move domains without having to do any extra work. You simply copy your directory structure to the new domain, and it works. As a lesser consideration, Absolute links don't make you worry about the position of your document relati...
Email? I don't think there's an option other than absolute links. This will guarantee you that no matter who and how will read your email, your links will point to the place you need.
342,737
When creating links for an an html based email, how critical is it to use absolute links? Also, What are the benefits in using relative links in general?
2008/12/05
[ "https://Stackoverflow.com/questions/342737", "https://Stackoverflow.com", "https://Stackoverflow.com/users/39781/" ]
For an html based email, absolute links are deal breaker critical, because they don't have the context of a web site to make relative links work. There are some mechanisms for setting the BASE of a document, but try feeding that to lotus notes... Personally, on web sites, I try to use at least root absolute links /foo...
I like to use a constant for my top level domain, and then add on other parts to the link. This is just in case I change my top most domain name, but would like to keep the content/link intact. For example: COMPLETE\_SITE\_NAME = "<http://www.mysite.com/>"; link = COMPLETE\_SITE\_NAME . "pagetoContent.html"; Slightl...
342,737
When creating links for an an html based email, how critical is it to use absolute links? Also, What are the benefits in using relative links in general?
2008/12/05
[ "https://Stackoverflow.com/questions/342737", "https://Stackoverflow.com", "https://Stackoverflow.com/users/39781/" ]
Relative links allow you use less code to traverse your structure, and they allow you to move domains without having to do any extra work. You simply copy your directory structure to the new domain, and it works. As a lesser consideration, Absolute links don't make you worry about the position of your document relati...
I like to use a constant for my top level domain, and then add on other parts to the link. This is just in case I change my top most domain name, but would like to keep the content/link intact. For example: COMPLETE\_SITE\_NAME = "<http://www.mysite.com/>"; link = COMPLETE\_SITE\_NAME . "pagetoContent.html"; Slightl...
67,697
One of my SSL certificates (simple domain verification only) is about to expire on windows 2003 IIS 7.0 server. I got better offer from another vendor, and the guys who originally issued my certificate do not want to negotiate lower prices. Anyway - going trough the certificate wizard in IIS, I have the option to "re...
2009/09/22
[ "https://serverfault.com/questions/67697", "https://serverfault.com", "https://serverfault.com/users/1324/" ]
You only need to create a temporary website with IIS 6.0. IIS 7.0 allows you to create multiple pending requests at a time. IIS 7.0 actually has a bug that causes the renew function to generate a CSR with a very large key (much larger than you want). Because of this, it is recommended that you create a new pending req...
OK, to partially answer my own question - the part of creating/using a new certificate without removing the existing one (i.e. without stopping the server), I found a good description [on Comodo website](https://support.comodo.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=456) - basically I need to create a...
221,458
When I am trying to open password-protected ppt with libre office 3.5 in Ubuntu 12.04,it gives me a message says "Read-Error. loading of password-encrypted microsoft powerpoint is not supported."So is there any solution to this?
2012/11/24
[ "https://askubuntu.com/questions/221458", "https://askubuntu.com", "https://askubuntu.com/users/101437/" ]
Open it with powerpoint and save it without password encryption...
The ppt you are trying to open in Libre is password protected in MS office. Libre Office cannot open such password protected files. So, for this, Install **Wine Windows Program Loader** software from Ubuntu software center and then open yout .ppt with it.
37,617,964
i need to add a jar file to a Liberty application in Bluemix. The WEB-INF folder is missing. How can i do that ? Thank you.
2016/06/03
[ "https://Stackoverflow.com/questions/37617964", "https://Stackoverflow.com", "https://Stackoverflow.com/users/6317299/" ]
The WEB-INF folder shouldn't be missing, it should include at least your web.xml configuration file and your lib directory, where the liberty runtime is expecting to find the libraries you want to upload along with your application
Your java web application must have a WEB-INF directory. See <http://docs.oracle.com/javaee/6/tutorial/doc/bnadx.html> If you can't find it in your project, you can double click in your liberty in the bluemix console and inspect the liberty instance files, like this [![enter image description here](https://i.stack.i...
15,279
Every of 5 previous brews (lager, pilsner, pale ale, IPA) have had a somewhat bitter and malty aftertaste to them. It's not too off-putting (except the lager) but is clearly there, yet not present on your tongue until swallowed (mostly aftertaste). *What would cause a beer to have this quality*? 5G brews. All liquid m...
2015/05/06
[ "https://homebrew.stackexchange.com/questions/15279", "https://homebrew.stackexchange.com", "https://homebrew.stackexchange.com/users/-1/" ]
The "malty" taste can come from burning the sugars in the beer. When you slowly pour in the LME, vigorously stir the boil to avoid pooling on the bottom of the kettle.
what kind of hops and how much? You may need to increase the IBUs. Also, what is the extract made from? Check to make sure it is a 2-Row and not something with more malt backbone (i.e. Pilsner) You also may want to find a higher attenuation yeast strain.
84,859
well its always preferred that buffers should be as large as possible in networking. but can having a very large buffer or a long buffer be a disadvantage?
2009/11/15
[ "https://serverfault.com/questions/84859", "https://serverfault.com", "https://serverfault.com/users/-1/" ]
I actually seem to have answered my own question. The dumb switch passes VLAN traffic without stripping the tag. This allows the "smart" APs plugged into the switch to operate correctly, and prevent any crossover between the physical interface and restricted VLANs on the public SSIDs. I apologize for the lack of infor...
Without a VLAN capable (managed) switch, you aren't going to be able to achieve your goal. You need to be able build a VLAN between your Internet pipe and your WLAN. To do this, you are going to have to have a firewall with VLANing capability -or- another physical port on the firewall and assign the VLAN to the swit...
124,242
What does this mean: > > Any future UK visa applications you make will be considered on their individual merits. > > >
2018/10/18
[ "https://travel.stackexchange.com/questions/124242", "https://travel.stackexchange.com", "https://travel.stackexchange.com/users/85652/" ]
It means that if you make another application, that application will be given its own assessment to decide if it will be granted. Just because a previous application failed it doesn't mean the new one will fail. HOWEVER... Your previous applications are going to be part of assessing the new one. If your new applicati...
‘Merit’ means ‘worth’ - that is, each application is assessed based on what is stated in and provided with that application.
20,077
Ion thrusters require a lot of energy because of their high exhaust velocities. But why can't they just pump a mixture of hydrogen and xenon into the chamber, mix it with oxygen and burn it? Doesn't this ionize the gas and also provide enough thermal heat to push the plasma through the grids? Maybe not hydrogen and ox...
2017/02/08
[ "https://space.stackexchange.com/questions/20077", "https://space.stackexchange.com", "https://space.stackexchange.com/users/18356/" ]
Ion engines need the ions to stay ionized ----------------------------------------- To be usefully efficient, an ion engine needs to ionize a substantial fraction of the propellant, and keep it ionized until it passes through most of the positive electrostatic potential gradient to whatever potential the local free sp...
The ion thruster should be as simple as possible and it should use the propellant mass effectively. Why use three gases if using xenon only works? The propellant mass should be accelerated totally, not only the xenon part. If you use the full heat of a reaction of hydrogen with oxygen, the combustion chamber must be co...
19,159
In Sword Art Online, why did Akihiko Kayaba make the game so as to make death permanent? Don't get me wrong, I know that in episode 1 he claims that he would like to "control this world's fate". However, in episode 17, when he says that he "wanted to make a world free of laws and restrictions", then why make it so that...
2015/02/06
[ "https://anime.stackexchange.com/questions/19159", "https://anime.stackexchange.com", "https://anime.stackexchange.com/users/11581/" ]
Okay, this question raises way to many personal opinions and speculations. It's never explained why perma-death was enabled in Sword Art Online. We'll also never find out since Kayaba Akihiko died. First, I'd like to note that the perma-death was neither a law nor restriction, it was a rule, and thus Kayaba Akihiko di...
As Kayaba says (I doesn't remember when), "There's no difference between IRL and SAO." If you die, it happens on both ends. I think it was to induce psychological effect. In Volume 1 - Chapter 24 of the light novel, during the scene where Kirito and Kayaba had a talk before they returned to reality: > > “…What abou...
27,179
Is it because it is a non-approved app on iPhone 4 and why? If so, is it only installable if it is a jailbroken iPhone 4?
2011/10/10
[ "https://apple.stackexchange.com/questions/27179", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/2334/" ]
The Siri app was withdrawn from sale to new people, but if you purchased it you can download it still from your history. It won't work without servers running, but you can still "get the app" from the store. The app does nothing but check to see if the Siri servers are running. Since they are no longer operational - e...
The previous free Siri app for iOS was removed from the App store sometime around Oct 4. (A developer can remove an app of theirs from sale at any time, and Apple purchased the developer of this app.) This app (for people who downloaded it before its removal from the App store) itself announces that it will stop workin...
27,179
Is it because it is a non-approved app on iPhone 4 and why? If so, is it only installable if it is a jailbroken iPhone 4?
2011/10/10
[ "https://apple.stackexchange.com/questions/27179", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/2334/" ]
The previous free Siri app for iOS was removed from the App store sometime around Oct 4. (A developer can remove an app of theirs from sale at any time, and Apple purchased the developer of this app.) This app (for people who downloaded it before its removal from the App store) itself announces that it will stop workin...
There are stories in the blogosphere that hackers have migrated Siri from the 4s OS code onto an iPhone 4. There was a video demonstrating it. It's not for the masses. In fact, it had some substantial problems. There was a story a day or two ago that Apple is working on releasing Siri for older phones (the story said...
27,179
Is it because it is a non-approved app on iPhone 4 and why? If so, is it only installable if it is a jailbroken iPhone 4?
2011/10/10
[ "https://apple.stackexchange.com/questions/27179", "https://apple.stackexchange.com", "https://apple.stackexchange.com/users/2334/" ]
The Siri app was withdrawn from sale to new people, but if you purchased it you can download it still from your history. It won't work without servers running, but you can still "get the app" from the store. The app does nothing but check to see if the Siri servers are running. Since they are no longer operational - e...
There are stories in the blogosphere that hackers have migrated Siri from the 4s OS code onto an iPhone 4. There was a video demonstrating it. It's not for the masses. In fact, it had some substantial problems. There was a story a day or two ago that Apple is working on releasing Siri for older phones (the story said...
90,200
I have a sign up form where the email address needs to be displayed, but cannot be edited (it is pre-determined, like an invite). Is it sufficient to grey the populated email field out to signify that it can't be changed? An argument against this would be to remove the users email from the form altogether and have it...
2016/02/11
[ "https://ux.stackexchange.com/questions/90200", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/77894/" ]
*There are other ways to make elements appear as part of a group.* If you place the email address in a label above the form, but make the space between the email address and the first text box the same size as the space between the 1st and 2nd text boxes, then people will automatically see them as a group (gestalt pr...
If you allow the user to the change email address, you may also do this on this format. [![enter image description here](https://i.stack.imgur.com/KWiar.png)](https://i.stack.imgur.com/KWiar.png) If the user is not allowed to change email, Franchesca's answer above is a good approach. [![enter image description he...
107,340
The book is fairly new, at most 4 years and it's the start of a series. I know vampires were involved and that the bookstore was open at night but that's about it.
2015/11/09
[ "https://scifi.stackexchange.com/questions/107340", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/55573/" ]
*[Night Owls](https://www.goodreads.com/book/show/18281997-night-owls)* by Lauren M. Roy [![Book cover](https://i.stack.imgur.com/H5S6B.jpg)](https://i.stack.imgur.com/H5S6B.jpg) > > *Night Owls **book store** is the one spot on campus **open late** enough to help out even the most practiced slacker. The employees’ ...
The *[Jane Jameson](https://www.goodreads.com/series/46406-jane-jameson)* series, starting with #2, *[Nice Girls Don't Date Dead Men](https://www.goodreads.com/book/show/5999242-nice-girls-don-t-date-dead-men)*, has the vampire protagonist working at a bookstore. [![Book cover](https://i.stack.imgur.com/Ke96Y.jpg)](ht...
107,340
The book is fairly new, at most 4 years and it's the start of a series. I know vampires were involved and that the bookstore was open at night but that's about it.
2015/11/09
[ "https://scifi.stackexchange.com/questions/107340", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/55573/" ]
*[Night Owls](https://www.goodreads.com/book/show/18281997-night-owls)* by Lauren M. Roy [![Book cover](https://i.stack.imgur.com/H5S6B.jpg)](https://i.stack.imgur.com/H5S6B.jpg) > > *Night Owls **book store** is the one spot on campus **open late** enough to help out even the most practiced slacker. The employees’ ...
*[Night's Master](http://members.authorsguild.net/amandaashley/night_s_master___br__book_3_67932.htm)* is the 3rd book in Amanda Ashley's *Children of the Night* series. [![enter image description here](https://i.stack.imgur.com/wfvrT.jpg)](https://i.stack.imgur.com/wfvrT.jpg) > > Kathy McKenna was sure that the lit...
107,340
The book is fairly new, at most 4 years and it's the start of a series. I know vampires were involved and that the bookstore was open at night but that's about it.
2015/11/09
[ "https://scifi.stackexchange.com/questions/107340", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/55573/" ]
*[Night Owls](https://www.goodreads.com/book/show/18281997-night-owls)* by Lauren M. Roy [![Book cover](https://i.stack.imgur.com/H5S6B.jpg)](https://i.stack.imgur.com/H5S6B.jpg) > > *Night Owls **book store** is the one spot on campus **open late** enough to help out even the most practiced slacker. The employees’ ...
Could it be [Mr Penumbra's 24-Hour Bookstore](http://www.goodreads.com/book/show/13538873-mr-penumbra-s-24-hour-bookstore), by Robin Sloan? I don't recall vampires, but there is a secret society and a mystery. It was published in 2012.
107,340
The book is fairly new, at most 4 years and it's the start of a series. I know vampires were involved and that the bookstore was open at night but that's about it.
2015/11/09
[ "https://scifi.stackexchange.com/questions/107340", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/55573/" ]
*[Night Owls](https://www.goodreads.com/book/show/18281997-night-owls)* by Lauren M. Roy [![Book cover](https://i.stack.imgur.com/H5S6B.jpg)](https://i.stack.imgur.com/H5S6B.jpg) > > *Night Owls **book store** is the one spot on campus **open late** enough to help out even the most practiced slacker. The employees’ ...
*[Hounded](https://www.goodreads.com/book/show/9533378-hounded?from_search=true&search_version=service)* the first book in the *Iron Druid Chronicles* by Kevin Hearne [![Hounded by Kevin Hearne](https://i.stack.imgur.com/iSrgw.jpg)](https://www.goodreads.com/book/show/9533378-hounded?from_search=true&search_version=se...
107,340
The book is fairly new, at most 4 years and it's the start of a series. I know vampires were involved and that the bookstore was open at night but that's about it.
2015/11/09
[ "https://scifi.stackexchange.com/questions/107340", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/55573/" ]
*[Night Owls](https://www.goodreads.com/book/show/18281997-night-owls)* by Lauren M. Roy [![Book cover](https://i.stack.imgur.com/H5S6B.jpg)](https://i.stack.imgur.com/H5S6B.jpg) > > *Night Owls **book store** is the one spot on campus **open late** enough to help out even the most practiced slacker. The employees’ ...
This *could* be the [Alex Verus](http://www.amazon.co.uk/gp/product/B0068PHXVA?keywords=alex%20verus&qid=1447144238&ref_=sr_1_2&s=digital-text&sr=1-2) series [![Fated](https://i.stack.imgur.com/rUeuU.jpg)](https://i.stack.imgur.com/rUeuU.jpg) Alex is a clairvoyant, who can see the future. He also runs a Magic store. ...
169,405
I have a scheduled task on a Windows Server 2000 box which is scheduled to run daily. On Monday, the task ran perfectly in that the thing it fires off (a console application) completed, but the scheduled task itself is still marked as "Running" on the Scheduled Tasks window. So both yesterday and today the job did not ...
2010/08/11
[ "https://serverfault.com/questions/169405", "https://serverfault.com", "https://serverfault.com/users/124/" ]
When the job terminates, it attempts to update itself indicating (a) the date last run and (b) reset the job status to *blank*. To do this, it must have full control of the job file. If another process attempts to access the job file (most likely culprit being the antivirus software), the job file will be *busy* and wi...
You could try restarting the windows task scheduler service, but sometimes rebooting a Windows box will solve all your problems ;-)
23,280,430
i want to use Qt with Visual Studio 2010 and 2012 parallel. For Visual Studio 2010, i've already installed it and it's running. How do i install it for Visual Studio 2012? In what do i change the environmental variables? Windows 8.1 64bit
2014/04/24
[ "https://Stackoverflow.com/questions/23280430", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3420519/" ]
You can install into another path, if you need to you can also compile yourself there, it is not that hard. Then in your respective Solution files change the path of the Qt libraries accordingly. <http://qt-project.org/doc/qt-5/windows-building.html>
You could install two different Qt versions onto your PC. You can get the versions from here: [Download Qt](http://qt-project.org/downloads) Watch out for VS 2012 in brackets. You will need to put the desired version into the `PATH` with priority. For instance, if you are currently developing with VS 2010, you will n...
88,441
In the absence of sunlight, plants give out the greenhouse gas, carbon dioxide. So why is it said that plants increase the concentration of atmospheric oxygen? Do they not increase the concentration of carbon dioxide and use the oxygen produced in photosynthesis.
2019/10/24
[ "https://biology.stackexchange.com/questions/88441", "https://biology.stackexchange.com", "https://biology.stackexchange.com/users/1110/" ]
The tag you used on the question shows you know about photosynthesis, but it seems you don't fully recognize its significance. Yes, plants use oxygen and release CO2 all the time for energy use, but they absorb much more CO2 (and release much more O2) while storing energy during the daytime than that 24-hour energy usa...
Plants start to grow first, from tiny size (from seed in higher plants), and from there, any size in later stages they achieve to have, they achieve it only by first absorbing all the Carbon they need, from air first. So huge part of plant's later dried weight is actually made from carbon. And all that carbon was incor...
88,441
In the absence of sunlight, plants give out the greenhouse gas, carbon dioxide. So why is it said that plants increase the concentration of atmospheric oxygen? Do they not increase the concentration of carbon dioxide and use the oxygen produced in photosynthesis.
2019/10/24
[ "https://biology.stackexchange.com/questions/88441", "https://biology.stackexchange.com", "https://biology.stackexchange.com/users/1110/" ]
There are two factors here. First is that you have to look at the plant's net production over time. Say for instance (I'm just making up numbers here) that during the day the plant takes in 88 g of CO2 and uses photosynthesis to convert it to 64 g of O2 that's released into the air, and 24 g of C that is incorporated i...
Plants start to grow first, from tiny size (from seed in higher plants), and from there, any size in later stages they achieve to have, they achieve it only by first absorbing all the Carbon they need, from air first. So huge part of plant's later dried weight is actually made from carbon. And all that carbon was incor...
88,441
In the absence of sunlight, plants give out the greenhouse gas, carbon dioxide. So why is it said that plants increase the concentration of atmospheric oxygen? Do they not increase the concentration of carbon dioxide and use the oxygen produced in photosynthesis.
2019/10/24
[ "https://biology.stackexchange.com/questions/88441", "https://biology.stackexchange.com", "https://biology.stackexchange.com/users/1110/" ]
> > Do they not increase the CO2 proportion? > > > No, because the CO2 they emit came from the atmosphere to begin with. And the carbon they don't release as CO2 stays as carbon compounds that make up the plant. The issue with CO2 is not plants taking CO2 from the air and re-releasing it. That doesn't cause a st...
Plants start to grow first, from tiny size (from seed in higher plants), and from there, any size in later stages they achieve to have, they achieve it only by first absorbing all the Carbon they need, from air first. So huge part of plant's later dried weight is actually made from carbon. And all that carbon was incor...
639,212
For my diy synth, I have a Meanwell RT-65B PSU that delivers +11.5V, +5V and -12V. The +11.5 should be 12, but the difference is within the tolerance, according to the [datasheet](https://www.meanwell-web.com/content/files/pdfs/productPdfs/MW/Rt-65/RT-65-spec.pdf). I also have a [CV-12 module from midimuso](https://mi...
2022/10/20
[ "https://electronics.stackexchange.com/questions/639212", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/315838/" ]
for someone who's not an electrical engineer, you're pretty good at picking this up! The measure from the datasheet you're interested in is called *dropout voltage*, i.e. the minimum voltage difference between in- and output. The LM317, being old enough to be of archaeological interest, has an enormous dropout voltag...
You have 3 solid options 1. Follow Marcus Müller recommendation from anouther answer - replace LM317 with proper LDO on CV-12 module 2. Replace Meanwell RT-65B PSU for anouther one which has at least 12,2V on 12V output (why 12,2V you may ask - your particular LM317 chip at your particular load provides 9,9V instead o...
639,212
For my diy synth, I have a Meanwell RT-65B PSU that delivers +11.5V, +5V and -12V. The +11.5 should be 12, but the difference is within the tolerance, according to the [datasheet](https://www.meanwell-web.com/content/files/pdfs/productPdfs/MW/Rt-65/RT-65-spec.pdf). I also have a [CV-12 module from midimuso](https://mi...
2022/10/20
[ "https://electronics.stackexchange.com/questions/639212", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/315838/" ]
for someone who's not an electrical engineer, you're pretty good at picking this up! The measure from the datasheet you're interested in is called *dropout voltage*, i.e. the minimum voltage difference between in- and output. The LM317, being old enough to be of archaeological interest, has an enormous dropout voltag...
For completeness' sake, I'll add another important piece of information: The RT-65B PSU has a trimmer to adjust the +5V output. However, it seems that the other voltages are referenced relative to the +5V rail, so adjusting it also adjusts the other rails. This is not stated on the data sheet, but a [kind Redditor inf...
639,212
For my diy synth, I have a Meanwell RT-65B PSU that delivers +11.5V, +5V and -12V. The +11.5 should be 12, but the difference is within the tolerance, according to the [datasheet](https://www.meanwell-web.com/content/files/pdfs/productPdfs/MW/Rt-65/RT-65-spec.pdf). I also have a [CV-12 module from midimuso](https://mi...
2022/10/20
[ "https://electronics.stackexchange.com/questions/639212", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/315838/" ]
You have 3 solid options 1. Follow Marcus Müller recommendation from anouther answer - replace LM317 with proper LDO on CV-12 module 2. Replace Meanwell RT-65B PSU for anouther one which has at least 12,2V on 12V output (why 12,2V you may ask - your particular LM317 chip at your particular load provides 9,9V instead o...
For completeness' sake, I'll add another important piece of information: The RT-65B PSU has a trimmer to adjust the +5V output. However, it seems that the other voltages are referenced relative to the +5V rail, so adjusting it also adjusts the other rails. This is not stated on the data sheet, but a [kind Redditor inf...
73,226,917
New to bluez & bluetooth. I have a few general questions about the management of data sourced from a Polar sensor and written to the d-bus. I'm working on a Jetson Nano that connects to a Polar heart rate sensor using Bluez. When I worked in Data Warehousing I always pulled data from source systems by collecting data...
2022/08/03
[ "https://Stackoverflow.com/questions/73226917", "https://Stackoverflow.com", "https://Stackoverflow.com/users/17640238/" ]
In the compose file, simply refer to bitnami/mariadb:10.6. You don't have to specify docker.io. Also note that **depends\_on** is ignored and there's no need to specify port 443 as App Service does TLS termination.
i may be wrong but i think it won't work simply because there's a compatibility problem when it come to Docker-compose (preview) port, by that i mean that the only port that will work should either be 80 or 8080. <https://learn.microsoft.com/en-us/azure/app-service/configure-custom-container?pivots=container-linux#doc...
1,021,978
I want to get access to an windows iot device from internet. I want to connect my device via Ethernet to any network. The networks are connected to the internet. I have no static ip and I don't know anything about the network where my device is connected. So I thought I can run an application on that device which det...
2016/01/05
[ "https://superuser.com/questions/1021978", "https://superuser.com", "https://superuser.com/users/541079/" ]
In order to connect to a device in an IP network from an outside network (i.e., to cross a router boundary) without having information about the internal network, you need to initiate a connection from your IoT device to a server you have control over in the external network (e.g., Internet). If the internal network fi...
You can use various dynamic DNS name server apps to provide a static name so you can connect to a known address. See more in wiki: <https://en.wikipedia.org/wiki/Dynamic_DNS> This won't help you getting connection to "know nothing" network. That's where UPNP comes in. You can use UPNP to create a specific port mapping...
62,816
Shimano revoshift is fogged so gear number is not readable. I’ve washed the outside with isopropal to no effect. How to remove lens and or replace it ?
2019/06/26
[ "https://bicycles.stackexchange.com/questions/62816", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/44183/" ]
It might be possible to remove, clean and replace the cover. As Carel says, know you can replace the part before disassembly. The [Dealer's Manual for the REVOSHIFT Shifter](https://si.shimano.com/pdfs/dm/DM-SL0002-03-ENG.pdf) seems to indicate the method for removing the cover. Page 14 tells how to remove the cove...
The one time I tried to disassemble a revoshift with the intention of saving, it broke some flimsy plastic flange and wouldn't work again. So the safest thing is to replace the shifter with a trigger shifter or a pod shifter or even a friction shifter lever. If you're feeling brave, you'll want to remove any grip fro...
62,816
Shimano revoshift is fogged so gear number is not readable. I’ve washed the outside with isopropal to no effect. How to remove lens and or replace it ?
2019/06/26
[ "https://bicycles.stackexchange.com/questions/62816", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/44183/" ]
The one time I tried to disassemble a revoshift with the intention of saving, it broke some flimsy plastic flange and wouldn't work again. So the safest thing is to replace the shifter with a trigger shifter or a pod shifter or even a friction shifter lever. If you're feeling brave, you'll want to remove any grip fro...
You've not mentioned how long it's been like that. If the moisture appeared after a very wet ride then it might dry out reasonably quickly and not come back until another equally wet ride. Stating the obvious is allowed on stack exchange isn't it?
62,816
Shimano revoshift is fogged so gear number is not readable. I’ve washed the outside with isopropal to no effect. How to remove lens and or replace it ?
2019/06/26
[ "https://bicycles.stackexchange.com/questions/62816", "https://bicycles.stackexchange.com", "https://bicycles.stackexchange.com/users/44183/" ]
It might be possible to remove, clean and replace the cover. As Carel says, know you can replace the part before disassembly. The [Dealer's Manual for the REVOSHIFT Shifter](https://si.shimano.com/pdfs/dm/DM-SL0002-03-ENG.pdf) seems to indicate the method for removing the cover. Page 14 tells how to remove the cove...
You've not mentioned how long it's been like that. If the moisture appeared after a very wet ride then it might dry out reasonably quickly and not come back until another equally wet ride. Stating the obvious is allowed on stack exchange isn't it?
76,559
I've been having this doubt for a quite a while and haven't been able to find a satisfying answer. Is the 'E#' note technically an F? If so, why does it not exist on the chromatic scale like other sharps? I mean, what exactly is the E#? Is it a note on its own or is it just another way of saying F? And what do people ...
2018/11/16
[ "https://music.stackexchange.com/questions/76559", "https://music.stackexchange.com", "https://music.stackexchange.com/users/54337/" ]
1. E-sharp is called the enharmonic equivalent of F-natural. The sharp raises the base note one half step. In the same way B-sharp is the enharmonic respelling of C-natural. Furthermore, C-flat is the enharmonic of B-natural, and F-flat enharmonic of E-natural. Notes may also be double-sharped and double-flatted, which...
For starters, there isn't an E# in the D major scale. There's E and there's F#. If you're asking why there may be E# found in a piece that's in D major, that's slightly different. Sometimes certain notes that are non-diatonic need to be used. That's maybe where E# could come in. Let's say the chord sequence goes from ...
76,559
I've been having this doubt for a quite a while and haven't been able to find a satisfying answer. Is the 'E#' note technically an F? If so, why does it not exist on the chromatic scale like other sharps? I mean, what exactly is the E#? Is it a note on its own or is it just another way of saying F? And what do people ...
2018/11/16
[ "https://music.stackexchange.com/questions/76559", "https://music.stackexchange.com", "https://music.stackexchange.com/users/54337/" ]
(In addition to Tim's great answer, I wanted to introduce another important term and a slightly different way of thinking of it.) Whenever we see a pitch that is raised from its expected form in the diatonic scale, it is often (although not always) understood as a *temporary leading tone*. By "leading tone" we mean it...
For starters, there isn't an E# in the D major scale. There's E and there's F#. If you're asking why there may be E# found in a piece that's in D major, that's slightly different. Sometimes certain notes that are non-diatonic need to be used. That's maybe where E# could come in. Let's say the chord sequence goes from ...
76,559
I've been having this doubt for a quite a while and haven't been able to find a satisfying answer. Is the 'E#' note technically an F? If so, why does it not exist on the chromatic scale like other sharps? I mean, what exactly is the E#? Is it a note on its own or is it just another way of saying F? And what do people ...
2018/11/16
[ "https://music.stackexchange.com/questions/76559", "https://music.stackexchange.com", "https://music.stackexchange.com/users/54337/" ]
E# is not technically F, only in equal tempered tuning. That's the first cause of concern. The degrees of any scale follow a sequence and that sequence is never broken. The note names follow the "musical alphabet" {A, B, C, D, E, F, G} then repeat. Accidentals are needed to preserve the whole step - half step sequence...
For starters, there isn't an E# in the D major scale. There's E and there's F#. If you're asking why there may be E# found in a piece that's in D major, that's slightly different. Sometimes certain notes that are non-diatonic need to be used. That's maybe where E# could come in. Let's say the chord sequence goes from ...
76,559
I've been having this doubt for a quite a while and haven't been able to find a satisfying answer. Is the 'E#' note technically an F? If so, why does it not exist on the chromatic scale like other sharps? I mean, what exactly is the E#? Is it a note on its own or is it just another way of saying F? And what do people ...
2018/11/16
[ "https://music.stackexchange.com/questions/76559", "https://music.stackexchange.com", "https://music.stackexchange.com/users/54337/" ]
1. E-sharp is called the enharmonic equivalent of F-natural. The sharp raises the base note one half step. In the same way B-sharp is the enharmonic respelling of C-natural. Furthermore, C-flat is the enharmonic of B-natural, and F-flat enharmonic of E-natural. Notes may also be double-sharped and double-flatted, which...
(In addition to Tim's great answer, I wanted to introduce another important term and a slightly different way of thinking of it.) Whenever we see a pitch that is raised from its expected form in the diatonic scale, it is often (although not always) understood as a *temporary leading tone*. By "leading tone" we mean it...
76,559
I've been having this doubt for a quite a while and haven't been able to find a satisfying answer. Is the 'E#' note technically an F? If so, why does it not exist on the chromatic scale like other sharps? I mean, what exactly is the E#? Is it a note on its own or is it just another way of saying F? And what do people ...
2018/11/16
[ "https://music.stackexchange.com/questions/76559", "https://music.stackexchange.com", "https://music.stackexchange.com/users/54337/" ]
1. E-sharp is called the enharmonic equivalent of F-natural. The sharp raises the base note one half step. In the same way B-sharp is the enharmonic respelling of C-natural. Furthermore, C-flat is the enharmonic of B-natural, and F-flat enharmonic of E-natural. Notes may also be double-sharped and double-flatted, which...
E# is not technically F, only in equal tempered tuning. That's the first cause of concern. The degrees of any scale follow a sequence and that sequence is never broken. The note names follow the "musical alphabet" {A, B, C, D, E, F, G} then repeat. Accidentals are needed to preserve the whole step - half step sequence...
56,132,231
So, I created a postgreSQL instance in Google Cloud, and I have a Kubernetes Cluster with containers that I would like to connect to it. I know that the cloud sql proxy sidecar is one method, but the documentation says that I should be able to connect to the private IP as well. I notice that a VPC peering connection w...
2019/05/14
[ "https://Stackoverflow.com/questions/56132231", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1263968/" ]
Does your GKE cluster meet the [environment requirements](https://cloud.google.com/sql/docs/mysql/private-ip#environment_requirements) for private IP? It needs to be a VPC enabled cluster on the same VPC and region as your Cloud SQL instance.
If your instance of cloud SQL or compute both in the same VPC then only you can create a VPC peering over private IP. From cloud SQL compute VM you can choose the VPC and subnet and also setup same for the GKE and you can make the connection from pod to cloud sql.
56,132,231
So, I created a postgreSQL instance in Google Cloud, and I have a Kubernetes Cluster with containers that I would like to connect to it. I know that the cloud sql proxy sidecar is one method, but the documentation says that I should be able to connect to the private IP as well. I notice that a VPC peering connection w...
2019/05/14
[ "https://Stackoverflow.com/questions/56132231", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1263968/" ]
In the end, the simplest thing to do was to just use the google cloud sql proxy. As opposed to a sidecar, I have multiple containers needing db access so I put the proxy into my cluster as its own container with a service, and it seems to just work.
If your instance of cloud SQL or compute both in the same VPC then only you can create a VPC peering over private IP. From cloud SQL compute VM you can choose the VPC and subnet and also setup same for the GKE and you can make the connection from pod to cloud sql.
348,161
I would like to buy only 4 capacitors like this: 750pF 1600VDC 500VAC 5% tolerance I only find it on mouser but MOQ is 2'000; almost same as me ! How I can deal with that? Should I try to find 2 capaciters totalizing 750pF and wire them in parallel ? Thank you
2018/01/04
[ "https://electronics.stackexchange.com/questions/348161", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/156271/" ]
Try looking at parts with higher voltage ratings (when filling out the selection form select ranges) a more durable capacitor should not adversely effect the operation of your circuit. I found one on mousers site that was available in singles.
> > Should I try to find 2 capaciters totalizing 750pF and wire them in parallel ? > > > Depends. I'll go with: no, unless you know what the job of these capacitors is, and what tolerance that allows, and how much voltage might built up if the connection of either of those isn't as good as the other.
348,161
I would like to buy only 4 capacitors like this: 750pF 1600VDC 500VAC 5% tolerance I only find it on mouser but MOQ is 2'000; almost same as me ! How I can deal with that? Should I try to find 2 capaciters totalizing 750pF and wire them in parallel ? Thank you
2018/01/04
[ "https://electronics.stackexchange.com/questions/348161", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/156271/" ]
Try looking at parts with higher voltage ratings (when filling out the selection form select ranges) a more durable capacitor should not adversely effect the operation of your circuit. I found one on mousers site that was available in singles.
There are many places other than Mouser or DigiKey who sell capacitors. For example, [Tedss.com](https://www.tedss.com/2020085455). Did you try to Google for "Film Capacitors 750pF", or e-Bay? Here is another place for caps like that, [StudioSoundElectronics](http://amprepairparts.com/caps.htm).
14,920,220
In MicroSoft Dynamcis AX 2012, I'm very confused about those **Links** and **reference Data Sources** under Form's DataSource node. What do they do there? How they get there? ![enter image description here](https://i.stack.imgur.com/Zleog.jpg)
2013/02/17
[ "https://Stackoverflow.com/questions/14920220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1989771/" ]
Have a look at what MSDN says about them : <http://msdn.microsoft.com/en-us/library/gg845085.aspx> Basically reference datasources are used when you have a foreign key field in your datasource. Instead of showing the foreign key value of your table on your form, you can use fields from the reference datasource to show...
What's also nice about them too is you don't have to add umpteen data sources for reference usage, and not having to worry about accidentally deleting/inserting/updating values in that table (when you forget to change the AllowEdit/AllowDelete/AllowCreate and/or overwrite the write() method)
22,925,217
I am working on a game where the user can register, has an inventory and has weapons in that inventory. I want to store this information in my database. Here is how I have set it up so far: * My user table contains a UserID column (along with other information). * My inventory table contains an InventoryID column and...
2014/04/07
[ "https://Stackoverflow.com/questions/22925217", "https://Stackoverflow.com", "https://Stackoverflow.com/users/204459/" ]
What You described is simple one-to-many relationship. You don't need inventory table. You need a user table with `userID` as primary key and use it as a foreign key in weapons table. With help of joins You can use one query to get all records.
Have you considered a NoSQL database? :) Relational databases often require "join" tables as you describe. You can probably accomplish this without a join table if user to inventory is 1:1 - and 1 weapon can only belong to 1 inventory/user - just have weapons store a user ID.
6,318,165
I found the following Chart Control tutorial for Windows Form is very useful. <http://msdn.microsoft.com/en-us/library/dd456632.aspx> However, I am not able to find the corresponding tutorial for WPF. Does it even exist in MSDN?
2011/06/11
[ "https://Stackoverflow.com/questions/6318165", "https://Stackoverflow.com", "https://Stackoverflow.com/users/391104/" ]
I couldn't find it myself... it seems its Work-In-Progress ([for a long time now](http://wpf.codeplex.com/discussions/58833?ProjectName=wpf)). The only lead I could find on WPF Charts was on [Delay's Blog](http://blogs.msdn.com/b/delay/archive/2009/06/25/wpf-charting-it-s-official-june-2009-release-of-the-wpf-toolkit-i...
If you are not looking only for charts .Net framework provide.. take a look at [this](http://www.wpftutorial.net/3rdPartyLibs.html) see the options available under charts.. you can find chart providers and nice tutorials One very famous option for charting is WPF toolkit. You can download sample code demonstrating all...
6,318,165
I found the following Chart Control tutorial for Windows Form is very useful. <http://msdn.microsoft.com/en-us/library/dd456632.aspx> However, I am not able to find the corresponding tutorial for WPF. Does it even exist in MSDN?
2011/06/11
[ "https://Stackoverflow.com/questions/6318165", "https://Stackoverflow.com", "https://Stackoverflow.com/users/391104/" ]
I couldn't find it myself... it seems its Work-In-Progress ([for a long time now](http://wpf.codeplex.com/discussions/58833?ProjectName=wpf)). The only lead I could find on WPF Charts was on [Delay's Blog](http://blogs.msdn.com/b/delay/archive/2009/06/25/wpf-charting-it-s-official-june-2009-release-of-the-wpf-toolkit-i...
The best sources of information for charting on WPF are Delay's MSDN blog and the data visualization demos that accompany the charting library releases. Here is the page that describes the charting releases and links to the demos: * [Two birds, squared! (Silverlight/WPF Data Visualization Development Release 3 and a D...
36,653,414
I am considering implementing a service as a series of REST endpoints on AWS Lambda and possibly AWS API Gateway. The front end would be a JS browser client that calls these endpoints directly, eliminating the need for a middle tier. In my research, what I can't seem to find is, how do I secure access to the calls to...
2016/04/15
[ "https://Stackoverflow.com/questions/36653414", "https://Stackoverflow.com", "https://Stackoverflow.com/users/5091329/" ]
I don't think you want to use Spring Security in a Lambda function. I can't imagine that working very well, and I doubt it would work at all. Even if it could run on Lambda it would definitely add more to your function's cold startup time than you are going to want to deal with. The recommended way to provide user aut...
To secure your API Gateway endpoints, you can consider signing your request with [AWS Signature V4](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html), using Cognito authorization token or Lambda(custom) Authorizer which can be set up relatively easy. There are other options. Check out [AWS documen...
7,796
Say I want to know every game where the main character is a soldier, or every game with random level generation, or every game with orchestral music, etc. Is this an appropriate sort of question for arqade?
2013/10/17
[ "https://gaming.meta.stackexchange.com/questions/7796", "https://gaming.meta.stackexchange.com", "https://gaming.meta.stackexchange.com/users/4273/" ]
No, these types of questions are off-topic. > > Questions that ask which games or other products meet specific criteria are off topic. We primarily deal with questions about playing games, not about which games to play or historical trivia. We make an exception for identifying games based on an audiovisual artifact f...
Even if the other two reasons given so far (asking for games that fit certain criteria; asking for an unbounded list) weren't enough reason to close it, those examples are also an absolutely enormous set: each of those could be answered by lists many thousands of items long, that grow every day. Such a question could b...
7,796
Say I want to know every game where the main character is a soldier, or every game with random level generation, or every game with orchestral music, etc. Is this an appropriate sort of question for arqade?
2013/10/17
[ "https://gaming.meta.stackexchange.com/questions/7796", "https://gaming.meta.stackexchange.com", "https://gaming.meta.stackexchange.com/users/4273/" ]
No, it is not. Arqade is focused on QA, and what you're asking for is an open ended list. In that case, how are users to select "correct" answers? Should each game that meets the criteria be posted as its own answer? How do you know when the list is "complete" and worthy of answer accepting? Unfortunately, our forma...
Even if the other two reasons given so far (asking for games that fit certain criteria; asking for an unbounded list) weren't enough reason to close it, those examples are also an absolutely enormous set: each of those could be answered by lists many thousands of items long, that grow every day. Such a question could b...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
I'm not sure whether this was retconned (and how many times...), so I'm going by what was shown on Spidey's first appearance, on Amazing Fantasy #15. According to that, there were no other radioactive spiders. One single spider was accidentally irradiated, and it has bitten Peter Parker: ![Radioactive spider biting P...
**Amazing Spider-Man** (Cinematic Universe) ------------------------------------------- *When the question indicated spiders (plural), my assumption was the recent Amazing Spider-Man movie which featured dozens of transgenic spiders weaving for Norman Osborn. In most versions of the canon story, there was only one spi...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
**Amazing Spider-Man** (Cinematic Universe) ------------------------------------------- *When the question indicated spiders (plural), my assumption was the recent Amazing Spider-Man movie which featured dozens of transgenic spiders weaving for Norman Osborn. In most versions of the canon story, there was only one spi...
**Ultimate Universe (Marvel Earth-1610)** In this alternate comic universe, the spider was a test subject for an attempt by OzCorp to create a new super soldier serum, and is listed as OZ EXPERIMENT 56, ARACHNID NO. 00. This, and other frames indicate that other animal testing was ongoing and that there was a possibil...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
**Amazing Spider-Man** (Cinematic Universe) ------------------------------------------- *When the question indicated spiders (plural), my assumption was the recent Amazing Spider-Man movie which featured dozens of transgenic spiders weaving for Norman Osborn. In most versions of the canon story, there was only one spi...
If we're speaking about the spiders [plural] from the Sam Raimi trilogy, its somewhat unknown. It *Was* said that traits from various spiders were taken and recombined into "These 15 genetically altered super spiders" to which Mary Jane pointed out "There are only 14; one's missing," [not counting the one that escaped ...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
I'm not sure whether this was retconned (and how many times...), so I'm going by what was shown on Spidey's first appearance, on Amazing Fantasy #15. According to that, there were no other radioactive spiders. One single spider was accidentally irradiated, and it has bitten Peter Parker: ![Radioactive spider biting P...
**Ultimate Universe (Marvel Earth-1610)** In this alternate comic universe, the spider was a test subject for an attempt by OzCorp to create a new super soldier serum, and is listed as OZ EXPERIMENT 56, ARACHNID NO. 00. This, and other frames indicate that other animal testing was ongoing and that there was a possibil...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
I'm not sure whether this was retconned (and how many times...), so I'm going by what was shown on Spidey's first appearance, on Amazing Fantasy #15. According to that, there were no other radioactive spiders. One single spider was accidentally irradiated, and it has bitten Peter Parker: ![Radioactive spider biting P...
If we're speaking about the spiders [plural] from the Sam Raimi trilogy, its somewhat unknown. It *Was* said that traits from various spiders were taken and recombined into "These 15 genetically altered super spiders" to which Mary Jane pointed out "There are only 14; one's missing," [not counting the one that escaped ...
25,321
Did Peter Parker take part in, or have knowledge of what happened to the rest of the radioactive spiders? Were they disposed of or are they are still hanging around in a lab somewhere?
2012/10/29
[ "https://scifi.stackexchange.com/questions/25321", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/4356/" ]
If we're speaking about the spiders [plural] from the Sam Raimi trilogy, its somewhat unknown. It *Was* said that traits from various spiders were taken and recombined into "These 15 genetically altered super spiders" to which Mary Jane pointed out "There are only 14; one's missing," [not counting the one that escaped ...
**Ultimate Universe (Marvel Earth-1610)** In this alternate comic universe, the spider was a test subject for an attempt by OzCorp to create a new super soldier serum, and is listed as OZ EXPERIMENT 56, ARACHNID NO. 00. This, and other frames indicate that other animal testing was ongoing and that there was a possibil...
825
The sync that Google offers for Google Contacts <> Mac OS X Address Book is seriously flawed. It doesn't sync automatically, it doesn't sync all contacts, it doesn't sync all fields. See [here](http://www.google.com/support/contactsync/) for a list of warnings and issues. Is there a better way to sync Google Contacts ...
2009/07/15
[ "https://superuser.com/questions/825", "https://superuser.com", "https://superuser.com/users/32/" ]
Honestly, just hang in there until Snow Leopard, and its [Exchange support](http://www.apple.com/macosx/exchange.html) for Address Book. Until then, just try to only add information through <http://google.com/contacts>, and perform a manual sync to pull the updates back to address book. And make sure you regularly bac...
It's extra software and it isn't free, but [Spanning Sync](http://spanningsync.com/)'s website says that it can sync your Gmail contacts with Address Book (and your Google Calendar with iCal).
825
The sync that Google offers for Google Contacts <> Mac OS X Address Book is seriously flawed. It doesn't sync automatically, it doesn't sync all contacts, it doesn't sync all fields. See [here](http://www.google.com/support/contactsync/) for a list of warnings and issues. Is there a better way to sync Google Contacts ...
2009/07/15
[ "https://superuser.com/questions/825", "https://superuser.com", "https://superuser.com/users/32/" ]
It's extra software and it isn't free, but [Spanning Sync](http://spanningsync.com/)'s website says that it can sync your Gmail contacts with Address Book (and your Google Calendar with iCal).
For those on Snow Leapord After configuring my address book to sync, it synced eventually, after being turned off for the night and being on the next morning for 3 hours. I know the sync occurred sometime in the morning after turning it on, but don't know when. I don't have an iPhone and couldn't get iSync to sync my...
825
The sync that Google offers for Google Contacts <> Mac OS X Address Book is seriously flawed. It doesn't sync automatically, it doesn't sync all contacts, it doesn't sync all fields. See [here](http://www.google.com/support/contactsync/) for a list of warnings and issues. Is there a better way to sync Google Contacts ...
2009/07/15
[ "https://superuser.com/questions/825", "https://superuser.com", "https://superuser.com/users/32/" ]
Honestly, just hang in there until Snow Leopard, and its [Exchange support](http://www.apple.com/macosx/exchange.html) for Address Book. Until then, just try to only add information through <http://google.com/contacts>, and perform a manual sync to pull the updates back to address book. And make sure you regularly bac...
For those on Snow Leapord After configuring my address book to sync, it synced eventually, after being turned off for the night and being on the next morning for 3 hours. I know the sync occurred sometime in the morning after turning it on, but don't know when. I don't have an iPhone and couldn't get iSync to sync my...
10,494
I am Having problem to make custom option dependable . I am having two custom option. In First i have 3 radio button and in second i have drop down . What i need to do is that when i select 1 radio button ,i need to display the drop down and for the rest of radio button hide that drop down. And Also one suggestion is r...
2013/11/07
[ "https://magento.stackexchange.com/questions/10494", "https://magento.stackexchange.com", "https://magento.stackexchange.com/users/2711/" ]
This cannot be done out of the box but there are a few extensions that claim to do this: * <http://www.magentocommerce.com/magento-connect/dependent-custom-options.html> * <http://www.magentocommerce.com/magento-connect/dependent-custom-options-configurable.html> * <http://www.magentocommerce.com/magento-connect/depe...
As Marius told this cannot be done out of the box. I too has recently faced the same type of requirement and i think * <https://store.webkul.com/Magento-Chained-Custom-Option-Template.html> this extension fits best to my problem. I hope this will help others who are have the same problem of relating two custom optio...
145,435
I repair electric powered steering systems for cars, especially Fiat, Alfa, and Lancya (Delphi manufacturers), and I'm in need of making some tool to test these reparations. I mean just turning it on, for example. I have researched during some time, and I figured I need CAN bus signals to be simulated as the eps [ECU]...
2014/12/26
[ "https://electronics.stackexchange.com/questions/145435", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/62111/" ]
The Arduino CAN shield is pretty cool if you want to build an embedded computer to play with CAN. However, if I understand correctly, you are building a one-off tool for your personal use (or will merely use an off-the-shelf tool if one exists for the right price). For that reason, I urge you to consider writing PC sof...
If you're open to buying something off the shelf for a few hundred dollars, Kvaser's Leaf products are pretty easy to use. They let you send pre-recorded sequences of packets and monitor the bus. You can get one with an OBD-2 connector if that's what you need. Building your own test equipment is fine for a personal pr...
145,435
I repair electric powered steering systems for cars, especially Fiat, Alfa, and Lancya (Delphi manufacturers), and I'm in need of making some tool to test these reparations. I mean just turning it on, for example. I have researched during some time, and I figured I need CAN bus signals to be simulated as the eps [ECU]...
2014/12/26
[ "https://electronics.stackexchange.com/questions/145435", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/62111/" ]
The Arduino CAN shield is pretty cool if you want to build an embedded computer to play with CAN. However, if I understand correctly, you are building a one-off tool for your personal use (or will merely use an off-the-shelf tool if one exists for the right price). For that reason, I urge you to consider writing PC sof...
Having managed to eventually get numbers from a CAN bus with an embedded controller, I believe the biggest problem you're experiencing are the vendors' examples not properly initializing the controller's registers for CAN quanta and sample timing. Curbing the popular CAN shields' efforts is the 16 MHz crystal [SparkFu...
145,435
I repair electric powered steering systems for cars, especially Fiat, Alfa, and Lancya (Delphi manufacturers), and I'm in need of making some tool to test these reparations. I mean just turning it on, for example. I have researched during some time, and I figured I need CAN bus signals to be simulated as the eps [ECU]...
2014/12/26
[ "https://electronics.stackexchange.com/questions/145435", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/62111/" ]
If you're open to buying something off the shelf for a few hundred dollars, Kvaser's Leaf products are pretty easy to use. They let you send pre-recorded sequences of packets and monitor the bus. You can get one with an OBD-2 connector if that's what you need. Building your own test equipment is fine for a personal pr...
Having managed to eventually get numbers from a CAN bus with an embedded controller, I believe the biggest problem you're experiencing are the vendors' examples not properly initializing the controller's registers for CAN quanta and sample timing. Curbing the popular CAN shields' efforts is the 16 MHz crystal [SparkFu...
113,172
i have create a Custom Post Type calle "Places". I have created a Custom Field with Field Type "Multi CheckBox" Option Title "Type of Pub" Option values "Sports, Rock, Biker, Beer, Live Band, Restro, Gastro, Irish, Karaoke Bar" Field Title "Type of Pub" Field name "typeofpub" When i Add New Places, Type of Pub with ...
2013/09/06
[ "https://wordpress.stackexchange.com/questions/113172", "https://wordpress.stackexchange.com", "https://wordpress.stackexchange.com/users/37664/" ]
In such cases, problem is probably with `.htaccess` file. Check if you use Multisite or which type (subdir vs subdomain)
Plugin conflicts cause most of these problems. If you are able to log into using wp-login.php kindly log inside and check after disabling one by one each plugin and check your site wp-admin in different browser if disabling a particular plugin gives you access to wp-admin then that plugin is the cause of this. It als...
113,172
i have create a Custom Post Type calle "Places". I have created a Custom Field with Field Type "Multi CheckBox" Option Title "Type of Pub" Option values "Sports, Rock, Biker, Beer, Live Band, Restro, Gastro, Irish, Karaoke Bar" Field Title "Type of Pub" Field name "typeofpub" When i Add New Places, Type of Pub with ...
2013/09/06
[ "https://wordpress.stackexchange.com/questions/113172", "https://wordpress.stackexchange.com", "https://wordpress.stackexchange.com/users/37664/" ]
In such cases, problem is probably with `.htaccess` file. Check if you use Multisite or which type (subdir vs subdomain)
Changing Wordpress Salts solved this same problem, for me.
92,355
Character A (2 HD) has two stirges (1 HD each) attached to him. Character B wants to cast sleep (can affect up to 4 HD), but only on the stirges. Is it possible to center the spell so only the very edge of the radial area affects the bad guys and not the player?
2016/12/29
[ "https://rpg.stackexchange.com/questions/92355", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/28926/" ]
Can you target sleep at particular creatures? ============================================= **No**, [sleep](http://www.d20pfsrd.com/magic/all-spells/s/sleep) has an area effect and doesn't allow you to choose creatures as targets (you instead choose a point in space). Everyone in the area of effect is potentially affe...
Not be default. The spell is pretty clear in what it does, and it says > > A sleep spell causes a magical slumber to come upon 4 HD of creatures. Creatures with the fewest HD are affected first. Among creatures with equal HD, those who are closest to the spell's point of origin are affected first. > > > So that'...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
I know the answer for the Second World War. The political parties and organizations were all pro Allies except three notable groups: [German American Bund](http://en.wikipedia.org/wiki/German_American_Bund) This was a Nazi organization supported by Germans in the USA. It evolved simultaneously with the NSDAP, but n...
No, the side we would take if we were to enter both wars was undisputed. The only problems was the absence of public unity about going to war. This was a primary concern when America entered the war on April 6, 1917. In Washington, unwavering public support was considered to be crucial to the entire wartime effort. Tha...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
No, the side we would take if we were to enter both wars was undisputed. The only problems was the absence of public unity about going to war. This was a primary concern when America entered the war on April 6, 1917. In Washington, unwavering public support was considered to be crucial to the entire wartime effort. Tha...
Alfred Thayer Mahan's doctrine pretty much dictated that the United States will be fighting alongside the British, who were the other naval superpower, rather than Germany which was a land power. Japan is an interesting case, while at the start of WWII it demolished the British navy, raw racism precluded any possibili...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
Although I agree broadly with CsBalazs, we should not overlook the fact that there was a rather strong pro-Nazi sentiment among the upper classes, and especially the academic elite, in the US. For example: Martin Sprengling, director of the Oriental Institute in Chicago ; Walter Nitze, head of the Romance faculty in Ch...
**Bottom line up front.** Yes their was a doubt. Germany had a vocal advocacy in the US as large or larger than did the UK. The UK had historical ties and FDR. Ultimately though neither was enough to move Isolationist America. America did not declare war on Germany or Japan first. They declared war on us and only then ...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
**Bottom line up front.** Yes their was a doubt. Germany had a vocal advocacy in the US as large or larger than did the UK. The UK had historical ties and FDR. Ultimately though neither was enough to move Isolationist America. America did not declare war on Germany or Japan first. They declared war on us and only then ...
Alfred Thayer Mahan's doctrine pretty much dictated that the United States will be fighting alongside the British, who were the other naval superpower, rather than Germany which was a land power. Japan is an interesting case, while at the start of WWII it demolished the British navy, raw racism precluded any possibili...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
I know the answer for the Second World War. The political parties and organizations were all pro Allies except three notable groups: [German American Bund](http://en.wikipedia.org/wiki/German_American_Bund) This was a Nazi organization supported by Germans in the USA. It evolved simultaneously with the NSDAP, but n...
Alfred Thayer Mahan's doctrine pretty much dictated that the United States will be fighting alongside the British, who were the other naval superpower, rather than Germany which was a land power. Japan is an interesting case, while at the start of WWII it demolished the British navy, raw racism precluded any possibili...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
During WW1, the U-Boat attacks DID have a significant effect on turning American opinion against Imperial Germany. Furthermore, it is unlikely that the US would have entered the war without the sinking of the Lusitania or another similar provocative event. It is often forgotten in this day and age that the second large...
**Bottom line up front.** Yes their was a doubt. Germany had a vocal advocacy in the US as large or larger than did the UK. The UK had historical ties and FDR. Ultimately though neither was enough to move Isolationist America. America did not declare war on Germany or Japan first. They declared war on us and only then ...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
I know the answer for the Second World War. The political parties and organizations were all pro Allies except three notable groups: [German American Bund](http://en.wikipedia.org/wiki/German_American_Bund) This was a Nazi organization supported by Germans in the USA. It evolved simultaneously with the NSDAP, but n...
**Bottom line up front.** Yes their was a doubt. Germany had a vocal advocacy in the US as large or larger than did the UK. The UK had historical ties and FDR. Ultimately though neither was enough to move Isolationist America. America did not declare war on Germany or Japan first. They declared war on us and only then ...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
During WWII, there was less doubt about which side the US would join. War with Japan had been anticipated for years and a strategy of waging war adopted in the 20s called [War Plan Orange](https://en.wikipedia.org/wiki/War_Plan_Orange). With Japan's expansionist policies, and the US' territories in the pacific (Guam, P...
**Bottom line up front.** Yes their was a doubt. Germany had a vocal advocacy in the US as large or larger than did the UK. The UK had historical ties and FDR. Ultimately though neither was enough to move Isolationist America. America did not declare war on Germany or Japan first. They declared war on us and only then ...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
I know the answer for the Second World War. The political parties and organizations were all pro Allies except three notable groups: [German American Bund](http://en.wikipedia.org/wiki/German_American_Bund) This was a Nazi organization supported by Germans in the USA. It evolved simultaneously with the NSDAP, but n...
During WW1, the U-Boat attacks DID have a significant effect on turning American opinion against Imperial Germany. Furthermore, it is unlikely that the US would have entered the war without the sinking of the Lusitania or another similar provocative event. It is often forgotten in this day and age that the second large...
12,677
From a British perspective in both WW1 and WW2 the USA have entered the war at a later stage and supported the allies. The decision for the US to enter the war has often been portrayed to be based on particular acts of aggression against them. The sinking of the Lusitania and the attack on Pearl Harbour. Was there ev...
2014/05/01
[ "https://history.stackexchange.com/questions/12677", "https://history.stackexchange.com", "https://history.stackexchange.com/users/1674/" ]
I know the answer for the Second World War. The political parties and organizations were all pro Allies except three notable groups: [German American Bund](http://en.wikipedia.org/wiki/German_American_Bund) This was a Nazi organization supported by Germans in the USA. It evolved simultaneously with the NSDAP, but n...
During WWII, there was less doubt about which side the US would join. War with Japan had been anticipated for years and a strategy of waging war adopted in the 20s called [War Plan Orange](https://en.wikipedia.org/wiki/War_Plan_Orange). With Japan's expansionist policies, and the US' territories in the pacific (Guam, P...
121,563
Over the years various versions of .NET have been deployed to my client machines via WSUS. Now it seems that on many machines these installations have hosed eachother, and certain .NET security updates are failing. I verified that I can run the .NET cleanup tool to get rid of all the .NET installations on a client, an...
2010/03/11
[ "https://serverfault.com/questions/121563", "https://serverfault.com", "https://serverfault.com/users/2189/" ]
.NET is backwards compatible to an extent, but you have to compare between versions of the framework. What they do state is that it is side-by-side compatible, which is the problem you're faced with. There is definitely a reason to have other versions installed. An app can be written to target a specific version and if...
No, .net is not backward compatible. MS reserves the right to make changes. 2.0 u to 3.5 are IIRC, but that is more a "lucky side". The concet is th have al frameworks installed that are needed, and an application targets the framework it was compiled against - this allows MS to clean up new versions and introduce non-...
121,563
Over the years various versions of .NET have been deployed to my client machines via WSUS. Now it seems that on many machines these installations have hosed eachother, and certain .NET security updates are failing. I verified that I can run the .NET cleanup tool to get rid of all the .NET installations on a client, an...
2010/03/11
[ "https://serverfault.com/questions/121563", "https://serverfault.com", "https://serverfault.com/users/2189/" ]
Backwards compatible is a bad term to use. .NET 1.0, 1.1, and 2.0 are their own frameworks that have no compatibility between each other. .NET 3.0 and 3.5 are super sets of the 2.0 framework, using the .NET 2.0 base framework, with additional dll's to provide additional features (3.0 included things like WCF and WWF, 3...
.NET is backwards compatible to an extent, but you have to compare between versions of the framework. What they do state is that it is side-by-side compatible, which is the problem you're faced with. There is definitely a reason to have other versions installed. An app can be written to target a specific version and if...
121,563
Over the years various versions of .NET have been deployed to my client machines via WSUS. Now it seems that on many machines these installations have hosed eachother, and certain .NET security updates are failing. I verified that I can run the .NET cleanup tool to get rid of all the .NET installations on a client, an...
2010/03/11
[ "https://serverfault.com/questions/121563", "https://serverfault.com", "https://serverfault.com/users/2189/" ]
Backwards compatible is a bad term to use. .NET 1.0, 1.1, and 2.0 are their own frameworks that have no compatibility between each other. .NET 3.0 and 3.5 are super sets of the 2.0 framework, using the .NET 2.0 base framework, with additional dll's to provide additional features (3.0 included things like WCF and WWF, 3...
No, .net is not backward compatible. MS reserves the right to make changes. 2.0 u to 3.5 are IIRC, but that is more a "lucky side". The concet is th have al frameworks installed that are needed, and an application targets the framework it was compiled against - this allows MS to clean up new versions and introduce non-...
35,153
Keeping the strategic consequences of blowing up an actual satellite as technology demonstration aside, I want to assess it from a purely scientific/technological standpoint. To demonstrate the success of a developed A-SAT missile, what could be the alternative way(s) of testing, other than blowing up a real satellit...
2019/03/29
[ "https://space.stackexchange.com/questions/35153", "https://space.stackexchange.com", "https://space.stackexchange.com/users/5975/" ]
One could in theory launch a very low orbit "satellite", about half-way around the world from where you plan to intercept it, intercept it at the peak point, and have it reenter in either case roughly at the point of origin. That starts to look a lot like a ballistic missile test, which is dangerous, and it really requ...
It's a good question. For most military capabilities it's important to make it *clear to everyone else* that you have the capability, and that it works. Making a bunch of debris and lighting up the internet was probably an integral part of the recent test by India, which makes it *a demonstration* as much as it was a t...
35,153
Keeping the strategic consequences of blowing up an actual satellite as technology demonstration aside, I want to assess it from a purely scientific/technological standpoint. To demonstrate the success of a developed A-SAT missile, what could be the alternative way(s) of testing, other than blowing up a real satellit...
2019/03/29
[ "https://space.stackexchange.com/questions/35153", "https://space.stackexchange.com", "https://space.stackexchange.com/users/5975/" ]
One could in theory launch a very low orbit "satellite", about half-way around the world from where you plan to intercept it, intercept it at the peak point, and have it reenter in either case roughly at the point of origin. That starts to look a lot like a ballistic missile test, which is dangerous, and it really requ...
My original reaction was “hit recently-launched 200kg brick of dry ice”. Think of it as the sublime target: It’ll break up, increasing the surface area immensely, and shortly be gone. Unfortunately, the radar reflectivity of bulk CO2 is really poor. Even a 1m2 corner reflector would be very hard to track. Covering ...
35,153
Keeping the strategic consequences of blowing up an actual satellite as technology demonstration aside, I want to assess it from a purely scientific/technological standpoint. To demonstrate the success of a developed A-SAT missile, what could be the alternative way(s) of testing, other than blowing up a real satellit...
2019/03/29
[ "https://space.stackexchange.com/questions/35153", "https://space.stackexchange.com", "https://space.stackexchange.com/users/5975/" ]
My original reaction was “hit recently-launched 200kg brick of dry ice”. Think of it as the sublime target: It’ll break up, increasing the surface area immensely, and shortly be gone. Unfortunately, the radar reflectivity of bulk CO2 is really poor. Even a 1m2 corner reflector would be very hard to track. Covering ...
It's a good question. For most military capabilities it's important to make it *clear to everyone else* that you have the capability, and that it works. Making a bunch of debris and lighting up the internet was probably an integral part of the recent test by India, which makes it *a demonstration* as much as it was a t...
35,311,406
For example, when we use Espresso with a listview, we're supposed to populate it prior to using it right? I couldn't figured it out how to do that properly. I mean is it possible via Espresso itself or do I need to set it up in a method with a @Before annotation. Thanks
2016/02/10
[ "https://Stackoverflow.com/questions/35311406", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1388943/" ]
If you're ok with an external Email Service then look for one that offers a Web Service API (which I assume your firewall is ok with). SendGrid for example: <https://sendgrid.com/docs/API_Reference/Web_API/mail.html>
Use Database Mail. [Click here](http://blog.sqlauthority.com/2008/08/23/sql-server-2008-configure-database-mail-send-email-from-sql-database/). Pass your mail list from c# to Database.From there write a procedure to send mail. We can easily monitor sent mails.
56,897
What is your view or argument?
2018/11/07
[ "https://philosophy.stackexchange.com/questions/56897", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/35737/" ]
Here is one concept of objectivity, taken from [SEP](https://plato.stanford.edu/entries/scientific-objectivity/). Let's take objective properties to be qualities of an object that exist independently of a perception of that object; for example, the primality of the number 7, or the atomic mass of hydrogen. The intuiti...
My childhood tutor in philosophy suggested that objectivity and subjectivity are a single spectrum. An attribute of the attributes that we assign objects. Its value on this spectrum might be estimated by how much we expect the attribute to vary from perspective to perspective. Unfortunately, the assignment of objectiv...
56,897
What is your view or argument?
2018/11/07
[ "https://philosophy.stackexchange.com/questions/56897", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/35737/" ]
Taking the [Stanford Encyclopedia of Philosophy's entry on "Emergent Properties"](https://plato.stanford.edu/entries/properties-emergent/#EmeSub) as a starting point, and asserting that all subjective properties are identical to emergent properties, then we can take all the systems and substances which are not called "...
My childhood tutor in philosophy suggested that objectivity and subjectivity are a single spectrum. An attribute of the attributes that we assign objects. Its value on this spectrum might be estimated by how much we expect the attribute to vary from perspective to perspective. Unfortunately, the assignment of objectiv...
56,897
What is your view or argument?
2018/11/07
[ "https://philosophy.stackexchange.com/questions/56897", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/35737/" ]
Here is one concept of objectivity, taken from [SEP](https://plato.stanford.edu/entries/scientific-objectivity/). Let's take objective properties to be qualities of an object that exist independently of a perception of that object; for example, the primality of the number 7, or the atomic mass of hydrogen. The intuiti...
Dr. David R. Hawkins approaches this subject in his book, 'I: Reality and Subjectivity'; what he says is that reality is always subjective, whether a thing is proven true or not in a scientific way, because it was made from a point of view and it inherently involves viewer's perspective. Also, 'Observer effect' theory...
56,897
What is your view or argument?
2018/11/07
[ "https://philosophy.stackexchange.com/questions/56897", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/35737/" ]
Taking the [Stanford Encyclopedia of Philosophy's entry on "Emergent Properties"](https://plato.stanford.edu/entries/properties-emergent/#EmeSub) as a starting point, and asserting that all subjective properties are identical to emergent properties, then we can take all the systems and substances which are not called "...
Dr. David R. Hawkins approaches this subject in his book, 'I: Reality and Subjectivity'; what he says is that reality is always subjective, whether a thing is proven true or not in a scientific way, because it was made from a point of view and it inherently involves viewer's perspective. Also, 'Observer effect' theory...
948,177
We have an Autoscaling Group in AWS that we manually scale up and down at the time being. Our ASG is currently attached to one Target Group, which has all of our prod servers in it. Before using the ASG, we would add and remove servers to the Target Groups manually from the Target Group console, and the nodes would d...
2019/01/09
[ "https://serverfault.com/questions/948177", "https://serverfault.com", "https://serverfault.com/users/494088/" ]
As described in the [linked answer](https://serverfault.com/questions/815195/aws-asg-with-application-lb-and-connection-draining) you will need an **[ASG Lifecycle hook](https://docs.aws.amazon.com/autoscaling/ec2/userguide/lifecycle-hooks.html)** to start with. Whenever the *Terminating* event occurs fire up a *Lamb...
The above shouldn't be required unless you need to do additional tasks other than just wait for the deregistration delay set on the target group, or the instance needs to be up for some time after the deregistration delay ends. Make sure to check what the deregistration delay is on the target group When the ASG scales...
68,154,536
I am running a piece of code in R. Its parallelized, running in 8 cores. Interestingly enough, when my memory usage reaches 15 and something GB, it drops to 10GB (my max memory is 16GB). I am curious of what is actually happening in the background? In the end, I get the complete data from all 8 cores, so I assume that ...
2021/06/27
[ "https://Stackoverflow.com/questions/68154536", "https://Stackoverflow.com", "https://Stackoverflow.com/users/11209750/" ]
It's impossible to say without the specific code, but most likely, it's due to R's garbage collection running only when necessary and only when more memory needs to be allocated - unlike other languages like Python, R does not immediately garbage-collect objects when they reach out of scope, and in particular if the R ...
Yes, you are right pc sometimes usage the hard disk as memory. it is known as Swap memory. When your ram gets overloaded it sends some of the data to the hard and stores them there temporarily.
33,020
I want to develop a very simple Extension which : * searches the current contact\_id * then verifies if he is recorded for a given event (event\_id as a parameter) * then, depending on the result, echoes a message or opens an URL. I read that, to develop an extension, I first had to : * install Civix, * which requir...
2019/09/12
[ "https://civicrm.stackexchange.com/questions/33020", "https://civicrm.stackexchange.com", "https://civicrm.stackexchange.com/users/2787/" ]
git and composer aren't necessary to install civix. In the [README](https://github.com/totten/civix/blob/master/README.md) it suggests multiple ways to install civix. The first one is a simple download: <https://download.civicrm.org/civix/civix.phar>.
Yes, you could also just create a folder with the name of your extension in the extension folder of CiviCRM, and code from there. But that requires you to understand the folder and file structure required for extensions so it will actually be easier with civix. It is not a prerequisite but it helps a lot!
194,747
> > He crashed the car into a wreck where the police inspected the debris. > > > I am assuming where is a pronoun here. The question is whether the word that precede where must be a location. From most examples, it seems that if it's a pronoun it must refer to a noun preceding it unless it's at the start of a sent...
2019/01/30
[ "https://ell.stackexchange.com/questions/194747", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/88150/" ]
For clarity, I would say *more eccentric than planet Earth's*, the possessive clarifying that the orbit of Earth is what is discussed. Otherwise the comparison is between orbits and Earth as a planet, which may be the source of the error.
The sentence appears to compare "orbits" with "planet Earth". This is probably not what the writer intended. Instead they intended to compare "orbits of comets" with "the orbit of the planet Earth". > > The orbits of comets are more eccentric than that of planet Earth... > > > But as noted in a comment, native sp...
50,972
It is commonplace in Christianity today to close prayers "in Jesus' name, amen". I don't see any prayer in the apostolic writings prayed in this way. When does this first emerge in history?
2016/08/01
[ "https://christianity.stackexchange.com/questions/50972", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/30170/" ]
A definitive answer to this question will be elusive, but here are some preliminary findings that give some idea and hopefully inspire more research. As we'll see, the exact English phrase, "in Jesus' name, amen," appears to be a fairly recent development, as do its variations. But it appears earlier in other language...
"Whatever you ask in my name, this I will do, that the Father may be glorified in the Son. If you ask me anything in my name, I will do it." John 14:13-14 (ESV) Was the beginning of the use when read literally by the denotation. It is shown to by more so of a hypothetical sense according to: Lincoln, Andrew (2005). G...
50,972
It is commonplace in Christianity today to close prayers "in Jesus' name, amen". I don't see any prayer in the apostolic writings prayed in this way. When does this first emerge in history?
2016/08/01
[ "https://christianity.stackexchange.com/questions/50972", "https://christianity.stackexchange.com", "https://christianity.stackexchange.com/users/30170/" ]
A definitive answer to this question will be elusive, but here are some preliminary findings that give some idea and hopefully inspire more research. As we'll see, the exact English phrase, "in Jesus' name, amen," appears to be a fairly recent development, as do its variations. But it appears earlier in other language...
I don't think we will know exactly who the first person was who prayed in the name of Jesus, or exactly when this happened. However, in Acts 3:6 we see Peter use the name of Jesus in healing: > > Then Peter said, "Silver or gold I do not have, but what I do have I > give you. In the name of Jesus Christ of Nazareth,...
513
What is the best way forward with answers that are severely edited; to the point where they no longer hold their original intent? In specific, I'm referencing [this post](https://networkengineering.stackexchange.com/a/19495/3191): ![Roy Royston's Answer](https://i.stack.imgur.com/NvjFh.png) It's signaling the wrong t...
2015/06/29
[ "https://networkengineering.meta.stackexchange.com/questions/513", "https://networkengineering.meta.stackexchange.com", "https://networkengineering.meta.stackexchange.com/users/3191/" ]
I think it's very hard for the community to handle this properly. You can't expect every voter to review his or her voting decision (up or down) after every edit, it just won't happen. The smart thing to do in this case is for the poster not to change a reply so dramatically, but just delete the old answer and post a n...
Actually, as I read the original question, the intent was to match a MAC within an L2TP payload. If that's the case, then Royston's original answer is 100% correct; there's no ACL language to look into the payload of a frame. As such, his edit merely looks like he's trying to copy-cat a positively voted answer. Verdic...
15,411,220
**Can anyone help me to code in WinRT for PAUSING and RESUMING recording audio files.** Classes used are as follows: **IRamdomAccessStream** for storing captured voice to random stream. **Windows.Media.Capture.MediaCapture** for capturing audio voice. **Windows.Storage.StorageFile** for storing file. Please help m...
2013/03/14
[ "https://Stackoverflow.com/questions/15411220", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2136022/" ]
Not sure why this had been down voted. Have a look at [this sample](http://code.msdn.microsoft.com/Media-Capture-Sample-adf87622), it should get you started.
The sample linked above provides indeed a good start about how to work with audio/video capture within a WinRT app. However, there's no scenario in the samples replying the original question: It seems indeed there are no methods that support pausing in MediaCapture. The only Store App available that supports pausing wh...
62,391
Could someone help me find what kind of illness is that and how to treat it? [![Bottom](https://i.stack.imgur.com/kVKNL.jpg)](https://i.stack.imgur.com/kVKNL.jpg) [![Tree](https://i.stack.imgur.com/NX3wz.jpg)](https://i.stack.imgur.com/NX3wz.jpg)
2022/05/23
[ "https://gardening.stackexchange.com/questions/62391", "https://gardening.stackexchange.com", "https://gardening.stackexchange.com/users/39555/" ]
Looks like it might be oedema caused by waterlogged roots. It occurs when roots take up more water than the plant can use or evaporate away through pores on its leaves. It may be very humid out or the water too warm. Make sure you wait until the soil is at least dry-ish before watering and that you have drainage holes ...
Looks like scale. Search the questions on this site using the words “bay” and “scale” and you will see good answers.
102,832
I noticed messages were not being sent from the Gmail app. I checked to make sure auto sync is enabled and it is. Any ideas? Beside the message it just says sending. I have other email accounts used by the Gmail app (e.g. yahoo) and they work fine. Also I can send and receive find from Outlook on my computer. I don't k...
2015/03/17
[ "https://android.stackexchange.com/questions/102832", "https://android.stackexchange.com", "https://android.stackexchange.com/users/17808/" ]
From the phone app, tap the Action Overflow button (...) in the top-right corner, then tap Call History. Tap any entry, then Details, and it will show you the date, time, and LENGTH of call, or calls (individually, in a list) if multiple were grouped together.
To my knowledge, there is not (and never has been) a native way to achieve this. However, that doesn't mean it's not possible: for most of the details, it's just the frontend that's missing (data is available in the resp. "data providers"). But to investigate the data, you would need a 3rd party app. There's a manuall...
102,832
I noticed messages were not being sent from the Gmail app. I checked to make sure auto sync is enabled and it is. Any ideas? Beside the message it just says sending. I have other email accounts used by the Gmail app (e.g. yahoo) and they work fine. Also I can send and receive find from Outlook on my computer. I don't k...
2015/03/17
[ "https://android.stackexchange.com/questions/102832", "https://android.stackexchange.com", "https://android.stackexchange.com/users/17808/" ]
From the phone app, tap the Action Overflow button (...) in the top-right corner, then tap Call History. Tap any entry, then Details, and it will show you the date, time, and LENGTH of call, or calls (individually, in a list) if multiple were grouped together.
Here is the solution (but needs root in some cases). It wasn't showing for me too even after updating the Contacts app. And then I found that the Contacts app on my relative's phone shows: > > ![](https://i.stack.imgur.com/kcp5Zl.jpg) > > > I realize that she had an old version. Even if I deleted all the updates,...
102,832
I noticed messages were not being sent from the Gmail app. I checked to make sure auto sync is enabled and it is. Any ideas? Beside the message it just says sending. I have other email accounts used by the Gmail app (e.g. yahoo) and they work fine. Also I can send and receive find from Outlook on my computer. I don't k...
2015/03/17
[ "https://android.stackexchange.com/questions/102832", "https://android.stackexchange.com", "https://android.stackexchange.com/users/17808/" ]
From the phone app, tap the Action Overflow button (...) in the top-right corner, then tap Call History. Tap any entry, then Details, and it will show you the date, time, and LENGTH of call, or calls (individually, in a list) if multiple were grouped together.
In the 'Recent Calls' list or 'Recents', touch the name of the person/business. NOT the picture or letter icon/initial, which will open the contact - or the phone icon, which will call them again. If you touch the Name itself, it should drop down another menu with "Video call", "Message" AND "History". Touch History a...
15,756,140
Have this design problem and trying to find a best way to implement it using JMS. Web App has single Listener and multiple Producer and multiple WorkerBee. Listener pushes messages from its queue to WorkerBee. All of the messages produced are queued in a Listener. I want to implement a process than can send messages ...
2013/04/02
[ "https://Stackoverflow.com/questions/15756140", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1871879/" ]
Messaging is good choice for such task. I think you should use **Apache Camel** framework as routing platform for described purposes. It allows to divide business logic from integration level in quite graceful way. **Camel** supports plenty of components "out-of-box" including [JMS endpoints](http://camel.apache.org/)...
JMS sounds a good option, since you have multiple instances of WorkerBee, make all WorkerBee listen to a single queue, e.g. to InWorkBeeQueue. Now you can publish messages from Web App listener to InWorkBeeQueue. Write a simple java JMS producer code to publish messages to this queue. Depending on whichever instance o...