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 |
|---|---|---|---|---|---|
128,732 | I'm going to a concert to Vienna on Saturday (two days). I just realized that there aren't any trains back to my home in the night so I'd have to wait til the morning until the first train leaves again (5.43 AM).
I don't know when the concert will end, but expect it to be somewhere between midnight and 2 AM.
Now, I ... | 2018/12/20 | [
"https://travel.stackexchange.com/questions/128732",
"https://travel.stackexchange.com",
"https://travel.stackexchange.com/users/70911/"
] | If your main concern is that you have to pay for a hotel room for the entire day but would spend only a couple of hours in it, maybe you could opt to leave Vienna later in the day or early evening instead of early morning.
That way you can relax after a possibly tiresome concert, wake up fresh, then either spend time... | As you are staying on a weekend, there will be plenty of bars, clubs and other entertainment locations open till the early morning. Some of them may be loud, some quiet, so you can pick depending on what you are likely to be in a mood in after the concert.
Here's an english website listing many options: <https://www.w... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | "The standard model for user authentication on websites involves a "login" authentication event, after which (if successful) a user is "inside the wall" with a persistent secure session"
1. This isn't really correct. It's partly true, but only for web sites that invent their own authentication.
2. If you use "digest a... | If your RESTful framework is only going to be used by your web application, and will not be used as an API for third parties, I see no reason why you cannot use the same authentication scheme as the rest of your application. You could think of this authentication as a lower-level layer than the "application" level. The... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | One option to preserve cachability in intermediaries for pages with user-specific elements is to add the user-specific markup via Ajax. You serve every use the same page, including some JavaScript that will do an XHR request to a resource that returns something different based on the user login. You then merge this int... | If your RESTful framework is only going to be used by your web application, and will not be used as an API for third parties, I see no reason why you cannot use the same authentication scheme as the rest of your application. You could think of this authentication as a lower-level layer than the "application" level. The... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | >
> This persistence of authentication
> seems to break RESTful-ness
>
>
>
Instead of authenticating a user, you may think about creating a session. You will be returned a new "Session ID", along with the appropriate HTTP status code (200: OK, 403: Forbidden, etc).
>
> The user will probably see HTML which is
>... | "The standard model for user authentication on websites involves a "login" authentication event, after which (if successful) a user is "inside the wall" with a persistent secure session"
1. This isn't really correct. It's partly true, but only for web sites that invent their own authentication.
2. If you use "digest a... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | >
> This persistence of authentication
> seems to break RESTful-ness
>
>
>
Instead of authenticating a user, you may think about creating a session. You will be returned a new "Session ID", along with the appropriate HTTP status code (200: OK, 403: Forbidden, etc).
>
> The user will probably see HTML which is
>... | Re: Daniel's answer:
If a session is a transient object that gets quickly deleted, this is not very cachable, as any cache you create would only have a useful lifetime of maybe a day, but also continue to use up space in the cache anyway.
Wouldn't it be better to create the USER as an object, and authenticate using... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | "The standard model for user authentication on websites involves a "login" authentication event, after which (if successful) a user is "inside the wall" with a persistent secure session"
1. This isn't really correct. It's partly true, but only for web sites that invent their own authentication.
2. If you use "digest a... | "This persistence of authentication seems to break RESTful-ness. Caching and statelessness appear to be broken, because the authenticated user will probably see HTML which is different from that which a non-authenticated user will see for the same request"
It is ok if the representation of the resource is slightly dif... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | "This persistence of authentication seems to break RESTful-ness. Caching and statelessness appear to be broken, because the authenticated user will probably see HTML which is different from that which a non-authenticated user will see for the same request"
It is ok if the representation of the resource is slightly dif... | If your RESTful framework is only going to be used by your web application, and will not be used as an API for third parties, I see no reason why you cannot use the same authentication scheme as the rest of your application. You could think of this authentication as a lower-level layer than the "application" level. The... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | One option to preserve cachability in intermediaries for pages with user-specific elements is to add the user-specific markup via Ajax. You serve every use the same page, including some JavaScript that will do an XHR request to a resource that returns something different based on the user login. You then merge this int... | "This persistence of authentication seems to break RESTful-ness. Caching and statelessness appear to be broken, because the authenticated user will probably see HTML which is different from that which a non-authenticated user will see for the same request"
It is ok if the representation of the resource is slightly dif... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | >
> This persistence of authentication
> seems to break RESTful-ness
>
>
>
Instead of authenticating a user, you may think about creating a session. You will be returned a new "Session ID", along with the appropriate HTTP status code (200: OK, 403: Forbidden, etc).
>
> The user will probably see HTML which is
>... | If your RESTful framework is only going to be used by your web application, and will not be used as an API for third parties, I see no reason why you cannot use the same authentication scheme as the rest of your application. You could think of this authentication as a lower-level layer than the "application" level. The... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | >
> This persistence of authentication
> seems to break RESTful-ness
>
>
>
Instead of authenticating a user, you may think about creating a session. You will be returned a new "Session ID", along with the appropriate HTTP status code (200: OK, 403: Forbidden, etc).
>
> The user will probably see HTML which is
>... | I think about it like this: The "noun" in user authentication is a session. So your login form uses a POST request to "create" a new session, and logging out uses a DELETE request to "delete" the session.
I know what you mean about the persistence of authentication going against RESTfulness, but the cookies (which giv... |
2,010,699 | I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a concept.
I've got a system up and running, using URLs strictly to define 'nouns' in the system and take the 'verbs' fro... | 2010/01/06 | [
"https://Stackoverflow.com/questions/2010699",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/82257/"
] | I think about it like this: The "noun" in user authentication is a session. So your login form uses a POST request to "create" a new session, and logging out uses a DELETE request to "delete" the session.
I know what you mean about the persistence of authentication going against RESTfulness, but the cookies (which giv... | If your RESTful framework is only going to be used by your web application, and will not be used as an API for third parties, I see no reason why you cannot use the same authentication scheme as the rest of your application. You could think of this authentication as a lower-level layer than the "application" level. The... |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | C-Free is also a Nice one u can go for it | use Gcc with CodeBlocks, this is the best solution for C programming in Windows 7/8/Vista
Get it from here.
<http://www.codeblocks.org/downloads/26>
But if you want to run Turbo C, you can do it via Dos Emulator DOS-Box
(as answered by Chaitanya)
However I will strongly recommend to use Code Blocks
You may need to ... |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | GCC from either MinGW or Cygwin should work fine under Windows 7. | C-Free is also a Nice one u can go for it |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | [Microsoft Visual C++ 2010 Express](http://www.microsoft.com/express/Downloads/#2010-Visual-CPP), which is free. | [lcc-win32](http://www.cs.virginia.edu/~lcc-win32/) is a free compiler for Windows. |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | C-Free is also a Nice one u can go for it | [lcc-win32](http://www.cs.virginia.edu/~lcc-win32/) is a free compiler for Windows. |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | [Microsoft Visual C++ 2010 Express](http://www.microsoft.com/express/Downloads/#2010-Visual-CPP), which is free. | use Gcc with CodeBlocks, this is the best solution for C programming in Windows 7/8/Vista
Get it from here.
<http://www.codeblocks.org/downloads/26>
But if you want to run Turbo C, you can do it via Dos Emulator DOS-Box
(as answered by Chaitanya)
However I will strongly recommend to use Code Blocks
You may need to ... |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | You can get Turbo C working on Windows 7 with [DOSBox](http://www.dosbox.com/). Some of the applications where I work were made in-house years ago, and only work on operating systems that support full screen DOS applications, which means anything prior to Windows Vista. Since deploying Windows XP on new systems was not... | You can try [Qt Creator](http://qt.nokia.com/products/developer-tools/). As a bonus you'll get whole Qt, which is platform independent C++ GUI library. |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | GCC from either MinGW or Cygwin should work fine under Windows 7. | You can try [Qt Creator](http://qt.nokia.com/products/developer-tools/). As a bonus you'll get whole Qt, which is platform independent C++ GUI library. |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | You can get Turbo C working on Windows 7 with [DOSBox](http://www.dosbox.com/). Some of the applications where I work were made in-house years ago, and only work on operating systems that support full screen DOS applications, which means anything prior to Windows Vista. Since deploying Windows XP on new systems was not... | [lcc-win32](http://www.cs.virginia.edu/~lcc-win32/) is a free compiler for Windows. |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | You can get Turbo C working on Windows 7 with [DOSBox](http://www.dosbox.com/). Some of the applications where I work were made in-house years ago, and only work on operating systems that support full screen DOS applications, which means anything prior to Windows Vista. Since deploying Windows XP on new systems was not... | use Gcc with CodeBlocks, this is the best solution for C programming in Windows 7/8/Vista
Get it from here.
<http://www.codeblocks.org/downloads/26>
But if you want to run Turbo C, you can do it via Dos Emulator DOS-Box
(as answered by Chaitanya)
However I will strongly recommend to use Code Blocks
You may need to ... |
200,435 | I'm having a problem finding which compiler can support Windows7 for C or C++ programming.
I had installed Turbo but it does not work in full screen on Windows 7.
Please let me know which compiler will be appropriate. | 2010/10/17 | [
"https://superuser.com/questions/200435",
"https://superuser.com",
"https://superuser.com/users/52642/"
] | [Microsoft Visual C++ 2010 Express](http://www.microsoft.com/express/Downloads/#2010-Visual-CPP), which is free. | You can get Turbo C working on Windows 7 with [DOSBox](http://www.dosbox.com/). Some of the applications where I work were made in-house years ago, and only work on operating systems that support full screen DOS applications, which means anything prior to Windows Vista. Since deploying Windows XP on new systems was not... |
242,070 | I have my OSM data in a local server.
I already done with the contour lines using [Phyghtmap](http://wiki.openstreetmap.org/wiki/Phyghtmap) and achieve a good result.
Now I'm trying to show the relief "shadows" like this beautiful map:[](https://i.sta... | 2017/05/30 | [
"https://gis.stackexchange.com/questions/242070",
"https://gis.stackexchange.com",
"https://gis.stackexchange.com/users/12416/"
] | While the plugin snaileater suggested should work, I think you will have an easier time if you convert your 4 columns to WKT - as you already mentioned in the question - particularly, if there are other columns in the CSV (containing transport link attributes). | Points have usually (...) 2 coordinates, what u try to import is obviously **flow map** data with origin/destination information. There are some plugin dedicated to this kind of import ... look for example at **[Oursins plug-in](http://plugins.qgis.org/plugins/Oursins/)** in the repositories, that will help u import th... |
69,205 | It is well known fact that, to slow down the growth of drosophila, they are grown at 18-19 degree Celsius. It helps in maintaining stocks for longer time without frequent change of food. Is it applicable to mosquitoes? especially *Aedes aegypti*? can we slow down its growth by growing them at lower temperature? | 2018/01/01 | [
"https://biology.stackexchange.com/questions/69205",
"https://biology.stackexchange.com",
"https://biology.stackexchange.com/users/36066/"
] | Check "[breeding temperature](https://www.google.fr/search?num=100&ei=MIhxWo_PGoz4kwXjp5-ACQ&q=%22breeding%20temperature%22%20mosquitoes&oq=%22breeding%20temperature%22%20mosquitoes&gs_l=psy-ab.3..0i22i30k1.12406.25620.0.25859.45.41.4.0.0.0.170.3738.31j9.41.0....0...1c.1.64.psy-ab..0.45.3859.6..0j46j35i39k1j0i67k1j0i46... | Maybe: <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3992806/> is a NIH paper that gives a quick overview on maintaining an A. aegypti colony. From the description they are somewhat fussy, but some of the lines imply temperature sensitivity at least at certain stages.
try google 'protocol for maintaining mosquito colo... |
18,029 | Christians that believe in the Trinity believe that God the Father, God the Son, and God the Holy Ghost are one and the same God. How then, do they explain [John 17:21](http://www.biblegateway.com/passage/?search=John%2017:21&version=NIV) where Jesus prays that his disciples "may be one; as thou, Father, art in me, and... | 2013/07/31 | [
"https://christianity.stackexchange.com/questions/18029",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/5277/"
] | Read it in the context as one in purpose, yet separate in person... [John 1:1-14](http://biblia.com/bible/nasb95/John%201.1-14)
While I am a separate person, in purpose I am in unity and the same as other followers of Christ.
To quote a [sermon of John MacArthur's](http://www.gty.org/resources/sermons/1569/jesus-pray... | Jesus is both Divine and human. So one simple answer is to take it that the disciples, as human beings, would have the same close relationship with God as Jesus in His human nature does.
This was fulfilled at Pentecost, with the indwelling of the Holy Spirit. And its for all believers. |
18,029 | Christians that believe in the Trinity believe that God the Father, God the Son, and God the Holy Ghost are one and the same God. How then, do they explain [John 17:21](http://www.biblegateway.com/passage/?search=John%2017:21&version=NIV) where Jesus prays that his disciples "may be one; as thou, Father, art in me, and... | 2013/07/31 | [
"https://christianity.stackexchange.com/questions/18029",
"https://christianity.stackexchange.com",
"https://christianity.stackexchange.com/users/5277/"
] | Read it in the context as one in purpose, yet separate in person... [John 1:1-14](http://biblia.com/bible/nasb95/John%201.1-14)
While I am a separate person, in purpose I am in unity and the same as other followers of Christ.
To quote a [sermon of John MacArthur's](http://www.gty.org/resources/sermons/1569/jesus-pray... | Because the Holy Spirit is the Spirit of the Father and the Spirit of the Son.
In “On the Trinity” (*De Trinitate*), Book XV, Ch. XXVI, St. Augustine wrote,
>
> Furthermore, in that highest Trinity which is God, there are no intervals of time, by which it can be shown, or at least inquired, whether the Son was born... |
53,992 | I recently bought a four family property. I wanted to provide washers and dryers for my tents, 1 set per two units. However, I have run into an interesting dilemma. People want hot water on the washers but where should it come from? I don't think it's fair to run the hot water from one of the tenants hot water tanks.
... | 2014/12/07 | [
"https://diy.stackexchange.com/questions/53992",
"https://diy.stackexchange.com",
"https://diy.stackexchange.com/users/20914/"
] | Since this is a common facility for your tenants, it should be installed in such a way that neither tenant is paying for the gas or electricity required for the washer.
If there is no common hot water heater in the building, then you should do the following:
1. Have an additional electric meter installed to supply el... | I you already have 4 water heaters installed and don't want to add a 5th for the laundry (which I think is probably the best solution), you could tie the the washing machines into one of the units' hot water systems, pay for the gas bill yourself, and give that unit free hot water (maybe you could charge higher rent fo... |
101,760 | I'm wondering if it is possible for an amateur (I have a physics background but not EE) to
1. Learn how to design something like the CCD or cMOS or LCD
2. Learn how to prepare the necessary files for the Fab (like TSMC) to produce my design
What is the best way of learning these? Are there any good tutorials or exam... | 2014/03/04 | [
"https://electronics.stackexchange.com/questions/101760",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/38196/"
] | Yes, it is possible. Yes, it is expensive.
Most fabs will need the design on a mask, to get the data onto a mask you should provide it in an industry standard of GDSII or OASIS.
TSMC will probably make a multi die wafer with your design being only one of ~200-4000 dies on the whole wafer. It will be manufactured with... | Here is a design platform. Freeware. <http://opencircuitdesign.com/magic/>
Here are 3 CCD specimen source files. Magic compatible. <http://www.filewatcher.com/p/magic-doc-8.0.60-4.fc18.x86_64.rpm.784608/usr/share/doc/magic-doc-8.0.60/scmos/examples/ccd-0.htm>
Here is a simulation environment. Freeware & compatible wi... |
170,690 | In *Harry Potter and the Goblet of Fire*, we see that it is possible to train yourself to resist the *Imperius Curse*. How is it that Harry, a 14 year old boy, was able to resist Barty Crouch Jr. after about an hour, but Moody, the paranoid, experienced, always prepared Auror was trapped for a whole year? | 2017/09/28 | [
"https://scifi.stackexchange.com/questions/170690",
"https://scifi.stackexchange.com",
"https://scifi.stackexchange.com/users/78289/"
] | Moody was kept in a trunk so it might not matter if he had fought it.
---------------------------------------------------------------------
It seems like Moody was placed under the Imperius Curse after he was already captured using other methods.
>
> “We journeyed to his house. Moody put up a struggle. There was a c... | This question implies that Moody was under the effects of the Imperius Curse for most of a year. If that were the case, then Moody would not have been locked inside a magic trunk. If Crouch Jr. needed anything from Moody, like information, then Crouch most likely used a combination of the Imperius Curse and the Cruciat... |
9,477 | A profile (clay soil) was excavated to a depth of 100 cm in the north of Tunisia. We have found limestone nodules, colluvium and alluvium. What I would like to know is the nature of the bedrock of this soil. Can we assert that there is a limestone bedrock? | 2017/01/18 | [
"https://earthscience.stackexchange.com/questions/9477",
"https://earthscience.stackexchange.com",
"https://earthscience.stackexchange.com/users/7315/"
] | There are three possible sources for the reported limestone nodules from the clay horizon from colluvium and alluvium. First, as noted before, they could be either detrital gravel of limestone either eroded from limestone bedrock. Given that the bedrock source from which this gravel was eroded and transported from coul... | I can offer a counter-example. What if your soil sample is taken from the site of some lost ancient Roman buildings? The Romans built plenty in northern Tunisia, and like using [travertine limestone](http://tigerprints.clemson.edu/cgi/viewcontent.cgi?article=1909&context=all_theses). A few long-destroyed buildings woul... |
255,107 | Is Drupal is ready for [GDPR compliance](http://www.eugdpr.org)?
Is there any patch or extension they need to apply for GDPR ready for all EU countries as this is the law for EU countries the come in effect on may 25, 2018. | 2018/02/04 | [
"https://drupal.stackexchange.com/questions/255107",
"https://drupal.stackexchange.com",
"https://drupal.stackexchange.com/users/82898/"
] | I don't think Drupal is "ready" for the [General Data Protection Regulation (GDPR)](http://www.eugdpr.org), at least not yet.
However, help seems to be on its way ... go checkout what the [General Data Protection Regulation](https://www.drupal.org/project/gdpr) module *will be* (repeat: *will be*) about. From its proj... | Drupal is not ready and even if the Drupal project on GDPR is finished it is not enough to comply with GDPR. Every Organization has to do their due dilligence on that. Time is running out. |
255,107 | Is Drupal is ready for [GDPR compliance](http://www.eugdpr.org)?
Is there any patch or extension they need to apply for GDPR ready for all EU countries as this is the law for EU countries the come in effect on may 25, 2018. | 2018/02/04 | [
"https://drupal.stackexchange.com/questions/255107",
"https://drupal.stackexchange.com",
"https://drupal.stackexchange.com/users/82898/"
] | I'm one of the maintainers of the [GDPR](https://www.drupal.org/project/gdpr) module.
First of all I'd like to call your attention to the fact that GDPR is not an IT-related question solely. Personally I'd suggest stop considering *"adding an extension to my CMS will make me legally good"*. That's not that easy. You, ... | Drupal is not ready and even if the Drupal project on GDPR is finished it is not enough to comply with GDPR. Every Organization has to do their due dilligence on that. Time is running out. |
296,109 | Civilize, 2015 states that
>
> Specifically, these studies examine the effect of political cycles on
> stock returns or the differences in stock returns under **left- or
> right-wing governments**
>
>
>
I did search and see that
Generally, the left-wing is characterized by an emphasis on "ideas such as freedom, e... | 2021/08/27 | [
"https://ell.stackexchange.com/questions/296109",
"https://ell.stackexchange.com",
"https://ell.stackexchange.com/users/132319/"
] | * 'Left-wing' and 'right-wing' refer to styles of *politics*.
* Democracies, autocracies etc are types of *government*.
The difference is important. Although politics and government are closely linked, they are not synonyms.
Wikipedia gives this broad explanation of the difference between left and right wing politics... | No. This is a language site and not a political site, so I don't want to get into discussions of politics.
But briefly, in 21st century political debate, "left-wing" is basically synonymous with "liberal" and "right-wing" with "conservative".
People often say that liberals accept or favor change while conservatives w... |
850,540 | I am still moving some local accounts to domain accounts and today I am having issues with Outlook 2010.
I have a local username with all the Outlook information in it. So I've exported all the information I wanted to a PST file saved in C:
Then, in the domain username I went to Outlook and tried to import from *File... | 2017/05/16 | [
"https://serverfault.com/questions/850540",
"https://serverfault.com",
"https://serverfault.com/users/415693/"
] | Move the file to another location, such as D:\, then try again.
I ever encountered similar issues when loading file from root system drive C:\, moving it to another drive fixed the issue. | “**Access denied**” error can happen if you have switched from logging on to your computer with a local account to a Microsoft account while the PST file was in use.
**To fix it right-click the PST file,**
**Choose Properties** >> **Security** >> **Edit** >> **choose your Microsoft account**, and **select Full cont... |
25,271,261 | The problem I'm having is very similar to the post here:
["Global element 'configuration' has already been declared" in web config](https://stackoverflow.com/questions/20228392/global-element-configuration-has-already-been-declared-in-web-config)
The solution for it is unclear to me though.
When I open my web.config ... | 2014/08/12 | [
"https://Stackoverflow.com/questions/25271261",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/3629730/"
] | Open XML->Schemas... to get the current XML schema set.
You probably have one or more duplicated or overlapping schema files selected. (e.g. DotNetConfig.xsd and DotNetConfig45.xsd).
You only want one of them so make the other set to automatic under the "Use" column. | It is weird but for me this issue got fixed once I closed the file in the editor that was causing these warnings and recompiled. |
815 | So far I have seen some Perl modules; [Finance:MtGox](http://search.cpan.org/~mndrix/Finance-MtGox-0.01/lib/Finance/MtGox.pm) and [Webservice:MtGox](http://search.cpan.org/~beppu/WebService-MtGox-0.05/lib/WebService/MtGox.pm) for interacting with Mt.Gox, a [Ruby gem for Mt.Gox](http://rubygems.org/gems/mtgox) and a [Py... | 2011/09/09 | [
"https://bitcoin.stackexchange.com/questions/815",
"https://bitcoin.stackexchange.com",
"https://bitcoin.stackexchange.com/users/136/"
] | **There is now the [XChange](https://github.com/timmolter/XChange) library**
This is a pure Java library that has been released under the MIT license. It currently supports Mt Gox, but there are simple hooks to allow other exchanges such as [Intersango](http://intersango.com) and [CryptoXChange](http://cryptoxchange.c... | I have rolled my own mtgox api implementation in java. it is based on [google-Gson](http://code.google.com/p/google-gson/) and raw URL requests. i plan on releasing it eventually but the code is not yet on release quality level. if you have any specific questions, just ask in comments |
54,084 | Are there any guidelines as to when it's useful to have a touchscreen interface? My first experience was with my smartphone and I thought the touchscreen was great and a huge improvement on usability. I then bought a tablet and I find the touchscreen isn't as useful. This is because tablets have larger screen and it fe... | 2014/03/15 | [
"https://ux.stackexchange.com/questions/54084",
"https://ux.stackexchange.com",
"https://ux.stackexchange.com/users/25338/"
] | I don't know of any studies, but I do know that I was surprised to discover that I do use the touch screen on my windows 8 ultrabook a lot, frequently in desktop mode. I especially like to scroll by swiping my finger on the touch screen rather than by using two fingers on the track pad. Also it is often faster to just ... | I am not aware of any studies trying to argue touchscreens aren't useful and in any case it's either an addition or the only option. On laptops you can still use your mouse, and on tablets using a trackball or anything similar works terribly and mouses/keyboards are impossible.
>
> Also what is the point of multi tou... |
54,084 | Are there any guidelines as to when it's useful to have a touchscreen interface? My first experience was with my smartphone and I thought the touchscreen was great and a huge improvement on usability. I then bought a tablet and I find the touchscreen isn't as useful. This is because tablets have larger screen and it fe... | 2014/03/15 | [
"https://ux.stackexchange.com/questions/54084",
"https://ux.stackexchange.com",
"https://ux.stackexchange.com/users/25338/"
] | I don't know of any studies, but I do know that I was surprised to discover that I do use the touch screen on my windows 8 ultrabook a lot, frequently in desktop mode. I especially like to scroll by swiping my finger on the touch screen rather than by using two fingers on the track pad. Also it is often faster to just ... | One good use of a touchscreen is in public 'kiosks'
( such as interactive displays in museums )
As they can be built into a display they can be made more robust than other forms of interaction. |
63,527 | I just wanted to make sure I am approaching this correctly: I am working on a nonfiction historical biography about a missionary. When quoting sources which use archaic spellings of places/words, do I need to note the non-normative spelling at all? I assume that [sic] would be inappropriate in this case but am not sure... | 2022/10/16 | [
"https://writers.stackexchange.com/questions/63527",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/56739/"
] | What you do is write:
>
> We are continually being asked why we do not leave Hongkong[sic]... To say the least the Seed must be sown and the Lord will look after the developement [sic]."
>
>
>
"[sic]" literally means "Yes, this is not a typo but the original wording." | It's legible, comprehensible, no actual need to edit. I think it'll be best if you leave the quotes intact.
I don't think you strictly need to note that you didn't make any edits, but if you're worried about it looking like your mistake, I'd suggest including a short note stating that you left the spelling of all quot... |
1,020,570 | My bos insists that I configure our mail so that when a message is received sender will get a auto-reply message confirming that his message was indeed received by our company.
So is it possible to mark such auto-reply message somehow in order to prevent sender's auto-reply mechanism from sending auto-replay to my aut... | 2020/06/08 | [
"https://serverfault.com/questions/1020570",
"https://serverfault.com",
"https://serverfault.com/users/578367/"
] | No.
You need an adapter for the printer to have a network port ready. Where the serial female connector is remark there is a screw, it's usually on those model to remove a controller card.
Check [there](https://www.youtube.com/watch?v=jCnk7wOu51I) for how to install the adapter.
It seem a older device, just worth... | i setup tills so can confirm that this isnt possible, basicaly the RJ11 you are referring to is not to communicate to printer, this is for Till to be connected to Printer so EPOS can sent a message via printer to Till to open.
RJ11 is only used to send a signal to till unit so it open and only pulses, not to receive a... |
4,178,702 | Preface: When I say "machine" below, I mean either a physical dedicated server, or a virtual private server. When I say "node" I mean, an instance of the erlang virtual machine, of which there could be multiple running as separate processes under a single unix kernel.
I've got a project that involves multiple erlang/O... | 2010/11/14 | [
"https://Stackoverflow.com/questions/4178702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/448866/"
] | The answer is: it depends.
Advantages of using a single node:
* Memory is controlled by a single Erlang VM. It is way easier.
* Inter-application communication (if using erlang-messaging) is faster.
* Less operating system context switches happens
Advantages of using multiple nodes:
* If the system is linking in C ... | Agree with @I GIVE CRAP ANSWERS
I would go with one VM. Here is why:
* dynamic handling of run time queues belonging to schedulers (with varied origin of CPU load its important)
* fewer VMs to monitor
* better understanding of memory allocation and easier to spot malicious process (can compare all of them at once)
* ... |
4,178,702 | Preface: When I say "machine" below, I mean either a physical dedicated server, or a virtual private server. When I say "node" I mean, an instance of the erlang virtual machine, of which there could be multiple running as separate processes under a single unix kernel.
I've got a project that involves multiple erlang/O... | 2010/11/14 | [
"https://Stackoverflow.com/questions/4178702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/448866/"
] | The answer is: it depends.
Advantages of using a single node:
* Memory is controlled by a single Erlang VM. It is way easier.
* Inter-application communication (if using erlang-messaging) is faster.
* Less operating system context switches happens
Advantages of using multiple nodes:
* If the system is linking in C ... | We've always used one VM per application because it's easier to manage.
The scheduler and SMP support in Erlang have come a long way in the past few years, so there isn't as much reason as there used to be to run multiple VMs on the same node. |
4,178,702 | Preface: When I say "machine" below, I mean either a physical dedicated server, or a virtual private server. When I say "node" I mean, an instance of the erlang virtual machine, of which there could be multiple running as separate processes under a single unix kernel.
I've got a project that involves multiple erlang/O... | 2010/11/14 | [
"https://Stackoverflow.com/questions/4178702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/448866/"
] | The answer is: it depends.
Advantages of using a single node:
* Memory is controlled by a single Erlang VM. It is way easier.
* Inter-application communication (if using erlang-messaging) is faster.
* Less operating system context switches happens
Advantages of using multiple nodes:
* If the system is linking in C ... | I Agree with previous answers but there is a case scenario where having multiple nodes per cpu is the answer: When a heavy task hits the node. A task may take multiple minutes to complete and in such case a gen server will hold the node until completion of the task. |
4,178,702 | Preface: When I say "machine" below, I mean either a physical dedicated server, or a virtual private server. When I say "node" I mean, an instance of the erlang virtual machine, of which there could be multiple running as separate processes under a single unix kernel.
I've got a project that involves multiple erlang/O... | 2010/11/14 | [
"https://Stackoverflow.com/questions/4178702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/448866/"
] | Agree with @I GIVE CRAP ANSWERS
I would go with one VM. Here is why:
* dynamic handling of run time queues belonging to schedulers (with varied origin of CPU load its important)
* fewer VMs to monitor
* better understanding of memory allocation and easier to spot malicious process (can compare all of them at once)
* ... | I Agree with previous answers but there is a case scenario where having multiple nodes per cpu is the answer: When a heavy task hits the node. A task may take multiple minutes to complete and in such case a gen server will hold the node until completion of the task. |
4,178,702 | Preface: When I say "machine" below, I mean either a physical dedicated server, or a virtual private server. When I say "node" I mean, an instance of the erlang virtual machine, of which there could be multiple running as separate processes under a single unix kernel.
I've got a project that involves multiple erlang/O... | 2010/11/14 | [
"https://Stackoverflow.com/questions/4178702",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/448866/"
] | We've always used one VM per application because it's easier to manage.
The scheduler and SMP support in Erlang have come a long way in the past few years, so there isn't as much reason as there used to be to run multiple VMs on the same node. | I Agree with previous answers but there is a case scenario where having multiple nodes per cpu is the answer: When a heavy task hits the node. A task may take multiple minutes to complete and in such case a gen server will hold the node until completion of the task. |
207,345 | In an audio circuit, such as a guitar's electronics (the only thing I ever dabble with!), I have always thought (probably simplistically) of every point along a continuous earth path being essentially all at the same voltage (a 'zero volt' reference voltage).
However, I was wondering - if you extend an earth wire from... | 2015/12/22 | [
"https://electronics.stackexchange.com/questions/207345",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/95135/"
] | Yes, long ground connections can pick up noise, which means the ground in one place is a different voltage from the ground at another place. For single-ended signals, this ground offset voltage usually appears as part of the signal.
There are two common strategies for avoiding this situation:
- Use differential signa... | 0V is only 0V at the point of reference - it gradually degrades as you move away from that physical position. It may be nano volts difference up close but can rapidly become milli volts and, if sensitive input circuits have 0V connections that are not at the same point, the several milli volt difference can be an AC no... |
207,345 | In an audio circuit, such as a guitar's electronics (the only thing I ever dabble with!), I have always thought (probably simplistically) of every point along a continuous earth path being essentially all at the same voltage (a 'zero volt' reference voltage).
However, I was wondering - if you extend an earth wire from... | 2015/12/22 | [
"https://electronics.stackexchange.com/questions/207345",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/95135/"
] | Yes, long ground connections can pick up noise, which means the ground in one place is a different voltage from the ground at another place. For single-ended signals, this ground offset voltage usually appears as part of the signal.
There are two common strategies for avoiding this situation:
- Use differential signa... | The answer is YES if your application depends upon the the difference of voltage between the two ends of the wire to be close to zero. In other words if a functioning system is sensitive to signal levels at both ends of the wire at once then there can be reason to be aware that noise pickup can happen.
On the other ha... |
207,345 | In an audio circuit, such as a guitar's electronics (the only thing I ever dabble with!), I have always thought (probably simplistically) of every point along a continuous earth path being essentially all at the same voltage (a 'zero volt' reference voltage).
However, I was wondering - if you extend an earth wire from... | 2015/12/22 | [
"https://electronics.stackexchange.com/questions/207345",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/95135/"
] | 0V is only 0V at the point of reference - it gradually degrades as you move away from that physical position. It may be nano volts difference up close but can rapidly become milli volts and, if sensitive input circuits have 0V connections that are not at the same point, the several milli volt difference can be an AC no... | The answer is YES if your application depends upon the the difference of voltage between the two ends of the wire to be close to zero. In other words if a functioning system is sensitive to signal levels at both ends of the wire at once then there can be reason to be aware that noise pickup can happen.
On the other ha... |
580,629 | After reading for about 3 hours about the different problems and situations regarding very low and very high resistor values (source resistance / feedback resistance) with op-amps theoretically I understood all the mentioned facts.
But converting this knowledge into practically constructing a real schematic is still a... | 2021/08/07 | [
"https://electronics.stackexchange.com/questions/580629",
"https://electronics.stackexchange.com",
"https://electronics.stackexchange.com/users/293017/"
] | The op-amp load in the case of the non-inverting amplifier is the sum of the two resistors.
In general you want to stay well away from drawing the maximum load from the op-amp in most cases at low frequencies (and you've picked a 3MHz op-amp optimized for DC specifications so I assume a low frequency application- kHz)... | For Non-inverting gain 1+Rf/Rs=37.5 then Rf/Rs=36.5 and the current values are safe, but the R values may be scaled up by orders of magnitude until input currents create an input voltage offset then the Vin+ ought to have a series R= Rs//Rf to Vin+.
The other factor is for RRIO, the output impedance is low for unity g... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | It really comes down to your discretion, and more will be said later in this answer about that. For now, let's take your example given. To get around using filler words such as **so**, just be more conscientious of it. If you don't want to use them, just cut them out in your editing process.
The sentence makes perfec... | You could have arguments on either side about this idea.
Some people will argue that using these words, as you say, will give the writing a more conversational style and make the audience feel more comfortable. I believe that this can be an appropriate style of writing for blogs, especially as they are known to be a mo... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | Words like 'therefore', 'hence', can be used to replace "so". For replacing the adverb "anyways", there are many expressions and phrases that are able to be used in such a context such as: 'at any rate', 'in any case', 'at any manner', 'anyhow'.
As for effectiveness, it is somewhat effective to use such words as 'so'... | You could have arguments on either side about this idea.
Some people will argue that using these words, as you say, will give the writing a more conversational style and make the audience feel more comfortable. I believe that this can be an appropriate style of writing for blogs, especially as they are known to be a mo... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | In your example, the word may soften up the sentence and paragraph, but it remains spoken English, and does give the impression you're not entirely sure of what you're saying. Consider the following:
>
> So on this point I'll just stress that (...)
>
>
>
vs.
>
> On this point I'll just stress that (..)
>
>
> ... | Filler words can help you reach a higher word count, but if you want to be more concise, delete them. I find that filler words can help in rough drafts, but in final drafts, they sometimes detract from the power of the sentence.
For example:
>
> This was founded. So people came.
>
>
>
is slightly less powerfu... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | While I agree with the technical points that Nathaniel and Dale make, in that it does soften the tone of what is said, I don't think it is something that should immediately be avoided.
To me that is akin to telling a carpenter to avoid using a chisel.
I imagine a carpenter spends a good deal of time learning how to... | >
> My question is - is this actually an effective writing style, in the sense of being easy to read and persuasive, and if not, how do I get around it?
>
>
>
Regarding ease of reading, it's a wash. These types of words can add a friendly tone but they also make the text less concise.
Regarding persuasion, they r... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | Dialog in writing is not the same as dialog in writing between two people. Usually the dialog is shorter. However, it is possible that to convey a specific character's attitude "filler" words like "so" can and should be used. I am sure that there are other reasons.
However, I find myself using them much too often in d... | Filler words can help you reach a higher word count, but if you want to be more concise, delete them. I find that filler words can help in rough drafts, but in final drafts, they sometimes detract from the power of the sentence.
For example:
>
> This was founded. So people came.
>
>
>
is slightly less powerfu... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | While I agree with the technical points that Nathaniel and Dale make, in that it does soften the tone of what is said, I don't think it is something that should immediately be avoided.
To me that is akin to telling a carpenter to avoid using a chisel.
I imagine a carpenter spends a good deal of time learning how to... | Filler words can help you reach a higher word count, but if you want to be more concise, delete them. I find that filler words can help in rough drafts, but in final drafts, they sometimes detract from the power of the sentence.
For example:
>
> This was founded. So people came.
>
>
>
is slightly less powerfu... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | In general (and in your question and example) it makes the text feel friendlier and more conversational.
In some contexts, a more conversational tone can make your ideas less persuasive. Whether it works depends on who is reading, and why they're reading.
The word "just" in your example has the effect of discounting ... | While I agree with the technical points that Nathaniel and Dale make, in that it does soften the tone of what is said, I don't think it is something that should immediately be avoided.
To me that is akin to telling a carpenter to avoid using a chisel.
I imagine a carpenter spends a good deal of time learning how to... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | >
> My question is - is this actually an effective writing style, in the sense of being easy to read and persuasive, and if not, how do I get around it?
>
>
>
Regarding ease of reading, it's a wash. These types of words can add a friendly tone but they also make the text less concise.
Regarding persuasion, they r... | Dialog in writing is not the same as dialog in writing between two people. Usually the dialog is shorter. However, it is possible that to convey a specific character's attitude "filler" words like "so" can and should be used. I am sure that there are other reasons.
However, I find myself using them much too often in d... |
18,048 | I find myself using these words *all the time*.
Now (<-- there's one!), to be clear the context I'm using them is in conversational style writing, on social commentary, or in forum posts like these. It's not formal academic writing, and it's not story telling. (In a fictional story, these words would be perfectly app... | 2015/07/07 | [
"https://writers.stackexchange.com/questions/18048",
"https://writers.stackexchange.com",
"https://writers.stackexchange.com/users/14366/"
] | In general (and in your question and example) it makes the text feel friendlier and more conversational.
In some contexts, a more conversational tone can make your ideas less persuasive. Whether it works depends on who is reading, and why they're reading.
The word "just" in your example has the effect of discounting ... | You could have arguments on either side about this idea.
Some people will argue that using these words, as you say, will give the writing a more conversational style and make the audience feel more comfortable. I believe that this can be an appropriate style of writing for blogs, especially as they are known to be a mo... |
243,914 | I have a list view that after a double click, a record opens a new form to show the details, but the record in the list view lost the "selection"....
How do I know which record was clicked ???
Thanks
Maria João | 2008/10/28 | [
"https://Stackoverflow.com/questions/243914",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/32115/"
] | The listview control has a *HideSelection* property that defaults to True. Set this to False and the current row will remain highlighted even if the control loses focus. | Try setting the HideSelection property on the list view to false. It's enabled by default. |
243,914 | I have a list view that after a double click, a record opens a new form to show the details, but the record in the list view lost the "selection"....
How do I know which record was clicked ???
Thanks
Maria João | 2008/10/28 | [
"https://Stackoverflow.com/questions/243914",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/32115/"
] | The listview control has a *HideSelection* property that defaults to True. Set this to False and the current row will remain highlighted even if the control loses focus. | Note that the selection will turn "gray" when focus is lost, and "blue" when focused. Keeping it blue when the focus is lost is more difficult ... you'll have to override the ListView::DrawItem |
3,371 | What happens internally when ESP8266 goes to deep sleep mode. Is there any official documentation explaining that? | 2018/09/07 | [
"https://iot.stackexchange.com/questions/3371",
"https://iot.stackexchange.com",
"https://iot.stackexchange.com/users/6799/"
] | You can see this document <https://www.losant.com/blog/making-the-esp8266-low-powered-with-deep-sleep>
In summary, ESP8266 supports 3 sleep modes:
1. Modem-sleep
2. Light-sleep
3. Deep-sleep
[](https://i.stack.imgur.com/ejx8u.jpg)
### Modem-sleep M... | Have a look [here](https://en.wikipedia.org/wiki/Clock_gating) as well, it is about clock gating and what actually happens when a micro goes to sleep. In short, to greatly reduce power consumption, internal peripherals (such as its ADC and so) are disabled.
Also, embedded.com has a neat explanation of [what happens und... |
4,655 | A project I'm working on involves wireless transmission of images from a camera to a host computer in real time. Can the Raspberry Pi be used as a [DSP](http://en.wikipedia.org/wiki/Digital_signal_processor) for the camera for image acquisition and pre-processing? | 2013/01/25 | [
"https://raspberrypi.stackexchange.com/questions/4655",
"https://raspberrypi.stackexchange.com",
"https://raspberrypi.stackexchange.com/users/5610/"
] | The [OpenMAX API](http://www.khronos.org/openmax/) is available on the Raspberry Pi. It handles audio and video encoding/decoding, [for example, JPEG](http://www.raspberrypi.org/phpBB3/viewtopic.php?f=33&t=15463&hilit=decoding%20image%20with%20openmax).
The eLinux wiki lists other [APIs usable on the Raspberry Pi](htt... | It has a DSP for image postprocessing, but the drivers are closed, and you can't see the specification sheet unless you are [NDAed](http://en.wikipedia.org/wiki/Non-disclosure_agreement), etc... Which is a bit annoying. I think they use it for the new camera module. |
4,655 | A project I'm working on involves wireless transmission of images from a camera to a host computer in real time. Can the Raspberry Pi be used as a [DSP](http://en.wikipedia.org/wiki/Digital_signal_processor) for the camera for image acquisition and pre-processing? | 2013/01/25 | [
"https://raspberrypi.stackexchange.com/questions/4655",
"https://raspberrypi.stackexchange.com",
"https://raspberrypi.stackexchange.com/users/5610/"
] | The [OpenMAX API](http://www.khronos.org/openmax/) is available on the Raspberry Pi. It handles audio and video encoding/decoding, [for example, JPEG](http://www.raspberrypi.org/phpBB3/viewtopic.php?f=33&t=15463&hilit=decoding%20image%20with%20openmax).
The eLinux wiki lists other [APIs usable on the Raspberry Pi](htt... | <http://thinkrpi.wordpress.com/2013/05/22/opencv-and-camera-board-csi/>
Pierre has worked on image processing on Rpi. I think you will find the mentioned tutorials helpful iff you have a prior knowledge of languages.
AYBABTU |
214,583 | The “not an answer” flag on answers is meant to be used when
>
> This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether.
>
>
>
The “very low quality” flag on answers is meant to be used when
>
> This answer ... | 2014/01/02 | [
"https://meta.stackexchange.com/questions/214583",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/149076/"
] | I rarely see any content that really is VLQ-flaggable anyway.
There is a thin region between spam and OK (not good, just not deletable) answers that we term as "very low quality", and answers in that region are rarely found.
A post is "very low quality" if it has problems that can't be fixed by others. I find that so... | No. "Not an answer" is more of a hint that a mod could convert the answer to a comment. This is not appropriate in the "low quality" case. |
214,583 | The “not an answer” flag on answers is meant to be used when
>
> This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether.
>
>
>
The “very low quality” flag on answers is meant to be used when
>
> This answer ... | 2014/01/02 | [
"https://meta.stackexchange.com/questions/214583",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/149076/"
] | I rarely see any content that really is VLQ-flaggable anyway.
There is a thin region between spam and OK (not good, just not deletable) answers that we term as "very low quality", and answers in that region are rarely found.
A post is "very low quality" if it has problems that can't be fixed by others. I find that so... | For rewording the "Looks OK" button, why don't we rename it "Shouldn't be Deleted", "Not Deleteable", or "Don't Delete"? That would make it clear that ALL of the following are "good" answers with respect to the Low Quality Posts queue (that is, they shouldn't be deleted):
* Correct and useful answers
* Incorrect answe... |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | Similar to what josh is saying, I would try and see if you hit this with some sort of network trace. What I recommend for easiest use is [Bonjour Browser](http://www.tildesoft.com/). This program lists all the bonjour services and who is advertising them, in this case we are talking AFP probably. I use this often at wo... | This may not be the answer, but I got rid of mine by going to the **System Preferences > Sharing** and unchecked **Remote Login**. I don't have a clue how I happened to enable that before! |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | I've added a possible answer over on SuperUser
<https://superuser.com/questions/268380/mysterious-shared-server-with-same-name-appearing-disappearing/338732>
>
> Sounds like you might have SMB (Windows) Sharing turned on.
>
>
> To check, go to the System Preferences and click on Sharing. In the list on the left cl... | I tried all the tricks I could find without success, but eventually solved it with the clue here that the phantom names on the network were "stowaways" on the Airport network.
I had about 8 variations on the name of the Mac Mini on our network: some were names I gave it, some were simply appended numbers to one of the... |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | This may not be the answer, but I got rid of mine by going to the **System Preferences > Sharing** and unchecked **Remote Login**. I don't have a clue how I happened to enable that before! | I turned WiFi on and off and it got rid of the shared computer. |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | I've added a possible answer over on SuperUser
<https://superuser.com/questions/268380/mysterious-shared-server-with-same-name-appearing-disappearing/338732>
>
> Sounds like you might have SMB (Windows) Sharing turned on.
>
>
> To check, go to the System Preferences and click on Sharing. In the list on the left cl... | This may be meaningless to your situation, but I found this article educational -- about how a person's mac has two MAC addresses associated with it (one for its wifi identity and one for its non-wifi, ethernet identity.) One of those "jekyll and hyde" existences is likely the other mystery machine for SOME of the peop... |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | Similar to what josh is saying, I would try and see if you hit this with some sort of network trace. What I recommend for easiest use is [Bonjour Browser](http://www.tildesoft.com/). This program lists all the bonjour services and who is advertising them, in this case we are talking AFP probably. I use this often at wo... | In 10.7 removing the "shared" phantom computer can often be done by going to System Preferences>Sharing – then toggle on and off all the radio buttons that contain the word "sharing." This should reset the sidebar to default. |
24,006 | On my MacBook, in the Finder's sidebar there's a machine appearing under "Shared" that I don't recognize and definitely doesn't exist on our local network. When I attempt to connect to it, I get this message:
>
> The server "otseeley-remote" is available on your computer. Access the volumes and files locally.
>
>
>... | 2011/09/02 | [
"https://apple.stackexchange.com/questions/24006",
"https://apple.stackexchange.com",
"https://apple.stackexchange.com/users/6873/"
] | I've added a possible answer over on SuperUser
<https://superuser.com/questions/268380/mysterious-shared-server-with-same-name-appearing-disappearing/338732>
>
> Sounds like you might have SMB (Windows) Sharing turned on.
>
>
> To check, go to the System Preferences and click on Sharing. In the list on the left cl... | Similar to what josh is saying, I would try and see if you hit this with some sort of network trace. What I recommend for easiest use is [Bonjour Browser](http://www.tildesoft.com/). This program lists all the bonjour services and who is advertising them, in this case we are talking AFP probably. I use this often at wo... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | You look like you are an expert on a field that your supervisor isn't, and that expertise is necessary for a collaborator to make progress on his thesis. Therefore, I would expect that your supervisor would motivate both of you to work together, so that the other PhD student can benefit from your expertise, and you cou... | I have a bi-weekly meeting with my MSc and Ph.D. students that some time is 6 hours long. We discuss ideas and brainstorming solutions; they work on different subjects. When I was doing my Ph.D, I designed an algorithm from A-Z gave it to an MSc student to implement, he published a paper I did not co-author it and did ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | Actually, I think you should relax and take your advisor's advice. Collaboration is a good thing, and it is a two-way street. You give a bit and you get a bit. I assume you got an acknowledgement in the paper for your help. I don't think it would be appropriate if you weren't. But authorship is a different thing.
You... | There are plenty of answers already, so there will naturally be some overlap between mine and what's already said, but I hope to be able to give some food for thought anyways.
First of all, judging by the way you express yourself, both on the OP and the comments, you seem to be quite agitated by the situation. Before ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | >
> When the PhD student started to write a paper about it, I asked him to be on the paper, since I felt I contributed directly to his research. But he said I just gave him suggestions and he could add me in the acknowledgments, not as co-author. And he said I should ask my supervisor if I deserve to be on the paper.
... | The other answers cover most of the points but I’d just like to add that submission doesn’t necessarily equate with acceptance. They may have rushed this paper slightly to meet a conference deadline and neglected you in the rush to submit. They may be planning a journal submission after the conference and would like to... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | Actually, I think you should relax and take your advisor's advice. Collaboration is a good thing, and it is a two-way street. You give a bit and you get a bit. I assume you got an acknowledgement in the paper for your help. I don't think it would be appropriate if you weren't. But authorship is a different thing.
You... | You have numerous replies. I will simply say "no, by my and what I believe are reasonable standards, you are not qualified to be a co-author" and "no you would be very unwise to involve the department head/chairperson." If one of my Ph.D. students felt the way you do, I would counsel them appropriately. If they subsequ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | >
> I am planing in taking it to the head of department.
>
>
>
Let me assure you that this is a bad idea. 99 times out of 100 the department head will not intervene in these matters. Moreover even if they do (again, super unlikely), and you get things your way with this paper, I assure you that this will forever m... | It's possible that your supervisor and your cuckoo think that you don't deserve co-authorship because they didn't let you edit the paper before submitting it. But the amount of time you spent providing needed advice and guidance in my opinion deserves more than a mere acknowledgement.
That said, raising a stink about ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | There are plenty of answers already, so there will naturally be some overlap between mine and what's already said, but I hope to be able to give some food for thought anyways.
First of all, judging by the way you express yourself, both on the OP and the comments, you seem to be quite agitated by the situation. Before ... | There are some formal rules around academic ethics in relation to authorship. [Vancouver Protocol](http://storage.googleapis.com/wzukusers/user-17415557/documents/56640b2c61339C4KMzWo/Vancouver%20Protocol.pdf) states that authorship credit should be based only on substantial contributions to:
1. conception and design... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | >
> I am planing in taking it to the head of department.
>
>
>
Let me assure you that this is a bad idea. 99 times out of 100 the department head will not intervene in these matters. Moreover even if they do (again, super unlikely), and you get things your way with this paper, I assure you that this will forever m... | There are some formal rules around academic ethics in relation to authorship. [Vancouver Protocol](http://storage.googleapis.com/wzukusers/user-17415557/documents/56640b2c61339C4KMzWo/Vancouver%20Protocol.pdf) states that authorship credit should be based only on substantial contributions to:
1. conception and design... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | >
> I am planing in taking it to the head of department.
>
>
>
Let me assure you that this is a bad idea. 99 times out of 100 the department head will not intervene in these matters. Moreover even if they do (again, super unlikely), and you get things your way with this paper, I assure you that this will forever m... | You have numerous replies. I will simply say "no, by my and what I believe are reasonable standards, you are not qualified to be a co-author" and "no you would be very unwise to involve the department head/chairperson." If one of my Ph.D. students felt the way you do, I would counsel them appropriately. If they subsequ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | Actually, I think you should relax and take your advisor's advice. Collaboration is a good thing, and it is a two-way street. You give a bit and you get a bit. I assume you got an acknowledgement in the paper for your help. I don't think it would be appropriate if you weren't. But authorship is a different thing.
You... | In the future I’d suggest being clearer about whether a project is joint work earlier in the process. It doesn’t sound to me from your description that you deserve coauthorship, but I do see why you feel shortchanged. The earlier on that you have this conversation the less chance there is for miscommunication and hurt ... |
137,554 | My PhD supervisor (in the field of artificial intelligence) invited me to several meetings with another PhD student. Since I have more knowledge than my supervisor in some topics, I made many suggestions about how this student could improve his methodology. In total, I went to 5 meetings of 3–4 hours each. I could have... | 2019/09/24 | [
"https://academia.stackexchange.com/questions/137554",
"https://academia.stackexchange.com",
"https://academia.stackexchange.com/users/114370/"
] | The other answers cover most of the points but I’d just like to add that submission doesn’t necessarily equate with acceptance. They may have rushed this paper slightly to meet a conference deadline and neglected you in the rush to submit. They may be planning a journal submission after the conference and would like to... | It's possible that your supervisor and your cuckoo think that you don't deserve co-authorship because they didn't let you edit the paper before submitting it. But the amount of time you spent providing needed advice and guidance in my opinion deserves more than a mere acknowledgement.
That said, raising a stink about ... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | Your resume is your sales brochure. While you shouldn't tell any untruths, there is no need for it to give every piece of information you have. If you don't think listing something you did would help you, then don't put it on.
If that leaves a gap in your employment record, you are going to have to account for that at... | I think that you should have an "additional work experience" section in your CV, where you can list additional positions and smaller jobs that contributed to your professional development. Warehouses, fast foods, call center... everything will contribute to showing that you worked hard to get where you are and that mak... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | I think that you should have an "additional work experience" section in your CV, where you can list additional positions and smaller jobs that contributed to your professional development. Warehouses, fast foods, call center... everything will contribute to showing that you worked hard to get where you are and that mak... | Leave the graduation year off your CV. That will solve the problem of the possibility of HR extrapolating your age from your experience.
Once you've done that, just put the relevant work experience in. That is, excise all the stuff you did that is in a different field
Note that it is not "dishonest" to keep a CV shor... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | Your resume is your sales brochure. While you shouldn't tell any untruths, there is no need for it to give every piece of information you have. If you don't think listing something you did would help you, then don't put it on.
If that leaves a gap in your employment record, you are going to have to account for that at... | If you have a degree, your status as a "high school dropout" is irrelevant, just as nobody begrudges the former CEO of Microsoft for being a university dropout. And many people start careers late because it is a second career, or that it took them a while to find the first career. And when I was a hiring manager for a ... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | You should be proud of these jobs. they represent an indicator that you are militant, combatant and defying all difficulties to reach your goal.
you dont have to list these jobs in detail. just saying "Handicraft Job while studying" is a good point and indicator that you are self-motivated, hard-worker and eager to ... | I strongly recommend that your CV includes your complete work and educational history. The old stuff can be very short but it should be there. Otherwise it looks like you have something to hide. If I see any gap in a CV I always ask about it. "I took two years off trying to bike around the world" is a perfectly good ga... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | I think that you should have an "additional work experience" section in your CV, where you can list additional positions and smaller jobs that contributed to your professional development. Warehouses, fast foods, call center... everything will contribute to showing that you worked hard to get where you are and that mak... | I strongly recommend that your CV includes your complete work and educational history. The old stuff can be very short but it should be there. Otherwise it looks like you have something to hide. If I see any gap in a CV I always ask about it. "I took two years off trying to bike around the world" is a perfectly good ga... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | If you have a degree, your status as a "high school dropout" is irrelevant, just as nobody begrudges the former CEO of Microsoft for being a university dropout. And many people start careers late because it is a second career, or that it took them a while to find the first career. And when I was a hiring manager for a ... | Leave the graduation year off your CV. That will solve the problem of the possibility of HR extrapolating your age from your experience.
Once you've done that, just put the relevant work experience in. That is, excise all the stuff you did that is in a different field
Note that it is not "dishonest" to keep a CV shor... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | I think that you should have an "additional work experience" section in your CV, where you can list additional positions and smaller jobs that contributed to your professional development. Warehouses, fast foods, call center... everything will contribute to showing that you worked hard to get where you are and that mak... | You should be proud of these jobs. they represent an indicator that you are militant, combatant and defying all difficulties to reach your goal.
you dont have to list these jobs in detail. just saying "Handicraft Job while studying" is a good point and indicator that you are self-motivated, hard-worker and eager to ... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | If you have a degree, your status as a "high school dropout" is irrelevant, just as nobody begrudges the former CEO of Microsoft for being a university dropout. And many people start careers late because it is a second career, or that it took them a while to find the first career. And when I was a hiring manager for a ... | I strongly recommend that your CV includes your complete work and educational history. The old stuff can be very short but it should be there. Otherwise it looks like you have something to hide. If I see any gap in a CV I always ask about it. "I took two years off trying to bike around the world" is a perfectly good ga... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | Your resume is your sales brochure. While you shouldn't tell any untruths, there is no need for it to give every piece of information you have. If you don't think listing something you did would help you, then don't put it on.
If that leaves a gap in your employment record, you are going to have to account for that at... | Leave the graduation year off your CV. That will solve the problem of the possibility of HR extrapolating your age from your experience.
Once you've done that, just put the relevant work experience in. That is, excise all the stuff you did that is in a different field
Note that it is not "dishonest" to keep a CV shor... |
41,784 | A coworker and I started within a week of each other. We both interviewed for the same position and he is at a different level since he is a fresh graduate. We never had a good working chemistry and I did not report his faux pas to my manager in the past. Fortunately, we no longer work on the same projects.
Recently,... | 2015/02/22 | [
"https://workplace.stackexchange.com/questions/41784",
"https://workplace.stackexchange.com",
"https://workplace.stackexchange.com/users/32804/"
] | Your resume is your sales brochure. While you shouldn't tell any untruths, there is no need for it to give every piece of information you have. If you don't think listing something you did would help you, then don't put it on.
If that leaves a gap in your employment record, you are going to have to account for that at... | You should be proud of these jobs. they represent an indicator that you are militant, combatant and defying all difficulties to reach your goal.
you dont have to list these jobs in detail. just saying "Handicraft Job while studying" is a good point and indicator that you are self-motivated, hard-worker and eager to ... |
159,240 | I have just aquired a new hat as a part of the [Winter Bash](http://winterba.sh/) celebrations.
I was wondering, what can be done with my hat?
I have worked out I can wear it, take it off, admire it in my collection of hats, and feel smug about having a hat.
* Are there any other things that this hat can be used fo... | 2012/12/19 | [
"https://meta.stackexchange.com/questions/159240",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/201437/"
] | What about:
* Bragging about it
* Complimenting other users for their hats
* Try to collect them all
* Find a suitable gravatar to fit with the hat
* Thank the developers for including a piece of joy into our life
Remember, the christmas thought, it is not about the food and the presents, it is about caring for each ... | No, it's just a decoration to your gravatar. Nothing more, nothing less.
Other users might admire you for having a nice or secret hat.
You might attract more women this way if you choose the proper hat. :-) |
159,240 | I have just aquired a new hat as a part of the [Winter Bash](http://winterba.sh/) celebrations.
I was wondering, what can be done with my hat?
I have worked out I can wear it, take it off, admire it in my collection of hats, and feel smug about having a hat.
* Are there any other things that this hat can be used fo... | 2012/12/19 | [
"https://meta.stackexchange.com/questions/159240",
"https://meta.stackexchange.com",
"https://meta.stackexchange.com/users/201437/"
] | What about:
* Bragging about it
* Complimenting other users for their hats
* Try to collect them all
* Find a suitable gravatar to fit with the hat
* Thank the developers for including a piece of joy into our life
Remember, the christmas thought, it is not about the food and the presents, it is about caring for each ... | Read [Winter Bash FAQ](http://winterba.sh/faq) and you will know what you can do. |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
Our unique positi... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
I see us as havin... |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
Our unique positi... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
A professional si... |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
I think what diff... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
I see us as havin... |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
**Expertise**: Be... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
I see us as havin... |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
I think what diff... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
A professional si... |
1,018 | In connection with the moderator elections, we are holding a Q&A thread for the candidates. Questions collected from an earlier thread have been compiled into this one, which shall now serve as the space for the candidates to provide their answers. Due to the submission count, we have selected all provided questions as... | 2014/04/28 | [
"https://graphicdesign.meta.stackexchange.com/questions/1018",
"https://graphicdesign.meta.stackexchange.com",
"https://graphicdesign.meta.stackexchange.com/users/2117/"
] | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
**Expertise**: Be... | >
> What do you see as being GD.SE's unique position or role in the design world? How do you intend to strengthen that? Or to put it another way, how would/do you 'sell' this site to designers who've never heard of it? What do you see as our USP (Unique Selling Proposition) or key strength?
>
>
>
A professional si... |
16,196,588 | Is it a reasonable/responsible idea to store a database result set in the user's session, as opposed to loading it fresh from the database on every page load? I am aware of the availability of caching the generated HTML code in a cache file on the server but that has too many convenience issues in my opinion.
For exam... | 2013/04/24 | [
"https://Stackoverflow.com/questions/16196588",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/330098/"
] | Is there any reason you can't use a conventional cache like [Memcached](http://memcached.org/) for this instead of trying to jam it into the session?
The problem with using the session cache in this manner is it creates clutter. Session data should be kept as lean as possible since it's loaded on every request. Dumpin... | Others adviced to use Memcached. It adds complexity and requires RAM (so it makes MySQL MUCH MUCH MUCH slower if they run on the same server). It's possible that it's the best solution for you, but since I don't know any solution which is "good for everyone", and since I don't know your workload, I just suggest alterna... |
16,196,588 | Is it a reasonable/responsible idea to store a database result set in the user's session, as opposed to loading it fresh from the database on every page load? I am aware of the availability of caching the generated HTML code in a cache file on the server but that has too many convenience issues in my opinion.
For exam... | 2013/04/24 | [
"https://Stackoverflow.com/questions/16196588",
"https://Stackoverflow.com",
"https://Stackoverflow.com/users/330098/"
] | Yes, it's reasonable and recommended to cache data that doesn't change very often. The fastest SQL query is the one you don't run at all.
One tricky problem is deciding when to refresh the cached version of the data. There's a famous quote about this:
>
> "There are only two hard problems in Computer Science: cache ... | Others adviced to use Memcached. It adds complexity and requires RAM (so it makes MySQL MUCH MUCH MUCH slower if they run on the same server). It's possible that it's the best solution for you, but since I don't know any solution which is "good for everyone", and since I don't know your workload, I just suggest alterna... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.