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 |
|---|---|---|---|---|---|
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | You are asking a fundamentally flawed question. The entire point of managed languages is that you don't handle memory. That is handled by the Garbage Collector, while you can make certain actions to better allow it to do its job in an efficient manner, it is not your job to do its job.
The things you can do to improve... | I think I would paraphrase the question by saying is the .NET memory manager capable of handling the job of memory management for scientific computing where traditionally hand tuned routines have been used for improving memory performance, especially for very large (GByte) matrices?
The author of this article certain... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | You might be surprised at the number of people that use Matlab for this, and as it could be considered a programming language and certainly manages its own memory (with support for huge data sets, etc) then it should seriously be considered as a solution here.
Further, it will generate program code (may require a sepa... | I think I would paraphrase the question by saying is the .NET memory manager capable of handling the job of memory management for scientific computing where traditionally hand tuned routines have been used for improving memory performance, especially for very large (GByte) matrices?
The author of this article certain... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | Not exactly sure what the question is, but you might want to check out [Fortress](http://projectfortress.sun.com/Projects/Community) | With a managed language you don't get that control as easily. The whole point in these languages is to handle malloc, garbage, and so on. Each managed language will handle that differently.
With Perl running out of memory is considered a fatal error. You can save the day via some small measure with $^M but this is onl... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | You might be surprised at the number of people that use Matlab for this, and as it could be considered a programming language and certainly manages its own memory (with support for huge data sets, etc) then it should seriously be considered as a solution here.
Further, it will generate program code (may require a sepa... | Not exactly sure what the question is, but you might want to check out [Fortress](http://projectfortress.sun.com/Projects/Community) |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | I think I would paraphrase the question by saying is the .NET memory manager capable of handling the job of memory management for scientific computing where traditionally hand tuned routines have been used for improving memory performance, especially for very large (GByte) matrices?
The author of this article certain... | BlackBox Component Builder, developed by Oberon microsystems, is the component-based development environment for the programming language „Component Pascal“.
Due to its stability, performance and simplicity, BlackBox is perfectly suited for science and engineering applications.
<http://www.oberon.ch/blackbox.html>
(... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | [Python](http://www.python.org/) has become pretty big in scientific computing lately. It is a managed language, so you don't have to remember to free your memory. At the same time, it has packages for scientific and numerical computing ([NumPy](http://numpy.scipy.org/), [SciPy](http://www.scipy.org/)), which gives you... | BlackBox Component Builder, developed by Oberon microsystems, is the component-based development environment for the programming language „Component Pascal“.
Due to its stability, performance and simplicity, BlackBox is perfectly suited for science and engineering applications.
<http://www.oberon.ch/blackbox.html>
(... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | You are asking a fundamentally flawed question. The entire point of managed languages is that you don't handle memory. That is handled by the Garbage Collector, while you can make certain actions to better allow it to do its job in an efficient manner, it is not your job to do its job.
The things you can do to improve... | The best option is Python with NumPy/ SciPy/ IPython. It has excellent performance because the core math is happening in libraries written in highly optimized C and Fortran. Since you interact with it using Python, everything from your perspective is clean and managed with extremely succinct, readable code and garbage ... |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | F# seems to be somewhat targeted at this audience. There is actually a book called [F# for scientists](http://www.ffconsultancy.com/products/fsharp_for_scientists/?fsb).
Also this [question](http://lambda-the-ultimate.org/node/2720) was asked over at Lambda the Ultimate. | I would think that functional languages would be best suited to this type of task. |
125,516 | Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer... | 2008/09/24 | [
"https://Stackoverflow.com/questions/125516",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/21495/"
] | I would think that functional languages would be best suited to this type of task. | With a managed language you don't get that control as easily. The whole point in these languages is to handle malloc, garbage, and so on. Each managed language will handle that differently.
With Perl running out of memory is considered a fatal error. You can save the day via some small measure with $^M but this is onl... |
19,460 | I'm the proud parent of two 10 month old border collie pups - Amber and Ghost, sister and brother respectively.
Training so far is going well. Basic commands (sit, wait, leave, stand, heel, crawl, round, paw, etc even through to "cross" when arriving at a pavement edge) work first time, every time. Some slight re-cal... | 2018/01/14 | [
"https://pets.stackexchange.com/questions/19460",
"https://pets.stackexchange.com",
"https://pets.stackexchange.com/users/11071/"
] | Bonobos are NOT pets!
---------------------
And please, for you and the bonobo, do not try to keep one as pet. There are at least four reasons for this:
1. Bonobos are not safe.
2. The circumstances of bonobo capture and sale.
3. Bonobo care.
4. Legality.
**1. Bonobos are not safe to be around for humans.**
This st... | [](https://i.stack.imgur.com/WMBim.jpg)
**Who are Bonobos?**
Bonobo belong to the genus *Pan*. The two species belonging to the genus *Pan* are *Pan troglodytes* (chimpanzee) and *Pan paniscus* (bonobo)
**Habitat**
Bonobos are found only south of t... |
19,460 | I'm the proud parent of two 10 month old border collie pups - Amber and Ghost, sister and brother respectively.
Training so far is going well. Basic commands (sit, wait, leave, stand, heel, crawl, round, paw, etc even through to "cross" when arriving at a pavement edge) work first time, every time. Some slight re-cal... | 2018/01/14 | [
"https://pets.stackexchange.com/questions/19460",
"https://pets.stackexchange.com",
"https://pets.stackexchange.com/users/11071/"
] | You should not get a Bonobo as a pet, they are aggressive and dangerous, and like with any smart animal, will use toddler style manipulation to get what they want. But I understand where you are coming from and thus recommend safer pets that hopefully meet your desire. If you want something ape like look no further tha... | [](https://i.stack.imgur.com/WMBim.jpg)
**Who are Bonobos?**
Bonobo belong to the genus *Pan*. The two species belonging to the genus *Pan* are *Pan troglodytes* (chimpanzee) and *Pan paniscus* (bonobo)
**Habitat**
Bonobos are found only south of t... |
19,460 | I'm the proud parent of two 10 month old border collie pups - Amber and Ghost, sister and brother respectively.
Training so far is going well. Basic commands (sit, wait, leave, stand, heel, crawl, round, paw, etc even through to "cross" when arriving at a pavement edge) work first time, every time. Some slight re-cal... | 2018/01/14 | [
"https://pets.stackexchange.com/questions/19460",
"https://pets.stackexchange.com",
"https://pets.stackexchange.com/users/11071/"
] | To be blunt, these creatures can have Jekyll and Hyde personalities and can be very vindictive and decisive. I would not get one if you have children or live alone. They can be quite territorial protective and jealous, a combination that is worrisome to say the least. They have been known to turn on there owners/human ... | [](https://i.stack.imgur.com/WMBim.jpg)
**Who are Bonobos?**
Bonobo belong to the genus *Pan*. The two species belonging to the genus *Pan* are *Pan troglodytes* (chimpanzee) and *Pan paniscus* (bonobo)
**Habitat**
Bonobos are found only south of t... |
19,460 | I'm the proud parent of two 10 month old border collie pups - Amber and Ghost, sister and brother respectively.
Training so far is going well. Basic commands (sit, wait, leave, stand, heel, crawl, round, paw, etc even through to "cross" when arriving at a pavement edge) work first time, every time. Some slight re-cal... | 2018/01/14 | [
"https://pets.stackexchange.com/questions/19460",
"https://pets.stackexchange.com",
"https://pets.stackexchange.com/users/11071/"
] | Bonobos are NOT pets!
---------------------
And please, for you and the bonobo, do not try to keep one as pet. There are at least four reasons for this:
1. Bonobos are not safe.
2. The circumstances of bonobo capture and sale.
3. Bonobo care.
4. Legality.
**1. Bonobos are not safe to be around for humans.**
This st... | You should not get a Bonobo as a pet, they are aggressive and dangerous, and like with any smart animal, will use toddler style manipulation to get what they want. But I understand where you are coming from and thus recommend safer pets that hopefully meet your desire. If you want something ape like look no further tha... |
19,460 | I'm the proud parent of two 10 month old border collie pups - Amber and Ghost, sister and brother respectively.
Training so far is going well. Basic commands (sit, wait, leave, stand, heel, crawl, round, paw, etc even through to "cross" when arriving at a pavement edge) work first time, every time. Some slight re-cal... | 2018/01/14 | [
"https://pets.stackexchange.com/questions/19460",
"https://pets.stackexchange.com",
"https://pets.stackexchange.com/users/11071/"
] | Bonobos are NOT pets!
---------------------
And please, for you and the bonobo, do not try to keep one as pet. There are at least four reasons for this:
1. Bonobos are not safe.
2. The circumstances of bonobo capture and sale.
3. Bonobo care.
4. Legality.
**1. Bonobos are not safe to be around for humans.**
This st... | To be blunt, these creatures can have Jekyll and Hyde personalities and can be very vindictive and decisive. I would not get one if you have children or live alone. They can be quite territorial protective and jealous, a combination that is worrisome to say the least. They have been known to turn on there owners/human ... |
177,279 | I've made it so they have the ability to echolocate and for the main character, a person with sight, the lighting is odd because it only comes from fires that are a necessity for warmth, cooking or forging.
My question would be, would windows be of any use in a windy city? | 2020/05/27 | [
"https://worldbuilding.stackexchange.com/questions/177279",
"https://worldbuilding.stackexchange.com",
"https://worldbuilding.stackexchange.com/users/75712/"
] | Ventilation and temperature control
===================================
The windows are probably not going to look like modern windows, with nicely tempered glass, but if we're defining a window as something you can open that's not a door then you'd probably want them still. Depending on climate these might look like ... | Ventilation
===========
You'll want some form of windows to help stay cool in the summer and to help give you enough fresh air to fuel the fireplaces. Here's a [detailed guide](https://www.windowmaster.com/solutions/natural-ventilation/natural-ventilation-design-guidelines) to window ventilation and below is a diagram... |
3,428,691 | I'm trying to make resizable UIViews of which users can resize (code is done for that) and drag it around. Now I need to make it look like what it looks like in IB, with circles at its corners to drag, and dotted lines as borders of the UIView.
How do you think I should go about doing this?
Many thanks. | 2010/08/07 | [
"https://Stackoverflow.com/questions/3428691",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/338926/"
] | The proper way to do that is to override the `drawRect:` method of the UIView subclass (your draggable views in this case.)
>
> When you subclass UIView to create a custom class that draws itself, implement the drawRect: method to draw the view within the specified region. This method is invoked the first time a view... | I know this question is pretty old, but I wrote a custom control to achieve exactly this. Someone else who happens upon this question may find it useful: <https://github.com/spoletto/SPUserResizableView>
 |
30,978 | I figure any definition for a word boundary is probably somewhat fuzzy. However, I thought, instead of banging my head against the wall trying to come with an ad-hoc solution, I would throw this out there.
Identifying word boundaries in English is, generally speaking, not a big deal: the / big / house / etc. If I wer... | 2019/03/27 | [
"https://linguistics.stackexchange.com/questions/30978",
"https://linguistics.stackexchange.com",
"https://linguistics.stackexchange.com/users/19727/"
] | The question relies on a number of unidentified assumptions about word boundaries, which are not totally alien but also are not obvious or obviously right. The main problem I see is the premise that there is this one thing, word boundary, that solves myriad problems.
The notion of there being a single "phonological tr... | I thought recently, that it would be pragmatic to treat words strictly as phrases. A word can appear in a single-word phrase. Theoretically, any word could be the answer to the question for the signet described by any appropriate definition. That test would be a circular definition, if asking "what's the word". Omittin... |
60,628 | While reviewing the superb answers to [this question about *free will*](https://christianity.stackexchange.com/q/54588/24204), I was inspired to leave [a comment for Ian](https://christianity.stackexchange.com/a/56596/24204) that I realized ought to be its own question.
As I understand (and possibly misunderstand) Re... | 2017/11/08 | [
"https://christianity.stackexchange.com/questions/60628",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/24204/"
] | I am a Reformed Pastor and I think the passage most Reformed Christians would turn to is: Ephesians 2: 8-9:
>
> For it is by grace you have been saved, through faith—and this is not from yourselves, it is the gift of God— not by works, so that no one can boast.
>
>
>
Much like Catholic teaching referred to above... | First, I am not a Calvinist and do not subscribe to Reformed theology, but my theology in this case would likely align with Reformed belief, although I haven't verified this. My perspective may fall under your category of "other perspectives."
Romans 4 addresses the issue directly.
Verse 2-5 (emphasis mine),
>
> Fo... |
60,628 | While reviewing the superb answers to [this question about *free will*](https://christianity.stackexchange.com/q/54588/24204), I was inspired to leave [a comment for Ian](https://christianity.stackexchange.com/a/56596/24204) that I realized ought to be its own question.
As I understand (and possibly misunderstand) Re... | 2017/11/08 | [
"https://christianity.stackexchange.com/questions/60628",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/24204/"
] | You've fallen into a common trap of examining a single piece of a theological system by importing that piece into your own construct rather than seeing how it fits into its own context. A Reformed understanding of soteriology is dependent on several interwoven ideas about God and his role in creation.
Note this assump... | First, I am not a Calvinist and do not subscribe to Reformed theology, but my theology in this case would likely align with Reformed belief, although I haven't verified this. My perspective may fall under your category of "other perspectives."
Romans 4 addresses the issue directly.
Verse 2-5 (emphasis mine),
>
> Fo... |
60,628 | While reviewing the superb answers to [this question about *free will*](https://christianity.stackexchange.com/q/54588/24204), I was inspired to leave [a comment for Ian](https://christianity.stackexchange.com/a/56596/24204) that I realized ought to be its own question.
As I understand (and possibly misunderstand) Re... | 2017/11/08 | [
"https://christianity.stackexchange.com/questions/60628",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/24204/"
] | You've fallen into a common trap of examining a single piece of a theological system by importing that piece into your own construct rather than seeing how it fits into its own context. A Reformed understanding of soteriology is dependent on several interwoven ideas about God and his role in creation.
Note this assump... | I am a Reformed Pastor and I think the passage most Reformed Christians would turn to is: Ephesians 2: 8-9:
>
> For it is by grace you have been saved, through faith—and this is not from yourselves, it is the gift of God— not by works, so that no one can boast.
>
>
>
Much like Catholic teaching referred to above... |
60,628 | While reviewing the superb answers to [this question about *free will*](https://christianity.stackexchange.com/q/54588/24204), I was inspired to leave [a comment for Ian](https://christianity.stackexchange.com/a/56596/24204) that I realized ought to be its own question.
As I understand (and possibly misunderstand) Re... | 2017/11/08 | [
"https://christianity.stackexchange.com/questions/60628",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/24204/"
] | I am a Reformed Pastor and I think the passage most Reformed Christians would turn to is: Ephesians 2: 8-9:
>
> For it is by grace you have been saved, through faith—and this is not from yourselves, it is the gift of God— not by works, so that no one can boast.
>
>
>
Much like Catholic teaching referred to above... | You have arrived at the final destination of the Calvinist trap. Is obeying God's commands a system of works? Too many people are easily discarding the will of God and throwing out His commands, calling them instead works of man.
There are works that are works of God, and there are the works that are of men. Matt. 23:... |
60,628 | While reviewing the superb answers to [this question about *free will*](https://christianity.stackexchange.com/q/54588/24204), I was inspired to leave [a comment for Ian](https://christianity.stackexchange.com/a/56596/24204) that I realized ought to be its own question.
As I understand (and possibly misunderstand) Re... | 2017/11/08 | [
"https://christianity.stackexchange.com/questions/60628",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/24204/"
] | You've fallen into a common trap of examining a single piece of a theological system by importing that piece into your own construct rather than seeing how it fits into its own context. A Reformed understanding of soteriology is dependent on several interwoven ideas about God and his role in creation.
Note this assump... | You have arrived at the final destination of the Calvinist trap. Is obeying God's commands a system of works? Too many people are easily discarding the will of God and throwing out His commands, calling them instead works of man.
There are works that are works of God, and there are the works that are of men. Matt. 23:... |
80,838 | I am looking for a solution to control my computer mouse just with my hands and a webcam. The goal is to combine it with voice input to let me move more freely in front of my desk.
It should support the usual mouse actions:
* position mouse pointer, left click, right click, middle click, scroll up, scroll down
* opti... | 2021/10/08 | [
"https://softwarerecs.stackexchange.com/questions/80838",
"https://softwarerecs.stackexchange.com",
"https://softwarerecs.stackexchange.com/users/76676/"
] | You can try Kdenlive. From their site:
>
> Multi-track video editing
> Kdenlive allows you to use and arrange several audio and video tracks, each one can be locked or muted to your convenience.
>
>
>
[Kdenlive | Libre Video Editor](https://kdenlive.org/en/download)
[Wikipedia link](https://tr.wikipedia.org/w... | [avidemux](https://en.wikipedia.org/wiki/Avidemux) can add .mkv files at the end of each other.
Usage: Open the avidemux GUI, drag-and-drop the first .mkv file, then the second, then press "save" and enter the filename you want for the output file.
The input files must have the same size and encoding.
Available for ... |
80,838 | I am looking for a solution to control my computer mouse just with my hands and a webcam. The goal is to combine it with voice input to let me move more freely in front of my desk.
It should support the usual mouse actions:
* position mouse pointer, left click, right click, middle click, scroll up, scroll down
* opti... | 2021/10/08 | [
"https://softwarerecs.stackexchange.com/questions/80838",
"https://softwarerecs.stackexchange.com",
"https://softwarerecs.stackexchange.com/users/76676/"
] | You can try Kdenlive. From their site:
>
> Multi-track video editing
> Kdenlive allows you to use and arrange several audio and video tracks, each one can be locked or muted to your convenience.
>
>
>
[Kdenlive | Libre Video Editor](https://kdenlive.org/en/download)
[Wikipedia link](https://tr.wikipedia.org/w... | This is what I use
<https://www.fosshub.com/MKVToolNix.html>
You can see the result here
<https://www.youtube.com/watch?v=2_TCmWRUQrI>
Basically a 3:20 video is combined with a 30 minutes video
Notice to do this you need to ensure you that you append video to another video
The first time I am doing it I just comb... |
80,838 | I am looking for a solution to control my computer mouse just with my hands and a webcam. The goal is to combine it with voice input to let me move more freely in front of my desk.
It should support the usual mouse actions:
* position mouse pointer, left click, right click, middle click, scroll up, scroll down
* opti... | 2021/10/08 | [
"https://softwarerecs.stackexchange.com/questions/80838",
"https://softwarerecs.stackexchange.com",
"https://softwarerecs.stackexchange.com/users/76676/"
] | [avidemux](https://en.wikipedia.org/wiki/Avidemux) can add .mkv files at the end of each other.
Usage: Open the avidemux GUI, drag-and-drop the first .mkv file, then the second, then press "save" and enter the filename you want for the output file.
The input files must have the same size and encoding.
Available for ... | This is what I use
<https://www.fosshub.com/MKVToolNix.html>
You can see the result here
<https://www.youtube.com/watch?v=2_TCmWRUQrI>
Basically a 3:20 video is combined with a 30 minutes video
Notice to do this you need to ensure you that you append video to another video
The first time I am doing it I just comb... |
15,174 | Our Environment : SDL Tridion 2013 SP1
We are trying to automate sitemap during every page publishing/unpublishing. The requirement is to create two sitemap files (audiositemap.xml/videositemap.xml). While creating content pages, author would choose whether the page type is audio or video in page metadata.
During pub... | 2016/07/19 | [
"https://tridion.stackexchange.com/questions/15174",
"https://tridion.stackexchange.com",
"https://tridion.stackexchange.com/users/252/"
] | Well, this wouldn't be Tridion if there weren't 15 ways of doing it. My preferred approach for this - given that you already have the sitemap logic built into CM Templates - would be to use a [Custom Resolver](http://docs.sdl.com/LiveContent/content/en-US/SDL%20Web-v1/GUID-F792AB1A-060A-4757-802D-3A2DB18F022D).
While ... | Welcome the tridion community.
Coming to your question about generating site map using event handler is not good idea, because when you publish in bulk, there will be performance and concurrency issues which are very difficult to handle and if you are able to handle them that will be at the cost of increased publishin... |
75,089 | I recently purchased a Raspberry Pi 3, which I understand to have the BCM2837 chip. When I purchased a codec from raspberrypi.com, I was asked to run:
cat /proc/cpuinfo
I was surprised to see the following output at the bottom:
Hardware : BCM2835
Revision : a22082
Serial :
Why should I see this output from a new R... | 2017/11/12 | [
"https://raspberrypi.stackexchange.com/questions/75089",
"https://raspberrypi.stackexchange.com",
"https://raspberrypi.stackexchange.com/users/76111/"
] | Quoted from a Raspberry Pi engineer :
>
> It's just a kernel/device tree anomaly. Upstream have chosen to denote
> all the Pi's as BCM2835, whereas the original Pi specific kernels
> would display BCM2708, BCM2709, or BCM2710 as appropriate.
>
>
> Whether it is more correct to use 2708/9/10 or 2835/6/7 is also
> ... | I did some more digging and found [this.](https://github.com/raspberrypi/documentation/blob/master/hardware/raspberrypi/revision-codes/README.md)
Basically, the 'revision code' is the only useful bit of information. Look it up in this table to confirm what you really have. In your case, it's a Pi3B manufactured by Embe... |
1,728 | I am applying for job online and the form includes an area for me to list my references and our "Working Relationship".
What should I write in that area?
Also, when I report to a person who is the only other person in the company, what is their position: owner/manager/MD/CEO? | 2012/06/07 | [
"https://workplace.stackexchange.com/questions/1728",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/-1/"
] | One of:
* My Manager
* Directly Reported to me
* Indirectly Reported to me
* Colleague on the same team
* Colleague on another team
* Friend
* Mentor
* Family (best avoided when possible.)
Terms may vary about between culture / country | >
> What should I write in that area?
>
>
>
For the references you are putting down, how would you categorize the relationship: Is this person your manager, team lead, teammate, subordinate, or something else? Where in the organizational chart are you in relation to the reference. Was this person a client of yours... |
54,885 | It's obviously good for creating dummy data; also can be used for generating passwords (although I believe you have to be careful here as to the true "randomness"). Any other useful uses that you've come across? | 2009/08/17 | [
"https://serverfault.com/questions/54885",
"https://serverfault.com",
"https://serverfault.com/users/10409/"
] | Contact Microsoft Support Services (PSS). Make sure the issue also happens on the most current version of your server (i.e. full updated service packs and patches). MS will gladly issue a patch free of charge for a production issue.
Regardless how you turn the table, a server should not crash on a RPC issue. Point. Th... | What's the error that is being returned? Check the mini dump files in the SQL Server Log folder to get more information about the actual reason for the crash.
You'll probably need to open a ticket with Microsoft and have look into the bugcheck that is causing the crash.
Before you call make sure you have the most rec... |
111,352 | I am new to material design and still learning.
Is it a good idea to have the primary color and the accent from similar palettes, e.g Blue 500 and Light Blue A200? Or is the whole idea of the primary/accent to create enough contrast and you should be using colors that are really different? | 2018/07/04 | [
"https://graphicdesign.stackexchange.com/questions/111352",
"https://graphicdesign.stackexchange.com",
"https://graphicdesign.stackexchange.com/users/-1/"
] | I am not sure about the material rules behind accent colours but as a digital designer I prefer to subscribe to a mix of brand, aesthetics and colour theory.
I start with the clients brand colours and work out how they appear on screen. Look at contrasts and complimentaries. Each have their place in the usability. I c... | I think doing like you said you are not following the right guidelines of the material design.
It's a good habit to use a primary and a secondary color and light and dark variants for each color that often are not more than two.
You can find more accurate answer [here](https://material.io/design/material-theming/overvi... |
176,998 | [Mono 2.0 was just officially released](http://www.mono-project.com/Main_Page). What single feature do you think is the most important? | 2008/10/07 | [
"https://Stackoverflow.com/questions/176998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5/"
] | Windows.Forms is definitely way up there... that might be the feature I'm most excited about. And LINQ-to-XML should be good. I'm looking forward to more LINQ providers now that the LINQ core is available! :) | C# 3.0/LINQ |
176,998 | [Mono 2.0 was just officially released](http://www.mono-project.com/Main_Page). What single feature do you think is the most important? | 2008/10/07 | [
"https://Stackoverflow.com/questions/176998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5/"
] | C# 3.0/LINQ | The complete .NET 2.0 profile is quite of an accomplishment! |
176,998 | [Mono 2.0 was just officially released](http://www.mono-project.com/Main_Page). What single feature do you think is the most important? | 2008/10/07 | [
"https://Stackoverflow.com/questions/176998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5/"
] | Windows.Forms is definitely way up there... that might be the feature I'm most excited about. And LINQ-to-XML should be good. I'm looking forward to more LINQ providers now that the LINQ core is available! :) | Complete implementation of System.Windows.Forms |
176,998 | [Mono 2.0 was just officially released](http://www.mono-project.com/Main_Page). What single feature do you think is the most important? | 2008/10/07 | [
"https://Stackoverflow.com/questions/176998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5/"
] | Complete implementation of System.Windows.Forms | The complete .NET 2.0 profile is quite of an accomplishment! |
176,998 | [Mono 2.0 was just officially released](http://www.mono-project.com/Main_Page). What single feature do you think is the most important? | 2008/10/07 | [
"https://Stackoverflow.com/questions/176998",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5/"
] | Windows.Forms is definitely way up there... that might be the feature I'm most excited about. And LINQ-to-XML should be good. I'm looking forward to more LINQ providers now that the LINQ core is available! :) | The complete .NET 2.0 profile is quite of an accomplishment! |
29,538 | I am running an IIS 6 FTP Server on a Windows Server 2003 computer (lets call it FTPPC), connected to a domain (lets call it DOMAIN).
Allow anonymous connections is off, so a user requires a domain account to connect to the ftp. The user connects to the ftp using DOMAIN\USERNAME
The root of the ftp is pointing at E:\... | 2009/06/22 | [
"https://serverfault.com/questions/29538",
"https://serverfault.com",
"https://serverfault.com/users/3515/"
] | This is indeed an odd one. I setup the config you describe with IIS running on a DC not a member server and the virtual directory configured to use the logged on user. This worked. Then I tried it with IIS running on a non-domain server, and it worked as well. Sadly IIS running on a domain member server is the one conf... | If you think about it your PC is passing a credential token to the FTP server as you are already domain authenticated. However the FTP server can't pass this token to the NODOMAINPC as it won't recognise the token (it doesn't recognise the domain controller as such).
I think the only option you have is that all users ... |
97,085 | I want to connect a PCIe 16x 3.0 GPU card to a Raspberry pi. I don't mind lo loose bandwidth, i just want to use the core GPU capabilities. So, the only idea that came out to my mind is to use the 26 GPIO RPi pins. I am concern about the GPIO/PCIe programing, do not have any idea neither an approach. Is this a crazy a ... | 2014/01/20 | [
"https://electronics.stackexchange.com/questions/97085",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/35845/"
] | The GPIO pins on the Raspberry Pi are not even close to being fast enough (maybe a couple of MHz vs several GHz required for PCI-E). You can however, check this out: <http://hackaday.com/2012/10/08/stm32-driving-a-pcie-video-card/>
This doesn't use the PCI-Express interface at all, but some Radeon GPUs have a 'debug b... | A few sites have tested the Pi's gpio speed and a quick search shows speeds on the order of hundreds of KHz. Not sure of the PCI 3 frequency off the top of my head but I believe each data line runs in the MHz range.
The low frequency of the GPIO coupled with the coding overhead for each pin it would be impossible to ... |
97,085 | I want to connect a PCIe 16x 3.0 GPU card to a Raspberry pi. I don't mind lo loose bandwidth, i just want to use the core GPU capabilities. So, the only idea that came out to my mind is to use the 26 GPIO RPi pins. I am concern about the GPIO/PCIe programing, do not have any idea neither an approach. Is this a crazy a ... | 2014/01/20 | [
"https://electronics.stackexchange.com/questions/97085",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/35845/"
] | Your best bet would probably be to check whether a [PLX PCIe bridge](http://www.plxtech.com/products/expresslane/bridges) would be usable for this purpose.
It's highly likely that abandoning this idea of using a Raspberry Pi and instead using something that has a PCIe port built in instead will be vastly easier and ch... | A few sites have tested the Pi's gpio speed and a quick search shows speeds on the order of hundreds of KHz. Not sure of the PCI 3 frequency off the top of my head but I believe each data line runs in the MHz range.
The low frequency of the GPIO coupled with the coding overhead for each pin it would be impossible to ... |
97,085 | I want to connect a PCIe 16x 3.0 GPU card to a Raspberry pi. I don't mind lo loose bandwidth, i just want to use the core GPU capabilities. So, the only idea that came out to my mind is to use the 26 GPIO RPi pins. I am concern about the GPIO/PCIe programing, do not have any idea neither an approach. Is this a crazy a ... | 2014/01/20 | [
"https://electronics.stackexchange.com/questions/97085",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/35845/"
] | A few sites have tested the Pi's gpio speed and a quick search shows speeds on the order of hundreds of KHz. Not sure of the PCI 3 frequency off the top of my head but I believe each data line runs in the MHz range.
The low frequency of the GPIO coupled with the coding overhead for each pin it would be impossible to ... | If the Raspberry Pi has PCIe, then it is not exposed in a slot and it would require board modification which would be almost impossible for all but a very select few individuals without destroying it. Try the "lspci -vnnt" command and see if any devices are present. If PCIe is present, it is likely only there for the o... |
97,085 | I want to connect a PCIe 16x 3.0 GPU card to a Raspberry pi. I don't mind lo loose bandwidth, i just want to use the core GPU capabilities. So, the only idea that came out to my mind is to use the 26 GPIO RPi pins. I am concern about the GPIO/PCIe programing, do not have any idea neither an approach. Is this a crazy a ... | 2014/01/20 | [
"https://electronics.stackexchange.com/questions/97085",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/35845/"
] | The GPIO pins on the Raspberry Pi are not even close to being fast enough (maybe a couple of MHz vs several GHz required for PCI-E). You can however, check this out: <http://hackaday.com/2012/10/08/stm32-driving-a-pcie-video-card/>
This doesn't use the PCI-Express interface at all, but some Radeon GPUs have a 'debug b... | If the Raspberry Pi has PCIe, then it is not exposed in a slot and it would require board modification which would be almost impossible for all but a very select few individuals without destroying it. Try the "lspci -vnnt" command and see if any devices are present. If PCIe is present, it is likely only there for the o... |
97,085 | I want to connect a PCIe 16x 3.0 GPU card to a Raspberry pi. I don't mind lo loose bandwidth, i just want to use the core GPU capabilities. So, the only idea that came out to my mind is to use the 26 GPIO RPi pins. I am concern about the GPIO/PCIe programing, do not have any idea neither an approach. Is this a crazy a ... | 2014/01/20 | [
"https://electronics.stackexchange.com/questions/97085",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/35845/"
] | Your best bet would probably be to check whether a [PLX PCIe bridge](http://www.plxtech.com/products/expresslane/bridges) would be usable for this purpose.
It's highly likely that abandoning this idea of using a Raspberry Pi and instead using something that has a PCIe port built in instead will be vastly easier and ch... | If the Raspberry Pi has PCIe, then it is not exposed in a slot and it would require board modification which would be almost impossible for all but a very select few individuals without destroying it. Try the "lspci -vnnt" command and see if any devices are present. If PCIe is present, it is likely only there for the o... |
2,385,150 | I was looking for a way to detect the browser extension I am building from my website and I need to alert my users in-case they are viewing my site without it. I have been able to do this in firefox, but I want to know is there a way I can do this in Google Chrome? Even if there is a hack to get this going I am fine. | 2010/03/05 | [
"https://Stackoverflow.com/questions/2385150",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1081973/"
] | If it is in a texture:
* set up orthographic frustum
* disable blending, depth test, etc.
* bind texture
* draw screen-aligned textured quad with correct texture coordinates
I use this in for example in [Compositor::\_drawPixels](http://www.equalizergraphics.com/cgi-bin/viewvc.cgi/trunk/src/lib/client/compositor.cpp?... | Use **glBlitFramebuffer**, which operates on frambuffer objects ([Link](http://www.opengl.org/wiki/Framebuffer_Objects)). Ans this is not *deprecated*.
You can take advantage of **format conversion**, **scaling** and **multisampling**. |
600,800 | I don't know if this is the right place to post this or not, but I will go ahead anyway (sorry if it ain't the right place)
Yesterday I was discussing a particular theorem of geometry with my brother which he just learnt in the school. I had asked him if he knew the proof for it, he replied saying his teacher has said... | 2013/12/10 | [
"https://math.stackexchange.com/questions/600800",
"https://math.stackexchange.com",
"https://math.stackexchange.com/users/5548/"
] | An idea on why learning proofs (not just theorems) is important: One could say that it is unimportant to know how to prepare food because there is a McDonald's down the street. But, if a person becomes strictly reliant on McDonald's for preparing food, then we can be assured that (s)he will never be able to produce a (... | I'm sure I could write more about why proofs are important, but I believe it all boils down to this. Proofs are important because some very intuitive results turn out to be false, and if we just accept results with no proof because something 'sounds correct', then we could be led down false pathways. Who knows what hor... |
600,800 | I don't know if this is the right place to post this or not, but I will go ahead anyway (sorry if it ain't the right place)
Yesterday I was discussing a particular theorem of geometry with my brother which he just learnt in the school. I had asked him if he knew the proof for it, he replied saying his teacher has said... | 2013/12/10 | [
"https://math.stackexchange.com/questions/600800",
"https://math.stackexchange.com",
"https://math.stackexchange.com/users/5548/"
] | I think the dislike for proofs, and the belief that they must not be important, comes from two misconceptions:
1. That proofs are all two-column proofs.
2. We prove things to find out if they are true.
The first is blatantly false. Most proofs are paragraph proofs, and don't have to show every tiny little step. No on... | I'm sure I could write more about why proofs are important, but I believe it all boils down to this. Proofs are important because some very intuitive results turn out to be false, and if we just accept results with no proof because something 'sounds correct', then we could be led down false pathways. Who knows what hor... |
70,892 | I open the Facebook app on my phone and go to chat and it tells me one person was last active ten minutes ago and then all of a sudden it says last active one minute ago but I never see a green dot to say they were online. Why is this? It shows green dots for others but not this one person. It was happening throughout ... | 2014/12/13 | [
"https://webapps.stackexchange.com/questions/70892",
"https://webapps.stackexchange.com",
"https://webapps.stackexchange.com/users/82982/"
] | It's not a flaw.
This can work if the user is offline on Facebook Messenger and responded to a message recently (or even just opened that app) | Maybe you can no longer see they became friends because now he/she can only see their friends or ungrounded that person |
70,892 | I open the Facebook app on my phone and go to chat and it tells me one person was last active ten minutes ago and then all of a sudden it says last active one minute ago but I never see a green dot to say they were online. Why is this? It shows green dots for others but not this one person. It was happening throughout ... | 2014/12/13 | [
"https://webapps.stackexchange.com/questions/70892",
"https://webapps.stackexchange.com",
"https://webapps.stackexchange.com/users/82982/"
] | It's not a flaw.
This can work if the user is offline on Facebook Messenger and responded to a message recently (or even just opened that app) | If they have chat off (but they are online), it will keep reporting 1 minute ago until they log off. |
70,892 | I open the Facebook app on my phone and go to chat and it tells me one person was last active ten minutes ago and then all of a sudden it says last active one minute ago but I never see a green dot to say they were online. Why is this? It shows green dots for others but not this one person. It was happening throughout ... | 2014/12/13 | [
"https://webapps.stackexchange.com/questions/70892",
"https://webapps.stackexchange.com",
"https://webapps.stackexchange.com/users/82982/"
] | Maybe you can no longer see they became friends because now he/she can only see their friends or ungrounded that person | If they have chat off (but they are online), it will keep reporting 1 minute ago until they log off. |
38,902,460 | I'm trying to start an AVD in Android Studio, but it just open a "Splash Screen" (where is written Android), and after, there's no progress.
I searched about it, and I found some discussions about Intel's HAXM ([Android Emulator with HAXM freezes on Mac OS Yosemite](https://stackoverflow.com/questions/26495910/android-... | 2016/08/11 | [
"https://Stackoverflow.com/questions/38902460",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/6706016/"
] | Do you have Docker for Mac installed by any chance? I was just facing the exact same issue and stopping Docker fixed the problem... | As I'm not allowed to comment on the above answer, just to add my own experience. Both Docker and minikube - which will admittedly run it's kubernetes containers using docker - need to be stopped for the emulator to work. |
9,147,710 | I have some images in png format, I am wondering whether there are .net library to process images? | 2012/02/05 | [
"https://Stackoverflow.com/questions/9147710",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/705414/"
] | You may take a look at GDI+ ([System.Drawing](http://msdn.microsoft.com/en-us/library/system.drawing.aspx) namespace) or [WIC](http://en.wikipedia.org/wiki/Windows_Imaging_Component), both have managed wrappers built into the .NET framework. For example here's an [interesting article](http://weblogs.asp.net/bleroy/arch... | The [System.Drawing.Bitmap](http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx) class supports BMP, GIF, EXIF, JPG, PNG, and TIFF. You can at least display your PNGs using that.
Also I found a library [AForge](http://code.google.com/p/aforge/) which is used in an [image processing](http://www.codeproje... |
33,348 | My first question is what are the scriptures every Muslim (or Islam follower) should abide by? In other words, what scriptures are considered the fundamental/basic on which Islam is based on? Or What are the very important scriptures that are considered as highest/top? | 2016/07/10 | [
"https://islam.stackexchange.com/questions/33348",
"https://islam.stackexchange.com",
"https://islam.stackexchange.com/users/17673/"
] | All perfect praise be to Allah
------------------------------
When you say **scriptures**, than let us be all clear, that **Quran is the word of Allah, sent down on prophet Muhammad ﷺ by Jibrael A.s. And as Muslims this is the most important book we have to follow, indeed this book is basis and Allah promise will not ... | There is only one such scripture in Islam which is the Quran. If someone who claims to be Muslim says he doesn't belief in it then he wouldn't be regarded as one cause all Muslims agree that the anyone who rejects the Quran rejects Islam as well.
All the copies of the Quran are same. They are all written in the same w... |
33,348 | My first question is what are the scriptures every Muslim (or Islam follower) should abide by? In other words, what scriptures are considered the fundamental/basic on which Islam is based on? Or What are the very important scriptures that are considered as highest/top? | 2016/07/10 | [
"https://islam.stackexchange.com/questions/33348",
"https://islam.stackexchange.com",
"https://islam.stackexchange.com/users/17673/"
] | What are the scriptures which every Islam follower should abide by?
-------------------------------------------------------------------
There is only one which is the Quran. There are other scriptures in Islam but they were revealed before the Quran and no longer apply to Muslims. The Tawrat was revealed to mosses as ... | There is only one such scripture in Islam which is the Quran. If someone who claims to be Muslim says he doesn't belief in it then he wouldn't be regarded as one cause all Muslims agree that the anyone who rejects the Quran rejects Islam as well.
All the copies of the Quran are same. They are all written in the same w... |
26,912 | Much later, West Virginia broke off from Virginia as a result of the Civil War. Earlier than that, Maine became "independent" from Massachusetts as part of the Missouri Compromise.
But during and after the Revolution, Virginia claimed Kentucky as its "backland." In 1795, it relinquished this claim to let Kentucky spl... | 2015/12/22 | [
"https://history.stackexchange.com/questions/26912",
"https://history.stackexchange.com",
"https://history.stackexchange.com/users/120/"
] | Prior to the signing of the Constitution, most of the 13 colonies [ceded all territorial claims](https://en.wikipedia.org/wiki/State_cessions) to the Congressional Government in exchange for it assuming their debt. Virginia followed suit 3 years later. This made the Kentucky Territory under Federal jurisdiction, and la... | For a corollary explanation to [Oldcat's answer](https://history.stackexchange.com/questions/26912/why-did-virginia-let-kentucky-become-a-separate-state#answer-26919), try reading [The Division of Territory in Society](http://www.edstephan.org/Book/contents.html) by Ed Stephan. It's a very interesting read, even if you... |
26,912 | Much later, West Virginia broke off from Virginia as a result of the Civil War. Earlier than that, Maine became "independent" from Massachusetts as part of the Missouri Compromise.
But during and after the Revolution, Virginia claimed Kentucky as its "backland." In 1795, it relinquished this claim to let Kentucky spl... | 2015/12/22 | [
"https://history.stackexchange.com/questions/26912",
"https://history.stackexchange.com",
"https://history.stackexchange.com/users/120/"
] | Prior to the signing of the Constitution, most of the 13 colonies [ceded all territorial claims](https://en.wikipedia.org/wiki/State_cessions) to the Congressional Government in exchange for it assuming their debt. Virginia followed suit 3 years later. This made the Kentucky Territory under Federal jurisdiction, and la... | Kentucky was admitted on June 1, 1792, not 1795. It was a part of Virginia until it became a separate state. In that respect, it differed from Tennessee, which was a part of North Carolina that was ceded by the legislature to federal jurisdiction, and was an organized incorporated territory of the United states, called... |
97,241 | Which of the following is grammatical?
>
> * I am deputizing for him/her.
> * I am deputizing him/her.
>
>
>
I think in the case of *covering* you have to use:
>
> I am covering for him/her.
>
>
>
...or do you? | 2013/01/09 | [
"https://english.stackexchange.com/questions/97241",
"https://english.stackexchange.com",
"https://english.stackexchange.com/users/43/"
] | [Merriam-Webster](http://www.merriam-webster.com/dictionary/deputize) shows a usage of *deputize* that somewhat agrees with your first sentence: *I deputize for the newspaper's editor on the weekends*. But it sounds strange to me. I'd say that I was *acting for* or *covering for* someone not available to do the work at... | I think both are correct but each has a different meaning:
**1-** I am **deputizing for** him/her. (*intransitive*)
**2-** I am **deputizing him/her**. (*transitive*)
The verb '**deputize**' is both transitive and intransitive.
**1-** In the transitive form (*second* example), the verb **deputize** would mean **ap... |
12,511 | According to Revelation 5:11, there are many:
>
> 11 Then I looked and heard the voice of many angels, **numbering
> thousands upon thousands, and ten thousand times ten thousand**. They
> encircled the throne and the living creatures and the elders.
> 12 In a
> loud voice they were saying:
>
>
> “Worthy is th... | 2013/01/06 | [
"https://christianity.stackexchange.com/questions/12511",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/1839/"
] | None of the major branches do. All they say is that it is a large number, and most say that there are more than all humans who have ever existed:
[A Protestant view](http://christiananswers.net/q-acb/acb-t005.html#3): (Drawing from Scripture only)
>
> While the Scriptures give no definite figures, we are told that t... | "...behold a great red Dragon... And his tail drew
the THIRD PART OF THE STARS OF HEAVEN, and
did cast them to the earth..." (Rev.12:3-4).
assuming those stars to be angels. that means 1/3 of angels were cast out during the purge. I am a Catholic Christian from The Republic of India. we are outnumbered by Hindus by 40... |
12,511 | According to Revelation 5:11, there are many:
>
> 11 Then I looked and heard the voice of many angels, **numbering
> thousands upon thousands, and ten thousand times ten thousand**. They
> encircled the throne and the living creatures and the elders.
> 12 In a
> loud voice they were saying:
>
>
> “Worthy is th... | 2013/01/06 | [
"https://christianity.stackexchange.com/questions/12511",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/1839/"
] | None of the major branches do. All they say is that it is a large number, and most say that there are more than all humans who have ever existed:
[A Protestant view](http://christiananswers.net/q-acb/acb-t005.html#3): (Drawing from Scripture only)
>
> While the Scriptures give no definite figures, we are told that t... | TWELVE TRILLION! let me explain why.
God knew that for a long time mankind would not have a sophisticated enough number system to grasp the vastness of the Heavenly host so throughout the Bible His Holy Spirit inspires the metaphor "[like] stars in the sky" instead of a number. Today we know the number of stars in sp... |
12,511 | According to Revelation 5:11, there are many:
>
> 11 Then I looked and heard the voice of many angels, **numbering
> thousands upon thousands, and ten thousand times ten thousand**. They
> encircled the throne and the living creatures and the elders.
> 12 In a
> loud voice they were saying:
>
>
> “Worthy is th... | 2013/01/06 | [
"https://christianity.stackexchange.com/questions/12511",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/1839/"
] | "...behold a great red Dragon... And his tail drew
the THIRD PART OF THE STARS OF HEAVEN, and
did cast them to the earth..." (Rev.12:3-4).
assuming those stars to be angels. that means 1/3 of angels were cast out during the purge. I am a Catholic Christian from The Republic of India. we are outnumbered by Hindus by 40... | TWELVE TRILLION! let me explain why.
God knew that for a long time mankind would not have a sophisticated enough number system to grasp the vastness of the Heavenly host so throughout the Bible His Holy Spirit inspires the metaphor "[like] stars in the sky" instead of a number. Today we know the number of stars in sp... |
8,325,450 | Is there a way to get cookies for specific domain (Facebook) and delete all them using JavaScript?
I want to delete cookies for oAuth (Facebook and Gmail) when the user logs out. | 2011/11/30 | [
"https://Stackoverflow.com/questions/8325450",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1023476/"
] | No, that is not possible.
You can only access the cookies of your own domain. You can't even see the cookies from a different domain. | The [jQuery Cookie plugin](http://plugins.jquery.com/project/Cookie) is useful for getting the value of a cookie when you already know the name of the cookie you want to query, but provides no way to get a list of all the cookies that are set.
Refer this [DOC](http://www.electrictoolbox.com/javascript-get-all-cookies/... |
8,325,450 | Is there a way to get cookies for specific domain (Facebook) and delete all them using JavaScript?
I want to delete cookies for oAuth (Facebook and Gmail) when the user logs out. | 2011/11/30 | [
"https://Stackoverflow.com/questions/8325450",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/1023476/"
] | No, that is not possible.
You can only access the cookies of your own domain. You can't even see the cookies from a different domain. | So if I understand this correctly you actually want to logout the user from FB... Have you tried using the [FB SDK logout()](http://developers.facebook.com/docs/reference/javascript/FB.logout/) function? That will successfully delete all FB cookies from your domain.
Hope this helps |
220,290 | The center I volunteer for has received 22 Window 7 Professional PCs and a printer, all are networked to a 24 port D-Link switch.
What software could I use to configure multiple PCs at the same time. For example install software, configure system settings and also restrict access to certain websites (it is a children ... | 2011/01/09 | [
"https://serverfault.com/questions/220290",
"https://serverfault.com",
"https://serverfault.com/users/66158/"
] | Active Directory running on Windows Server would be your best bet. Failing that there are a mass of open source options for doing a lot of this stuff.
Microsoft offers discounts for registered non-profits, and if you can make friends with someone at Microsoft, you can probably get them to give you all sorts of good st... | Well you've basically got 2 problems there. Setting up the computers identically and restricting web access. My votes are for [FOG](http://www.fogproject.org/) to image all of the computers to a standard image and [OpenDNS](http://www.opendns.com/start/) to control web filtering.
As for keeping the kids from changing ... |
220,290 | The center I volunteer for has received 22 Window 7 Professional PCs and a printer, all are networked to a 24 port D-Link switch.
What software could I use to configure multiple PCs at the same time. For example install software, configure system settings and also restrict access to certain websites (it is a children ... | 2011/01/09 | [
"https://serverfault.com/questions/220290",
"https://serverfault.com",
"https://serverfault.com/users/66158/"
] | Active Directory running on Windows Server would be your best bet. Failing that there are a mass of open source options for doing a lot of this stuff.
Microsoft offers discounts for registered non-profits, and if you can make friends with someone at Microsoft, you can probably get them to give you all sorts of good st... | There is a microsoft free software [Microsoft SteadyState](http://www.microsoft.com/downloads/en/details.aspx?familyid=d077a52d-93e9-4b02-bd95-9d770ccdb431&displaylang=en) that can be used to lock down the configuration of the PC, i haven't used it in a production enviroment but it seemed ok so far, let us know how it ... |
220,290 | The center I volunteer for has received 22 Window 7 Professional PCs and a printer, all are networked to a 24 port D-Link switch.
What software could I use to configure multiple PCs at the same time. For example install software, configure system settings and also restrict access to certain websites (it is a children ... | 2011/01/09 | [
"https://serverfault.com/questions/220290",
"https://serverfault.com",
"https://serverfault.com/users/66158/"
] | Well you've basically got 2 problems there. Setting up the computers identically and restricting web access. My votes are for [FOG](http://www.fogproject.org/) to image all of the computers to a standard image and [OpenDNS](http://www.opendns.com/start/) to control web filtering.
As for keeping the kids from changing ... | There is a microsoft free software [Microsoft SteadyState](http://www.microsoft.com/downloads/en/details.aspx?familyid=d077a52d-93e9-4b02-bd95-9d770ccdb431&displaylang=en) that can be used to lock down the configuration of the PC, i haven't used it in a production enviroment but it seemed ok so far, let us know how it ... |
89,192 | [This answer](https://law.stackexchange.com/a/48892/36096) explains the difference between a void and voidable contract:
>
> Void means it never happened
>
>
>
>
> Voidable means someone has the right to declare it void (q.v.)
>
>
>
If a contract was signed due to illegal economic duress, I understand the co... | 2023/02/13 | [
"https://law.stackexchange.com/questions/89192",
"https://law.stackexchange.com",
"https://law.stackexchange.com/users/36096/"
] | >
> If a contract was signed due to economic duress, is it void or
> voidable?
>
>
>
No.
Economic duress is not a ground to find that a contract is void or voidable.
>
> is it automatically void or is it voidable by the victim if they
> choose?
>
>
>
Some kinds of conduct do give rise to a duress defense to... | Voidable
--------
[australia](/questions/tagged/australia "show questions tagged 'australia'")
[Duress](https://www.australiancontractlaw.info/law/duress) must be “illegitimate” pressure by one party on another and can include illegitimate [economic](http://lawcentral.com.au/LCNewsArchive/LCNewsIssueDetails_Public.as... |
61,577 | What can I do to develop my muscle for generating themes, purposes, and content, as very often I haven't used it, focusing mostly on style? | 2022/03/11 | [
"https://writers.stackexchange.com/questions/61577",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/25421/"
] | Copyright protects an arrangement of words, a "work", not the ideas behind that work. Even characters, while potentially protected by trademark, are not covered by copyright (though in a commercially published fiction of any consequence, especially one of a well-selling series or franchise, it's pretty likely the chara... | I'm not a lawyer, but my understanding is copyright is about intellectual property. I created the idea, therefore I own it.
If a news outlet re-writes a story, they weren't there. They don't own the intellectual property. Somebody else does.
Why should I benefit from somebody else's work? If I re-write a novel using ... |
61,577 | What can I do to develop my muscle for generating themes, purposes, and content, as very often I haven't used it, focusing mostly on style? | 2022/03/11 | [
"https://writers.stackexchange.com/questions/61577",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/25421/"
] | Copyright attaches to a work by the act of publication, or sharing the work for the purpose of publication.
A newspapers/websites own their original stories. Those stories that they publish gain copyright protection.
If an organization reproduces other source articles verbatim and without permission, then they are at... | I'm not a lawyer, but my understanding is copyright is about intellectual property. I created the idea, therefore I own it.
If a news outlet re-writes a story, they weren't there. They don't own the intellectual property. Somebody else does.
Why should I benefit from somebody else's work? If I re-write a novel using ... |
412 | I think we're getting too many **"Game Like ..."** questions, like [this](https://boardgames.stackexchange.com/questions/3054/games-of-the-same-strategy-and-depth-as-puerto-rico-that-play-in-90-minutes-or-le) and [that](https://boardgames.stackexchange.com/questions/1619/games-of-the-same-depth-and-play-time-as-race-fo... | 2011/03/30 | [
"https://boardgames.meta.stackexchange.com/questions/412",
"https://boardgames.meta.stackexchange.com",
"https://boardgames.meta.stackexchange.com/users/96/"
] | Personally, I'm not a fan of any such questions.
I feel that there is no one objective answer to them and that makes such questions unsuitable for a Q&A site.
This site cannot compete straight up with BGG (and shouldn't). This isn't a forum, and extensive back and forth discussions aren't handled well, by design. If ... | I completely agree that the questions are very subjective, and I suppose they do not follow the guidelines of objective Q&A. But this site isn't really making itself very attractive for the casual viewer. I guess what it boils down to is that I don't really think there's a market for a site that does absolute nothing b... |
412 | I think we're getting too many **"Game Like ..."** questions, like [this](https://boardgames.stackexchange.com/questions/3054/games-of-the-same-strategy-and-depth-as-puerto-rico-that-play-in-90-minutes-or-le) and [that](https://boardgames.stackexchange.com/questions/1619/games-of-the-same-depth-and-play-time-as-race-fo... | 2011/03/30 | [
"https://boardgames.meta.stackexchange.com/questions/412",
"https://boardgames.meta.stackexchange.com",
"https://boardgames.meta.stackexchange.com/users/96/"
] | Personally, I'm not a fan of any such questions.
I feel that there is no one objective answer to them and that makes such questions unsuitable for a Q&A site.
This site cannot compete straight up with BGG (and shouldn't). This isn't a forum, and extensive back and forth discussions aren't handled well, by design. If ... | I believe recommendation questions were covered, primarily on Gaming.
<http://blog.stackoverflow.com/2010/11/the-pee-wee-herman-rule/>
>
> If we get an excellent user who asks a *good, thoughtful* ["game like..."] question and sticks around in our community to participate, then it’s worth allowing it in those rare c... |
412 | I think we're getting too many **"Game Like ..."** questions, like [this](https://boardgames.stackexchange.com/questions/3054/games-of-the-same-strategy-and-depth-as-puerto-rico-that-play-in-90-minutes-or-le) and [that](https://boardgames.stackexchange.com/questions/1619/games-of-the-same-depth-and-play-time-as-race-fo... | 2011/03/30 | [
"https://boardgames.meta.stackexchange.com/questions/412",
"https://boardgames.meta.stackexchange.com",
"https://boardgames.meta.stackexchange.com/users/96/"
] | Personally, I'm not a fan of any such questions.
I feel that there is no one objective answer to them and that makes such questions unsuitable for a Q&A site.
This site cannot compete straight up with BGG (and shouldn't). This isn't a forum, and extensive back and forth discussions aren't handled well, by design. If ... | **"Game Like"** questions can be objective if written properly. **"Game Like"** answers can be objective if answered properly.
I believe some criteria can be applied to these questions to help keep things objective. The ultimate goal is to have a good question with a definitive answer. And some of these questions do h... |
412 | I think we're getting too many **"Game Like ..."** questions, like [this](https://boardgames.stackexchange.com/questions/3054/games-of-the-same-strategy-and-depth-as-puerto-rico-that-play-in-90-minutes-or-le) and [that](https://boardgames.stackexchange.com/questions/1619/games-of-the-same-depth-and-play-time-as-race-fo... | 2011/03/30 | [
"https://boardgames.meta.stackexchange.com/questions/412",
"https://boardgames.meta.stackexchange.com",
"https://boardgames.meta.stackexchange.com/users/96/"
] | I believe recommendation questions were covered, primarily on Gaming.
<http://blog.stackoverflow.com/2010/11/the-pee-wee-herman-rule/>
>
> If we get an excellent user who asks a *good, thoughtful* ["game like..."] question and sticks around in our community to participate, then it’s worth allowing it in those rare c... | I completely agree that the questions are very subjective, and I suppose they do not follow the guidelines of objective Q&A. But this site isn't really making itself very attractive for the casual viewer. I guess what it boils down to is that I don't really think there's a market for a site that does absolute nothing b... |
412 | I think we're getting too many **"Game Like ..."** questions, like [this](https://boardgames.stackexchange.com/questions/3054/games-of-the-same-strategy-and-depth-as-puerto-rico-that-play-in-90-minutes-or-le) and [that](https://boardgames.stackexchange.com/questions/1619/games-of-the-same-depth-and-play-time-as-race-fo... | 2011/03/30 | [
"https://boardgames.meta.stackexchange.com/questions/412",
"https://boardgames.meta.stackexchange.com",
"https://boardgames.meta.stackexchange.com/users/96/"
] | I believe recommendation questions were covered, primarily on Gaming.
<http://blog.stackoverflow.com/2010/11/the-pee-wee-herman-rule/>
>
> If we get an excellent user who asks a *good, thoughtful* ["game like..."] question and sticks around in our community to participate, then it’s worth allowing it in those rare c... | **"Game Like"** questions can be objective if written properly. **"Game Like"** answers can be objective if answered properly.
I believe some criteria can be applied to these questions to help keep things objective. The ultimate goal is to have a good question with a definitive answer. And some of these questions do h... |
93,865 | As we now [know for certain](http://www.westeros.org/Citadel/SSM/Entry/1206/), the World of Ice and Fire (Game of Thrones) is round. Well, we note that the southernmost known or charted area - specifically Sothoryos - are tropical jungle lands. This suggests they're close to the equator, rather than to the south pole.
... | 2015/06/26 | [
"https://scifi.stackexchange.com/questions/93865",
"https://scifi.stackexchange.com",
"https://scifi.stackexchange.com/users/16835/"
] | **tl;dr:** The short answer is, we have no idea what's down there.
---
When *The Lands of Ice and Fire* was released, it included a map of what was considered the "known world" -- Westeros, Essos, and Sothoryos. It also included a fourth map of a place called Ulthos, which may or may not be a continent. Ulthos is eas... | This region is unexplored, so no one in the story really knows. GRRM touches on this in a series of answers [regarding geographical information](http://www.westeros.org/Citadel/SSM/Entry/Geographical_Information/):
>
> There will be new maps in each book, so the pieces will gradually come together... but I am not sur... |
93,865 | As we now [know for certain](http://www.westeros.org/Citadel/SSM/Entry/1206/), the World of Ice and Fire (Game of Thrones) is round. Well, we note that the southernmost known or charted area - specifically Sothoryos - are tropical jungle lands. This suggests they're close to the equator, rather than to the south pole.
... | 2015/06/26 | [
"https://scifi.stackexchange.com/questions/93865",
"https://scifi.stackexchange.com",
"https://scifi.stackexchange.com/users/16835/"
] | **tl;dr:** The short answer is, we have no idea what's down there.
---
When *The Lands of Ice and Fire* was released, it included a map of what was considered the "known world" -- Westeros, Essos, and Sothoryos. It also included a fourth map of a place called Ulthos, which may or may not be a continent. Ulthos is eas... | *[The Lands of Ice and Fire](http://awoiaf.westeros.org/index.php/The_Lands_of_Ice_and_Fire)* depicts a map of *The Known World*:
[](https://i.stack.imgur.com/oTBGx.jpg)
We can see that to the South of the known continents of Westeros and Essos, ther... |
12,840 | I got two answers to a story-identification question, pointing to the **same series**. And the time marked for the two answers is the very same minute.
I still have to check if it is right series, (at first sight it does look so, but I'll have to do some more checking).
But when and if I am convinced both answers are ... | 2019/12/18 | [
"https://scifi.meta.stackexchange.com/questions/12840",
"https://scifi.meta.stackexchange.com",
"https://scifi.meta.stackexchange.com/users/115682/"
] | You have several options:
* **Do nothing**
As the questioner you never have an obligation to do anything with answers. When you receive any answer you can choose to comment on it, vote on it, flag it, or accept it, but you don’t have to do any of those. Here too you can do nothing if you so desire.
* **Upvote both an... | Paulie\_D's answer was earlier by 11 seconds ([22:58:11 vs. 22:58:22](https://scifi.stackexchange.com/posts/224677/timeline)).
Assuming you feel that the two answers ***are of otherwise equal quality***, I'd suggest you reward the one that was sooner. |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | We did some of the using NHibernate, however we stopped the project since it didn't provide us with the ROI we wanted. We ended up writing our own ORM/SQL layer which worked very well (worked since I no longer work there, I'm guessing it still works).
Our system used a open source project to generate the SQL (don't re... | I am a little confused as to how the orm would be used then at runtime? If the ORM would dynamically build something at runtime, how does the runtime code know what the orm did dynamically?
"have it at that point allow me to manipulate the data" - What is manipulating the data?
I may be missing something here and i... |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | Acording to this blog you can in fact use [NHibernate with dynamic mapping](http://ayende.com/Blog/archive/2008/05/01/Dynamic-Mapping-with-NHibernate.aspx). It takes a bit of tweaking though... | I am a little confused as to how the orm would be used then at runtime? If the ORM would dynamically build something at runtime, how does the runtime code know what the orm did dynamically?
"have it at that point allow me to manipulate the data" - What is manipulating the data?
I may be missing something here and i... |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | We did some of the using NHibernate, however we stopped the project since it didn't provide us with the ROI we wanted. We ended up writing our own ORM/SQL layer which worked very well (worked since I no longer work there, I'm guessing it still works).
Our system used a open source project to generate the SQL (don't re... | IDataReader doesn't map anything to an object you know. So your example should be written using classic query builder. |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | Acording to this blog you can in fact use [NHibernate with dynamic mapping](http://ayende.com/Blog/archive/2008/05/01/Dynamic-Mapping-with-NHibernate.aspx). It takes a bit of tweaking though... | IDataReader doesn't map anything to an object you know. So your example should be written using classic query builder. |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | We did some of the using NHibernate, however we stopped the project since it didn't provide us with the ROI we wanted. We ended up writing our own ORM/SQL layer which worked very well (worked since I no longer work there, I'm guessing it still works).
Our system used a open source project to generate the SQL (don't re... | Have you looked into using the ADO.NET Entity Framework?
[MSDN: LINQ to Entities](http://msdn.microsoft.com/en-us/library/bb386964.aspx)
It allows you to map database tables to an object model in such a manner that you can code without thinking about which database vendor is being used, and without worrying about min... |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | Acording to this blog you can in fact use [NHibernate with dynamic mapping](http://ayende.com/Blog/archive/2008/05/01/Dynamic-Mapping-with-NHibernate.aspx). It takes a bit of tweaking though... | We did some of the using NHibernate, however we stopped the project since it didn't provide us with the ROI we wanted. We ended up writing our own ORM/SQL layer which worked very well (worked since I no longer work there, I'm guessing it still works).
Our system used a open source project to generate the SQL (don't re... |
136,366 | I am trying to leverage ORM given the following requirements:
1) Using .NET Framework (latest Framework is okay)
2) Must be able to use Sybase, Oracle, MSSQL interchangeably
3) The schema is mostly static, BUT there are dynamic parts.
I am somewhat familiar with SubSonic and NHibernate, but not deeply.
I get... | 2008/09/25 | [
"https://Stackoverflow.com/questions/136366",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/12706/"
] | Acording to this blog you can in fact use [NHibernate with dynamic mapping](http://ayende.com/Blog/archive/2008/05/01/Dynamic-Mapping-with-NHibernate.aspx). It takes a bit of tweaking though... | Have you looked into using the ADO.NET Entity Framework?
[MSDN: LINQ to Entities](http://msdn.microsoft.com/en-us/library/bb386964.aspx)
It allows you to map database tables to an object model in such a manner that you can code without thinking about which database vendor is being used, and without worrying about min... |
11,312 | Are there any restrictions on cashing a high-value personal check (say just less than $100,000) from a bank where I don't hold an account.
My friend will give me a check for the amount from BofA, but my account is with Chase.
1. How long will it take for the amount to become available in my Chase account?
2. Will I b... | 2011/09/30 | [
"https://money.stackexchange.com/questions/11312",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4669/"
] | No regulatory restrictions
Your bank might hold it for an extra amount of time, you can ask them to lift that before you deposit it. | The last time I tried to cash a payroll check (not a personal check), drawn from BoA, at BoA, when I did not hold an account there, they were going to charge me. I would have gotten cash immediately, but I opted not to pay their fee. I don't remember the fee, and it's been about 5 years, so things may have changed.
Yo... |
11,312 | Are there any restrictions on cashing a high-value personal check (say just less than $100,000) from a bank where I don't hold an account.
My friend will give me a check for the amount from BofA, but my account is with Chase.
1. How long will it take for the amount to become available in my Chase account?
2. Will I b... | 2011/09/30 | [
"https://money.stackexchange.com/questions/11312",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4669/"
] | What happened in my case.
1. I deposited the amount in my Chase account, and it was available for me the next morning. I did tell the teller that it was kind of urgent and she told me that it will be available after clearing at midnight.
2. I was not able to cash the check at BofA, as they said the branches will not h... | No regulatory restrictions
Your bank might hold it for an extra amount of time, you can ask them to lift that before you deposit it. |
11,312 | Are there any restrictions on cashing a high-value personal check (say just less than $100,000) from a bank where I don't hold an account.
My friend will give me a check for the amount from BofA, but my account is with Chase.
1. How long will it take for the amount to become available in my Chase account?
2. Will I b... | 2011/09/30 | [
"https://money.stackexchange.com/questions/11312",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4669/"
] | No regulatory restrictions
Your bank might hold it for an extra amount of time, you can ask them to lift that before you deposit it. | While there is not a regulatory restriction, the bank can choose not to cash the check (its a private entity remember).
In general, I would not accept a personal check of that size for several reasons
1) Any amount of $10,000 MUST be reported to the government so they can investigate potential fraud claims.
2) Most ... |
11,312 | Are there any restrictions on cashing a high-value personal check (say just less than $100,000) from a bank where I don't hold an account.
My friend will give me a check for the amount from BofA, but my account is with Chase.
1. How long will it take for the amount to become available in my Chase account?
2. Will I b... | 2011/09/30 | [
"https://money.stackexchange.com/questions/11312",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4669/"
] | What happened in my case.
1. I deposited the amount in my Chase account, and it was available for me the next morning. I did tell the teller that it was kind of urgent and she told me that it will be available after clearing at midnight.
2. I was not able to cash the check at BofA, as they said the branches will not h... | The last time I tried to cash a payroll check (not a personal check), drawn from BoA, at BoA, when I did not hold an account there, they were going to charge me. I would have gotten cash immediately, but I opted not to pay their fee. I don't remember the fee, and it's been about 5 years, so things may have changed.
Yo... |
11,312 | Are there any restrictions on cashing a high-value personal check (say just less than $100,000) from a bank where I don't hold an account.
My friend will give me a check for the amount from BofA, but my account is with Chase.
1. How long will it take for the amount to become available in my Chase account?
2. Will I b... | 2011/09/30 | [
"https://money.stackexchange.com/questions/11312",
"https://money.stackexchange.com",
"https://money.stackexchange.com/users/4669/"
] | What happened in my case.
1. I deposited the amount in my Chase account, and it was available for me the next morning. I did tell the teller that it was kind of urgent and she told me that it will be available after clearing at midnight.
2. I was not able to cash the check at BofA, as they said the branches will not h... | While there is not a regulatory restriction, the bank can choose not to cash the check (its a private entity remember).
In general, I would not accept a personal check of that size for several reasons
1) Any amount of $10,000 MUST be reported to the government so they can investigate potential fraud claims.
2) Most ... |
129,298 | Recently, I got hired as a pharmacy technician at a mom and pop shop in my hometown. I'm fresh out of school and don't have a lot of experience in a pharmacy. I like my new job because its a steady pace work environment and very laid back. I've made a few mistakes since I've started working but nothing extreme, but the... | 2019/02/16 | [
"https://workplace.stackexchange.com/questions/129298",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/99888/"
] | Everyone makes mistakes; even people who are great at their job do. Try to not take it so hard; that serves no purpose and only stresses you out (which makes it more likely you will make mistakes).
What you do need to do is learn from your mistakes and apologize when you make them. As far as your coworkers and their a... | Be open and friendly and try to do the best that you can.
The other employee is likely annoyed at you because they feel that they gave you a simple instruction and you didn't follow it. This could be your fault due to some misunderstanding or it might be their fault due to insufficiently clear instructions (both of th... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | You cant go far without mastering templates in C++ if your writing code on windows. ATL, STL and various other windows libraries heavily use templates.
Side note\*. If your using visual studio , you might want to learn the quirks which are used in visual studio to support templates. For example , many windows librarie... | I'd say understanding templates is a requirement for modern C++ style and idioms and getting the most out of the language. They aren't as difficult as one is often made to believe. If you are a beginner I'd absolutely recommend a book like [Accelerated C++](http://www.buschnick.net/Book_Reviews/About.shtml#Accelerated%... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | Of course they are used in the industry. Just look at the Standard Template Library (STL)!
You definitely should know how to work with templates, and better, learn how to do some fancy things with them like template metaprogramming, ok, that may be optional, but template classes are not!
**EDIT:** Even more, a lot of... | I'd say understanding templates is a requirement for modern C++ style and idioms and getting the most out of the language. They aren't as difficult as one is often made to believe. If you are a beginner I'd absolutely recommend a book like [Accelerated C++](http://www.buschnick.net/Book_Reviews/About.shtml#Accelerated%... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | You'll need them sooner or later ;) But for a beginner they are a bit tricky to write (but easy to use, so use STL intensively). And after mastering other c++ skills (const-correctness, operators overloading, learning about compilation units etc) and gaining some experience you will start coding templates for yourself.... | Of course they are used in the industry. Just look at the Standard Template Library (STL)!
You definitely should know how to work with templates, and better, learn how to do some fancy things with them like template metaprogramming, ok, that may be optional, but template classes are not!
**EDIT:** Even more, a lot of... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | At my employer, the **main** thing we use that's in C++ and not in C is indeed generics, AKA "templates". Inheritance &c are nice (but with pluses and minuses), but templates are *absolutely crucial* -- **the** main, cost-less advantage of C++ over plain C. Master them, you **won't** be wasting time!-) | No, don't spend to much time on learning how to **implement** them. The other answers correctly explain that you certainly should learn how to *use* them. That makes sense; many libraries provide class templates and you should be learn to use those libraries. But writing your own templates is much rarer. |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | Of course they are used in the industry. Just look at the Standard Template Library (STL)!
You definitely should know how to work with templates, and better, learn how to do some fancy things with them like template metaprogramming, ok, that may be optional, but template classes are not!
**EDIT:** Even more, a lot of... | No, don't spend to much time on learning how to **implement** them. The other answers correctly explain that you certainly should learn how to *use* them. That makes sense; many libraries provide class templates and you should be learn to use those libraries. But writing your own templates is much rarer. |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | In addition to what the others said, they can be incredibly useful in your own code, and you definitely will come across it while reading others', so there is no harm in learning it. | No, don't spend to much time on learning how to **implement** them. The other answers correctly explain that you certainly should learn how to *use* them. That makes sense; many libraries provide class templates and you should be learn to use those libraries. But writing your own templates is much rarer. |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | You'll need them sooner or later ;) But for a beginner they are a bit tricky to write (but easy to use, so use STL intensively). And after mastering other c++ skills (const-correctness, operators overloading, learning about compilation units etc) and gaining some experience you will start coding templates for yourself.... | I'd say understanding templates is a requirement for modern C++ style and idioms and getting the most out of the language. They aren't as difficult as one is often made to believe. If you are a beginner I'd absolutely recommend a book like [Accelerated C++](http://www.buschnick.net/Book_Reviews/About.shtml#Accelerated%... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | You'll need them sooner or later ;) But for a beginner they are a bit tricky to write (but easy to use, so use STL intensively). And after mastering other c++ skills (const-correctness, operators overloading, learning about compilation units etc) and gaining some experience you will start coding templates for yourself.... | No, don't spend to much time on learning how to **implement** them. The other answers correctly explain that you certainly should learn how to *use* them. That makes sense; many libraries provide class templates and you should be learn to use those libraries. But writing your own templates is much rarer. |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | At my employer, the **main** thing we use that's in C++ and not in C is indeed generics, AKA "templates". Inheritance &c are nice (but with pluses and minuses), but templates are *absolutely crucial* -- **the** main, cost-less advantage of C++ over plain C. Master them, you **won't** be wasting time!-) | As others have noted, Templates are a very important part of the C++ language. In fact, they're a turing-complete language themselves ;)
However, not only does the STL make heavy use of templates (ever used std::vector or std::pair?), lots of other libraries do, too... the most notable is probably boost. I hope that gi... |
1,727,266 | I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly? | 2009/11/13 | [
"https://Stackoverflow.com/questions/1727266",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/210204/"
] | You'll need them sooner or later ;) But for a beginner they are a bit tricky to write (but easy to use, so use STL intensively). And after mastering other c++ skills (const-correctness, operators overloading, learning about compilation units etc) and gaining some experience you will start coding templates for yourself.... | As others have noted, Templates are a very important part of the C++ language. In fact, they're a turing-complete language themselves ;)
However, not only does the STL make heavy use of templates (ever used std::vector or std::pair?), lots of other libraries do, too... the most notable is probably boost. I hope that gi... |
64,230,272 | I have a hard requirement to use a single ELB Classic (CLB) load balancer. Can a single ELB Classic (CLB) distribute traffic between two different Auto Scaling Groups, both running the same application code with no special path based routing needed from an ALB (Application Load Balancer).
For example, in a high availa... | 2020/10/06 | [
"https://Stackoverflow.com/questions/64230272",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/5781926/"
] | A single classis ELB cannot have multiple ASGs associated with it, but the newer Application Load Balancer can do this. | It turns out that it is possible to associate more than one Autoscaling Group (all with the same application code in it's instances) with the same ELB Classic (CLB). It's just not a common use-case which is why people don't think it can be done. |
19,716 | Hi All,
I recently got feedback from a client that they prefer an in-person approach for sound design, preferring to be in the room as the sounds are created. This is something I understand from a composition perspective, improvising on a keyboard to hone in on what they're looking for. It seems more difficult for sou... | 2013/07/08 | [
"https://sound.stackexchange.com/questions/19716",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/362/"
] | Oh man, bad move on the sound recordists part and even worse move from the producer to use those sections! Obviously not your fault at all so I'd say explain the situation to the director/producer and let them decide what they want to do | What Joseph said. I think your best option would be to suggest playing the scene with music and no other sound, or maybe sound really low so only the loudest things pop through and it makes sense you can't hear the talking. Your next option would be to lip read or get someone who can lip read and have another actor ove... |
19,716 | Hi All,
I recently got feedback from a client that they prefer an in-person approach for sound design, preferring to be in the room as the sounds are created. This is something I understand from a composition perspective, improvising on a keyboard to hone in on what they're looking for. It seems more difficult for sou... | 2013/07/08 | [
"https://sound.stackexchange.com/questions/19716",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/362/"
] | Oh man, bad move on the sound recordists part and even worse move from the producer to use those sections! Obviously not your fault at all so I'd say explain the situation to the director/producer and let them decide what they want to do | Just thought I'd add the outcome: I've ended up plugging the gap with some snippets of the actors ad-libbing from other takes. Works fairly well, time-wise, and you'd only notice the lip-sync issues if you were really looking. It is only about a second long though so doesn't look too bad. Best that could be done in the... |
19,716 | Hi All,
I recently got feedback from a client that they prefer an in-person approach for sound design, preferring to be in the room as the sounds are created. This is something I understand from a composition perspective, improvising on a keyboard to hone in on what they're looking for. It seems more difficult for sou... | 2013/07/08 | [
"https://sound.stackexchange.com/questions/19716",
"https://sound.stackexchange.com",
"https://sound.stackexchange.com/users/362/"
] | What Joseph said. I think your best option would be to suggest playing the scene with music and no other sound, or maybe sound really low so only the loudest things pop through and it makes sense you can't hear the talking. Your next option would be to lip read or get someone who can lip read and have another actor ove... | Just thought I'd add the outcome: I've ended up plugging the gap with some snippets of the actors ad-libbing from other takes. Works fairly well, time-wise, and you'd only notice the lip-sync issues if you were really looking. It is only about a second long though so doesn't look too bad. Best that could be done in the... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.