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 |
|---|---|---|---|---|---|
165,978 | We're trying to write a custom scripting language. There has been a suggestion to make the language forgiving by providing **case insensitive** keywords.
I personally do not like the idea, but there are few people in my team leaning towards it, saying it will make the end user happy! Examples of languages like FORTRAN... | 2012/09/24 | [
"https://softwareengineering.stackexchange.com/questions/165978",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/61418/"
] | Ask yourself who the end user is. If it's meant to be written by someone with programming experience in C or Javscript, or IT experience in Unix, then case sensitivity is probably the right thing to do, because that's what the user expects. But for most end-users, even power-users, this will be confusing.
VB/VBA/VBScr... | I can't believe that someone said "case sensitivity makes reading code easier".
It most certainly does not! I've looked over a colleague's shoulder at variables called Company and company (public variable Company, matched private variable company) and his choice of font and colour makes it incredibly difficult to tell... |
165,978 | We're trying to write a custom scripting language. There has been a suggestion to make the language forgiving by providing **case insensitive** keywords.
I personally do not like the idea, but there are few people in my team leaning towards it, saying it will make the end user happy! Examples of languages like FORTRAN... | 2012/09/24 | [
"https://softwareengineering.stackexchange.com/questions/165978",
"https://softwareengineering.stackexchange.com",
"https://softwareengineering.stackexchange.com/users/61418/"
] | From my personal experience I don't see a big difference between case sensitive and insensitive languages.
More important thing is naming and structural conventions that a programmer should keep in his code and no compiler or parser checks it for him. If you stick to some kind of rules you will easily know a proper na... | You shouldn't introduce case insensitivity without a very good reason to do so. For example, dealing with case comparisons with Unicode can be a bitch. The case sensitivity (or lack thereof) of older languages is immaterial, as their needs were *very* different.
Programmers in this era expect case sensitivity. |
1,509,564 | I have a list of objects, where each object has a boolean property named "enabled". I want to remember the state of these objects accross application sessions. To do this I have at least 2 options, using the registry or using, the more .net approach, app.config file. I would prefer to do the latter.
However, while sta... | 2009/10/02 | [
"https://Stackoverflow.com/questions/1509564",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/183103/"
] | You can also use the [IsolatedStorage](http://msdn.microsoft.com/en-us/library/3ak841sy(VS.80).aspx) | I would serialize the objects to an xml file on exit, and deserialize on startup. This way as your objects change, all properties are maintained. |
1,509,564 | I have a list of objects, where each object has a boolean property named "enabled". I want to remember the state of these objects accross application sessions. To do this I have at least 2 options, using the registry or using, the more .net approach, app.config file. I would prefer to do the latter.
However, while sta... | 2009/10/02 | [
"https://Stackoverflow.com/questions/1509564",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/183103/"
] | You could use application settings (.settings file) and store your state information there as a key-value structure (dictionary, list of custom objects or whatever).
Here you can find more details about using app settings and user settings in C#: <http://msdn.microsoft.com/en-us/library/aa730869%28VS.80%29.aspx>
The ap... | I would serialize the objects to an xml file on exit, and deserialize on startup. This way as your objects change, all properties are maintained. |
1,183,715 | I am a heavy Linux user, both professional and private. Since I almost never use Microsoft Windows I don't know very much about it so apologies if this is a really stupid question.
There is one particular piece of software that I use on a regular basis (it's for tax calculation) for which there is only a Windows versi... | 2017/02/28 | [
"https://superuser.com/questions/1183715",
"https://superuser.com",
"https://superuser.com/users/702474/"
] | I had to just do this recently, there are many option here:
[<https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/>](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/)
Microsoft Provides them for free to Web Developers but it is a fully functional Windows OS, just choose which version of ... | You can use the [Windows USB/DVD Download Tool](https://www.microsoft.com/en-us/download/windows-usb-dvd-download-tool) provided by Microsoft to download and create a bootable copy of Windows.
You don't need a license to install, but Windows will start nagging after a while if you don't provide it with one after insta... |
1,183,715 | I am a heavy Linux user, both professional and private. Since I almost never use Microsoft Windows I don't know very much about it so apologies if this is a really stupid question.
There is one particular piece of software that I use on a regular basis (it's for tax calculation) for which there is only a Windows versi... | 2017/02/28 | [
"https://superuser.com/questions/1183715",
"https://superuser.com",
"https://superuser.com/users/702474/"
] | You can use the [Windows USB/DVD Download Tool](https://www.microsoft.com/en-us/download/windows-usb-dvd-download-tool) provided by Microsoft to download and create a bootable copy of Windows.
You don't need a license to install, but Windows will start nagging after a while if you don't provide it with one after insta... | Download the [Windows 10 Media Creation Tool](https://www.microsoft.com/en-ca/software-download/windows10)
It does require that you run it on a valid windows machine but allows you to create bootable media (iso/usb) for different versions of Windows 10 home etc. and 32 or 64bit |
1,183,715 | I am a heavy Linux user, both professional and private. Since I almost never use Microsoft Windows I don't know very much about it so apologies if this is a really stupid question.
There is one particular piece of software that I use on a regular basis (it's for tax calculation) for which there is only a Windows versi... | 2017/02/28 | [
"https://superuser.com/questions/1183715",
"https://superuser.com",
"https://superuser.com/users/702474/"
] | You can use the [Windows USB/DVD Download Tool](https://www.microsoft.com/en-us/download/windows-usb-dvd-download-tool) provided by Microsoft to download and create a bootable copy of Windows.
You don't need a license to install, but Windows will start nagging after a while if you don't provide it with one after insta... | Download the latest Windows 10 ISO image, mount it a new VM and install like normal. <http://www.thewindowsclub.com/download-windows-10-iso-disc-image>
Windows 10 will function indefinitely in a limited manner, but for most things it will work fine, I have been running the same VM install for almost a year with no iss... |
1,183,715 | I am a heavy Linux user, both professional and private. Since I almost never use Microsoft Windows I don't know very much about it so apologies if this is a really stupid question.
There is one particular piece of software that I use on a regular basis (it's for tax calculation) for which there is only a Windows versi... | 2017/02/28 | [
"https://superuser.com/questions/1183715",
"https://superuser.com",
"https://superuser.com/users/702474/"
] | I had to just do this recently, there are many option here:
[<https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/>](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/)
Microsoft Provides them for free to Web Developers but it is a fully functional Windows OS, just choose which version of ... | Download the [Windows 10 Media Creation Tool](https://www.microsoft.com/en-ca/software-download/windows10)
It does require that you run it on a valid windows machine but allows you to create bootable media (iso/usb) for different versions of Windows 10 home etc. and 32 or 64bit |
1,183,715 | I am a heavy Linux user, both professional and private. Since I almost never use Microsoft Windows I don't know very much about it so apologies if this is a really stupid question.
There is one particular piece of software that I use on a regular basis (it's for tax calculation) for which there is only a Windows versi... | 2017/02/28 | [
"https://superuser.com/questions/1183715",
"https://superuser.com",
"https://superuser.com/users/702474/"
] | I had to just do this recently, there are many option here:
[<https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/>](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/)
Microsoft Provides them for free to Web Developers but it is a fully functional Windows OS, just choose which version of ... | Download the latest Windows 10 ISO image, mount it a new VM and install like normal. <http://www.thewindowsclub.com/download-windows-10-iso-disc-image>
Windows 10 will function indefinitely in a limited manner, but for most things it will work fine, I have been running the same VM install for almost a year with no iss... |
1,521,880 | How to connect to different WI-FI with static and dynamic IP addresses?
I have any user with loptop that connect to Wi-Fi inside Co and I set static IP for them
But when users go to their home and connect to home Wi-Fi, they can't connect to internet, until they change IP to dynamic (DHCP)
What is the solution for... | 2020/02/01 | [
"https://superuser.com/questions/1521880",
"https://superuser.com",
"https://superuser.com/users/1135446/"
] | If you want a user to always have the same IP Address within the company, but also have the freedom to use dynamic addressing at other locations, then the best way to do that is leave the computer at default settings - DHCP automatic - & instead reserve the address on your router\* using the computer's MAC address.
Th... | In Windows you can set static or dynamic IP based on Wi-Fi SSID.
Go to *Settings > Network and Internet > Wi-Fi* and select *"Manage known networks"*
Select the SSID of your network, then *Properties* and click "Edit" under IP Settings and set it to *"Manual"*
You can then set a static IP for just your work Wi-Fi S... |
1,521,880 | How to connect to different WI-FI with static and dynamic IP addresses?
I have any user with loptop that connect to Wi-Fi inside Co and I set static IP for them
But when users go to their home and connect to home Wi-Fi, they can't connect to internet, until they change IP to dynamic (DHCP)
What is the solution for... | 2020/02/01 | [
"https://superuser.com/questions/1521880",
"https://superuser.com",
"https://superuser.com/users/1135446/"
] | If you want a user to always have the same IP Address within the company, but also have the freedom to use dynamic addressing at other locations, then the best way to do that is leave the computer at default settings - DHCP automatic - & instead reserve the address on your router\* using the computer's MAC address.
Th... | If you're the administrator of that first network, I would argue that the solution is to stop forcing your users to use static IP configuration in the first place.
Instead, set up DHCP and assign *static leases* (aka DHCP reservations) based on each user's MAC address or DHCP Client ID. That way you will still have st... |
1,521,880 | How to connect to different WI-FI with static and dynamic IP addresses?
I have any user with loptop that connect to Wi-Fi inside Co and I set static IP for them
But when users go to their home and connect to home Wi-Fi, they can't connect to internet, until they change IP to dynamic (DHCP)
What is the solution for... | 2020/02/01 | [
"https://superuser.com/questions/1521880",
"https://superuser.com",
"https://superuser.com/users/1135446/"
] | If you're the administrator of that first network, I would argue that the solution is to stop forcing your users to use static IP configuration in the first place.
Instead, set up DHCP and assign *static leases* (aka DHCP reservations) based on each user's MAC address or DHCP Client ID. That way you will still have st... | In Windows you can set static or dynamic IP based on Wi-Fi SSID.
Go to *Settings > Network and Internet > Wi-Fi* and select *"Manage known networks"*
Select the SSID of your network, then *Properties* and click "Edit" under IP Settings and set it to *"Manual"*
You can then set a static IP for just your work Wi-Fi S... |
20,856,091 | [THIS](https://stackoverflow.com/questions/14350484/android-eclipse-import-existing-code) is a duplicate name for the question but unfortunately doesn't serve.
I'm trying to import a [project](http://wissamfawaz.com/COALectures/16thSet.zip) called *MakeToastApp*. When importing, three different types of files are impo... | 2013/12/31 | [
"https://Stackoverflow.com/questions/20856091",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2898754/"
] | Before you import do following thing.
Delete everything except src, res folders, Manifest.xml file.
try this.. | Not sure whether you are facing this problem. But you can try another thing instead. Create an emptry project then copy the contents to your project manually |
20,856,091 | [THIS](https://stackoverflow.com/questions/14350484/android-eclipse-import-existing-code) is a duplicate name for the question but unfortunately doesn't serve.
I'm trying to import a [project](http://wissamfawaz.com/COALectures/16thSet.zip) called *MakeToastApp*. When importing, three different types of files are impo... | 2013/12/31 | [
"https://Stackoverflow.com/questions/20856091",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2898754/"
] | Before you import do following thing.
Delete everything except src, res folders, Manifest.xml file.
try this.. | Follow these steps:
* File->Import->General->Existing Projects into Workspace,
* Then Select root directory: /path/to/project Projects->Select All
* UNCHECK both "Copy projects into workspace" and "Add project to
working sets"
* Finish
If the problem is still exist then sure you have problem with your project. Means ... |
77,143 | I recently canceled my AdSense account and I want to re-apply for a new one, with a different email.
My payee name and other informations will be exactly the same as my canceled account. Can I open a new AdSense account using the same information? My previous account no longer exists.
If I can, how long I have to wai... | 2015/02/12 | [
"https://webmasters.stackexchange.com/questions/77143",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/49733/"
] | Gracey addresses this question in the [Google Product Forums](https://productforums.google.com/d/msg/adsense/Y1XBQsDo1vE/zRpjuce7g40J)
>
> If your Adsense account was cancelled, then you can only reapply for a new AdSense account using a completely NEW Google account and NEW gmail account.
>
>
> You can't sign up a... | I guess, if you have already cancelled your account, you can reapply - even with the same (or different) email id and same bank account details.
Adsense policy just require you to have atmost one account and it seems, you now have none and so can surely apply. |
77,143 | I recently canceled my AdSense account and I want to re-apply for a new one, with a different email.
My payee name and other informations will be exactly the same as my canceled account. Can I open a new AdSense account using the same information? My previous account no longer exists.
If I can, how long I have to wai... | 2015/02/12 | [
"https://webmasters.stackexchange.com/questions/77143",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/49733/"
] | Yes, you can apply for a new account, so that you have a new mail ID and a new bank account.
Google Adsense blocks our account only when we do not work according to its guidelines. | I guess, if you have already cancelled your account, you can reapply - even with the same (or different) email id and same bank account details.
Adsense policy just require you to have atmost one account and it seems, you now have none and so can surely apply. |
77,143 | I recently canceled my AdSense account and I want to re-apply for a new one, with a different email.
My payee name and other informations will be exactly the same as my canceled account. Can I open a new AdSense account using the same information? My previous account no longer exists.
If I can, how long I have to wai... | 2015/02/12 | [
"https://webmasters.stackexchange.com/questions/77143",
"https://webmasters.stackexchange.com",
"https://webmasters.stackexchange.com/users/49733/"
] | Gracey addresses this question in the [Google Product Forums](https://productforums.google.com/d/msg/adsense/Y1XBQsDo1vE/zRpjuce7g40J)
>
> If your Adsense account was cancelled, then you can only reapply for a new AdSense account using a completely NEW Google account and NEW gmail account.
>
>
> You can't sign up a... | Yes, you can apply for a new account, so that you have a new mail ID and a new bank account.
Google Adsense blocks our account only when we do not work according to its guidelines. |
806,515 | ...what's next?
After you defined what actors do what actions, which way do you go? Do you model the database or do you prefer to start with the classes?
I thought the better approach was to start with a class-like modelling diagram, to focus on relationships between objects.
This has proven to be wrong because I wen... | 2009/04/30 | [
"https://Stackoverflow.com/questions/806515",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/57095/"
] | I've had success using [Robustness Analysis](http://www.ddj.com/architect/184414712).
>
> This article focuses on robustness
> analysis, which involves analyzing the
> narrative text of use cases and
> identifying a first-guess set of
> objects that will participate in each
> use case, then classifying these
> ... | If using Test Driven Development, write your unit tests first.
Your classes will be outlined as you go.
You can choose to develop your business logic without a database (mock or stub objects) or develop your database as you go on with your tests.
Remember your database and domain model shouldn't map one on one with e... |
5,393 | You see these tag views on quite a few blogs and I'm curious what SO used in their recent tags implementation...
I'm thinking more along the lines of the jQuery tool used or however else it was presented... | 2009/07/14 | [
"https://meta.stackexchange.com/questions/5393",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/55747/"
] | Opera mini [doesn't support AJAX](http://dev.opera.com/articles/view/javascript-support-in-opera-mini-4/), the key to the entire voting process, as well as commenting etc. I personally do not feel they should go through the effort of making these features degrade nicely, since it is a lot of extra work for a very limit... | I feel that Opera/WinCE/iPhone/what-have-you-platform tweaks don't really belong in *the* StackOverflow codebase. Instead, this need should be served by third-party apps built using the (hopefully) forthcoming API.
For one, the experience would be a lot nicer. There's also not much point in the developers working to s... |
5,393 | You see these tag views on quite a few blogs and I'm curious what SO used in their recent tags implementation...
I'm thinking more along the lines of the jQuery tool used or however else it was presented... | 2009/07/14 | [
"https://meta.stackexchange.com/questions/5393",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/55747/"
] | Opera mini [doesn't support AJAX](http://dev.opera.com/articles/view/javascript-support-in-opera-mini-4/), the key to the entire voting process, as well as commenting etc. I personally do not feel they should go through the effort of making these features degrade nicely, since it is a lot of extra work for a very limit... | Opera Mini supports some Ajax, and works fine on the Stack sites. I've been commenting, answering, voting, tagging, etc, quite happily with it for over a week :) |
5,393 | You see these tag views on quite a few blogs and I'm curious what SO used in their recent tags implementation...
I'm thinking more along the lines of the jQuery tool used or however else it was presented... | 2009/07/14 | [
"https://meta.stackexchange.com/questions/5393",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/55747/"
] | Opera mini [doesn't support AJAX](http://dev.opera.com/articles/view/javascript-support-in-opera-mini-4/), the key to the entire voting process, as well as commenting etc. I personally do not feel they should go through the effort of making these features degrade nicely, since it is a lot of extra work for a very limit... | I can vote on questions and answers (but not on comments), view vote splits, and vote to close questions with Opera mini on my BlackBerry, but I cannot post answers or comments. Ian's [point](https://meta.stackexchange.com/questions/5390/support-for-opera-mini-pocket-pc/9432#9432) is valid, but it'd be nice to have at ... |
38,825 | I'm just getting started looking at bitcoin and it's protocol, so this might be an incredibly stupid question. Why does bitcoin have a separate concept of transactions? Wouldn't it be better for each block to have a bunch of inputs and a bunch of outputs without separating them as individual transactions? This way it's... | 2015/07/27 | [
"https://bitcoin.stackexchange.com/questions/38825",
"https://bitcoin.stackexchange.com",
"https://bitcoin.stackexchange.com/users/27653/"
] | An interesting idea, but I don't think it technically works out.
1. Transactions include a digital signature of the set of inputs and outputs in a transaction. This signature could not be validated if the inputs and outputs where not linked.
2. Since signatures wouldn't be tied to specific outputs/inputs, what would ... | Because when someone creates a transaction, they don't know what other transactions will be included in the same block... and it is the transactions that are signed by the sender, not the whole block.
There is a mechanism in between, namely CoinJoin, where multiple transaction creators/senders collaborate to create a ... |
90,196 | This situation happened in the last session I ran:
Evil wizard casts a Wall of Fire across the middle of a room. She's on one side, and the PCs are on the other. The party wizard decides he's going to cast a Cone of Cold through the Wall of Fire. My gut tells me this shouldn't work, but there's nothing in the rules th... | 2016/11/09 | [
"https://rpg.stackexchange.com/questions/90196",
"https://rpg.stackexchange.com",
"https://rpg.stackexchange.com/users/26796/"
] | Yes.
----
There is no written rule that says that area of effect magical effects block other area of effect magics. However, the two spells, by the rules, also don't interact in any way. The best your party wizard could hope for is to hit the evil wizard with the *Cone of Cold* and end his concentration on *Wall of Fi... | RAW I think the Cone passes through just like any other effect would, but...
In cases like this with *clearly* opposing spell effects I treat them as opposing Dispel Magics (As it is unclear if the Wall of Fire should block the Cone of Cold or if the Cone of Cold would blast a breach in the Wall of Fire or even put it... |
90,196 | This situation happened in the last session I ran:
Evil wizard casts a Wall of Fire across the middle of a room. She's on one side, and the PCs are on the other. The party wizard decides he's going to cast a Cone of Cold through the Wall of Fire. My gut tells me this shouldn't work, but there's nothing in the rules th... | 2016/11/09 | [
"https://rpg.stackexchange.com/questions/90196",
"https://rpg.stackexchange.com",
"https://rpg.stackexchange.com/users/26796/"
] | Yes.
----
There is no written rule that says that area of effect magical effects block other area of effect magics. However, the two spells, by the rules, also don't interact in any way. The best your party wizard could hope for is to hit the evil wizard with the *Cone of Cold* and end his concentration on *Wall of Fi... | Nothing stops the cone
======================
There is nothing in the rules that would disallow this. However, it does sound like a great opportunity to grant advantage on the save to resist the *cone of cold*.
DMG 239:
>
> Consider granting advantage when:
>
>
> * …
> * Some aspect of the environment contribut... |
27,582 | Is *peculiar* completely interchangeable with *strange*? can both be used in exactly the same contexts? | 2011/05/28 | [
"https://english.stackexchange.com/questions/27582",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/7210/"
] | *Peculiar* can be used as a synonym for *strange*. However, *peculiar* originally has the meaning "particular to a given place or time; unique", and it is sometimes used that way today. And the connotations of the words still differ: *strange* carries a slight hint of disapproval, while *peculiar* suggests curiosity an... | Let's see what Oxford has to say on this one. Here are the links: [Strange](http://oxforddictionaries.com/definition/strange), and [Peculiar](http://oxforddictionaries.com/definition/peculiar).
Strange conveys the notion of *unfamiliarity* or *oddity*.
Peculiar on the other hand signifies *particular*, *special*, or... |
27,582 | Is *peculiar* completely interchangeable with *strange*? can both be used in exactly the same contexts? | 2011/05/28 | [
"https://english.stackexchange.com/questions/27582",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/7210/"
] | *Peculiar* can be used as a synonym for *strange*. However, *peculiar* originally has the meaning "particular to a given place or time; unique", and it is sometimes used that way today. And the connotations of the words still differ: *strange* carries a slight hint of disapproval, while *peculiar* suggests curiosity an... | In my experience there is a slight connotational difference.
Both words refer to something that is unfamiliar to the observer. However, each word implies a slightly different reaction to the unfamiliar object or person. *Peculiar* tends to imply that the unfamiliar object draws interest and further scrutiny. Converse... |
27,582 | Is *peculiar* completely interchangeable with *strange*? can both be used in exactly the same contexts? | 2011/05/28 | [
"https://english.stackexchange.com/questions/27582",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/7210/"
] | *Peculiar* can be used as a synonym for *strange*. However, *peculiar* originally has the meaning "particular to a given place or time; unique", and it is sometimes used that way today. And the connotations of the words still differ: *strange* carries a slight hint of disapproval, while *peculiar* suggests curiosity an... | No.
Example:
In America, in December, peculiar decorations are publicly displayed. |
27,582 | Is *peculiar* completely interchangeable with *strange*? can both be used in exactly the same contexts? | 2011/05/28 | [
"https://english.stackexchange.com/questions/27582",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/7210/"
] | Let's see what Oxford has to say on this one. Here are the links: [Strange](http://oxforddictionaries.com/definition/strange), and [Peculiar](http://oxforddictionaries.com/definition/peculiar).
Strange conveys the notion of *unfamiliarity* or *oddity*.
Peculiar on the other hand signifies *particular*, *special*, or... | No.
Example:
In America, in December, peculiar decorations are publicly displayed. |
27,582 | Is *peculiar* completely interchangeable with *strange*? can both be used in exactly the same contexts? | 2011/05/28 | [
"https://english.stackexchange.com/questions/27582",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/7210/"
] | In my experience there is a slight connotational difference.
Both words refer to something that is unfamiliar to the observer. However, each word implies a slightly different reaction to the unfamiliar object or person. *Peculiar* tends to imply that the unfamiliar object draws interest and further scrutiny. Converse... | No.
Example:
In America, in December, peculiar decorations are publicly displayed. |
447,136 | I am currently working on a heated glove project using a Buck-Boost converter to adjust the temperature of the glove. I'm using the [LTC3112EDHD#TRPBF QFN](https://www.analog.com/media/en/technical-documentation/data-sheets/3112fd.pdf) Buck-Boost IC to control the Buck-Boost functionality. I just finished soldering my ... | 2019/07/07 | [
"https://electronics.stackexchange.com/questions/447136",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/225997/"
] | Your DC-DC won't work at all without at least one of the feedback transistors being turned on.
When they are turned on the VCE(sat) is directly in series with your feedback voltage. While VCE(sat) will likely only be a few mV in this case it still has an impact on the accuracy of you V(out)
You should be extra car... | I would add a comment instead of an answer but my "reputation" is not high enough.
Check the following:
(1) Vin, Run and PWM pins. (Start with PWM of 0% duty)
(2) Check the FB pin is connected to the voltage divider [This needs feed back to work]
(3) Check if SW1 and SW2, are doing anything.
Never mind. Check th... |
22,839 | I have seen this phrase bandied about from time to time, usually in more "academic" works; my problem is that I remember it rarely being applied to children, as a direct translation might imply ("terrible infant"?) I think I usually just skipped over the meaning when I read it, so I don't know how to use it. What are c... | 2011/04/27 | [
"https://english.stackexchange.com/questions/22839",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/4763/"
] | *Edited to add this prequel —* the most common use of the phrase does not include the French article. See the statistics from [Google ngram](http://ngrams.googlelabs.com/graph?content=l%27enfant%20terrible,enfant%20terrible&year_start=1800&year_end=2000&corpus=0&smoothing=3), for example:
![l'enfant terrible vs. enfan... | You would use this expression to qualify one individual or entity who would behave badly with respect to the standards of its community.
In the past, when in families you had a child who distinguished himself by being more unruly than the others, behaving badly, breaking things or being more aggressive with his parent... |
25,289 | On my team, we're starting to work with kanban and have column limits applied. One of our members will work frequently work in the evenings or at night and is expressing that the column limits prevent him from doing work as in the evenings all the slots are generally full.
We currently have a column limit of our numbe... | 2018/11/20 | [
"https://pm.stackexchange.com/questions/25289",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/34153/"
] | It's all down to what you need.
**Ask your team:** why there's this code limit in place?
* **Potential Answer #1:** Because we must not work on development if we have pending code reviews.
* **Potential Action #1:** Your team must either work together to avoid leaving a lot pending code reviews or the night shift guy... | Though not specified, I infer that you have one developer 'owning' each task.
You can fix this by changing that. Either:
A) The night-coder picks one of the in-progress issues and starts working on it. Make sure you're making good use of source control!
B) The day-coders pair up more on issues, leaving more availabl... |
25,289 | On my team, we're starting to work with kanban and have column limits applied. One of our members will work frequently work in the evenings or at night and is expressing that the column limits prevent him from doing work as in the evenings all the slots are generally full.
We currently have a column limit of our numbe... | 2018/11/20 | [
"https://pm.stackexchange.com/questions/25289",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/34153/"
] | Though not specified, I infer that you have one developer 'owning' each task.
You can fix this by changing that. Either:
A) The night-coder picks one of the in-progress issues and starts working on it. Make sure you're making good use of source control!
B) The day-coders pair up more on issues, leaving more availabl... | When I read your question, my initial thought was you were working multiple shifts and that the same task was being worked upon by multiple people - some developer working during the day and some at night - sort of a disjointed paired-programming :)
But it looks like that's not the case. Each person is working on the... |
25,289 | On my team, we're starting to work with kanban and have column limits applied. One of our members will work frequently work in the evenings or at night and is expressing that the column limits prevent him from doing work as in the evenings all the slots are generally full.
We currently have a column limit of our numbe... | 2018/11/20 | [
"https://pm.stackexchange.com/questions/25289",
"https://pm.stackexchange.com",
"https://pm.stackexchange.com/users/34153/"
] | It's all down to what you need.
**Ask your team:** why there's this code limit in place?
* **Potential Answer #1:** Because we must not work on development if we have pending code reviews.
* **Potential Action #1:** Your team must either work together to avoid leaving a lot pending code reviews or the night shift guy... | When I read your question, my initial thought was you were working multiple shifts and that the same task was being worked upon by multiple people - some developer working during the day and some at night - sort of a disjointed paired-programming :)
But it looks like that's not the case. Each person is working on the... |
799 | Are users able to upload their own pictures into these diagrams on this site? | 2011/03/14 | [
"https://webapps.meta.stackexchange.com/questions/799",
"https://webapps.meta.stackexchange.com",
"https://webapps.meta.stackexchange.com/users/-1/"
] | You need to have a reputation of 10 or more to be able to post pictures.
The [privilege page](https://webapps.stackexchange.com/privileges) explains them all. The [new user privilege](https://webapps.stackexchange.com/privileges/new-user) is the on that covers this.
In the meantime just post a link to the image and s... | Sure -- as long as you have more than 10 rep, you can add images. Use the image button on the toolbar to do so.
[](https://i.stack.imgur.com/znWtz.png)
(source: [stackoverflow.com](http://blog.stackoverflow.com/wp-content/uploads/native-image-uploads-imgur.png)) |
68,074 | I watch Naruto, in that they use chakra as energy source or power, and they sometimes they commit act of shirk, whenever they do any kind of act of shirk, I start saying this all is fake and there is only one God and that is Allah, I do this because it's all fake first and second that this might lead me to commit shirk... | 2021/04/30 | [
"https://islam.stackexchange.com/questions/68074",
"https://islam.stackexchange.com",
"https://islam.stackexchange.com/users/44551/"
] | The answer to this question needs **diversified discussions** which may be broken down as below points!
---
1. Time Management
2. Islamic Views of Entainment
3. Slow poisoning
4. Cultural conflicts and conflicts in believed as well
5. Going near to halal acts that (may) lead to sin(s)
6. Doing Meaningless tasks
---
... | I asked something similar to my teacher (we have religion classes) and he said they are okay unless you actually lose your mind and believe that fictions. But I don't have any trusted sources. |
41,689 | [](https://i.stack.imgur.com/s29el.jpg)
I'm a first-time homeowner and pretty naive and often overwhelmed by home-related upkeep, especially related to gardening (see [my very first question on this exchange](https://gardening.stackexchange.com/questions/41033/... | 2018/08/25 | [
"https://gardening.stackexchange.com/questions/41689",
"https://gardening.stackexchange.com",
"https://gardening.stackexchange.com/users/23404/"
] | Well technically they're wood chips, but also a mulch, although they look pretty awful - they're not even proper bark chips. I can only guess why they were all over the lawn, but I live in the UK - is it possible that people who live in hot, dry regions of the USA strew wood chips over their lawns when the weather is p... | What you have in picture are wood chips and if you use them in certain way, depending on what you want to achieve - they will become mulch.
Mulch is just a layer of material applied over surface/soil. It could be organic (such as your wood chips, leaves, straw, nut shells, paper...) or artificial (like nylon, plastic... |
41,689 | [](https://i.stack.imgur.com/s29el.jpg)
I'm a first-time homeowner and pretty naive and often overwhelmed by home-related upkeep, especially related to gardening (see [my very first question on this exchange](https://gardening.stackexchange.com/questions/41033/... | 2018/08/25 | [
"https://gardening.stackexchange.com/questions/41689",
"https://gardening.stackexchange.com",
"https://gardening.stackexchange.com/users/23404/"
] | Well technically they're wood chips, but also a mulch, although they look pretty awful - they're not even proper bark chips. I can only guess why they were all over the lawn, but I live in the UK - is it possible that people who live in hot, dry regions of the USA strew wood chips over their lawns when the weather is p... | >
> do I have woodchips or mulch?
>
>
>
That is mulch made from chipped wood. The mulch may have been dyed for aesthetic purposes.
>
> why is it used?
>
>
>
The previous owner may have applied mulch because it's a cheap and quick method of improving the landscaping and curb appeal, at least in the listing ph... |
20,362 | Does anybody know of a Drupal 7 autocomplete widget for textfields? I've tried Autocomplete Widgets, but the "Autocomplete for allowed values list" widget from that doesn't seem to exist in Drupal 7 -- only the other two widgets show up. My goal is to store plain text but autocomplete from a user profile field. Thanks! | 2012/01/22 | [
"https://drupal.stackexchange.com/questions/20362",
"https://drupal.stackexchange.com",
"https://drupal.stackexchange.com/users/3233/"
] | Try <http://timonweb.com/how-create-ajax-autocomplete-textfield-drupal-7>
ALSO:
<http://qandeelaslam.com/blogs/cck/converting-texfield-autocomplete-using-drupals-form-api>
http://www.elevatedthird.com/blog/enable-ajax-autocomplete-drupal-7-webform-textfield
(Looking for a module, now.) | There is <http://drupal.org/project/autocomplete_widgets>:
>
> This module adds 3 autocomplete widgets for CCK fields of type Text
> and Number.
>
>
> Autocomplete for allowed values list: This widget can be used for Text
> and Number fields and it takes candidate values from the defined list
> of Allowed values... |
162,347 | You bought your first entry level oscilloscope (e.g. Rigol DS1004Z series, 4 Channels, 50-100MHz, 1Gs/s) and while it is slowly warming up to room temperature you are wondering if the unit you have is really working well and did not suffer any damage from shipping etc.
Since your next complex measurement equipment is ... | 2015/03/30 | [
"https://electronics.stackexchange.com/questions/162347",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/39687/"
] | If the square-wave looks fine after probe compensation and the scope passes self-check/self-calibration, then there really is nothing you can do at your level.
To properly check it, you'd need a good lab and you don't have that. Presumably, manufacturer would have performed quality control on the unit and did factory... | Find a friend with an oscilloscope, and some circuits you can probe (these can be anything you have available).
Probe the circuits at various points with your new oscilloscope and the borrowed one, and check they see substantially the same thing. In most consumer devices, you will find a range of analogue and high fre... |
162,347 | You bought your first entry level oscilloscope (e.g. Rigol DS1004Z series, 4 Channels, 50-100MHz, 1Gs/s) and while it is slowly warming up to room temperature you are wondering if the unit you have is really working well and did not suffer any damage from shipping etc.
Since your next complex measurement equipment is ... | 2015/03/30 | [
"https://electronics.stackexchange.com/questions/162347",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/39687/"
] | If the square-wave looks fine after probe compensation and the scope passes self-check/self-calibration, then there really is nothing you can do at your level.
To properly check it, you'd need a good lab and you don't have that. Presumably, manufacturer would have performed quality control on the unit and did factory... | Here's a list of more basic things you can check:
* Check all the knobs (360 degrees in both turning directions) and buttons.
* Compare readings at each voltage range to some reference, such as a multimeter. (If you hear a relay click at certain levels, you should test the range at each relay click.)
* Test as many tr... |
162,347 | You bought your first entry level oscilloscope (e.g. Rigol DS1004Z series, 4 Channels, 50-100MHz, 1Gs/s) and while it is slowly warming up to room temperature you are wondering if the unit you have is really working well and did not suffer any damage from shipping etc.
Since your next complex measurement equipment is ... | 2015/03/30 | [
"https://electronics.stackexchange.com/questions/162347",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/39687/"
] | Find a friend with an oscilloscope, and some circuits you can probe (these can be anything you have available).
Probe the circuits at various points with your new oscilloscope and the borrowed one, and check they see substantially the same thing. In most consumer devices, you will find a range of analogue and high fre... | Here's a list of more basic things you can check:
* Check all the knobs (360 degrees in both turning directions) and buttons.
* Compare readings at each voltage range to some reference, such as a multimeter. (If you hear a relay click at certain levels, you should test the range at each relay click.)
* Test as many tr... |
313,810 | What sounds better to a native/is more correct? I assume they all are correct, but still - what is the best way to say it?
* If one wants to do something, one should do it.
* If one wants to do something, he or she should do it.
* If one wants to do something, they should do it.
---
As the question was marked as dup... | 2016/03/15 | [
"https://english.stackexchange.com/questions/313810",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/26608/"
] | If you're using "one" at the start, then use one at the end. However, it's not the best way (in my opinion) to express this sentiment.
One is more generally switched with "you", rather than "he or she", so you would tend to say
"If one wants to do something, one should do it."
or
"If you want to do something, you s... | In American English, "one" sounds very formal and stilted and old-fashioned. In most situations "you" would be used instead.
* If you want to do something, you should do it. |
193,341 | I have a Trac project installed on top of a Subversion implementation (easy to do thanks to Webfaction's control panel), but now I have configuration work to do. With that in mind, are there *easy* ways to do the following in Trac:
1) Ensure that customers can only see a high level progress indicator.
2) Give daily... | 2008/10/10 | [
"https://Stackoverflow.com/questions/193341",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13990/"
] | I would not recommend using the same Trac project for tracking development tasks and showing the customer progress. You want to be able to be candid with your development tickets, comments, etc. Customers can focus on the wrong things and misinterpret data you put in the tickets. I would recommend providing the custome... | @Dave Dunkin is right. Use Trac for your internal use, and use a system like [Basecamp](http://www.basecamphq.com/) to give your clients a high-level overview of what's going on in the project. |
193,341 | I have a Trac project installed on top of a Subversion implementation (easy to do thanks to Webfaction's control panel), but now I have configuration work to do. With that in mind, are there *easy* ways to do the following in Trac:
1) Ensure that customers can only see a high level progress indicator.
2) Give daily... | 2008/10/10 | [
"https://Stackoverflow.com/questions/193341",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13990/"
] | As far as additional plugins are concerned, we install TocMacro, XmlRpcPlugin, WysiwygPlugin and TracRedirect. In particular, the WYSIWYG plugin is really good for encouraging less technical staff to maintain their own documents in the wiki - you can even C&P from MS Word whilst retaining formatting, which helps.
Take... | If it's a stock install, the database is just an SQLite3, so you can easily write scripts to fetch "safe" info, like the number of tickets, or why not one of the reports. That way, you can discuss freely as long as the ticket name is ok. Revisions, milestones, wikipages, tags (if you use that plugin) are also available... |
193,341 | I have a Trac project installed on top of a Subversion implementation (easy to do thanks to Webfaction's control panel), but now I have configuration work to do. With that in mind, are there *easy* ways to do the following in Trac:
1) Ensure that customers can only see a high level progress indicator.
2) Give daily... | 2008/10/10 | [
"https://Stackoverflow.com/questions/193341",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/13990/"
] | I would not recommend using the same Trac project for tracking development tasks and showing the customer progress. You want to be able to be candid with your development tickets, comments, etc. Customers can focus on the wrong things and misinterpret data you put in the tickets. I would recommend providing the custome... | If it's a stock install, the database is just an SQLite3, so you can easily write scripts to fetch "safe" info, like the number of tickets, or why not one of the reports. That way, you can discuss freely as long as the ticket name is ok. Revisions, milestones, wikipages, tags (if you use that plugin) are also available... |
21,930,261 | I have a Wordpress blog that is now running in Linux/MySQL. Now, I have seen a product called Brandoo Wordpress which let you run Wordpress on IIS + MSSQL.
Since I am using Windows Server and MSSQL for all my other projects I would very much like to use it on my Wordpress blog too. The wordpress site is quite big and i... | 2014/02/21 | [
"https://Stackoverflow.com/questions/21930261",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/2710099/"
] | I'm member of Brandoo WordPress team and I think I can help You. So... Brandoo WordPress is based on MSSQL. If You are using plugins that uses non-standard (same for MS and My SQL) db query You must face situation when You will must drop those plugins untill we will create translation for those queries that are not tra... | I wouldn't call this a guarantee, but one of the [principles of submission to the web app store](http://www.iis.net/learn/develop/windows-web-application-gallery/windows-web-application-gallery-principles) is to "Be Safe" |
472,479 | A bit of background here is important - my country historically had an unfriendly relationship with Germans, then got occupied by the Soviet Union, which really liked to justify everything by saying it's fighting the Nazis (and Russia still does); the occupation ended with an independence movement during which there wa... | 2018/11/11 | [
"https://english.stackexchange.com/questions/472479",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/323817/"
] | It's true that to a certain extent these words are associated in English with Nazi Germany and the Soviet Union, but these are by no means the only associations, nor should they be.
First of all, I'd just like to point out that one of the major reasons why these words have these associations is not so much because the... | The most neutral option seems to be *homeland*, but I understand the association with the United States.
Why not use the slightly less poetic alternative to *land* to avoid that association, and go for *home country*? |
472,479 | A bit of background here is important - my country historically had an unfriendly relationship with Germans, then got occupied by the Soviet Union, which really liked to justify everything by saying it's fighting the Nazis (and Russia still does); the occupation ended with an independence movement during which there wa... | 2018/11/11 | [
"https://english.stackexchange.com/questions/472479",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/323817/"
] | There isn't anything wrong with *native land.* (It hasn't been tarnished by association with Germany, Russia, or the American Department of Homeland Security.)
And it is a phrase that has been used for centuries in English. Maybe not as often as the other three phrases, but it's definitely out there "in the wild". Fo... | It's true that to a certain extent these words are associated in English with Nazi Germany and the Soviet Union, but these are by no means the only associations, nor should they be.
First of all, I'd just like to point out that one of the major reasons why these words have these associations is not so much because the... |
472,479 | A bit of background here is important - my country historically had an unfriendly relationship with Germans, then got occupied by the Soviet Union, which really liked to justify everything by saying it's fighting the Nazis (and Russia still does); the occupation ended with an independence movement during which there wa... | 2018/11/11 | [
"https://english.stackexchange.com/questions/472479",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/323817/"
] | There isn't anything wrong with *native land.* (It hasn't been tarnished by association with Germany, Russia, or the American Department of Homeland Security.)
And it is a phrase that has been used for centuries in English. Maybe not as often as the other three phrases, but it's definitely out there "in the wild". Fo... | The most neutral option seems to be *homeland*, but I understand the association with the United States.
Why not use the slightly less poetic alternative to *land* to avoid that association, and go for *home country*? |
160,578 | I need to inspect some method information before game starts to implement something in Unity.
I can run the script by [ExecuteInEditMode] attribute, however it only works if at least one object in the scene has the script as component.
What I want is to run the script in edit mode as soon as Unity finishes each recom... | 2018/07/10 | [
"https://gamedev.stackexchange.com/questions/160578",
"https://gamedev.stackexchange.com",
"https://gamedev.stackexchange.com/users/101860/"
] | I solved this by using "[InitializeOnLoad](https://docs.unity3d.com/Manual/RunningEditorCodeOnLaunch.html)" attribute. Using this attribute without MonoBehaviour, you can run the code what you want. | Try removing the "monobehaviour" attribute from your script. This will seperate the script from any visual objects. |
39,840,945 | I want to convert a DataTable to a CSV string lines, and I want to have the flexibility to code the string representation of each column (Example: I may want Date values in a specific string format, etc.)
I have seen some generic methods to convert a DataTable to CSV here: [c# datatable to csv](https://stackoverflow.c... | 2016/10/03 | [
"https://Stackoverflow.com/questions/39840945",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1113579/"
] | Added as answer so you can mark it as accepted and close the question :
>
> A target here is not a file, it's a build target described inside your xcodeproj. Open the xcworkspace, select your ApplePaySwag.xcodeproj and inside the bar that says "General", "Build settings" and such, all the way to the left, click on th... | Your pods seem to be correct, but the cocoa pod that your trying to install seems to not be correct, best thing to do is double check to make sure you are typing in the exact name for the cocoa pod. |
13,000,815 | I'm learning to build web-apps in the Yii PHP framework, but I think my question applies to web-applications in general.
I want to know how to structure database tables for comments that relate to different types of parent objects, i.e- photos or posts.
Photos and Posts are inherently different and wouldn't sit in th... | 2012/10/21 | [
"https://Stackoverflow.com/questions/13000815",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1104955/"
] | The other option is to have a post table to which all posts relate (regardless of type). So whether it's a photo or a normal post, it will have a records created for it in this table.
Depending on the type of content, you could store both photos and normal posts in this table (with optional fields for each, eg: photo... | I would model Comment as a table on it's own. The Comment table would have a columns for PhotoId and PostId. These are foreign keys that allow nulls. Then a database check constraint would ensure that exactly one of PhotoId and PostId is null. i.e. each comment is attached to exactly one parent. |
13,000,815 | I'm learning to build web-apps in the Yii PHP framework, but I think my question applies to web-applications in general.
I want to know how to structure database tables for comments that relate to different types of parent objects, i.e- photos or posts.
Photos and Posts are inherently different and wouldn't sit in th... | 2012/10/21 | [
"https://Stackoverflow.com/questions/13000815",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1104955/"
] | The other option is to have a post table to which all posts relate (regardless of type). So whether it's a photo or a normal post, it will have a records created for it in this table.
Depending on the type of content, you could store both photos and normal posts in this table (with optional fields for each, eg: photo... | I can suggest 3 table structure
Table: [Entity\_Types] (List all object titles such as photos, posts)
Example:
PK:1001, "Photos"
Table: [Photos]
Example:
PK:2001, "My 1st Photo Title"
PK:2002, "My 2nd Photo Title"
Table: [Comments]
Examples:
PK:3001, "My 1st Comment for My 1st Photo", FK:1001, FK:2001
PK:3002, "My... |
13,000,815 | I'm learning to build web-apps in the Yii PHP framework, but I think my question applies to web-applications in general.
I want to know how to structure database tables for comments that relate to different types of parent objects, i.e- photos or posts.
Photos and Posts are inherently different and wouldn't sit in th... | 2012/10/21 | [
"https://Stackoverflow.com/questions/13000815",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1104955/"
] | I would model Comment as a table on it's own. The Comment table would have a columns for PhotoId and PostId. These are foreign keys that allow nulls. Then a database check constraint would ensure that exactly one of PhotoId and PostId is null. i.e. each comment is attached to exactly one parent. | I can suggest 3 table structure
Table: [Entity\_Types] (List all object titles such as photos, posts)
Example:
PK:1001, "Photos"
Table: [Photos]
Example:
PK:2001, "My 1st Photo Title"
PK:2002, "My 2nd Photo Title"
Table: [Comments]
Examples:
PK:3001, "My 1st Comment for My 1st Photo", FK:1001, FK:2001
PK:3002, "My... |
300,786 | I'm trying to design a digital clock that will use several electromagnets and iron filings to show the time. Each digit should have 7 electromagnets that turned on and off to attract the metal shavings through white plexiglass (I'm also considering using immersion oil to make it easier for the filings to reform). Howev... | 2017/04/20 | [
"https://electronics.stackexchange.com/questions/300786",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/146500/"
] | rotate your electromagnet by 90°, so that its axis is perpendicular to the plexiglass. That's kind of obvious – it puts only one of the filings-attrackting ends close to the glass.
If you wind your magnet around a rectangular-crosssection piece of iron, then you can make "straight lines". Notice that even these lines ... | Filings are hard to manage, once you get them attracted to a pole piece they are actually hard to get off due to residual magnetic retention effects. You may have to use a high frequency AC signal to demagnetize them.
You might be better off using a Ferro Fluid. This is dense, but with very low magnetic retention.
... |
300,786 | I'm trying to design a digital clock that will use several electromagnets and iron filings to show the time. Each digit should have 7 electromagnets that turned on and off to attract the metal shavings through white plexiglass (I'm also considering using immersion oil to make it easier for the filings to reform). Howev... | 2017/04/20 | [
"https://electronics.stackexchange.com/questions/300786",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/146500/"
] | I see two workable options for accomplishing something close to what you're describing:
1. Build the electromagnets with a flattened (as opposed to round) core, then place one pole against the underside of the plexiglass. This would attract filings fairly uniformly to that "segment."
2. Build the electromagnets as sma... | Filings are hard to manage, once you get them attracted to a pole piece they are actually hard to get off due to residual magnetic retention effects. You may have to use a high frequency AC signal to demagnetize them.
You might be better off using a Ferro Fluid. This is dense, but with very low magnetic retention.
... |
1,292 | This doesn't happen often, but occasionally, when I get really excited about something, when I try to talk, I trip up on my words, stutter a bit, and what-not. I'm not even really sure why it happens, and it doesn't happen super often.
For example, once I got really excited about a physics book I was reading and was e... | 2017/08/03 | [
"https://interpersonal.stackexchange.com/questions/1292",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/2128/"
] | I believe I know where you're coming from, I often feel the same way.
This is what I do to stop myself:
1. Stop talking for a second or excuse yourself. Go in the other room, take a deep breath and focus on your surroundings. (These are mediation techniques)
2. Don't rush yourself when you talk, take time to think of... | I have same problem, much worse than you however. I stuttered since I was small, and still do. Mostly when I want to say something long and fast, such as explaining something. I have a few ways I have dealt with the situation, they help a lot.
1. Most importantly is to mentally tell your self to slow down. This takes ... |
1,292 | This doesn't happen often, but occasionally, when I get really excited about something, when I try to talk, I trip up on my words, stutter a bit, and what-not. I'm not even really sure why it happens, and it doesn't happen super often.
For example, once I got really excited about a physics book I was reading and was e... | 2017/08/03 | [
"https://interpersonal.stackexchange.com/questions/1292",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/2128/"
] | I believe I know where you're coming from, I often feel the same way.
This is what I do to stop myself:
1. Stop talking for a second or excuse yourself. Go in the other room, take a deep breath and focus on your surroundings. (These are mediation techniques)
2. Don't rush yourself when you talk, take time to think of... | One technique I specifically find quite helpful is to take three (short) breaths in, and one long, slow breath out. Followed by correctly saying the sentence that had tripped me up to begin with - sometimes slowly or with emphasis, depending on how badly I tangled it. I've been using this technique so long I've forgott... |
1,292 | This doesn't happen often, but occasionally, when I get really excited about something, when I try to talk, I trip up on my words, stutter a bit, and what-not. I'm not even really sure why it happens, and it doesn't happen super often.
For example, once I got really excited about a physics book I was reading and was e... | 2017/08/03 | [
"https://interpersonal.stackexchange.com/questions/1292",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/2128/"
] | I have same problem, much worse than you however. I stuttered since I was small, and still do. Mostly when I want to say something long and fast, such as explaining something. I have a few ways I have dealt with the situation, they help a lot.
1. Most importantly is to mentally tell your self to slow down. This takes ... | One technique I specifically find quite helpful is to take three (short) breaths in, and one long, slow breath out. Followed by correctly saying the sentence that had tripped me up to begin with - sometimes slowly or with emphasis, depending on how badly I tangled it. I've been using this technique so long I've forgott... |
1,292 | This doesn't happen often, but occasionally, when I get really excited about something, when I try to talk, I trip up on my words, stutter a bit, and what-not. I'm not even really sure why it happens, and it doesn't happen super often.
For example, once I got really excited about a physics book I was reading and was e... | 2017/08/03 | [
"https://interpersonal.stackexchange.com/questions/1292",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/2128/"
] | Other answers have focused on breathing that you can do to stop the stuttering so I'll skip that part.
Although that's great, sometimes I find it hard to do in the moment, especially if people are paying attention to me and expecting me to continue. In those cases, its good to buy yourself a bit of time by deflecting ... | I have same problem, much worse than you however. I stuttered since I was small, and still do. Mostly when I want to say something long and fast, such as explaining something. I have a few ways I have dealt with the situation, they help a lot.
1. Most importantly is to mentally tell your self to slow down. This takes ... |
1,292 | This doesn't happen often, but occasionally, when I get really excited about something, when I try to talk, I trip up on my words, stutter a bit, and what-not. I'm not even really sure why it happens, and it doesn't happen super often.
For example, once I got really excited about a physics book I was reading and was e... | 2017/08/03 | [
"https://interpersonal.stackexchange.com/questions/1292",
"https://interpersonal.stackexchange.com",
"https://interpersonal.stackexchange.com/users/2128/"
] | Other answers have focused on breathing that you can do to stop the stuttering so I'll skip that part.
Although that's great, sometimes I find it hard to do in the moment, especially if people are paying attention to me and expecting me to continue. In those cases, its good to buy yourself a bit of time by deflecting ... | One technique I specifically find quite helpful is to take three (short) breaths in, and one long, slow breath out. Followed by correctly saying the sentence that had tripped me up to begin with - sometimes slowly or with emphasis, depending on how badly I tangled it. I've been using this technique so long I've forgott... |
56,713,686 | I've uploaded my app to the play store and all was good, but suddenly I received an email from Google about problems in my icon launcher size. It's a real problem for me, because the app is for a venue, and the venue is in 3 days. I'm disrespected about this because I tried a lot of different changes but nothing appear... | 2019/06/22 | [
"https://Stackoverflow.com/questions/56713686",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1916590/"
] | Well, finally i could find the problem :).
After various emails with Google team people, they said me that the problem of the icon size was in a very old apk in the a beta channel created a year ago.
They never mention what apk version is wrong in the email, and I never imagin thst Google can remove an app beacuse a ... | Did you try to actually change your icon size? If yes and you fit then this is strange. Google has been known for taking down developer accounts of apps that generate good revenue for no reason |
7,134,952 | A friend and I would like to do some real-time collaboration with Eclipse. Does anyone know a way we can share the entire project? I've looked around and I can't really find anything but something called Cola, and I can't find anything more on that than a video of them using it.
We've already installed the latest ECF,... | 2011/08/20 | [
"https://Stackoverflow.com/questions/7134952",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/798844/"
] | I think [Saros](http://www.saros-project.org/) is what you are looking for. | The instructions for Cola are [right here.](http://wiki.eclipse.org/DocShare_Plugin) |
5,649 | I'm planning to reinstall my OS by not formatting my root partition (I only use a single partition) as this will preserve the contents of my home directory, but the problem is that when I've done it in the past, it's wiped all my third party applications, and I was wondering if there was a way I could back up and resto... | 2010/10/10 | [
"https://askubuntu.com/questions/5649",
"https://askubuntu.com",
"https://askubuntu.com/users/-1/"
] | You can do this in the synaptic package manager (System->Administration)
Make sure your selection is in the "All" section then go to File->Save markings, make sure you check mark "Save full state, not only changes" then save (somewhere where it won't be formatted ;)
When you are done installing you can go to File->Rea... | as i read, stipple is the best solution while oneconf is final:
"Save a list of installed applications, .config files, and other settings to a couchDB. Sync this DB to other computers with Ubuntu One. This application also helps you install those packages and .config files on your other computers."
<https://launchpad... |
10,258,452 | the code comes from a Qt library that helps produce buttons with the shape of an image; it scans through all lines y and all the width x, generating the following change when the rgb part of the pixel coincides with the masking one (mp is the pointer at the start of the line and it is prefilled with 0xff):
\*(mp + (x ... | 2012/04/21 | [
"https://Stackoverflow.com/questions/10258452",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1119394/"
] | From the looks of the code, mp points to the current line of a 1 bit per pixel image. The code clears the bit representing the pixel at X. It converts the X offset into a byte offset (x >> 3) and then logical AND's the byte with a mask created from the inverse 1 shifted left by the X position within the byte. | for the mortals; ok, background: <http://www.cprogramming.com/tutorial/bitwise_operators.html>; &= means we are gonna do a bitwise multiplication; in the rhs, the ~ is for the complement, so it flips 1s with 0s and viceversa; 7 in binary has 3 ones in the end and all zeros at front, so x & 7 preserves the last 3 bits i... |
52,223 | After a recent firefox upgrade, the integration with the unity launcher went pear-shaped. Clicking on the Firefox icon does not move focus to the running firefox, but starts another firefox instance / window. I tried removing it from the launcher and re-adding it but I couldn't re-add it in any way except adding a Fire... | 2011/07/07 | [
"https://askubuntu.com/questions/52223",
"https://askubuntu.com",
"https://askubuntu.com/users/90/"
] | I rebooted my computer and the problem got resolved on its own. | This works for me:
1. Completely quit Firefox (File | Quit)
2. Remove your existing Firefox launcher from Unity
3. Hit Alt+F2, type 'firefox' to filter results, and *drag* the result into the Unity bar
[edited to replace earlier not-working solution] |
52,223 | After a recent firefox upgrade, the integration with the unity launcher went pear-shaped. Clicking on the Firefox icon does not move focus to the running firefox, but starts another firefox instance / window. I tried removing it from the launcher and re-adding it but I couldn't re-add it in any way except adding a Fire... | 2011/07/07 | [
"https://askubuntu.com/questions/52223",
"https://askubuntu.com",
"https://askubuntu.com/users/90/"
] | This works for me:
1. Completely quit Firefox (File | Quit)
2. Remove your existing Firefox launcher from Unity
3. Hit Alt+F2, type 'firefox' to filter results, and *drag* the result into the Unity bar
[edited to replace earlier not-working solution] | Dragging it onto the launcher didn't work for me. I still had the same issue. I ended up dragging the firefox shortcut to the desktop and then to the Launcher. If the shortcut is deleted from the desktop it is also removed from the launcher. |
52,223 | After a recent firefox upgrade, the integration with the unity launcher went pear-shaped. Clicking on the Firefox icon does not move focus to the running firefox, but starts another firefox instance / window. I tried removing it from the launcher and re-adding it but I couldn't re-add it in any way except adding a Fire... | 2011/07/07 | [
"https://askubuntu.com/questions/52223",
"https://askubuntu.com",
"https://askubuntu.com/users/90/"
] | I rebooted my computer and the problem got resolved on its own. | Dragging it onto the launcher didn't work for me. I still had the same issue. I ended up dragging the firefox shortcut to the desktop and then to the Launcher. If the shortcut is deleted from the desktop it is also removed from the launcher. |
64,485,441 | I am newbie to AWS and looking to resolve the API Gateway issue. We had a frontend web application where if users perform any activity by clicking a **Personal Details** link then request will hit the AWS API Gateway "A" and trigger lambda-A. We created AWS code pipeline and deployed application using Cloud Formation S... | 2020/10/22 | [
"https://Stackoverflow.com/questions/64485441",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14145437/"
] | You need to update the base path mapping of your backend domain to API Gateway B.
Or you have to edit the backend url in frontend code to new api gateway url
[Custom domains with API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-custom-domains.html) | This was due to the User request from Website navigating to data power (third party vendor for security). In data power it was configured to old API Gateway, so we changed it to new API Gateway. |
64,485,441 | I am newbie to AWS and looking to resolve the API Gateway issue. We had a frontend web application where if users perform any activity by clicking a **Personal Details** link then request will hit the AWS API Gateway "A" and trigger lambda-A. We created AWS code pipeline and deployed application using Cloud Formation S... | 2020/10/22 | [
"https://Stackoverflow.com/questions/64485441",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/14145437/"
] | You need to change Lambda function in API Gateway. Please check this article which have screenshots.
<https://aws.amazon.com/blogs/compute/using-api-gateway-stage-variables-to-manage-lambda-functions/>
<https://docs.aws.amazon.com/lambda/latest/dg/services-apigateway.html>
Also I want to recommend you to use Serverl... | This was due to the User request from Website navigating to data power (third party vendor for security). In data power it was configured to old API Gateway, so we changed it to new API Gateway. |
11,603,822 | I have been designing many applications for my company lately where "fancy" interfaces have not been needed, and where the "basic" controls have been good enough in terms of looks.
However, I have just been handed a project where the "typical" VS(Visual Studio 2010) look is not going to cut it. Is there some where tha... | 2012/07/22 | [
"https://Stackoverflow.com/questions/11603822",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/882445/"
] | Go and learn [**Windows Presentation Foundation**](http://en.wikipedia.org/wiki/Windows_Presentation_Foundation). It utilizes DirectX and provides developers with a compact model for building rich user experiences for Windows-based systems. You can start [on this tutorial site](http://www.wpftutorial.net/ "here") to le... | Some of the options:
1. Move to WPF.
2. [Telerik](http://www.telerik.com/), [Devexpress](http://devexpress.com/), [Infragistics](http://www.infragistics.com/) etc offer richer library, but could leave a hole in your pocket.
3. Bare minimum, you could just [How can you make a .net windows forms project look fresh?](htt... |
61,543 | Warren Buffett has famously said that he could generate 50% annual returns if he was working with small sums of money. (He cannot move the needle enough now with large amounts of capital). Perhaps two reasons could explain this, holding his skill level fixed, 1) there are just more smaller companies and therefore more ... | 2021/03/05 | [
"https://quant.stackexchange.com/questions/61543",
"https://quant.stackexchange.com",
"https://quant.stackexchange.com/users/43525/"
] | The claim that there are small opportunities that are overlooked by large institutions is increasingly untrue. Some large firms specialize specifically in aggregating a large number of low capacity strategies with low frequency signals. With good infrastructure, these firms can seek out a very large number of signals, ... | Small lot securitized product bonds or greatly factored down ones. |
122,538 | I'm trying to reformat my 32G SD card to prepare it for my raspberry pi. My GUI program on my mac does not allow me to format it to ext3 which is what i'm told to reformat it to for my raspberry pi.
How do I reformat this SD card to ext3. I've researched some links on how to do it from the command line but i'm having... | 2014/02/20 | [
"https://apple.stackexchange.com/questions/122538",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/-1/"
] | Minor addition to other excellent answers: On the raspberry pi site, on the page
<https://www.raspberrypi.org/help/noobs-setup/>
... they write:
"It is best to format your SD card before copying the NOOBS files onto it. To do this:
* Visit the SD Association’s website and download SD Formatter 4.0 for either Windo... | This link should help you for Mac/Windows/Linux users.
<http://computers.tutsplus.com/articles/how-to-flash-an-sd-card-for-raspberry-pi--mac-53600> |
238,456 | I am an electrician and know through experience that resistance in an electrical circuit causes heat. An incandescent light bulb's light is a by-product of heat, so why does a 100w bulb have a lower resistance than a 25w bulb? It seems counter intuitive to me. Please help me understand. | 2016/02/19 | [
"https://physics.stackexchange.com/questions/238456",
"https://physics.stackexchange.com",
"https://physics.stackexchange.com/users/108872/"
] | Steve, hopefully you'll get this. Comment if you do!
To answer your first question: A 100W light bulb has lower resistance because as long as the light bulb resistance is higher than the wire resistance, you can take advantage of the equation P=I squared R. Just decrease the resistance a little and the current is inc... | A non-math way to think of it is that higher resistance means less electricity gets through. A higher watt bulb allows more electricity through, therefore the resistance must be lower. |
238,456 | I am an electrician and know through experience that resistance in an electrical circuit causes heat. An incandescent light bulb's light is a by-product of heat, so why does a 100w bulb have a lower resistance than a 25w bulb? It seems counter intuitive to me. Please help me understand. | 2016/02/19 | [
"https://physics.stackexchange.com/questions/238456",
"https://physics.stackexchange.com",
"https://physics.stackexchange.com/users/108872/"
] | Steve, hopefully you'll get this. Comment if you do!
To answer your first question: A 100W light bulb has lower resistance because as long as the light bulb resistance is higher than the wire resistance, you can take advantage of the equation P=I squared R. Just decrease the resistance a little and the current is inc... | I understand your question perfectly.
Lets leave out all the fancy maths.
You are correct in being slightly confused. Logically, a higher resistance causes more heat but we must also remember that a higher resistance causes less current.
It is the product of the current and the resistance that generates the heat ... |
54,591 | The [Mule](http://en.wikipedia.org/wiki/Mule_%28Foundation%29) was a "mentalic" mutant of enough power that he managed to overcome the forces of history and disrupt Hari Seldon's plans.
**Were such mutants known prior to the Mule? (and known to Seldon)?** | 2014/04/21 | [
"https://scifi.stackexchange.com/questions/54591",
"https://scifi.stackexchange.com",
"https://scifi.stackexchange.com/users/976/"
] | [The Mule](http://en.wikipedia.org/wiki/Mule_%28Foundation%29) was the first known *human* to display such remarkable mental abilities in the *Foundation* universe. He was preceded, however, by at least two - and possibly more - robots; [R. Giskard Reventlov](http://en.wikipedia.org/wiki/R._Giskard_Reventlov#R._Giskard... | In short: there are no other mentalic mutants known on the Foundation universe.
The Mule was a mutant, in a plot where they are really really scarce (this is not the Marvel universe). And moreover he was a mutant coming from a society (Gaia) that actively uses mental abilities. His are, anyway, unique. Gaians and robo... |
193,557 | I'm having a really weird problem. I added a metarig to the scene, edited the pose to fit my character,, apply it as the rest pose, applied loc/rot/scale, and Generated Rig. The problem is that on the rig that it generates there is a "bugged" controller in the image below.
[.
<http://www.mikroe.com/> | Delphi outputs Win32 and Win64 native applications you can write software that can interact with certain devices if the PCB has serial comunication or I2C you can write software that in Delphi that it will interact with the physical device.
But if you want to programm the devices yourself , write software that will r... |
10,790,162 | I've been searching for some information regarding microcontroller programming but the info I find is either way over my head or doesn't appear to exist. I'm looking for something easier to digest! I'm relatively new to programming and come from an SQL DBA background and decided that it would be quicker for me to learn... | 2012/05/28 | [
"https://Stackoverflow.com/questions/10790162",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1422376/"
] | I'm a big fan of MikroElectronika and have used their Pascal tools for pic16 series MCU with great success (touch screen interfaces, ZigBee, ...).
<http://www.mikroe.com/> | If you have the source code of your pic microcontroller then you can implement the code in C to read from Serial, USB or some other interface available in your hardware and write it to the eeprom. This way its easy to write the app in any high level language like delphi, c++, etc.
Or you can write your PIC application... |
10,790,162 | I've been searching for some information regarding microcontroller programming but the info I find is either way over my head or doesn't appear to exist. I'm looking for something easier to digest! I'm relatively new to programming and come from an SQL DBA background and decided that it would be quicker for me to learn... | 2012/05/28 | [
"https://Stackoverflow.com/questions/10790162",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1422376/"
] | I'm a big fan of MikroElectronika and have used their Pascal tools for pic16 series MCU with great success (touch screen interfaces, ZigBee, ...).
<http://www.mikroe.com/> | One option, if you want a simple interface to write to the PIC EEPROM, is to use the ICD command line utility. Unfortunately it is not available for the ICD2, but the PICkit 2 and 3 (which are cheap), ICD3, and RealICE have command line utilities that give you the ability to write to the EEPROM (google pk2cmd). In Delp... |
13,775 | I recently bought an older house, and the toilet tank is leaking. In exploring the issue and googling around for toilet repair, I saw no mention of one of the parts that is in my toilet tank. Within the tank, there is a smaller plastic container that surrounds the flush valve. It seems to restrict the amount of water t... | 2012/04/20 | [
"https://diy.stackexchange.com/questions/13775",
"https://diy.stackexchange.com",
"https://diy.stackexchange.com/users/3785/"
] | I believe that you are correct and that the container was added to reduce the amount of water used per flush. As for whether it will affect your fix - it might. If the tank is leaking then unless it is cracked then there are only two places that it could be leaking from - where the inlet connects to the tank or where t... | I had a similar toilet that never flushed properly, resulting in multiple flushing and wasting water. I removed the tank, removed the flush valve and plastic dam, re-installed the flush valve and my toilet finally works properly.
To ensure it wasn't wasting water I measured 1.6 Gal of water, poured into the bowl, marke... |
4,475,028 | i want to add page hit to nodes on my drupal site.how can i do that? | 2010/12/17 | [
"https://Stackoverflow.com/questions/4475028",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/313389/"
] | Use the built-in Statistics module to add a pure page count. If you want to display the number of unique visitors that visit a page, you will need to use the [Statistics Advanced module](http://drupal.org/project/statistics_advanced) .This module counts the number of unique IP addresses per visit, while the Drupal core... | The built-in Statistics module offers this. |
4,475,028 | i want to add page hit to nodes on my drupal site.how can i do that? | 2010/12/17 | [
"https://Stackoverflow.com/questions/4475028",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/313389/"
] | What might work easier is "Node view count" module: <http://drupal.org/project/nodeviewcount>
I also came accross this other useful "Visitors" module: <http://drupal.org/project/visitors>
Hope this helps...options are always good :) | The built-in Statistics module offers this. |
4,475,028 | i want to add page hit to nodes on my drupal site.how can i do that? | 2010/12/17 | [
"https://Stackoverflow.com/questions/4475028",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/313389/"
] | Use the built-in Statistics module to add a pure page count. If you want to display the number of unique visitors that visit a page, you will need to use the [Statistics Advanced module](http://drupal.org/project/statistics_advanced) .This module counts the number of unique IP addresses per visit, while the Drupal core... | After enabling the Statistics module, you can en/disable and configure it here: Administer -> Reports -> Access log settings (admin/reports/settings). The Statistics Advanced module's configuration is there, also. |
4,475,028 | i want to add page hit to nodes on my drupal site.how can i do that? | 2010/12/17 | [
"https://Stackoverflow.com/questions/4475028",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/313389/"
] | Use the built-in Statistics module to add a pure page count. If you want to display the number of unique visitors that visit a page, you will need to use the [Statistics Advanced module](http://drupal.org/project/statistics_advanced) .This module counts the number of unique IP addresses per visit, while the Drupal core... | What might work easier is "Node view count" module: <http://drupal.org/project/nodeviewcount>
I also came accross this other useful "Visitors" module: <http://drupal.org/project/visitors>
Hope this helps...options are always good :) |
4,475,028 | i want to add page hit to nodes on my drupal site.how can i do that? | 2010/12/17 | [
"https://Stackoverflow.com/questions/4475028",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/313389/"
] | What might work easier is "Node view count" module: <http://drupal.org/project/nodeviewcount>
I also came accross this other useful "Visitors" module: <http://drupal.org/project/visitors>
Hope this helps...options are always good :) | After enabling the Statistics module, you can en/disable and configure it here: Administer -> Reports -> Access log settings (admin/reports/settings). The Statistics Advanced module's configuration is there, also. |
9,607,730 | I went through so many topics asking about "Why does release build fail and not debug?", but I'm across a situation where it's reverse.
Here release build works fine but Debug mode build breaks.
What are possible reasons or situations where this can happen?
Any reply is appreciated.
Thanks in advance.
One of our frien... | 2012/03/07 | [
"https://Stackoverflow.com/questions/9607730",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1255521/"
] | You're better off in almost all cases by doing filtering and data massaging with the SQL engine versus on the web server. | Unless you are planning to do hundreds of thousands such operations at once, it will not matter where you do the string concatenation from a performance point of view. The possible time savings will be so minuscule, they will probably not even be measurable. |
976,042 | I have three years old HP Laptop (HP CQ42). It was working just fine till yesterday. Yesterday, I left my laptop turned on for about half an hour. When I came back, there was no display. Only "Caps Lock LED" was blinking and "WI-FI LED" was red. Now, when I try to turn it on, I can hear the fan/HDD spinning but there i... | 2015/09/21 | [
"https://superuser.com/questions/976042",
"https://superuser.com",
"https://superuser.com/users/390306/"
] | Try following options to get rid of problem:
1. Remove the battery and plug the charger then switch on laptop. If it successfully on then shut down laptop from start option and remove charger plug, insert battery and you are done. If it wont works dont worry you have other option too.
2. Take a screw driver from your ... | i have noticed that the problem is caused by a corrupted bios bin file and you need to desolder your bios and reprogram it or completely replace it with a new one. 2: the problem could also be a faulty display chip and in this case you have to reflow the chip or completely remove it and put a new one though this option... |
28,596 | After seeing this reddit [post](https://www.reddit.com/r/todayilearned/comments/3ewken/til_100_of_the_studies_n74_concluding_aspartame/), and reading this [article](http://www.lightenyourtoxicload.com/wp-content/uploads/2014/07/Dr-Walton-survey-of-aspartame-studies.pdf) are the claims they made true?
Claim
[![enter i... | 2015/07/28 | [
"https://skeptics.stackexchange.com/questions/28596",
"https://skeptics.stackexchange.com",
"https://skeptics.stackexchange.com/users/23255/"
] | The ultimate source of your Reddit quote (lightenyourtoxicload.com), hosts a paper titled [Survey Of Aspartame Studies:
Correlation Of Outcome And Funding Sources](http://www.lightenyourtoxicload.com/wp-content/uploads/2014/07/Dr-Walton-survey-of-aspartame-studies.pdf) that backs up that quote:
>
> Studies of asparta... | Of course they did, it is up to them to prove to safety authorities that a product is safe for consumption. And who else could pay? do you expect governments to pay for every product attemptedly brought to market.
This is true for all drugs and artificial foods, the 'sponsor' who seeks to profit from the product mu... |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | The sentence though grammatically correct, could benefit from some punctuation.
But it is, in my view, awkwardly worded.
If you must insist on it being a single sentence, the following, in my view sounds better: *My argument instead is that politicians have behaved rationally; or at least no differently than would t... | The verb (faced) is in past tense because of using conjunctive mood here. "if they (their westen counterparts) faced with the same circumstances" - it's absolutely correct. |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | >
> I argue instead that politicians have in fact behaved rationally, or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
This entails a comparative construction. It's quite complicated because it contains several clauses nested within each other. Within the... | The verb (faced) is in past tense because of using conjunctive mood here. "if they (their westen counterparts) faced with the same circumstances" - it's absolutely correct. |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | >
> I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
The above does not seem to be correct to me, or at least not natural, and you have identified the problem area. I would change it to:
..... | The verb (faced) is in past tense because of using conjunctive mood here. "if they (their westen counterparts) faced with the same circumstances" - it's absolutely correct. |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | 1. The underlying verbal idiom is *face someone with something* = ‘compel someone to confront or deal with something’.
2. *Faced* is not a finite verb but a past participle; here it bears a passive sense, as if there were a preceding *BE*: *(be) faced with* = ‘(be) compelled to confront or deal with something’.
3. An *... | The verb (faced) is in past tense because of using conjunctive mood here. "if they (their westen counterparts) faced with the same circumstances" - it's absolutely correct. |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | >
> I argue instead that politicians have in fact behaved rationally, or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
This entails a comparative construction. It's quite complicated because it contains several clauses nested within each other. Within the... | The sentence though grammatically correct, could benefit from some punctuation.
But it is, in my view, awkwardly worded.
If you must insist on it being a single sentence, the following, in my view sounds better: *My argument instead is that politicians have behaved rationally; or at least no differently than would t... |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | 1. The underlying verbal idiom is *face someone with something* = ‘compel someone to confront or deal with something’.
2. *Faced* is not a finite verb but a past participle; here it bears a passive sense, as if there were a preceding *BE*: *(be) faced with* = ‘(be) compelled to confront or deal with something’.
3. An *... | The sentence though grammatically correct, could benefit from some punctuation.
But it is, in my view, awkwardly worded.
If you must insist on it being a single sentence, the following, in my view sounds better: *My argument instead is that politicians have behaved rationally; or at least no differently than would t... |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | >
> I argue instead that politicians have in fact behaved rationally, or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
This entails a comparative construction. It's quite complicated because it contains several clauses nested within each other. Within the... | >
> I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
The above does not seem to be correct to me, or at least not natural, and you have identified the problem area. I would change it to:
..... |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | >
> I argue instead that politicians have in fact behaved rationally, or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
This entails a comparative construction. It's quite complicated because it contains several clauses nested within each other. Within the... | 1. The underlying verbal idiom is *face someone with something* = ‘compel someone to confront or deal with something’.
2. *Faced* is not a finite verb but a past participle; here it bears a passive sense, as if there were a preceding *BE*: *(be) faced with* = ‘(be) compelled to confront or deal with something’.
3. An *... |
198,840 | *I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.*
I understand the meaning of the clause but I am a little bit puzzled by the usage of the phrase *would if faced*. Is this a sort of inversion? Why i... | 2014/09/29 | [
"https://english.stackexchange.com/questions/198840",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/87784/"
] | 1. The underlying verbal idiom is *face someone with something* = ‘compel someone to confront or deal with something’.
2. *Faced* is not a finite verb but a past participle; here it bears a passive sense, as if there were a preceding *BE*: *(be) faced with* = ‘(be) compelled to confront or deal with something’.
3. An *... | >
> I argue instead that politicians have in fact behaved rationally or at least no differently than their Western counterparts would if faced with the same circumstances.
>
>
>
The above does not seem to be correct to me, or at least not natural, and you have identified the problem area. I would change it to:
..... |
123,159 | Dmaj7 - Emaj7 - Gbmaj7 - Gbmaj7 x repeats
What is this chord progression?
I could not figure out its key and know nothing about this one.
It is from this video. | 2022/05/30 | [
"https://music.stackexchange.com/questions/123159",
"https://music.stackexchange.com",
"https://music.stackexchange.com/users/85024/"
] | Call that F♯maj7 rather than G♭maj7 and it starts to make more sense!
I'm hearing F♯ as the tonal centre. It's not a functional progression. Just F♯maj7 approached by a couple of similar-shaped chords two and one whole step below. This is called 'planing'. There's a discussion of the technique here:
<https://www.secre... | I have a slightly different way to look at this. It's D - E - F#, with F# being the tonal center, and the relevant trick that makes this interesting is alternating between F# major and F# minor sounds. While the D and E chords are playing, it sounds like things from F# minor i.e. A major would fit (with come added twis... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.