qid
int64
1
74.7M
question
stringlengths
12
33.8k
date
stringlengths
10
10
metadata
list
response_j
stringlengths
0
115k
response_k
stringlengths
2
98.3k
165,720
I'm looking for an easy way to debug RESTful services. For example, most webapps can be debugged using your average web browser. Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST. I am not looking to automate tests. I'd like to run new services through a quick sanity check, ideally without having to writing my own client.
2008/10/03
[ "https://Stackoverflow.com/questions/165720", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14731/" ]
[Postman](https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop), a Google Chrome extension, may be helpful. Edit years later: Also the website of the url in case Chrome extension link gets changed: [www.postman.com](https://www.postman.com)
I'm using Soap UI to test my REST API. It is more complete than any other tools: * fine debug requests and responses * automated testing * all GUI based * properties and properties transfer to parameterize your tests * conditional testing * performance testing I'm not working for SmartBear. I was already a big fan of SoapUI while using it for SOAP WebServices. ![My SoapUI REST Project](https://i.stack.imgur.com/AEX58.png)
165,720
I'm looking for an easy way to debug RESTful services. For example, most webapps can be debugged using your average web browser. Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST. I am not looking to automate tests. I'd like to run new services through a quick sanity check, ideally without having to writing my own client.
2008/10/03
[ "https://Stackoverflow.com/questions/165720", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14731/" ]
[RESTTest](https://addons.mozilla.org/en-US/firefox/addon/5946) for Firefox (an add-on). [Fiddler](http://www.fiddler2.com/fiddler2/) for IE.
because its totally missing here: <https://luckymarmot.com/paw> Is worth ever penny...
165,720
I'm looking for an easy way to debug RESTful services. For example, most webapps can be debugged using your average web browser. Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST. I am not looking to automate tests. I'd like to run new services through a quick sanity check, ideally without having to writing my own client.
2008/10/03
[ "https://Stackoverflow.com/questions/165720", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14731/" ]
Use an existing 'REST client' tool that makes it easy to inspect the requests and responses, like [RESTClient](https://github.com/wiztools/rest-client).
Firefox's has [RESTClient](https://addons.mozilla.org/en-US/firefox/addon/restclient/) plug-in to send different request with methods, parameters, headers etc.
165,720
I'm looking for an easy way to debug RESTful services. For example, most webapps can be debugged using your average web browser. Unfortunately that same browser won't allow me to test HTTP PUT, DELETE, and to a certain degree even HTTP POST. I am not looking to automate tests. I'd like to run new services through a quick sanity check, ideally without having to writing my own client.
2008/10/03
[ "https://Stackoverflow.com/questions/165720", "https://Stackoverflow.com", "https://Stackoverflow.com/users/14731/" ]
I've found RequestBin useful for debugging REST requests. Post to a unique URL and request data are updated/displayed. Can help in a pinch when other tools are not available. <https://requestbin.com/>
You can use fiddler's [Composer](http://www.fiddlerbook.com/fiddler/help/composer.asp) to debug [restful services](http://dotnetninja.wordpress.com/2008/05/02/rest-service-with-wcf-and-json/).. Updated JD 12 sep 2013: *Rest Builder* is now called *Composer*.
21,775,709
I want to set a **tinyint** field as autoincrement, but table constructor dont let me do it. But he lets to **int** and **bigint** types. Whats the problem? Here is the screenshot: <http://gyazo.com/ce8d345ee94bf26e833fe16133b5eee5.png> The first row "Идентификация" is an **Identity** field in English.
2014/02/14
[ "https://Stackoverflow.com/questions/21775709", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2932802/" ]
SQL Server Compact only support int and bigint with IDENTITY
First of all, why do you use TinyInt? TinyInt has a range from -128 to +127, so is is not very well suited for auto\_increment columns.
4,708
I am planning on using CAN bus in an industrial automation application, however I'm having a hard time deciding how to implement the network layer. Does anyone here have any recommendations for a higher layer protocol to use over CAN that provides guidelines for how to assign message IDs and how to format data packets? Should I develop my own proprietary network layer or implement an existing standard like CANopen?
2010/10/01
[ "https://electronics.stackexchange.com/questions/4708", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/588/" ]
You will definitely want to choose a standard network layer. I've seen some cases where people have rolled their own, and frequently the protocol is inefficient, and in the end it's a waste of time. A proven network layer provides basic functionality to solve most of the problems you'll likely face in networking with an embedded device, and that will save you precious time and money in the end. I have familiarity with CANopen, so I'll put a bit of an explanation in here and it might help you decide if that's the way you want to go. If it doesn't fit what you need to do, I'd look at something else. CANopen is very data centric. All CANopen slave nodes (things you control from a master node, like sensors or motor drivers) provide a dictionary that contains all configuration, control and data-acquisition data you need to read/write to get your job done. You can then read/write these objects individually via the SDO (service data object) mechanism, or read/write these objects periodically in timed CAN message transmissions via the PDO (producer data object) mechanism. Startup, shutdown, and reset, and heartbeat/node-malfunction detection are provided from NMT services, as well as a node ID assignment service (if you wish to use it). To implement a device using an embedded CANOpen library, you basically setup an object dictionary, setup PDOs to periodically send/receive data updates, and write user code that behaves based on those data entries. There are other things CANopen provides, but that is the bulk of it. [Read this book for more info.](http://www.canopenbook.com/)
I write code to access the CAN bus on GM cars, which uses a mostly proprietary network layer. Have you looked into OpenCAN? I would choose an open standard such as CANOpen or even OpenCAN. It really depends on the level of control and flexibility you want in your automation environment.
4,708
I am planning on using CAN bus in an industrial automation application, however I'm having a hard time deciding how to implement the network layer. Does anyone here have any recommendations for a higher layer protocol to use over CAN that provides guidelines for how to assign message IDs and how to format data packets? Should I develop my own proprietary network layer or implement an existing standard like CANopen?
2010/10/01
[ "https://electronics.stackexchange.com/questions/4708", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/588/" ]
You will definitely want to choose a standard network layer. I've seen some cases where people have rolled their own, and frequently the protocol is inefficient, and in the end it's a waste of time. A proven network layer provides basic functionality to solve most of the problems you'll likely face in networking with an embedded device, and that will save you precious time and money in the end. I have familiarity with CANopen, so I'll put a bit of an explanation in here and it might help you decide if that's the way you want to go. If it doesn't fit what you need to do, I'd look at something else. CANopen is very data centric. All CANopen slave nodes (things you control from a master node, like sensors or motor drivers) provide a dictionary that contains all configuration, control and data-acquisition data you need to read/write to get your job done. You can then read/write these objects individually via the SDO (service data object) mechanism, or read/write these objects periodically in timed CAN message transmissions via the PDO (producer data object) mechanism. Startup, shutdown, and reset, and heartbeat/node-malfunction detection are provided from NMT services, as well as a node ID assignment service (if you wish to use it). To implement a device using an embedded CANOpen library, you basically setup an object dictionary, setup PDOs to periodically send/receive data updates, and write user code that behaves based on those data entries. There are other things CANopen provides, but that is the bulk of it. [Read this book for more info.](http://www.canopenbook.com/)
There have been great answers. I do not know what micro you use, but here are links to some info from microchip. [J1939 library](http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1824&appnote=en020237) [DeviceNet™ Group 2 Slave Firmware for PIC18 with CAN](http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1824&appnote=en012120) [CANopen](http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=1824&appnote=en020605) They each have code and a basic datasheet letting you know what you need to implement them.
352
Is there any way in which I can include structures of molecules (line diagrams) in the question? It would be helpful to clarify the question to a greater extent.
2014/03/20
[ "https://chemistry.meta.stackexchange.com/questions/352", "https://chemistry.meta.stackexchange.com", "https://chemistry.meta.stackexchange.com/users/3718/" ]
I usually use [ChemDoodle](http://web.chemdoodle.com/demos/sketcher) There is a plan in the pipeline to integrate ChemDoodle into the editor, but I don't have the time to get working on that right now.
Most of my answers concerning organic chemistry contain a structure or two ;-) I use [BKChem](http://bkchem.zirael.org/) under GNU/Linux, installed from a repo. I save the sketches as SVG and export them to transparent PNG for upload. There seem to be tarballs and installers for Windows and Mac OS too, but I haven't tried those - personally I'm not interested in these platforms.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
As with anything, it will improve with practice. And, as with anything, *you should tailor your practice to the problem you're having*. Since your problem is looking down at the keys, devise a practice method that prevents you from doing so. My teacher growing up always held a notebook above my hands so that I couldn't look at them. Do you have someone in your household or school that would be willing to do that for the 10 minutes a day you practice your sightreading? If not, you could always try rigging something to blog your view. (Or you could really be ridiculous and get one of [these](https://rads.stackoverflow.com/amzn/click/B076VYRT1B).) Once you've mastered this, you may eventually have a problem with not looking ahead while you sightread; to address this, have someone cover up the current chord you're on, which forces you to look ahead. And so on. See also recent responses to [What is a good way to practice piano sight reading?](https://music.stackexchange.com/questions/65879/what-is-a-good-way-to-practice-piano-sight-reading)
Sight read more! The best way to get better at doing something is to practice it. Force yourself to keep your eyes glued to the page. Play slow, deliberately, and correct your mistakes.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
Sight read more! The best way to get better at doing something is to practice it. Force yourself to keep your eyes glued to the page. Play slow, deliberately, and correct your mistakes.
I'm going to approach this answer from a different perspective, my own. For years I had trouble sight reading because it took more time to focus on the notes and be certain of their place on the stave. I have problems with my sight where I see double images when I look at things from certain angles so I can see double notes, double staves etc. when trying to sight read. Very confusing when sight reading. I had my eyes checked by several doctors with no solution, but I kept trying and finally found a doctor who knew the solution. He tested me, gave me a new prescription for glasses and now I don't see double when I'm wearing them. If your problem stems from eye problems, you'll need to get that fixed before you do anything else.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
I know this is an old thread. But just do a lot of sight reading every day and constantly add unfamiliar pieces - stacks of sheet music that have nothing to do with the pieces you’re practicing. It’s actually a lot of fun. Pretty soon you’ll notice yourself instinctively able to find a lot of keys without looking. Also do scales without looking. You can isolate larger jumps and do them repeatedly without looking until that jump is easy. Soon you will notice you can play a lot faster if you don’t have to take your eyes away from the page, which makes you lose your place in the music. I also found Hanson exercises great for this if you play them just slow enough that you can take the time to recognize each note and keep your eyes always on the page.
I'm going to approach this answer from a different perspective, my own. For years I had trouble sight reading because it took more time to focus on the notes and be certain of their place on the stave. I have problems with my sight where I see double images when I look at things from certain angles so I can see double notes, double staves etc. when trying to sight read. Very confusing when sight reading. I had my eyes checked by several doctors with no solution, but I kept trying and finally found a doctor who knew the solution. He tested me, gave me a new prescription for glasses and now I don't see double when I'm wearing them. If your problem stems from eye problems, you'll need to get that fixed before you do anything else.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
As with anything, it will improve with practice. And, as with anything, *you should tailor your practice to the problem you're having*. Since your problem is looking down at the keys, devise a practice method that prevents you from doing so. My teacher growing up always held a notebook above my hands so that I couldn't look at them. Do you have someone in your household or school that would be willing to do that for the 10 minutes a day you practice your sightreading? If not, you could always try rigging something to blog your view. (Or you could really be ridiculous and get one of [these](https://rads.stackoverflow.com/amzn/click/B076VYRT1B).) Once you've mastered this, you may eventually have a problem with not looking ahead while you sightread; to address this, have someone cover up the current chord you're on, which forces you to look ahead. And so on. See also recent responses to [What is a good way to practice piano sight reading?](https://music.stackexchange.com/questions/65879/what-is-a-good-way-to-practice-piano-sight-reading)
I'm going to approach this answer from a different perspective, my own. For years I had trouble sight reading because it took more time to focus on the notes and be certain of their place on the stave. I have problems with my sight where I see double images when I look at things from certain angles so I can see double notes, double staves etc. when trying to sight read. Very confusing when sight reading. I had my eyes checked by several doctors with no solution, but I kept trying and finally found a doctor who knew the solution. He tested me, gave me a new prescription for glasses and now I don't see double when I'm wearing them. If your problem stems from eye problems, you'll need to get that fixed before you do anything else.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
As with anything, it will improve with practice. And, as with anything, *you should tailor your practice to the problem you're having*. Since your problem is looking down at the keys, devise a practice method that prevents you from doing so. My teacher growing up always held a notebook above my hands so that I couldn't look at them. Do you have someone in your household or school that would be willing to do that for the 10 minutes a day you practice your sightreading? If not, you could always try rigging something to blog your view. (Or you could really be ridiculous and get one of [these](https://rads.stackoverflow.com/amzn/click/B076VYRT1B).) Once you've mastered this, you may eventually have a problem with not looking ahead while you sightread; to address this, have someone cover up the current chord you're on, which forces you to look ahead. And so on. See also recent responses to [What is a good way to practice piano sight reading?](https://music.stackexchange.com/questions/65879/what-is-a-good-way-to-practice-piano-sight-reading)
I know this is an old thread. But just do a lot of sight reading every day and constantly add unfamiliar pieces - stacks of sheet music that have nothing to do with the pieces you’re practicing. It’s actually a lot of fun. Pretty soon you’ll notice yourself instinctively able to find a lot of keys without looking. Also do scales without looking. You can isolate larger jumps and do them repeatedly without looking until that jump is easy. Soon you will notice you can play a lot faster if you don’t have to take your eyes away from the page, which makes you lose your place in the music. I also found Hanson exercises great for this if you play them just slow enough that you can take the time to recognize each note and keep your eyes always on the page.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
Sight read more! The best way to get better at doing something is to practice it. Force yourself to keep your eyes glued to the page. Play slow, deliberately, and correct your mistakes.
There are a couple of things you should consider when sight reading: 1. As with any skill you need to start very slowly in order to build the physical and neurological mechanisms to operate faster and more competently. And when I say slow, I mean 30 or 20 BPM. If you have never payed with a click I suggest you begin to learn and as you get used to it, it will start act as a guiding hand, sharpening your timing and sense of rhythm. This leads me to my next point. 2. You know all the notes on the staff and that's great but how is your knowledge of rests? Knowing when not to play is as important as knowing when to play. Learning typical rhythmical groupings is also important because then you can view these groupings as single entities rather than as a collection of individual notes. I suggest you youtube drumming tutorials that have sheet music accompanying their instructions. You'll get a better sense of what I mean then. If you develop strong sense of timing and rhythm, irrespective of the key, melody etc.., and begin to see note placement patterns at first glance, you'll have moved a good way down the road of becoming a competent sight reader. 3. When you say you play it carefully once through and then memorise it, are you really playing it through or do you make a ton of mistakes on the first attempt and then begin studying the piece, foregoing any other sight reading? Improving at sight reading should be a long term goal with consistent observable progress. The little aphorism of 'little and often' should become your mantra - do a little bit of sight reading often. How often? Well, if you do twenty minutes of practise everyday devote 2-5mins to sight reading. Short focused blast of deliberate and intense concentration that will find satisfying and beneficial to your practise. How little? Try one to four bars of music and then move on. Make mental notes of your weaknesses (you missed the rest, I can't read those ledgers lines, You've never seen so many accidentals!). Wash rinse repeat daily or whenever you practise ;). Consistency is King. The torture of sight reading through 32 bars when trying to develop the skill should only be inflicted on you by your teacher. 4. A little lesson plan for one bar of music to sight read in 4/4 at 120BPM: You have 30 seconds to before you need to play: (0-10 seconds): identify time signature, key and tempo. Mentally play the main scale or mock-play it (think of Adrien Brody in the Pianist). If there are awkward notes (accidentals and sharps for example) rest your fingers on them for a moment and internalize the fact that you will have to play them at some stage. (10-20 seconds): hum the rhythm (or melody) of the piece while mock-playing what appears to be the supporting notes. (20-25 seconds): Mock play the first phrase/chords/notes while looking ahead to the next. (25-30 seconds): Steady and set yourself. (31 seconds): Play... # On slow practise look at this: <https://bulletproofmusician.com/is-slow-practice-really-necessary/> Free videos (my channel): . A free zip with 3 4-bar exercises with click and no click from 20BPM to 180BPM in 20BPM increments on mp3, pdf and with hands together and separated: <https://www.patreon.com/SightReadingSounds>
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
As with anything, it will improve with practice. And, as with anything, *you should tailor your practice to the problem you're having*. Since your problem is looking down at the keys, devise a practice method that prevents you from doing so. My teacher growing up always held a notebook above my hands so that I couldn't look at them. Do you have someone in your household or school that would be willing to do that for the 10 minutes a day you practice your sightreading? If not, you could always try rigging something to blog your view. (Or you could really be ridiculous and get one of [these](https://rads.stackoverflow.com/amzn/click/B076VYRT1B).) Once you've mastered this, you may eventually have a problem with not looking ahead while you sightread; to address this, have someone cover up the current chord you're on, which forces you to look ahead. And so on. See also recent responses to [What is a good way to practice piano sight reading?](https://music.stackexchange.com/questions/65879/what-is-a-good-way-to-practice-piano-sight-reading)
There are a couple of things you should consider when sight reading: 1. As with any skill you need to start very slowly in order to build the physical and neurological mechanisms to operate faster and more competently. And when I say slow, I mean 30 or 20 BPM. If you have never payed with a click I suggest you begin to learn and as you get used to it, it will start act as a guiding hand, sharpening your timing and sense of rhythm. This leads me to my next point. 2. You know all the notes on the staff and that's great but how is your knowledge of rests? Knowing when not to play is as important as knowing when to play. Learning typical rhythmical groupings is also important because then you can view these groupings as single entities rather than as a collection of individual notes. I suggest you youtube drumming tutorials that have sheet music accompanying their instructions. You'll get a better sense of what I mean then. If you develop strong sense of timing and rhythm, irrespective of the key, melody etc.., and begin to see note placement patterns at first glance, you'll have moved a good way down the road of becoming a competent sight reader. 3. When you say you play it carefully once through and then memorise it, are you really playing it through or do you make a ton of mistakes on the first attempt and then begin studying the piece, foregoing any other sight reading? Improving at sight reading should be a long term goal with consistent observable progress. The little aphorism of 'little and often' should become your mantra - do a little bit of sight reading often. How often? Well, if you do twenty minutes of practise everyday devote 2-5mins to sight reading. Short focused blast of deliberate and intense concentration that will find satisfying and beneficial to your practise. How little? Try one to four bars of music and then move on. Make mental notes of your weaknesses (you missed the rest, I can't read those ledgers lines, You've never seen so many accidentals!). Wash rinse repeat daily or whenever you practise ;). Consistency is King. The torture of sight reading through 32 bars when trying to develop the skill should only be inflicted on you by your teacher. 4. A little lesson plan for one bar of music to sight read in 4/4 at 120BPM: You have 30 seconds to before you need to play: (0-10 seconds): identify time signature, key and tempo. Mentally play the main scale or mock-play it (think of Adrien Brody in the Pianist). If there are awkward notes (accidentals and sharps for example) rest your fingers on them for a moment and internalize the fact that you will have to play them at some stage. (10-20 seconds): hum the rhythm (or melody) of the piece while mock-playing what appears to be the supporting notes. (20-25 seconds): Mock play the first phrase/chords/notes while looking ahead to the next. (25-30 seconds): Steady and set yourself. (31 seconds): Play... # On slow practise look at this: <https://bulletproofmusician.com/is-slow-practice-really-necessary/> Free videos (my channel): . A free zip with 3 4-bar exercises with click and no click from 20BPM to 180BPM in 20BPM increments on mp3, pdf and with hands together and separated: <https://www.patreon.com/SightReadingSounds>
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
As with anything, it will improve with practice. And, as with anything, *you should tailor your practice to the problem you're having*. Since your problem is looking down at the keys, devise a practice method that prevents you from doing so. My teacher growing up always held a notebook above my hands so that I couldn't look at them. Do you have someone in your household or school that would be willing to do that for the 10 minutes a day you practice your sightreading? If not, you could always try rigging something to blog your view. (Or you could really be ridiculous and get one of [these](https://rads.stackoverflow.com/amzn/click/B076VYRT1B).) Once you've mastered this, you may eventually have a problem with not looking ahead while you sightread; to address this, have someone cover up the current chord you're on, which forces you to look ahead. And so on. See also recent responses to [What is a good way to practice piano sight reading?](https://music.stackexchange.com/questions/65879/what-is-a-good-way-to-practice-piano-sight-reading)
Would my approach be of any help to you? I'm doing Grade 3 exam piano pieces but my sight reading is poor. I suppose it can be explained. I spent many hours practising and polishing pieces. Comparatively, I worked relatively little on sight reading. I'm now evening up the emphasis and I hope it will pay dividends. To train, I think you have to avoid becoming familiar with the music. So I have bought lots of short exercises (over 100 in all) and I play them at random. If I am in danger of knowing the music to the point where I can play from memory, I stop playing it for a few weeks which usually does the trick. This is different from reading the notation as one would the text in a book. I really want to develop the skill where you read the notation and hear the music in your head without playing a note on the instrument. There are various method books, YouTube videos, phone apps and books of practice pieces at the right level out there. I had to experiment to find what worked for me. I have not found a magic method that doesn't require a lot of work. I'm on my third method. It has taken me a while to get here. I am now happy enough with the method that I decided to stop looking for a better (magic) method and just get on with it. I set myself an aim to practice for at least 20 mins every day. It takes a lot of mental effort, so I make sight reading practice the first exercise of the day. If it goes well I might do more; if it goes poorly I might go back to simpler exercises or stop after 10/15 mins if my head just won't take it in. I found sight reading exercises too hard to be tacked on to the end of practice after working on exam pieces and technical exercises. Hope this is helpful for you.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
Would my approach be of any help to you? I'm doing Grade 3 exam piano pieces but my sight reading is poor. I suppose it can be explained. I spent many hours practising and polishing pieces. Comparatively, I worked relatively little on sight reading. I'm now evening up the emphasis and I hope it will pay dividends. To train, I think you have to avoid becoming familiar with the music. So I have bought lots of short exercises (over 100 in all) and I play them at random. If I am in danger of knowing the music to the point where I can play from memory, I stop playing it for a few weeks which usually does the trick. This is different from reading the notation as one would the text in a book. I really want to develop the skill where you read the notation and hear the music in your head without playing a note on the instrument. There are various method books, YouTube videos, phone apps and books of practice pieces at the right level out there. I had to experiment to find what worked for me. I have not found a magic method that doesn't require a lot of work. I'm on my third method. It has taken me a while to get here. I am now happy enough with the method that I decided to stop looking for a better (magic) method and just get on with it. I set myself an aim to practice for at least 20 mins every day. It takes a lot of mental effort, so I make sight reading practice the first exercise of the day. If it goes well I might do more; if it goes poorly I might go back to simpler exercises or stop after 10/15 mins if my head just won't take it in. I found sight reading exercises too hard to be tacked on to the end of practice after working on exam pieces and technical exercises. Hope this is helpful for you.
I'm going to approach this answer from a different perspective, my own. For years I had trouble sight reading because it took more time to focus on the notes and be certain of their place on the stave. I have problems with my sight where I see double images when I look at things from certain angles so I can see double notes, double staves etc. when trying to sight read. Very confusing when sight reading. I had my eyes checked by several doctors with no solution, but I kept trying and finally found a doctor who knew the solution. He tested me, gave me a new prescription for glasses and now I don't see double when I'm wearing them. If your problem stems from eye problems, you'll need to get that fixed before you do anything else.
66,328
I am a Trinity grade 5 pianist and have been playing piano for 2-3 years(earlier played keyboard). I find very difficult to sight read. I usually play the passage once very carefully and memorize it well so I don't have look at the music while playing. I play while continuously looking down at the keys and find it difficult to lift my head up and register the notes and then play. I know all the notes on the staff, but I can't register them in time to play them on the spot. What should I do to get better at sight reading?
2018/01/30
[ "https://music.stackexchange.com/questions/66328", "https://music.stackexchange.com", "https://music.stackexchange.com/users/47670/" ]
Would my approach be of any help to you? I'm doing Grade 3 exam piano pieces but my sight reading is poor. I suppose it can be explained. I spent many hours practising and polishing pieces. Comparatively, I worked relatively little on sight reading. I'm now evening up the emphasis and I hope it will pay dividends. To train, I think you have to avoid becoming familiar with the music. So I have bought lots of short exercises (over 100 in all) and I play them at random. If I am in danger of knowing the music to the point where I can play from memory, I stop playing it for a few weeks which usually does the trick. This is different from reading the notation as one would the text in a book. I really want to develop the skill where you read the notation and hear the music in your head without playing a note on the instrument. There are various method books, YouTube videos, phone apps and books of practice pieces at the right level out there. I had to experiment to find what worked for me. I have not found a magic method that doesn't require a lot of work. I'm on my third method. It has taken me a while to get here. I am now happy enough with the method that I decided to stop looking for a better (magic) method and just get on with it. I set myself an aim to practice for at least 20 mins every day. It takes a lot of mental effort, so I make sight reading practice the first exercise of the day. If it goes well I might do more; if it goes poorly I might go back to simpler exercises or stop after 10/15 mins if my head just won't take it in. I found sight reading exercises too hard to be tacked on to the end of practice after working on exam pieces and technical exercises. Hope this is helpful for you.
I know this is an old thread. But just do a lot of sight reading every day and constantly add unfamiliar pieces - stacks of sheet music that have nothing to do with the pieces you’re practicing. It’s actually a lot of fun. Pretty soon you’ll notice yourself instinctively able to find a lot of keys without looking. Also do scales without looking. You can isolate larger jumps and do them repeatedly without looking until that jump is easy. Soon you will notice you can play a lot faster if you don’t have to take your eyes away from the page, which makes you lose your place in the music. I also found Hanson exercises great for this if you play them just slow enough that you can take the time to recognize each note and keep your eyes always on the page.
32,753
My hearing is sensitive to high blood pressure, so I am interested in the blood pressure of the head. May it be the type of excercise, circumstances or anything, I am interested.
2016/12/02
[ "https://fitness.stackexchange.com/questions/32753", "https://fitness.stackexchange.com", "https://fitness.stackexchange.com/users/24183/" ]
Nitrogen Balance is just how you measure overall nitrogen accumulation, which is a pretty reliable indicator of muscle growth; positive NB is more amino acids staying on your body than pissed out (muscle growth) and negative NB is the opposite. According to the International Society of Sports Nutrition, a protein intakes of 1.4-2.0 g/kg of bodyweight (0.6-0.9g/lb of bodyweight) for physically active individuals is not only safe, but may improve the training adaptations to exercise training. [1]. The American Dietetic Association, Dietitians of Canada, and the American College of Sports Medicine also support high protein intake for active individuals [2] in the range of 1.2-1.7 g/kg of bodyweight (0.5-0.8 g/lb of bodyweight). The reasons for the above tend to be increased leucine oxidation (a marker for amino acids being used for fuel, by being turned into glucose) that requires a higher intake of amino acids to negate and **preserve nitrogen balance**. [3][1] Additionally, increasing protein intake above the previously defined RDA 'daily allowance' will increase protein synthesis and, at levels higher than double this total, decrease protein breakdown. [4] Increased muscular hypertrophy is seen as beneficial to sports performance. * [1]: Campbell B, et al International Society of Sports Nutrition position stand: protein and exercise . J Int Soc Sports Nutr. (2007) * [2]: Rodriguez NR, DiMarco NM, Langley S; American Dietetic Association; Dietetians of Canada; American College of Sports Medicine Position of the American Dietetic Association, Dietitians of Canada, and the American College of Sports Medicine: Nutrition and athletic performance . J Am Diet Assoc. (2009) * [3]: Wilson J, Wilson GJ Contemporary issues in protein requirements and consumption for resistance trained athletes . J Int Soc Sports Nutr. (2006) * [4]: Jeevanandam M, et al Influence of increasing dietary intake on whole body protein kinetics in normal man . Clin Nutr. (1986) Source: Examine.com --- However.... =========== You are massively over-thinking your food. As a beginner to weightlifting you will lose fat and gain muscle during a calorie deficit. However, as you progress past "beginner" and linear progressions no longer work for you, you should re-evaluate your diet and consider eating at a maintenance calories (if you want to maintain) or at a 'bulk' (surplus calories). Option's are divided as to the "optimal" macro-nutritional breakdown and current advice does not go into finer detail because only you know your body and how it is feeling and so only you can plan your dietary needs accordingly. For example, I went hard last week at crossfit and so I ate more this weekend to give me some fuel and protein to recover. In terms of splitting up fat and carbs, just split however you want. More carbs will give you more energy but less overall food in your mouth.
Positive nitrogen balance is an indicator of you being in an anabolic state, meaning you are synthesising protein.This is only an indication of what the protein in your body is being utilised for. If you are taking on too little carbohydrate, your body will utilise both protein and fat for energy; resulting in negative nitrogen balance. You are then likely to be in a state of catabolism, meaning you could be losing lean mass. For strength training athletes, 2g protein per kg of body mass is a good starting point for protein synthesis. Any intake above 2.4kg body mass is considered to be of little benefit for gains in muscle mass. Both carbohydrate and protein will add 4kcal per gram to your diet, fat will add 9kcal per gram. Good fats are essential in your diet but are costly in terms of energy, aim to keep total fat below 20% of total energy allowance; aim for monounsaturated and polyunsaturated fat sources, avoid saturated and trans-fats. Focus on the intake of complex carbohydrates i.e brown rice as opposed to simple carbohydrate i.e. white bread. Read about glycaemic index/glycaemic load and how it relates to exercise. Timings for the intake of different types of carbohydrate will make a huge difference to outcomes. If you time carbohydrate intake effectively, you can worry less about anabolic windows post workout. As a rule of thumb 3500kcal is equal to one pound fat. Aim to lose between 1 and 2lbs per week when stripping, any more and you will likely sacrifice lean mass. Be patient, it pays to be conservative. **REMEMBER:** protein is expensive fuel, train smart. Focus on building a good feedback loop: record what you eat, and your training outcomes. Tweak ratios for what works for you, there are no hard and fast rules and good science will lead you where you want to go. The above are good starting points.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
I would wholly recommend Susan Blackmore's [Consciousness](http://rads.stackoverflow.com/amzn/click/B007PM2LW6). It's part of the Very Short Introduction series, not as expensive as Blackwell's, and takes you through just enough history to help you understand what the relevant issues currently are. If you're interested in reading further, just check her citations and go from there. Also, a good essay to start with is always Thomas Nagel's "What is it Like to Be a Bat?" which you can [easily find online](http://organizations.utep.edu/portals/1475/nagel_bat.pdf). Hume and Berkeley are worth reading, but they're a little removed from the current state of the debate on minds and consciousness. If you want something that's not dense, but you're not afraid of a longer read, there's also Stephen Pinker's [How the Mind Works](http://rads.stackoverflow.com/amzn/click/0393334775). It's a fairly strong Functionalist account of mind, but it doesn't pretend to have all the answers.
To be honest, it is hard to recommend a single book. If you really want to understand philosophy, you must read many books. So you might want to start with Hume's **Enquiry Concerning Human Understanding**, Berkeley's **Treatise Concerning the Principles of Human Knowledge**, Descartes' **Meditations** and **Discourse on the Method**, as well as Kant's **Critique of Pure Reason** and **Principles of the Metaphysics of Morals**. These are by far the best epistemology/metaphysics books I have ever read. It might seem obvious recommending such well-known books, but they are well-known because they are truly phenomenal. Also, if you are interested in the development of mathematics, and in particular analysis, I would recommend **The Analyst** by Berkeley -- a remarkable book. If however, you do not have time to read them all, start with Hume's **Enquiry Concerning Human Understanding** and Berkeley's **Treatise Concerning the Principles of Human Knowledge**, and avoid Kant' **Principles of the Metaphysics of Morals**, and any of Kant's books because they are very difficult to read. You need to read each book at least twice to understand Kant.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
I would wholly recommend Susan Blackmore's [Consciousness](http://rads.stackoverflow.com/amzn/click/B007PM2LW6). It's part of the Very Short Introduction series, not as expensive as Blackwell's, and takes you through just enough history to help you understand what the relevant issues currently are. If you're interested in reading further, just check her citations and go from there. Also, a good essay to start with is always Thomas Nagel's "What is it Like to Be a Bat?" which you can [easily find online](http://organizations.utep.edu/portals/1475/nagel_bat.pdf). Hume and Berkeley are worth reading, but they're a little removed from the current state of the debate on minds and consciousness. If you want something that's not dense, but you're not afraid of a longer read, there's also Stephen Pinker's [How the Mind Works](http://rads.stackoverflow.com/amzn/click/0393334775). It's a fairly strong Functionalist account of mind, but it doesn't pretend to have all the answers.
For an easy to read theory of consciousness I recommend **Biocentrism** by Robert Lanza. Engaging, accessible to the layperson, and, IMO, incredibly compelling.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
I would wholly recommend Susan Blackmore's [Consciousness](http://rads.stackoverflow.com/amzn/click/B007PM2LW6). It's part of the Very Short Introduction series, not as expensive as Blackwell's, and takes you through just enough history to help you understand what the relevant issues currently are. If you're interested in reading further, just check her citations and go from there. Also, a good essay to start with is always Thomas Nagel's "What is it Like to Be a Bat?" which you can [easily find online](http://organizations.utep.edu/portals/1475/nagel_bat.pdf). Hume and Berkeley are worth reading, but they're a little removed from the current state of the debate on minds and consciousness. If you want something that's not dense, but you're not afraid of a longer read, there's also Stephen Pinker's [How the Mind Works](http://rads.stackoverflow.com/amzn/click/0393334775). It's a fairly strong Functionalist account of mind, but it doesn't pretend to have all the answers.
I have been studying (in my on spiritual quest) the topic of consciousness for more than a decade and I find that most of the stuff on consciousness severely lacking for two reasons. 1) it is too scientific and 2) it is too New Agey. I stumbled across a book last year that was a free download by an unknown author and the book just blew me away. The book is called "Demystifying the Mystical" by Endall Beall. A few months back I saw that this author has created a series called the Evolution of Consciousness and I immediately purchased the books through Amazon. The first book is good and it takes on Philosophy and brings a new light to the field. The second book is called Willful Evolution and it makes so much sense and is more practical, not scientific or New Agey. Actually and the Demystifying the Mystical book (which demystifies what most people think of as mystical) so it kind of tears the New Age apart (with good reason). There are more books to the series that I am looking forward to reading.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
I would wholly recommend Susan Blackmore's [Consciousness](http://rads.stackoverflow.com/amzn/click/B007PM2LW6). It's part of the Very Short Introduction series, not as expensive as Blackwell's, and takes you through just enough history to help you understand what the relevant issues currently are. If you're interested in reading further, just check her citations and go from there. Also, a good essay to start with is always Thomas Nagel's "What is it Like to Be a Bat?" which you can [easily find online](http://organizations.utep.edu/portals/1475/nagel_bat.pdf). Hume and Berkeley are worth reading, but they're a little removed from the current state of the debate on minds and consciousness. If you want something that's not dense, but you're not afraid of a longer read, there's also Stephen Pinker's [How the Mind Works](http://rads.stackoverflow.com/amzn/click/0393334775). It's a fairly strong Functionalist account of mind, but it doesn't pretend to have all the answers.
The most accessible book I have read on consciousness was The Mind's I, by Dennett and Hofstadter. It was a series of science fiction short stories that illustrated various thought problems in consciousness, followed by the two authors discussing the implications of the story. For someone just getting their feet wet in philosophy, it is a great easy introduction. The best single book on philosphy of mind I have read is Blackmore's A Very Short Introduction to Consciousness. It is VERY SHORT, with very clean writing. It is also focussed on compiling the evidence that has a bearing on the viability of consciousness theories. Blackmore takes one through this evidence, and with a general dialog between dualism, materialism, and her preferred delusionism viewpoint. Blackmore would probably be best read after one has at least skimmed a general overview book on philosophy of mind, although one could read her first, then the overview second.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
To be honest, it is hard to recommend a single book. If you really want to understand philosophy, you must read many books. So you might want to start with Hume's **Enquiry Concerning Human Understanding**, Berkeley's **Treatise Concerning the Principles of Human Knowledge**, Descartes' **Meditations** and **Discourse on the Method**, as well as Kant's **Critique of Pure Reason** and **Principles of the Metaphysics of Morals**. These are by far the best epistemology/metaphysics books I have ever read. It might seem obvious recommending such well-known books, but they are well-known because they are truly phenomenal. Also, if you are interested in the development of mathematics, and in particular analysis, I would recommend **The Analyst** by Berkeley -- a remarkable book. If however, you do not have time to read them all, start with Hume's **Enquiry Concerning Human Understanding** and Berkeley's **Treatise Concerning the Principles of Human Knowledge**, and avoid Kant' **Principles of the Metaphysics of Morals**, and any of Kant's books because they are very difficult to read. You need to read each book at least twice to understand Kant.
For an easy to read theory of consciousness I recommend **Biocentrism** by Robert Lanza. Engaging, accessible to the layperson, and, IMO, incredibly compelling.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
To be honest, it is hard to recommend a single book. If you really want to understand philosophy, you must read many books. So you might want to start with Hume's **Enquiry Concerning Human Understanding**, Berkeley's **Treatise Concerning the Principles of Human Knowledge**, Descartes' **Meditations** and **Discourse on the Method**, as well as Kant's **Critique of Pure Reason** and **Principles of the Metaphysics of Morals**. These are by far the best epistemology/metaphysics books I have ever read. It might seem obvious recommending such well-known books, but they are well-known because they are truly phenomenal. Also, if you are interested in the development of mathematics, and in particular analysis, I would recommend **The Analyst** by Berkeley -- a remarkable book. If however, you do not have time to read them all, start with Hume's **Enquiry Concerning Human Understanding** and Berkeley's **Treatise Concerning the Principles of Human Knowledge**, and avoid Kant' **Principles of the Metaphysics of Morals**, and any of Kant's books because they are very difficult to read. You need to read each book at least twice to understand Kant.
I have been studying (in my on spiritual quest) the topic of consciousness for more than a decade and I find that most of the stuff on consciousness severely lacking for two reasons. 1) it is too scientific and 2) it is too New Agey. I stumbled across a book last year that was a free download by an unknown author and the book just blew me away. The book is called "Demystifying the Mystical" by Endall Beall. A few months back I saw that this author has created a series called the Evolution of Consciousness and I immediately purchased the books through Amazon. The first book is good and it takes on Philosophy and brings a new light to the field. The second book is called Willful Evolution and it makes so much sense and is more practical, not scientific or New Agey. Actually and the Demystifying the Mystical book (which demystifies what most people think of as mystical) so it kind of tears the New Age apart (with good reason). There are more books to the series that I am looking forward to reading.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
To be honest, it is hard to recommend a single book. If you really want to understand philosophy, you must read many books. So you might want to start with Hume's **Enquiry Concerning Human Understanding**, Berkeley's **Treatise Concerning the Principles of Human Knowledge**, Descartes' **Meditations** and **Discourse on the Method**, as well as Kant's **Critique of Pure Reason** and **Principles of the Metaphysics of Morals**. These are by far the best epistemology/metaphysics books I have ever read. It might seem obvious recommending such well-known books, but they are well-known because they are truly phenomenal. Also, if you are interested in the development of mathematics, and in particular analysis, I would recommend **The Analyst** by Berkeley -- a remarkable book. If however, you do not have time to read them all, start with Hume's **Enquiry Concerning Human Understanding** and Berkeley's **Treatise Concerning the Principles of Human Knowledge**, and avoid Kant' **Principles of the Metaphysics of Morals**, and any of Kant's books because they are very difficult to read. You need to read each book at least twice to understand Kant.
The most accessible book I have read on consciousness was The Mind's I, by Dennett and Hofstadter. It was a series of science fiction short stories that illustrated various thought problems in consciousness, followed by the two authors discussing the implications of the story. For someone just getting their feet wet in philosophy, it is a great easy introduction. The best single book on philosphy of mind I have read is Blackmore's A Very Short Introduction to Consciousness. It is VERY SHORT, with very clean writing. It is also focussed on compiling the evidence that has a bearing on the viability of consciousness theories. Blackmore takes one through this evidence, and with a general dialog between dualism, materialism, and her preferred delusionism viewpoint. Blackmore would probably be best read after one has at least skimmed a general overview book on philosophy of mind, although one could read her first, then the overview second.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
For an easy to read theory of consciousness I recommend **Biocentrism** by Robert Lanza. Engaging, accessible to the layperson, and, IMO, incredibly compelling.
I have been studying (in my on spiritual quest) the topic of consciousness for more than a decade and I find that most of the stuff on consciousness severely lacking for two reasons. 1) it is too scientific and 2) it is too New Agey. I stumbled across a book last year that was a free download by an unknown author and the book just blew me away. The book is called "Demystifying the Mystical" by Endall Beall. A few months back I saw that this author has created a series called the Evolution of Consciousness and I immediately purchased the books through Amazon. The first book is good and it takes on Philosophy and brings a new light to the field. The second book is called Willful Evolution and it makes so much sense and is more practical, not scientific or New Agey. Actually and the Demystifying the Mystical book (which demystifies what most people think of as mystical) so it kind of tears the New Age apart (with good reason). There are more books to the series that I am looking forward to reading.
4,163
I'm looking for a book that isn't too dense and that is usually recommended for someone who wants to learn of the mind/consciousness but doesn't know where to start.
2012/11/10
[ "https://philosophy.stackexchange.com/questions/4163", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/2668/" ]
The most accessible book I have read on consciousness was The Mind's I, by Dennett and Hofstadter. It was a series of science fiction short stories that illustrated various thought problems in consciousness, followed by the two authors discussing the implications of the story. For someone just getting their feet wet in philosophy, it is a great easy introduction. The best single book on philosphy of mind I have read is Blackmore's A Very Short Introduction to Consciousness. It is VERY SHORT, with very clean writing. It is also focussed on compiling the evidence that has a bearing on the viability of consciousness theories. Blackmore takes one through this evidence, and with a general dialog between dualism, materialism, and her preferred delusionism viewpoint. Blackmore would probably be best read after one has at least skimmed a general overview book on philosophy of mind, although one could read her first, then the overview second.
I have been studying (in my on spiritual quest) the topic of consciousness for more than a decade and I find that most of the stuff on consciousness severely lacking for two reasons. 1) it is too scientific and 2) it is too New Agey. I stumbled across a book last year that was a free download by an unknown author and the book just blew me away. The book is called "Demystifying the Mystical" by Endall Beall. A few months back I saw that this author has created a series called the Evolution of Consciousness and I immediately purchased the books through Amazon. The first book is good and it takes on Philosophy and brings a new light to the field. The second book is called Willful Evolution and it makes so much sense and is more practical, not scientific or New Agey. Actually and the Demystifying the Mystical book (which demystifies what most people think of as mystical) so it kind of tears the New Age apart (with good reason). There are more books to the series that I am looking forward to reading.
64,540,867
I'm trying to setup an AWS Lambda function that gets triggered when a CloudWatch alarm sends a message to an SNS topic. I'm following along in this guide: <https://medium.com/analytics-vidhya/generate-slack-notifications-for-aws-cloudwatch-alarms-e46b68540133> I'm stuck at step 6 at the point where it says to add the trigger to the function. I select my SNS topic as the trigger but when I hit Add it gives me the following error: > > An error occurred when creating the trigger: Invalid parameter: > Invalid protocol type: lambda (Service: AmazonSNS; Status Code: 400; > Error Code: InvalidParameter; Request ID: > 343350ee-b514-5c7c-8180-08fe5fd643ec; Proxy: null) > > > [![enter image description here](https://i.stack.imgur.com/KXZWz.png)](https://i.stack.imgur.com/KXZWz.png) Does anybody know what that error means and what I can do about it? Thanks
2020/10/26
[ "https://Stackoverflow.com/questions/64540867", "https://Stackoverflow.com", "https://Stackoverflow.com/users/9334823/" ]
I ran into this problem recently... As of now, Lambda only supports Standard SNS topics. You will need to change your SNS topic from FIFO to Standard.
Thanks DanielWsk, looks like fifo only works with SQS. It was there but didn't see it. [![enter image description here](https://i.stack.imgur.com/A65b5.png)](https://i.stack.imgur.com/A65b5.png)
95,952
*Situation:* I have recently been offered an engineering job with a silicon valley tech company, contingent upon a pending background check. Everything seemed fine until they ran a background check. It turned up a 5 year old traffic violation for driving without insurance. I had completely forgotten about this and was surprised to find this on the background report. I was never arrested or imprisoned or appeared in court, simply paid a 250 dollar fine. I learnt just now that the offense is classified as a misdemeanor in that state. I haven't been contacted by the company on this matter yet, I just got the background check report from the reporting firm a couple of days ago. I would also add that I don't remember answering any background related questions at any point during the application process. *My questions are as follows:* 1) Do you think companies might take back job offers for something like this. My job is related to software and does not involve driving. 2) What is my best course of action right now? Should I proactively follow up with the company myself or stay put until they say something? (I have to give my two week notice to my current employer soon)
2017/07/26
[ "https://workplace.stackexchange.com/questions/95952", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/74662/" ]
I don't think most employers would care if you committed a small misdemeanor like that. I've violated an ordinance or two in my day and seem to get employed just fine. Don't say anything. It would come across as paranoid. If they *do* bring it up, explain the circumstances, but don't make a big deal of it. As always, until you accept the offer, continue your job search. Congrats on the offer!
No. Maybe they'd care about a DUI, but probably not even that if you're in recovery. Your violation doesn't effect your ability to work and doesn't show major failures in judgement or honesty. They're looking for felonies- theft, embezzlement, murder, rape, assault. Misdemeanors don't matter, traffic violation definitely don't. Who doesn't have a speeding ticket or two in their history? All failure to have insurance means is you were broke.
47,028
I am applying for an F31 Diversity Grant for Predoctoral studies to support my 3-5 year of PhD studies. There is no mention of needing to submit transcript of grade with the application. Is this true? Does the NIH not require transcripts for F31 applications? Are applications solely graded on the merit of the proposal or do student grades also considered?
2015/06/11
[ "https://academia.stackexchange.com/questions/47028", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/35754/" ]
The Program Announcement (I believe the current one) for this Program is probably <http://grants.nih.gov/grants/guide/pa-files/PA-14-148.html#_Section_IV._Application> These announcements tell you (or point you to) *ALL* the info you need to apply. This one states: > > Note that scores for standardized exams (e.g., MCAT, GRE) as well as a listing of the applicant’s courses and grades must be included in the Fellowship Applicant Biographical Sketch, and NOT in this attachment. > > > So yes, if this is the announcement, you need to provide this info, and it needs to go into your BioSketch. Whether you need to use the (ugh) new biosketch format or not, I can't tell you. The best advice is to ask the office at your school that coordinates sponsored research, as well as have a chat with the program officer involved with this PA at the institute you would be applying to.
Each NIH grant comes with extensive guidance. For the [Ruth L. Kirschstein National Research Service Award Individual Predoctoral Fellowship to Promote Diversity in Health-Related Research](http://grants.nih.gov/grants/guide/pa-files/PA-14-148.html) the guidance says > > Note that scores for standardized exams (e.g., MCAT, GRE) as well as a listing of the applicant’s courses and grades must be included in the Fellowship Applicant Biographical Sketch, and NOT in this attachment. > > > The guidance also says > > Follow the instructions in the SF424 (R&R) Individual Fellowship Application Guide to ensure you complete all appropriate “optional” forms. > > > [SF424 (R&R)](http://grants.nih.gov/grants/funding/424/SF424_RR_Guide_Fellowship_VerC.pdf) refers you back to PA-14-148. In general, it is advisable to talk to the Program Officer at the NIH whenever you are considering applying for a grant/fellowship. They are more than happy to help navigate you through the submission process and generally can provide you with invaluable insight about how to improve your application. Each institute at the NIH and each funding mechanism has a different Program Officer, but they are generally pretty easy to find online.
13,414
I like having my laptop run as long as humanly possible when running off battery, even if it means huge a compromise in performance. Currently, whenever I'm on battery I have to manually switch my power plan to "Power Saver", and then switch back to "High Performance" when I'm plugged in. Is there any way I could have my computer do this automatically?
2009/07/27
[ "https://superuser.com/questions/13414", "https://superuser.com", "https://superuser.com/users/733/" ]
There's nothing built into Windows that will allow you to do this, but I've seen a couple good 3rd party applications. [Aerofoil](http://silentdevelopment.blogspot.com/2008/09/aerofoil-144-rated-47100-hot-100-vista.html) is my preferred of the two. It's very simple; all it does is switch your power plan to "power saver" and disables the Aero glassy desktop manager when you switch to battery, and does the inverse when you plug back in. It works great in Vista and 7. [Vista Battery Saver](http://www.codeplex.com/vistabattery) has a lot more features and can give you a bit more fine grained control. However, I've found it to be a bit less reliable -- doesn't seem to work 100% of the time for me. Also it doesn't work in Windows 7 at all -- it gets stuck halfway through installing.
Doesn't each power plan in Vista/7 allow you to configure settings for both AC and DC power? A/C = plugged in, D/C = battery. Just adjust as you see fit, and you won't even need to switch power plans.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The iPhone SDK requires an Intel machine running Leopard, although I believe there is a way to get it working on PPC Macs (but you still need Leopard). The SDK does not have an emulator, it's a simulator. The code it runs is native so there is no emulation overhead. You will find that even a low-end machine will run your code significantly faster than on an actual iPhone. (This is why it's super important to test your application on an actual iPhone, particularly for anything graphic or processor intensive). 1GB of RAM and any Intel based Mac will be more than sufficient for both development and any docs/webpages you are likely to be referring to.
From the release notes: "iPhone SDK requires an Intel-based Mac running Mac OS X Leopard version 10.5.4 or later." I use it on a Core 2 Duo Mac mini (i.e. before the recent update) without any problems, so I don't think CPU speed is really something you need to worry about. I've 2GB of RAM in that system; I don't know if the tools will run well in less than that. Edit: Of course, it's years later now. The latest version as of this update requires Mac OS X Lion, and it seems obvious that Apple will continue to update Xcode only for their latest OS.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The simulator runs pretty well even on the slowest Mac in the lineup, the base-model MacBook Air with the hard drive (non-SSD). It runs applications *far* more smoothly than they run on the real iPhone. The rest of the development process, though, benefits from a bit more horsepower. An SSD (optional in the laptops) or a 3.5" hard drive (iMac or Mac Pro) is a huge benefit, and you'll want a decent amount of CPU power for quick Xcode responsiveness with autocomplete, etc. Most of all, you'll want as much screen space as your budget and portability needs will allow. It's pretty cramped on the 1280x800 screen found on the 13" MacBook and MacBook Air. Ideally, your minimum is a 15" MacBook Pro or a 20" iMac. I recommend a CPU at or above 2.0 GHz and at least 2 GB of RAM. Ideally, it's at least 2.4 GHz and 4 GB of RAM.
From the release notes: "iPhone SDK requires an Intel-based Mac running Mac OS X Leopard version 10.5.4 or later." I use it on a Core 2 Duo Mac mini (i.e. before the recent update) without any problems, so I don't think CPU speed is really something you need to worry about. I've 2GB of RAM in that system; I don't know if the tools will run well in less than that. Edit: Of course, it's years later now. The latest version as of this update requires Mac OS X Lion, and it seems obvious that Apple will continue to update Xcode only for their latest OS.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
RAM is probably the biggest constraint. That's not an iPhone SDK limitation as much as it is an Xcode limitation -- it likes at least 1.5GB to itself when debugging but it works okay at about 1GB as long as you stop the debugger when you're not using it. I have run the SDK on an old iBook G4. So CPU speed requirements aren't extremely high -- although you may want to edit text in an external editor since Xcode's autocompletes and syntax highlighting are too slow below about 1.6Ghz. Realistic recommendation: *any* Intel Mac with at least 2GB RAM.
From the release notes: "iPhone SDK requires an Intel-based Mac running Mac OS X Leopard version 10.5.4 or later." I use it on a Core 2 Duo Mac mini (i.e. before the recent update) without any problems, so I don't think CPU speed is really something you need to worry about. I've 2GB of RAM in that system; I don't know if the tools will run well in less than that. Edit: Of course, it's years later now. The latest version as of this update requires Mac OS X Lion, and it seems obvious that Apple will continue to update Xcode only for their latest OS.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The iPhone SDK requires an Intel machine running Leopard, although I believe there is a way to get it working on PPC Macs (but you still need Leopard). The SDK does not have an emulator, it's a simulator. The code it runs is native so there is no emulation overhead. You will find that even a low-end machine will run your code significantly faster than on an actual iPhone. (This is why it's super important to test your application on an actual iPhone, particularly for anything graphic or processor intensive). 1GB of RAM and any Intel based Mac will be more than sufficient for both development and any docs/webpages you are likely to be referring to.
The simulator runs pretty well even on the slowest Mac in the lineup, the base-model MacBook Air with the hard drive (non-SSD). It runs applications *far* more smoothly than they run on the real iPhone. The rest of the development process, though, benefits from a bit more horsepower. An SSD (optional in the laptops) or a 3.5" hard drive (iMac or Mac Pro) is a huge benefit, and you'll want a decent amount of CPU power for quick Xcode responsiveness with autocomplete, etc. Most of all, you'll want as much screen space as your budget and portability needs will allow. It's pretty cramped on the 1280x800 screen found on the 13" MacBook and MacBook Air. Ideally, your minimum is a 15" MacBook Pro or a 20" iMac. I recommend a CPU at or above 2.0 GHz and at least 2 GB of RAM. Ideally, it's at least 2.4 GHz and 4 GB of RAM.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The iPhone SDK requires an Intel machine running Leopard, although I believe there is a way to get it working on PPC Macs (but you still need Leopard). The SDK does not have an emulator, it's a simulator. The code it runs is native so there is no emulation overhead. You will find that even a low-end machine will run your code significantly faster than on an actual iPhone. (This is why it's super important to test your application on an actual iPhone, particularly for anything graphic or processor intensive). 1GB of RAM and any Intel based Mac will be more than sufficient for both development and any docs/webpages you are likely to be referring to.
RAM is probably the biggest constraint. That's not an iPhone SDK limitation as much as it is an Xcode limitation -- it likes at least 1.5GB to itself when debugging but it works okay at about 1GB as long as you stop the debugger when you're not using it. I have run the SDK on an old iBook G4. So CPU speed requirements aren't extremely high -- although you may want to edit text in an external editor since Xcode's autocompletes and syntax highlighting are too slow below about 1.6Ghz. Realistic recommendation: *any* Intel Mac with at least 2GB RAM.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The iPhone SDK requires an Intel machine running Leopard, although I believe there is a way to get it working on PPC Macs (but you still need Leopard). The SDK does not have an emulator, it's a simulator. The code it runs is native so there is no emulation overhead. You will find that even a low-end machine will run your code significantly faster than on an actual iPhone. (This is why it's super important to test your application on an actual iPhone, particularly for anything graphic or processor intensive). 1GB of RAM and any Intel based Mac will be more than sufficient for both development and any docs/webpages you are likely to be referring to.
simulator is not the problem, instrument is. if you just want to run a iPhone emulator, then system requirement doesn't matter as long as you could run leopard. if you want a production environment, it should at least c2d 2.0 2G ram and still wait a lot for debugging.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
The simulator runs pretty well even on the slowest Mac in the lineup, the base-model MacBook Air with the hard drive (non-SSD). It runs applications *far* more smoothly than they run on the real iPhone. The rest of the development process, though, benefits from a bit more horsepower. An SSD (optional in the laptops) or a 3.5" hard drive (iMac or Mac Pro) is a huge benefit, and you'll want a decent amount of CPU power for quick Xcode responsiveness with autocomplete, etc. Most of all, you'll want as much screen space as your budget and portability needs will allow. It's pretty cramped on the 1280x800 screen found on the 13" MacBook and MacBook Air. Ideally, your minimum is a 15" MacBook Pro or a 20" iMac. I recommend a CPU at or above 2.0 GHz and at least 2 GB of RAM. Ideally, it's at least 2.4 GHz and 4 GB of RAM.
simulator is not the problem, instrument is. if you just want to run a iPhone emulator, then system requirement doesn't matter as long as you could run leopard. if you want a production environment, it should at least c2d 2.0 2G ram and still wait a lot for debugging.
655,932
I know that the iPhone SDK requires Leopard, i.e. ~900mHz G4+ w/ 512MB RAM. And I've used XCode in the past, so I have a good idea of how that performs. But I've never used the iPhone emulator included with the SDK, and I'm wondering what kind of CPU/memory resources it needs to run smoothly. I would just download it and see for myself, but my (ancient) iBook can't run Leopard. Before I go buy a new machine, I'd like to get an idea of the **slowest** system that can run the emulator at a speed close to that of the hardware.
2009/03/17
[ "https://Stackoverflow.com/questions/655932", "https://Stackoverflow.com", "https://Stackoverflow.com/users/51025/" ]
RAM is probably the biggest constraint. That's not an iPhone SDK limitation as much as it is an Xcode limitation -- it likes at least 1.5GB to itself when debugging but it works okay at about 1GB as long as you stop the debugger when you're not using it. I have run the SDK on an old iBook G4. So CPU speed requirements aren't extremely high -- although you may want to edit text in an external editor since Xcode's autocompletes and syntax highlighting are too slow below about 1.6Ghz. Realistic recommendation: *any* Intel Mac with at least 2GB RAM.
simulator is not the problem, instrument is. if you just want to run a iPhone emulator, then system requirement doesn't matter as long as you could run leopard. if you want a production environment, it should at least c2d 2.0 2G ram and still wait a lot for debugging.
5,009,982
A common problem I find myself dealing with is having way too many tabs in my browser. Part of this I know is just trying to do too many things at once. I tell myself to focus focus on one task at a time and try to close tabs I'm not using. Nevertheless, I still often find myself with over 20 tabs open at a time, just because apps that I use in the course of the day that I don't want to keep opening and closing and have them be in different positions. I have not seen any great ways in either Chrome or Firefox to deal with tab overload. I had a couple ideas of possible UI enhancements to deal with this. I know there's a couple of tab grouping/organization extensions for Firefox and Chrome, but I've tried most of them and haven't found them all that helpful. One feature that would be nice is if it automatically grouped tabs by category/domain (so for example all my finance-related websites automatically open in the same group). That said, how do you manage large number of tabs, and do you have any ideas of browser enhancements for dealing this this? (Another pet-peeve of mine is that Chrome doesn't have MRU (most recently used tab switching), which is a huge pain for me when I'm working with two pages and having to switch back and forth between them. But that's sort of a different topic)
2011/02/15
[ "https://Stackoverflow.com/questions/5009982", "https://Stackoverflow.com", "https://Stackoverflow.com/users/372528/" ]
<http://www.azarask.in/blog/post/tabcandy/> Tab candy in firefox 4 beta <http://tabsugar.com/> same thing for chrome I've had your exact problem. With tab candy I've had up to ~90 tabs open at once with no issues at all, except memory use :)
I just use a combinatioin of tabs and windows, with each window containing a logical grouping of tabs. In both FF and Chrome, I can drag tabs between windows to reorgaize them as desired. Also, on Linux or OS X, you can use multiple workspaces, each with one or more browser windows. I dunno -- maybe Windows 7 has workspaces too now?
72,724
I ran an OLS model on a dataset with 2 categorical variables. One of them was gender. The other one had 3 different categories. I used one-hot encoding for it during pre-processing before running my model. Variables in the image: Embarked\_C and Embarked\_Q. The results showed a p-value for Embarked\_Q as 0.785. In this case, should I remove both Embarked\_Q and C or just Q? [![Regression Results](https://i.stack.imgur.com/83Hl5.png)](https://i.stack.imgur.com/83Hl5.png)
2020/04/22
[ "https://datascience.stackexchange.com/questions/72724", "https://datascience.stackexchange.com", "https://datascience.stackexchange.com/users/95457/" ]
You should keep all of levels as they collectively describe the feature. Removing the insignificant ones will bias your coefficients and distort your interpretation (e.i. change the reference level). Here are some stats.exchange references: * [Is it advisable to drop certain levels of a categorical variable?](https://stats.stackexchange.com/questions/141063/is-it-advisable-to-drop-certain-levels-of-a-categorical-variable) * [Can I ignore coefficients for non-significant levels of factors in a linear model?](https://stats.stackexchange.com/questions/24298/can-i-ignore-coefficients-for-non-significant-levels-of-factors-in-a-linear-mode)
By all means keep Embarked\_C. Consider the following example: You're predicting whether or not someone's favorite color is blue. You know the color of their favorite shirt- it's either blue, yellow, or red. Color\_Blue is going to be significant, the other two one hot encoded variables would not be. You'd still want to keep Color\_Blue as a feature.
40,607,575
The point of this is to create 100 topics from a list. When this is done my application will go through this list once every day to check for upcoming events. A message will be sent to the subscribed users if the app finds an event on a particular topic. I will also try to implement some logic to check if there are users subscribed to this particular topic.
2016/11/15
[ "https://Stackoverflow.com/questions/40607575", "https://Stackoverflow.com", "https://Stackoverflow.com/users/6177181/" ]
Two parts to your question: Firebase topic subscription is officially documented only for devices. In other words, only devices with device tokens can subscribe to a topic. Look at AWS SNS topics for topics on which other applications can subscribe. Secondly, for your use case, topics may not be the solution. Generally, a topic is not like a queue from which you can retrieve a message. Generally, a topic will only send messages to subscribers already actively subscribed to the topic. If there is no subscriber on the topic when a message is received, the message disappears.
AFAIK, I don't think this is possible. The way I understand how Topics work is that (from my answer [here](https://stackoverflow.com/a/37650817/4625829), also mentioned it in my answer [here](https://stackoverflow.com/a/39382345/4625829)): > > a topic is created when there is at least 1 subscriber and it also gets automatically deleted when there are no more subscribers. > > > Regardless if it's for web-app or mobile app, having a registration token is necessary for Topic Messaging.
674,854
I have seen several debates on different forums but could not reach to a solution. My notebook has a UHD display running windows 8 as host OS. I have tried Vmware and virtualbox as VMs to have the experience of Ubuntu 14.04 as guest OS. The problem is with the screen resolution I get in the VM, either on a full screen or in any other view size. It's nano and awful. My question specifically is: Is there any VM which supports Ubuntu 14.04 in such a way that we can control the resolution with the best results for user on any notebook with a UHD display? **OR** If any plausible solution exists, even for the mentioned VMs, which I am missing?
2015/09/16
[ "https://askubuntu.com/questions/674854", "https://askubuntu.com", "https://askubuntu.com/users/278136/" ]
VirtualBox or VMware does not care what resolution the guest or the host is running. Both use what they find. To view correctly in the guest system, the installed guest operating system is solely responsible and in your case 14.04. But as I already wrote [here](https://askubuntu.com/a/675569/367165): > > The 4K technology is relatively new. On the other hand your system is > relatively old. If you want to improve the situation, then you must > use newer software versions. A first step is to update your system to > Vivid or to Wily in some days. And then the application developers are > required. The individual applications have to be adjusted. > > > Therefore install Vivid or Wily and have patience and in any case, install the guest addons, e.g. *VMware Tools* and/or Oracle *VM VirtualBox Extension Pack*.
If you run a VM on Windows, then run a host within the VM, the display drivers presented to the host, are those of virtual hardware created by the VM. Your host, will have no idea you're running a UHD display, unless you could pass the whole device to the host (which could only be done, if the actual running OS, windows, was using a different display device). I believe if you use VMWare, and have VMware tools installed in the host, you can resize the VM screen, like a regular desktop window. Without tools, you have to specify the display resolution in the vm config file. Looking at an Ubuntu VM I have running under Workstation 10, I can emulate up 10 monitors, each with up to a 2560x1600 resolution. I'm not sure how to have those multiple monitors display on my physical host, but it must be possible. But remember when you run under a VM, you're not running on your actual machine, the host is running on a virtual host, which you can design as you wish, with whatever hardware you want. If you want to emulate a UHD display, in the host, you'll need a VM that can emulate one (I was unable to find one given a cursory search in google). If you're just trying to run Ubuntu in full resolution, did you try running rebooting the system to use Ubuntu on a Live CD. It will then use whatever drivers it has installed to use your UHD display, as much as it's able. With the Kubuntu live CD, I've installed Nvidia drivers and tested out a full x display, to be sure the hardware could support running my desktop, before re-installing. Live CD stores modifications to the virtual hard disk in memory, so you have the perception of a normal running machine, without actually touching the existing HD.
674,854
I have seen several debates on different forums but could not reach to a solution. My notebook has a UHD display running windows 8 as host OS. I have tried Vmware and virtualbox as VMs to have the experience of Ubuntu 14.04 as guest OS. The problem is with the screen resolution I get in the VM, either on a full screen or in any other view size. It's nano and awful. My question specifically is: Is there any VM which supports Ubuntu 14.04 in such a way that we can control the resolution with the best results for user on any notebook with a UHD display? **OR** If any plausible solution exists, even for the mentioned VMs, which I am missing?
2015/09/16
[ "https://askubuntu.com/questions/674854", "https://askubuntu.com", "https://askubuntu.com/users/278136/" ]
VirtualBox or VMware does not care what resolution the guest or the host is running. Both use what they find. To view correctly in the guest system, the installed guest operating system is solely responsible and in your case 14.04. But as I already wrote [here](https://askubuntu.com/a/675569/367165): > > The 4K technology is relatively new. On the other hand your system is > relatively old. If you want to improve the situation, then you must > use newer software versions. A first step is to update your system to > Vivid or to Wily in some days. And then the application developers are > required. The individual applications have to be adjusted. > > > Therefore install Vivid or Wily and have patience and in any case, install the guest addons, e.g. *VMware Tools* and/or Oracle *VM VirtualBox Extension Pack*.
I ran into a simular issue with my Surface Pro. The solution that I use is simply changing the settings in ubuntu to set the dpi. You can simply go to all settings > displays > scale for menu and title bars and mess with this value until you find something that is easy for you to read. If you core issue is with graphics performance this will not help and you will also need to install the tools like others have answered.
38,075
Where can I find this software? Maybe this is not a full-finished software; if it is then do you know any references? ![assimilation](https://i.stack.imgur.com/cPAkX.jpg)
2013/07/11
[ "https://scifi.stackexchange.com/questions/38075", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/8344/" ]
Unfortunately, the software program doesn't exist. It is a special effect added in post production. The producer of the film, Stuart Cohen, has a blog, and one of the [entries](http://theoriginalfan.blogspot.com/2012/03/computers.html) is devoted to the computer programs in the movie. > > THE COMPUTERS > > > THE THING, having been produced on the cusp of a digital universe, is a resolutely all-analog film, without a frame electronically processed. It is somehow fitting that the computers appearing in the movie are both mock ups, non-functioning props made out of bits and pieces, with the video display portion in both cases shot well after principal photography. > > > Originally a much shorter moment containing less specific information, with Blair at the computer John essentially created a new scene in post-production built out of inserts. The only two pieces done during filming were those of Blair intently watching. John saw this as an opportunity to hammer home to the audience, in the simplest possible way, the idea of assimilation and it's consequences ( this became a primary concern as editing on the film An analog endeavour, the program simulation was written by John and animated on film by fellow USC alumnus John Wash. > > > None of us had any idea what this ought to look like, so JC instructed John to make it as simple and familiar as possible by using video game graphics. It was then transferred ( at a special 24 frame rate in order to avoid scanning lines) to U Matic 3/4 inch tape, fed back to a monitor, and photographed. > > > Cohen also says that MacReady's chess game is a real program for the old Apple Computer line.
The exact program doesn't really exist as has been stated However, the closest thing you can probably get in reality would be a zombie outbreak simulator like [this](http://www.deathtech.com/zombies/) one.
38,075
Where can I find this software? Maybe this is not a full-finished software; if it is then do you know any references? ![assimilation](https://i.stack.imgur.com/cPAkX.jpg)
2013/07/11
[ "https://scifi.stackexchange.com/questions/38075", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/8344/" ]
The program has just came into being: [The Thing Simulator](https://elendir.itch.io/the-thing-simulator)
The exact program doesn't really exist as has been stated However, the closest thing you can probably get in reality would be a zombie outbreak simulator like [this](http://www.deathtech.com/zombies/) one.
38,075
Where can I find this software? Maybe this is not a full-finished software; if it is then do you know any references? ![assimilation](https://i.stack.imgur.com/cPAkX.jpg)
2013/07/11
[ "https://scifi.stackexchange.com/questions/38075", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/8344/" ]
Unfortunately, the software program doesn't exist. It is a special effect added in post production. The producer of the film, Stuart Cohen, has a blog, and one of the [entries](http://theoriginalfan.blogspot.com/2012/03/computers.html) is devoted to the computer programs in the movie. > > THE COMPUTERS > > > THE THING, having been produced on the cusp of a digital universe, is a resolutely all-analog film, without a frame electronically processed. It is somehow fitting that the computers appearing in the movie are both mock ups, non-functioning props made out of bits and pieces, with the video display portion in both cases shot well after principal photography. > > > Originally a much shorter moment containing less specific information, with Blair at the computer John essentially created a new scene in post-production built out of inserts. The only two pieces done during filming were those of Blair intently watching. John saw this as an opportunity to hammer home to the audience, in the simplest possible way, the idea of assimilation and it's consequences ( this became a primary concern as editing on the film An analog endeavour, the program simulation was written by John and animated on film by fellow USC alumnus John Wash. > > > None of us had any idea what this ought to look like, so JC instructed John to make it as simple and familiar as possible by using video game graphics. It was then transferred ( at a special 24 frame rate in order to avoid scanning lines) to U Matic 3/4 inch tape, fed back to a monitor, and photographed. > > > Cohen also says that MacReady's chess game is a real program for the old Apple Computer line.
The program has just came into being: [The Thing Simulator](https://elendir.itch.io/the-thing-simulator)
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
Regexs that catch most (but not all) common error are relatively easy to setup and deploy. Takes longer to write a custom parser.
Using regular expressions for this is *not* a good idea, as has been demonstrated at length in those other posts. I suppose people keep doing it because they don't know any better or don't care. Will a parser be any better? Maybe, maybe not. I maintain that sending a verification e-mail is the best way to validate it. If you want to check anything from JavaScript, then check that it has an '@' sign in there and something before and after it. If you go any stricter than that, you risc running up against some syntax you didn't know about and your validator will become overly restrictive. Also, be careful with that TLD validation scheme of yours, you might find that you are [assuming too much](http://www.bizreport.com/2008/07/icann_anything_is_the_next_domain_craze.html) about what is allowed in a TLD.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
Regexs that catch most (but not all) common error are relatively easy to setup and deploy. Takes longer to write a custom parser.
Regexps are much faster to use, of course, and they only validate what's specified in the RFC. Write a custom parser? What? It takes 10 seconds to use a regexp.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
They do it because they see "I want to test whether this text matches the spec" and immediately think "I know, I'll use a regex!" without fully understanding the complexity of the spec or the limitations of regexes. Regexes are a wonderful, powerful tool for handling a wide variety of text-matching tasks, but they are not the perfect tool for every such task and it seems that many people who use them lose sight of that fact.
Regexs that catch most (but not all) common error are relatively easy to setup and deploy. Takes longer to write a custom parser.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
Regexs that catch most (but not all) common error are relatively easy to setup and deploy. Takes longer to write a custom parser.
We're just looking for a fast way to see if the email address is valid so that we can warn the user they have made a mistake or prevent people from entering junk easily. Going off to the mail server and fingering it is slow and unreliable. The only real way to be sure is to get a confirmation email, but the problem is only to give a fast response to the user before the confirmation process takes place. That's why it's not so important to be strictly compliant. Anyway, it's a challenge and it's fun.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
They do it because they see "I want to test whether this text matches the spec" and immediately think "I know, I'll use a regex!" without fully understanding the complexity of the spec or the limitations of regexes. Regexes are a wonderful, powerful tool for handling a wide variety of text-matching tasks, but they are not the perfect tool for every such task and it seems that many people who use them lose sight of that fact.
I don't believe correct email validation can be done with a single regular expression (now there's a challenge!). One of the issues is that comments can be nested to an arbitrary depth in both the local part and the domain. If you want to validate an address against RFCs 5322 and 5321 (the current standards) then you'll need a procedural function to do so. Fortunately, this is a commodity problem. Everybody wants the same result: RFC compliance. There's no need for anybody to write this code ever again once it's been solved by an open source function. Check out some of the alternatives here: <http://www.dominicsayers.com/isemail/> If you know of another function that I can add to the head-to-head, let me know.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
> > and then validates those against the > valid characters allowed for name > (there's no further check that can be > done on this portion) > > > This is not true. For example, "ben..doom@gmail.com" contains only valid characters in the name section, but is not valid. In languages that do not have libraries for email validation, I generally use regex becasue 1. I know regex, and find it easy to use 2. I have many friends who know regex, and I can collaborate with 3. It's fast for me to code, and me-time is more expensive than processor-time for most applications 4. For the majority of email addresses, it works. I'm sure many built-in libraries do use your approach, and if you want to cover all the possibilities, it does get ridiculous. However, so does your parser. The formal spec for email addresses is absurdly complex. So, we use a regex that gets close enough.
Regexps are much faster to use, of course, and they only validate what's specified in the RFC. Write a custom parser? What? It takes 10 seconds to use a regexp.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
People do it because in most languages it is way easier to write regexp than to write and use a parser in your code (or so it seems, at least). If you decide to eschew regexes, you will have to either write parsers by hand, or you resort to external tools (like yacc) for lexer/parser generation. This is way more complex than single-line regex match. One need to have a library that makes it easy to write parsers directly in the language X (where 'X' is C, C++, C#, Java) to be able to build custom parsers with the same ease as regular expression matchers. Such libraries originated in the functional land (Haskell and ML), but nowadays "parser combinators libraries" exist for Java, C++, C#, Scala and other mainstream languages.
People write regular expressions because most developers like so solve a simple problem in the most "cool" en "efficient" way (which means that it should be as unreadable as possible). In Java, there are libraries to check if a String represents an email address without you having to know anything about regular expressions. These libraries should be available for other languages aswel. Like Jamie Zawinski said in 1997: "Some people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems."
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
They do it because they see "I want to test whether this text matches the spec" and immediately think "I know, I'll use a regex!" without fully understanding the complexity of the spec or the limitations of regexes. Regexes are a wonderful, powerful tool for handling a wide variety of text-matching tasks, but they are not the perfect tool for every such task and it seems that many people who use them lose sight of that fact.
The temptation of using RegExp, once you've mastered the basics, is very big. In fact, RegExp seems so powerful that people naturally want to start using it everywhere. I really suspect that there's a lot of psychology involved here, as demonstrated by Randall's [XKCD comic](http://xkcd.com/208/) (and yes, it *is* useful). I've done an introductory presentation on RegExp once and the most important slide warned against its overuse. It was the only slide that used **bold** font. I believe this should be done more often. ![Everybody stand back!](https://imgs.xkcd.com/comics/regular_expressions.png)
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
Regexs that catch most (but not all) common error are relatively easy to setup and deploy. Takes longer to write a custom parser.
I don't believe correct email validation can be done with a single regular expression (now there's a challenge!). One of the issues is that comments can be nested to an arbitrary depth in both the local part and the domain. If you want to validate an address against RFCs 5322 and 5321 (the current standards) then you'll need a procedural function to do so. Fortunately, this is a commodity problem. Everybody wants the same result: RFC compliance. There's no need for anybody to write this code ever again once it's been solved by an open source function. Check out some of the alternatives here: <http://www.dominicsayers.com/isemail/> If you know of another function that I can add to the head-to-head, let me know.
211,842
There are a number of [email](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard) regexp [questions](https://stackoverflow.com/questions/210945/what-would-be-a-globally-accepted-regular-expression-to-match-e-mail-addresses) popping [up](https://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses) here, and I'm honestly baffled why people are using these [insanely obtuse](https://stackoverflow.com/questions/156430/regexp-recognition-of-email-address-hard#156469) matching expressions rather than a very simple parser that splits the email up into the name and domain tokens, and then validates those against the valid characters allowed for name (there's no further check that can be done on this portion) and the valid characters for the domain (and I suppose you could add checking for all the world's TLDs, and then another level of second level domains for countries with such (ie, com.uk)). The real problem is that the tlds and slds keep changing (contrary to popular belief), so you have to keep updating the regexp if you plan on doing all this high level checking whenever the root name servers send down a change. Why not have a module that simply validates domains, which pulls from a database, or flat file, and optionally checks DNS for matching records? I'm being serious here, why is everyone so keen on inventing the perfect regexp for this? It doesn't seem to be a suitable solution to the problem... Convince me that it's not only possible to do in regexp (and satisfy everyone) but that it's a better solution than a custom parser/validator. -Adam
2008/10/17
[ "https://Stackoverflow.com/questions/211842", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2915/" ]
The temptation of using RegExp, once you've mastered the basics, is very big. In fact, RegExp seems so powerful that people naturally want to start using it everywhere. I really suspect that there's a lot of psychology involved here, as demonstrated by Randall's [XKCD comic](http://xkcd.com/208/) (and yes, it *is* useful). I've done an introductory presentation on RegExp once and the most important slide warned against its overuse. It was the only slide that used **bold** font. I believe this should be done more often. ![Everybody stand back!](https://imgs.xkcd.com/comics/regular_expressions.png)
Regexps are much faster to use, of course, and they only validate what's specified in the RFC. Write a custom parser? What? It takes 10 seconds to use a regexp.
25,608
The short story is that I'm trying to find out whether we'd all get the same results (more or less) from Google if we all searched for the same term at the same time. Our site targets 10 specific search terms for organic search results. We do no PPC advertising. When you search for most of the targeted terms (7 of 10), we're in the first 5 results. The rest of the terms are in the top 15. How consistent is that likely to be world-wide, especially considering * searches in other languages might use our city name in English, but other terms in the local language, and * the influence of Google+ and personalization. It's my understanding that personalization and Google+ shouldn't affect organic search results at all. Instead, they add information to the right-hand column of the page. I'm not really sure what to do with language, since the terms we target in English might be completely different terms--not just the same words in a different language, but different words altogether--in other languages.
2012/02/07
[ "https://webmasters.stackexchange.com/questions/25608", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/10665/" ]
If the DNS has started to propagate, you may be facing caching on your computer or ISP's DNS server. I'd wait for a bit, or try either: * temporarily using a different DNS provider, e.g. [OpenDNS](http://www.opendns.com/) or [Google Public DNS](http://code.google.com/speed/public-dns/) (you may need to restart your browser or OS) * checking from a computer using a different ISP/DNS server Good luck.
Without knowing the your actual domain name it's hard to help, but I would recommend you use [IP Tools](http://www.iptools.com/) to figure out where the DNS is actually pointing.
25,608
The short story is that I'm trying to find out whether we'd all get the same results (more or less) from Google if we all searched for the same term at the same time. Our site targets 10 specific search terms for organic search results. We do no PPC advertising. When you search for most of the targeted terms (7 of 10), we're in the first 5 results. The rest of the terms are in the top 15. How consistent is that likely to be world-wide, especially considering * searches in other languages might use our city name in English, but other terms in the local language, and * the influence of Google+ and personalization. It's my understanding that personalization and Google+ shouldn't affect organic search results at all. Instead, they add information to the right-hand column of the page. I'm not really sure what to do with language, since the terms we target in English might be completely different terms--not just the same words in a different language, but different words altogether--in other languages.
2012/02/07
[ "https://webmasters.stackexchange.com/questions/25608", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/10665/" ]
You can't set nameservers *and* CNAME records. Go to Namecheap.com --> Manage Domains and click on the domain you want to manage. Then, go to All Host Records and change the settings to this. [![enter image description here](https://i.stack.imgur.com/9IDhw.png)](https://i.stack.imgur.com/9IDhw.png)
Without knowing the your actual domain name it's hard to help, but I would recommend you use [IP Tools](http://www.iptools.com/) to figure out where the DNS is actually pointing.
25,608
The short story is that I'm trying to find out whether we'd all get the same results (more or less) from Google if we all searched for the same term at the same time. Our site targets 10 specific search terms for organic search results. We do no PPC advertising. When you search for most of the targeted terms (7 of 10), we're in the first 5 results. The rest of the terms are in the top 15. How consistent is that likely to be world-wide, especially considering * searches in other languages might use our city name in English, but other terms in the local language, and * the influence of Google+ and personalization. It's my understanding that personalization and Google+ shouldn't affect organic search results at all. Instead, they add information to the right-hand column of the page. I'm not really sure what to do with language, since the terms we target in English might be completely different terms--not just the same words in a different language, but different words altogether--in other languages.
2012/02/07
[ "https://webmasters.stackexchange.com/questions/25608", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/10665/" ]
If the DNS has started to propagate, you may be facing caching on your computer or ISP's DNS server. I'd wait for a bit, or try either: * temporarily using a different DNS provider, e.g. [OpenDNS](http://www.opendns.com/) or [Google Public DNS](http://code.google.com/speed/public-dns/) (you may need to restart your browser or OS) * checking from a computer using a different ISP/DNS server Good luck.
You can't set nameservers *and* CNAME records. Go to Namecheap.com --> Manage Domains and click on the domain you want to manage. Then, go to All Host Records and change the settings to this. [![enter image description here](https://i.stack.imgur.com/9IDhw.png)](https://i.stack.imgur.com/9IDhw.png)
422,731
I would like to control my AC with a Raspberry Pi. My system is similar to [this one](https://www.seeleyinternational.com/artefact/breezair-exq-ezq-exs-evaporative-controllers-manual/), although it is an older model from 2004. Currently the system has a **wired** controller. There is no bluetooth, wifi, IR or RF. A wireless controller can be [purchased](https://www.ebay.com.au/itm/Breezair-Remote-Control-Horizon-107950-/192324663089) for AUD$500 which would also require a [receiver](https://rockhamptoncoolingsolutions.com.au/products/103587-breezair-rf-receiver) to be purchased separately. I would like to interface a Raspberry Pi with the current wired controller instead. I need to understand how to activate the contact pads electronically, but I have very limited knowledge in this area. I'm hoping that based on the images attached below, people are able to help me wire it up. The controller has six buttons but 12 contact pads - two per button. I will update this question to be more specific once/if I have details. [![Back of Remote](https://i.stack.imgur.com/lEcpz.jpg)](https://i.stack.imgur.com/lEcpz.jpg) [![Front of Remote](https://i.stack.imgur.com/0oqnq.jpg)](https://i.stack.imgur.com/0oqnq.jpg)
2019/02/17
[ "https://electronics.stackexchange.com/questions/422731", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/213072/" ]
If you look at the annotated picture below I think we can all agree that all of the button finger contact pads share a common connection with each other (yellow lines) which are likely to all connect to the GND or the VDD of the control circuit. You will have to use a digital meter to probe the circuit to measure voltages and figure out what this common connection is. The next observation is that each side by side pair of the contact finger pads are tied together on the other side (added blue lines). This is most likely to be done to provide for redundancy and can be confirmed if the remote just has six user button functions instead of twelve functions. All evidence seems to indicate 6 functions. The next key thing that you will have to do is to determine if it is even safe to hack this wired remote. Being that the remote wires into the guts of the A/C unit it is going to be difficult to figure out if the "GND" of the remote would be safe to wire up to the externally powered Raspberry Pi it is going to be highly recommended that you use opto-couplers to interface between the Pi and the remote so that you can maintain a safe isolation. Beyond even safety there is the additional concern that if you did try to direct tie the GNDs between the remote and the PI it is possible that the A/C could fail to function properly - even more reason to think about using opto-couplers to control the button functions. For the sake of further discussion here lets say that you have determined that the common (yellow lines) of the remote is indeed the GND and the other side of the paired switch finger pairs is found to be sitting at a positive voltage above GND when the contact fingers are not connected. The following diagram shows how to kludge in the opto-coupler to the remote key pad for one switch override function. The shown part number is one that I have used as it is a very efficient opto coupler that will fully turn on the output NPN transistor with as little as 1mA drive from the GPIO of the Pi microcontroller. [![enter image description here](https://i.stack.imgur.com/1nZPV.png)](https://i.stack.imgur.com/1nZPV.png) If the common buttons connection (yellow lines) happens to be the VDD of the remote and the blue line side of the button fingers sits at a lower voltage when the button fingers are not connected then you will want to swap around the NPN transistor Collector (pin 4) and the Emitter (pin 3) connections into the circuit. In any case as shown an high level programmed onto the Pi GPIO will activate the NPN transistor to provide a short across the associated button finger contacts. It will likely be necessary to keep the Pi GPIO active for a period of 50msec or even 100msec to ensure the remote registers the signalling. The controller in the remote most likely has a switch debounce filter built in that has requires this length of active press time.
What is your goal here? For example, if your goal is to control the AC with the RasPi, I would first suggest finding out how the remote unit controls the AC. Options are RF signals, IR signals, and specialized RF such as Bluetooth or BLE. What I would do is figure out what the control mechanism is, and then add that as part of the RasPi circuit. If it is IR, you need to know what wavelength and modulation frequency are used. A TV, for example, uses 940 nm with a 38 kHz modulation frequency. One way to test this is to spend a couple dollars to buy an IR receiver (NOT an IR-sensitive photosensor) device (e.g., www.adafruit.com search for item 157, $1.95). If it indicates reception of the AC remote, then your AC is running 940 nm/38 kHz. I did not see, in the photos, a Bluetooth, BLE, or WiFi antenna (a little zigzag trace), or anything with an FCC certification label, so I suspect IR. You can find IR receivers with other wavelengths and modulation frequencies at Digi-Key, Mouser, etc. You need to measure pulse widths to a few microseconds, and there are a number of standard protocols in use. If you discover that IR is the technique used, contact me here and we can discuss circuit design and software. For example, if it is IR, you need a 940 nm IR diode and the ability to create the same modulated waveforms as the buttons produce. This may be trickier on as RasPi than on an Arduino, or Cortek M-series chips, because the OS is going to make your life miserable. For example, we are currently generating a 9 ms-long 38 kHz "start" signal. The signals become self-clocking, with a 528 us 38 kHz signal followed by 528 us of "silence" to mean 0, or 1056 us (2x528) to mean 1. Each 2-byte command (b1,b2)nis encoded as 4 8-bit bytes [b1, ~b1, b2, ~b2] where the complement of the byte allows simple error checking. Pushing a button sends out a sequence of "button n pressed" messages, so even if a few are rejected due to noise, one will get through. Redundant messages are ignored until the next 9ms "start" signal. Different remotes use different protocols, but they all resemble each other. Example, another protocol sends [b1, b2, ~b1, ~b2] It is insufficient to have a simple IR detector; the one I cited only responds to signals indicated by the 38 kHz carrier. This eliminates effects of room lighting, sunlight, steam irons, red-hot pokers, etc.
4,226,548
The reason why I'm asking this, is because I'm coding in C++, in putty/ssh and I like the fact that I can code from pretty much everywhere without having to install anything. So I'd like to have something that could help me debugging (viewing LIVE value of a variable, breakpoints, etc) If you think that there's no such thing in this world, is there any good technique I could use to debug in command line? Thanks
2010/11/19
[ "https://Stackoverflow.com/questions/4226548", "https://Stackoverflow.com", "https://Stackoverflow.com/users/505810/" ]
I've used gdb for command line debugging in the past with success: <http://www.gnu.org/software/gdb/> A decent tutorial can be found at: <http://www.cs.cmu.edu/~gilpin/tutorial/>
You have a script to do that: <http://www.vim.org/scripts/script.php?script_id=1954> In my humble opinion, Vim is not designed to do such things and it is a bad idea to do so.
4,226,548
The reason why I'm asking this, is because I'm coding in C++, in putty/ssh and I like the fact that I can code from pretty much everywhere without having to install anything. So I'd like to have something that could help me debugging (viewing LIVE value of a variable, breakpoints, etc) If you think that there's no such thing in this world, is there any good technique I could use to debug in command line? Thanks
2010/11/19
[ "https://Stackoverflow.com/questions/4226548", "https://Stackoverflow.com", "https://Stackoverflow.com/users/505810/" ]
I've used gdb for command line debugging in the past with success: <http://www.gnu.org/software/gdb/> A decent tutorial can be found at: <http://www.cs.cmu.edu/~gilpin/tutorial/>
Have you tried `gdb` ? That's pretty much **the** command line debugger, but it's no vim plugin.
4,226,548
The reason why I'm asking this, is because I'm coding in C++, in putty/ssh and I like the fact that I can code from pretty much everywhere without having to install anything. So I'd like to have something that could help me debugging (viewing LIVE value of a variable, breakpoints, etc) If you think that there's no such thing in this world, is there any good technique I could use to debug in command line? Thanks
2010/11/19
[ "https://Stackoverflow.com/questions/4226548", "https://Stackoverflow.com", "https://Stackoverflow.com/users/505810/" ]
I've used gdb for command line debugging in the past with success: <http://www.gnu.org/software/gdb/> A decent tutorial can be found at: <http://www.cs.cmu.edu/~gilpin/tutorial/>
[vimgdb](http://sourceforge.net/projects/clewn/files/vimGdb/) will give what you want. I've used it for about one year. The most interesting feature is: * Hightlight current line * List item * Can show disassembly code * Step into, Step over * inspect variables, memory address * Run all the underlying gdb command is possible * And, of course, set breakpoint, conditional breakpoint etc. Highly customizable by vim key mapping and scripts. Actually I use checkinstall to make an rpm for it, and installed it everywhere when I need to debug on the box. I think it have the most important features I want from a visual debugger.
4,226,548
The reason why I'm asking this, is because I'm coding in C++, in putty/ssh and I like the fact that I can code from pretty much everywhere without having to install anything. So I'd like to have something that could help me debugging (viewing LIVE value of a variable, breakpoints, etc) If you think that there's no such thing in this world, is there any good technique I could use to debug in command line? Thanks
2010/11/19
[ "https://Stackoverflow.com/questions/4226548", "https://Stackoverflow.com", "https://Stackoverflow.com/users/505810/" ]
Have you tried `gdb` ? That's pretty much **the** command line debugger, but it's no vim plugin.
You have a script to do that: <http://www.vim.org/scripts/script.php?script_id=1954> In my humble opinion, Vim is not designed to do such things and it is a bad idea to do so.
4,226,548
The reason why I'm asking this, is because I'm coding in C++, in putty/ssh and I like the fact that I can code from pretty much everywhere without having to install anything. So I'd like to have something that could help me debugging (viewing LIVE value of a variable, breakpoints, etc) If you think that there's no such thing in this world, is there any good technique I could use to debug in command line? Thanks
2010/11/19
[ "https://Stackoverflow.com/questions/4226548", "https://Stackoverflow.com", "https://Stackoverflow.com/users/505810/" ]
[vimgdb](http://sourceforge.net/projects/clewn/files/vimGdb/) will give what you want. I've used it for about one year. The most interesting feature is: * Hightlight current line * List item * Can show disassembly code * Step into, Step over * inspect variables, memory address * Run all the underlying gdb command is possible * And, of course, set breakpoint, conditional breakpoint etc. Highly customizable by vim key mapping and scripts. Actually I use checkinstall to make an rpm for it, and installed it everywhere when I need to debug on the box. I think it have the most important features I want from a visual debugger.
You have a script to do that: <http://www.vim.org/scripts/script.php?script_id=1954> In my humble opinion, Vim is not designed to do such things and it is a bad idea to do so.
289,178
I know about Linux terminal. I can also issue many advanced commands over terminal. But one simple concept is not clear to me. What is terminal and how does it work? I know about hardware which consists of CPU, RAM, HARD DISK and so on. I know about kernel which is basically the core of the operating system. I know about software which sits on the top of kernel. And I know about users. And I know that user uses either terminal or GUI to give instructions to the software.(or kernel?) Now please explain these concepts of terminal and shell. **Graphical explanation and simple non-technical words are preferable.**
2016/06/11
[ "https://unix.stackexchange.com/questions/289178", "https://unix.stackexchange.com", "https://unix.stackexchange.com/users/174603/" ]
**What is shell?** In simple words, shell is a software which takes the command from your keyboard and passes it to the OS. **So are konsole, xterm or gnome-terminals shells?** No, they're called terminal emulators. They open a GUI to interact with the shell. You can think of them as a **frontend** to the shells. [![shell reference](https://i.stack.imgur.com/hKEfU.png)](https://i.stack.imgur.com/hKEfU.png) **Different Shells** There are different shells which are more or less same but the features and syntaxes are different. **Bourne shell** The most basic shell available on all UNIX systems **Korn Shell** Based on the Bourne shell with enhancements **C Shell** Similar to the C programming language in syntax **Bash Shell** Bourne Again Shell combines the advantages of the Korn Shell and the C Shell. The default on most Linux distributions. **tcsh** Similar to the C Shell
The shell is the program that runs in the terminal, that reads the commands you type and executes them. Unix and Unix-like operating systems today offer a choice between mostly the same set of shells, because these shells pre-date most of those operating systems. For further reading I recommend [Evolution of shells in Linux (IBM)](http://www.ibm.com/developerworks/library/l-linux-shells/) Edit to add information regarding shells and terminals following comments on another answer: A [terminal](https://en.wikipedia.org/wiki/Computer_terminal#/media/File:DEC_VT100_terminal.jpg) is a hardware peripheral that interfaces with a human, it is composed of output to the user and input from the user, in other words of a screen and a keyboard, see link. What the GUI shows you is a *virtual* terminal. The shell is the command-line interface software that is usually what you see on a terminal, but it doesn't have to be a shell. You could start up a virtual terminal and tell it to run `vi` directly, for example, no shell involved.
114,338
The [word](http://www.ldoceonline.com/dictionary/clock) " to clock" is used in a sense of "to measure or record the time or speed that someone or something is travelling at". However, I would like to use it in a more casual context as in the following if possible or how can I say it with different verbs? > > A: How long did your journey take? > > > Should I say ? > > B : I "clocked the time/it". It took about half an hour. > > > or > > B : I forgot to look at the clock so I did not "clock it" but it was about half an hour. > > > Another scenario > > A: How long did it take you to read and understand a research paper? > > > B: I "clocked the time/it". I took about half an hour. > > > What I mean is here that I looked at the clock when the process started and I looked the clock again when the process finished. However I did not measure time in a scientific way using millisecond unit like in a spring.
2017/01/03
[ "https://ell.stackexchange.com/questions/114338", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/11631/" ]
To "clock" something is idiomatic so it's not necessarily OK to use as a substitute for the more generic "to time" something. It does convey an image of timing with a stopwatch or some other precise chronometer, so measuring things like swimmers or race cars or solving the Rubik's Cube is fine, since those are activities where more speed / less time is wanted. But when talking about something like a research paper, it's weird. The image is someone standing over your shoulder while you study, stopwatch in hand, urging you to "read faster!" Although of course you can use "clock" for comic effect. > > I'm really getting into ["power napping"](https://en.wikipedia.org/wiki/Power_nap). I *clocked* my latest nap at 35 minutes, but I think with more practice I could easily break 30! > > >
> > [clocking](http://www.ldoceonline.com/dictionary/clock) > > > the *transitive verb* is about *time* and *speed* > > The race car *clocked in* with a top speed of 250mph. > > > A: How long did your journey take? > > B : I *clocked* it. It took about half an hour. > > B : I *timed* it. It took about half an hour. > > B : *On the clock*, it took about half an hour. > > > And so may not be appropriate for your second example. > > A: How long did it take you to read and understand a research paper? > > B: I *timed* myself. I took about half an hour. > > >
114,338
The [word](http://www.ldoceonline.com/dictionary/clock) " to clock" is used in a sense of "to measure or record the time or speed that someone or something is travelling at". However, I would like to use it in a more casual context as in the following if possible or how can I say it with different verbs? > > A: How long did your journey take? > > > Should I say ? > > B : I "clocked the time/it". It took about half an hour. > > > or > > B : I forgot to look at the clock so I did not "clock it" but it was about half an hour. > > > Another scenario > > A: How long did it take you to read and understand a research paper? > > > B: I "clocked the time/it". I took about half an hour. > > > What I mean is here that I looked at the clock when the process started and I looked the clock again when the process finished. However I did not measure time in a scientific way using millisecond unit like in a spring.
2017/01/03
[ "https://ell.stackexchange.com/questions/114338", "https://ell.stackexchange.com", "https://ell.stackexchange.com/users/11631/" ]
To "clock" something is idiomatic so it's not necessarily OK to use as a substitute for the more generic "to time" something. It does convey an image of timing with a stopwatch or some other precise chronometer, so measuring things like swimmers or race cars or solving the Rubik's Cube is fine, since those are activities where more speed / less time is wanted. But when talking about something like a research paper, it's weird. The image is someone standing over your shoulder while you study, stopwatch in hand, urging you to "read faster!" Although of course you can use "clock" for comic effect. > > I'm really getting into ["power napping"](https://en.wikipedia.org/wiki/Power_nap). I *clocked* my latest nap at 35 minutes, but I think with more practice I could easily break 30! > > >
The simplest thing is to not use "clock" or any equivalent. Just say the time. > > Question: How long did it take you to read that research paper? > > > Answer: About half an hour. > > > We generally only use the verb "clock" when giving instructions, like, "Al, please clock Bill's time." It's rather redundant to say you measured the time and then to give the measurement. Like: > > How tall is this stack? > > > I measured it. It's 9 inches. > > > Well obviously if you know it's 9 inches you must have measured it, so saying you measured it is superfluous. People will use "clock" when they want to make clear that this was a measurement and not a guess or estimate. > > How long did it take you to read that paper? > > > Half an hour. > > > The listener can't be sure if that's an actual measured value or just a guess. But: > > I clocked it at half an hour. > > > That indicates it's an actual measurement. You could also say "I timed it ..." or "I checked a clock and it was ..." BTW "Half and an hour" is not correct. If you mean 30 minutes, say "half an hour". If you mean 90 minutes, say "an hour and a half".
36,946,661
Evening, I have recently installed TFS2015 and investigating the Release Management integrated solution, but have come across a huge blocker that I just cannot make sense of. I currently have a RM2013 build working with TFS, RM Server 2013, and Powershell DSC and have setup a new deployment in RM2015, it has a single task in it 'Execute Powershell on Remote Machine' - with a very simple powershell script just writing out a string to the verbose listener. I have verified that the file is transferred to the Agent working directory as part of the artifact transfer process, and if I call **Import-Module "path to script"** (Which is what the PowerShellonTargetMachines script seems to do under the hood) in the ISE of the remote server, my script runs perfectly fine - but no matter what I do, in TFS release 2015 I get this error without fail: [error]The term 'path to script\test.ps1' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. For more info please refer to <http://aka.ms/powershellontargetmachinesreadme> ========================================================================================================================================================================================================================================================================================================================= Now just to double confirm, the path to the scrpt is 100% correct, I have pasted it into a local ISE on the remote server, and it executes perfectly fine - but from TFS2015 Execute Powershell on Remote Server - it simply fails to run, in fact any script I point at fails to run with the exact same error (I initially thought it might be a DSC component install failure, but even with a simple test script the same issue occurs without fail! My path in the tasks Deployment>Powershell Script parameter input is: c:\test\_scripts\test.ps1 I have tried with quotes, without quotes, dot sourcing - nothing makes a difference which is making me think something fundamentally is either broken with my installation, or I am simply doing this wrong. Any ideas gratefully received!!!
2016/04/29
[ "https://Stackoverflow.com/questions/36946661", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1067843/" ]
The script has to already be on the machine. You can push the script using the "Windows Machine File Copy" task.
Fixed this... make sure you execute the PS1 file on the release agent itself unless copying the powershell files to the remote node via file copy first as indicated below
99,034
Is it possible to have my birthday set to Public so everyone can check that on my profile but my friends won't get the birthday reminder?
2016/10/02
[ "https://webapps.stackexchange.com/questions/99034", "https://webapps.stackexchange.com", "https://webapps.stackexchange.com/users/135796/" ]
**No**. As of now it is not possible. Changing the privacy setting for date and month to "Only me" will not notify to your friends.
It's not possible, at all. The reminder must be visible either :by you, public....
33,472
So i am performing k-means clustering on RFM variables (Recency, Frequency, Monetary). The RFM variables are in the form of quantiles (1-4). I used PCA and found the PCA components. I then used the elbow method to find the optimal number of clusters and then I use it in the k-means algorithm. Could anyone guide me if this is a correct method? Further, the clusters I get range on the graph, their axis ranges[![ClusterImage](https://i.stack.imgur.com/i3uje.png)](https://i.stack.imgur.com/i3uje.png) from -3 to 3 and I am not entirely sure why it ranges from that way.
2018/06/21
[ "https://datascience.stackexchange.com/questions/33472", "https://datascience.stackexchange.com", "https://datascience.stackexchange.com/users/53991/" ]
Judging from the plot, **there are no clusters**. K-means requires continuous variables to work well. The data you have has discrete steps (which causes the grid pattern in your plot). There is no benefit of using PCA here. Use it only for visualization. The scale -3:3 that you don't understand is from PCA. So you probably have not understood PCA enough either.
Recency, Frequency, and Monetary Value (RFM) are measured on a Likert scale from 1-5. Likert scale variables are not amenable to Principal Component Analysis (PCA) or k-means clustering because those methods assume continuous measurement. It would be more appropriate to use multiple correspondence analysis (MCA) and k-modes which assume nominal level measurement.
300,511
In Super Mario Bros, there is a glitch, where a certain set of frame-perfect presses allow you to jump directly into the bottom block of the flagpole at the end of the level. [In this article on the Mario Wiki](https://www.mariowiki.com/List_of_Super_Mario_Bros._glitches#Flagpole_Glitch), it describes the glitch as: > > The player must jump right next to the block that holds the Flagpole and then jump again. If done correctly, Mario or Luigi will jump onto the flagpole normally, but the flag will remain raised. > > > The article also provides an animation for reference: [![](https://i.stack.imgur.com/EmzlQ.gif)](https://i.stack.imgur.com/EmzlQ.gif) (source: [mariowiki.com](https://www.mariowiki.com/images/9/9d/Flagpoleglitchn.gif)) --- [TASVideos](http://tasvideos.org/GameResources/NES/SuperMarioBros.html) describes the glitch as: > > Complete the level without lowering the flag by glitching into the base block of the flagpole and touch the flapole from inside. Doing so is faster than lowering the flag. The points you get from the flagpole will be only 100. This trick isn't used in 8-3 of the warped run, since the timer would turn 343 which results in fireworks. The flagpole glitch was originally found by klmz. > > > --- Unfortunately, I cannot find a better explanation of how to cause the glitch than either of these articles. Any help on how to trigger this glitch would be greatly appreciated.
2017/02/13
[ "https://gaming.stackexchange.com/questions/300511", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/174962/" ]
I've found a pretty good explanation of how to pull off this glitch in [this thread](https://www.reddit.com/r/speedrun/comments/4ygxlm/darbian_gets_smb_11_flagpole_glitch_in_an_actual/): > > Okay so, to start off with, you need to have as close as possible to a perfect room 1 and room 2, you can still get a 380 that's too slow. Example here, first ever time the trick was done on real cart. Check chat replay to see how I handled it > > > Then, you need to jump off the stairs and while in the air press left then right for a very specific amount of frames. Which will change depending on where you jumped off the block. Then if you happened to get inputs in the air correct, you need to hope you land on a very specific pixel on the block. If you land anywhere else apart from that pixel then the trick won't work. > > > Then comes actually doing the trick. This part isn't very hard but there's a lot of variance. The basic inputs are, hold left for 4 frames and jump on the 4th, releasing left at the same time. That's not the only way that works though. > > > Sounds decently simple right? Well not so, as sub-pixels also play into account. Even if you managed to do the set up and your lined up correct, your sub-pixel could be as such where the trick just isn't possible. > > > I found an attempted explanation by the first person to successfully pull off a flagpole glitch in [this thread](https://www.reddit.com/r/speedrun/comments/3pawbn/comment/cw4ubcf). The explanation is for the flagpole glitch on 8-2, so it mentions a Bullet Bill, but the rest applies to the flagpole glitch in 1-1. > > Normally when completing a level Mario will grab the pole, slide to the bottom, hop off and walk to the castle. Once he reaches the castle the timer countdown begins. There's actually an invisible block just to the right of the door to the castle that Mario ends up walking into. This block prevents Mario from walking past the castle door, and also triggers the game to hide Mario behind the background making it look like he entered the castle. So the game is constantly checking to see when Mario is walking into a block to do 2 things: hide Mario and start the timer countdown. The trick used in speedruns is to jump on the bullet bill at a specific position in order to temporarily clip into the block that the flag pole is sitting on, allowing Mario to grab the pole and then immediately get forced OUT of the block to the left. Thus, Mario is immediately touching a block, tricking the game into hiding Mario behind the background and to start the timer countdown without any delay, skipping the entire animation of the flag coming down and Mario walking to the castle. > > > I also found a [tutorial of how to do this in a TAS](https://programming.wonderhowto.com/how-to/skip-level-end-flagpoles-super-mario-bros-tas-415003/) and it even includes a [video](https://youtu.be/tRE3DML9-vA).
I have a bit of an explanation on how to do the glitch in a TAS. First, on the first frame Mario can jump, hold left+right to get him to accelerate faster, then do a jump immediately while holding B+right. Kill one enemy, wait a few frames and do a high jump. You should be able to do another jump right after, so do it while still holding B+right. If done correctly, one more full jump will get you to the flagpole and end the level. However, on the 22nd or 23rd frame of holding the jump button and nothing else, press Left for one frame. Wait until pressing right won't get the flag to come down, and when the music stops after the A but before the F, press left for 4 frames. On the 4th frame, press jump and you've done the glitch! Hopefully that helps!
296,202
I was asked to find the four colour stripes of a 1M ohm (tolerance of 5%) My question now is don't we have 2 options? I came up with: * Black(0) Brown(1) Blue(x1M) Gold (5%) * Brown(1) Black(0) Green(x100K) Gold(5%) Is there one right and one wrong or are both of these correct?
2017/04/02
[ "https://electronics.stackexchange.com/questions/296202", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/102975/" ]
You are not allowed to start with black except for zero ohm jumper, so only your second suggestion is valid.
What if you wanted the colours of a 1.5 Mohm resistor? Your first option doesn't give any ability to specify a 2nd digit so clearly it is a bad choice. The second option allows colours of brown, green and green meaning 15 x 100 kohm.
171,956
I've had to cancel trips to Switzerland since Covid and am now finally traveling, so I've discovered that my Series 8 Swiss Francs have been replaced. I've accumulated a fair amount over the years and now need to exchange them. I have no bank account in Switzerland. In Zurich, is SNB only place to exchange these old notes without a fee? Also, what is the daily limit to exchange?
2022/01/29
[ "https://travel.stackexchange.com/questions/171956", "https://travel.stackexchange.com", "https://travel.stackexchange.com/users/126404/" ]
There is no daily limit. After all, Switzerland is well known for not really caring about where your money comes from. Of course, nowadays there are more anti-money laundering and anti-tax evasion rules, but they are quite relaxed compared to other countries. For example, there is no limit to the amount of cash that you can import to or export from Switzerland and declaration is not mandatory when you enter or leave Switzerland (but the other country can set their own rules). The mandatory [legal duty to establish identity](https://www.fedlex.admin.ch/eli/cc/2015/390/fr#art_51) applies to all non-foreign exchange cash transactions over CHF 15'000 in financial institutions. Financial institutions still have the obligation of due diligence for amounts lower than that and must verify identity and other checks if money laundering or terrorism financing is suspected. In practice, without other suspicion of fraud, money laundering, terrorism financing, beneficial owner not the same as the person carrying out transactions etc., only verification of identity is needed. Other clarifications may be required in case of suspicion. In any case, no daily limit applies. > > In its efforts to safeguard the standing of the Swiss financial centre and to fulfil its duty of due diligence, the SNB may make the exchange of banknotes dependent on further clarifications. These may include, for instance, identification of the contractual partner as well as establishment of the beneficial owner’s identity, and additional clarifications. > > > Suspicions can arise from things like large amount of small-denomination bills, apparent structuring (i.e. appearing to deposit an amount just below CHF 15'000 to avoid financial scrutiny) etc.. > > In Zurich, is SNB only place to exchange without a fee? > > > If you do not have a bank account, then probably yes. If you are going elsewhere in Switzerland, SNB has [another desk in Bern and partner banks](https://www.snb.ch/en/mmr/reference/instr_recalled_notes/source/instr_recalled_notes.en.pdf) that will also exchange them. You may still find certain merchants still accepting them, but don't count on this.
> > In Zurich, is SNB only place to exchange without a fee? > > > > No. I tried to exchange an old banknote at a retail branch of the Banque Cantonale de Genève. The clerk told me I'd have to go to the main office down in the center of town ... or to any post office. I went to the nearest post office, where the window clerk exchanged my 100-franc note without asking any questions, without asking for ID, and without any fee. The post office accepted these notes through October 2021. It doesn't require much time or effort to try, but I suspect that you might not succeed in changing your notes there anymore.
171,956
I've had to cancel trips to Switzerland since Covid and am now finally traveling, so I've discovered that my Series 8 Swiss Francs have been replaced. I've accumulated a fair amount over the years and now need to exchange them. I have no bank account in Switzerland. In Zurich, is SNB only place to exchange these old notes without a fee? Also, what is the daily limit to exchange?
2022/01/29
[ "https://travel.stackexchange.com/questions/171956", "https://travel.stackexchange.com", "https://travel.stackexchange.com/users/126404/" ]
There is no daily limit. After all, Switzerland is well known for not really caring about where your money comes from. Of course, nowadays there are more anti-money laundering and anti-tax evasion rules, but they are quite relaxed compared to other countries. For example, there is no limit to the amount of cash that you can import to or export from Switzerland and declaration is not mandatory when you enter or leave Switzerland (but the other country can set their own rules). The mandatory [legal duty to establish identity](https://www.fedlex.admin.ch/eli/cc/2015/390/fr#art_51) applies to all non-foreign exchange cash transactions over CHF 15'000 in financial institutions. Financial institutions still have the obligation of due diligence for amounts lower than that and must verify identity and other checks if money laundering or terrorism financing is suspected. In practice, without other suspicion of fraud, money laundering, terrorism financing, beneficial owner not the same as the person carrying out transactions etc., only verification of identity is needed. Other clarifications may be required in case of suspicion. In any case, no daily limit applies. > > In its efforts to safeguard the standing of the Swiss financial centre and to fulfil its duty of due diligence, the SNB may make the exchange of banknotes dependent on further clarifications. These may include, for instance, identification of the contractual partner as well as establishment of the beneficial owner’s identity, and additional clarifications. > > > Suspicions can arise from things like large amount of small-denomination bills, apparent structuring (i.e. appearing to deposit an amount just below CHF 15'000 to avoid financial scrutiny) etc.. > > In Zurich, is SNB only place to exchange without a fee? > > > If you do not have a bank account, then probably yes. If you are going elsewhere in Switzerland, SNB has [another desk in Bern and partner banks](https://www.snb.ch/en/mmr/reference/instr_recalled_notes/source/instr_recalled_notes.en.pdf) that will also exchange them. You may still find certain merchants still accepting them, but don't count on this.
From <https://www.snb.ch/en/iabout/cash> (emphasis mine): > > Banknotes from the eighth series still held by the general public or economic agents, as well as banknotes accepted by the latter, **can thus be exchanged at any time and for an unlimited period at the SNB cashier's office in Berne and Zurich or at an SNB agency** at their full nominal value. **It is important to note that some agencies apply exchange limits.** > > > **Many places also accept banknotes from the eighth series for payments into one's own bank or post office account.** Financial institutions must exercise the duty of due diligence in connection with combating money laundering and terrorism financing. > > > So without a bank or post office account an SNB cashier office or agency (selected cantonal banks) is the place to go, and the cashier offices will not apply exchange limits. More details are found in the [Instruction sheet for exchanging recalled banknotes.](https://www.snb.ch/en/mmr/reference/instr_recalled_notes/source/instr_recalled_notes.en.pdf) : > > In its efforts to safeguard the standing of the Swiss financial centre and to fulfil its duty of due diligence, the SNB may make the exchange of banknotes dependent on further clarifications. These may include, for instance, identification of the contractual partner as well as establishment of the beneficial owner’s identity, and additional clarifications. > > > If you have any specific questions, please contact the SNB Cashier’s Office in Berne directly (+41 58 631 07 57 or bargeld@snb.ch). > > >
83,566
I have finished my M.Sc. in Applied Mathematics in 2016. I wish to pursue a PhD. Currently I am preparing for GATE (Graduate Aptitude Test in Engineering, a master’s-level national entrance exam in India). In this respect, I have a few questions. 1. If I only have a valid GATE score but no CSIR-JRF NET qualification, will I be eligible for the 25 k funding? 2. If yes to above, is this funding available for any NAAC-accredited university (public or private) in India? 3. Is there any written statement from the government which validates this?
2017/01/20
[ "https://academia.stackexchange.com/questions/83566", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/20923/" ]
When it comes to knowledge I make the (admittedly vague) distinction between general knowledge anyone in the field would have and specific knowledge that an expert probably would need to look up. For the first kind I use pen and paper. Pen and paper is better for learning things by heart and for this kind of knowledge there usually are plenty of textbooks to look it up if necessary. For the second kind of knowledge it is usually enough to get the gist of it. That is why I write my notes on my computer. Here it is less important to know it by heart and more important to clearly record a reference for potential future use. Searching through a file directory is easier than trying to find a random piece of paper I might have thrown out. Of course given the time, writing a draft on paper and then a final version on your computer is best. However who in academia has time to spare for that?
I used and still use pen and paper, although for my discipline, I bought engineering paper so that I put graphs on the left page and content on the right page. That is what I used for lectures and presentations. There are limitations on a digital format unless you turn it into a glorified writing pad. You cannot mark arrows easily, you cannot easily link text to graphs and you cannot write marginalia as easily, unless you are typing in LaTeX. Outside of lecture, I use highlighters. Although I keep a digital copy of articles, you cannot markup a pdf from a publisher. I maintain four inch binders that are organized in a manner that is useful for me. I have my own Dewey system. Electronically, I store the articles using tags as names such as serial\_correlation\_explosive\_roots or mvue\_cauchy\_trimmed\_mean. I also depend a lot upon memory. The difficulty of using a markup system is that you do not know what will be important in three years. When you read an article it may be that keywords a, b, and c were what was important to you, but the article contained a seemingly uninteresting reference to keyword d, which is not a keyword because you don't care at this point in time. The keywords do not hurt, but if they cause you to commit less to memory because you say "I can search it," then you actually have lost retrievable data. Of course in an ideal world you would have built a search using the contents of the pdfs. Pre-built bibliographic tools exist. BibTex is very useful, though not ideal. For continuity I use BibTex though if I were starting today, I may not. I maintain a unified bibliography for everything I have ever used or done. BibTex is part of LaTeX. If you are going to do professional writing, you should probably learn LaTeX. Download something like MikTex and then use something like TexStudio as a wrapper so you do not have to type out all of the commands. It isn't bad to learn on MikTex, but it is slower than TexStudio since TexStudio will guess what you are trying to do and autocomplete.
83,566
I have finished my M.Sc. in Applied Mathematics in 2016. I wish to pursue a PhD. Currently I am preparing for GATE (Graduate Aptitude Test in Engineering, a master’s-level national entrance exam in India). In this respect, I have a few questions. 1. If I only have a valid GATE score but no CSIR-JRF NET qualification, will I be eligible for the 25 k funding? 2. If yes to above, is this funding available for any NAAC-accredited university (public or private) in India? 3. Is there any written statement from the government which validates this?
2017/01/20
[ "https://academia.stackexchange.com/questions/83566", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/20923/" ]
When it comes to knowledge I make the (admittedly vague) distinction between general knowledge anyone in the field would have and specific knowledge that an expert probably would need to look up. For the first kind I use pen and paper. Pen and paper is better for learning things by heart and for this kind of knowledge there usually are plenty of textbooks to look it up if necessary. For the second kind of knowledge it is usually enough to get the gist of it. That is why I write my notes on my computer. Here it is less important to know it by heart and more important to clearly record a reference for potential future use. Searching through a file directory is easier than trying to find a random piece of paper I might have thrown out. Of course given the time, writing a draft on paper and then a final version on your computer is best. However who in academia has time to spare for that?
The support is probably the least relevant part. What you actually need is a structure to organise your notes. If it goes well digitally for you, go for it. At the end, it all depends on how you function. I know that if I need to learn something, I better write it on paper than on a machine, unless it's computer programming. But that might not work for you. There are multiple tools to manage bibliography, with or without the ability to add notes. Just pick the one you like and can work with.
83,566
I have finished my M.Sc. in Applied Mathematics in 2016. I wish to pursue a PhD. Currently I am preparing for GATE (Graduate Aptitude Test in Engineering, a master’s-level national entrance exam in India). In this respect, I have a few questions. 1. If I only have a valid GATE score but no CSIR-JRF NET qualification, will I be eligible for the 25 k funding? 2. If yes to above, is this funding available for any NAAC-accredited university (public or private) in India? 3. Is there any written statement from the government which validates this?
2017/01/20
[ "https://academia.stackexchange.com/questions/83566", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/20923/" ]
In [this article](https://sites.udel.edu/victorp/files/2010/11/Psychological-Science-2014-Mueller-0956797614524581-1u0h0yu.pdf), "The Pen is Mightier than the Keyboard," the researchers tested this very issue. They found that taking notes with pen and paper is more effective... but, that was because students who typed their notes were copying lectures verbatim whereas students who took notes by hand were taking in the information and then writing it in their own words (thus processing the info at a deeper level). So, the key is the way you process the information, not necessarily the method you use to take notes. But, at the same time, it is noteworthy (no pun intended) that longhand notes tends to lead to that deeper level of processing more so than does taking notes digitally. Personally, I'm all about taking notes longhand, and I print out articles that are important to me/my work.
When it comes to knowledge I make the (admittedly vague) distinction between general knowledge anyone in the field would have and specific knowledge that an expert probably would need to look up. For the first kind I use pen and paper. Pen and paper is better for learning things by heart and for this kind of knowledge there usually are plenty of textbooks to look it up if necessary. For the second kind of knowledge it is usually enough to get the gist of it. That is why I write my notes on my computer. Here it is less important to know it by heart and more important to clearly record a reference for potential future use. Searching through a file directory is easier than trying to find a random piece of paper I might have thrown out. Of course given the time, writing a draft on paper and then a final version on your computer is best. However who in academia has time to spare for that?
83,566
I have finished my M.Sc. in Applied Mathematics in 2016. I wish to pursue a PhD. Currently I am preparing for GATE (Graduate Aptitude Test in Engineering, a master’s-level national entrance exam in India). In this respect, I have a few questions. 1. If I only have a valid GATE score but no CSIR-JRF NET qualification, will I be eligible for the 25 k funding? 2. If yes to above, is this funding available for any NAAC-accredited university (public or private) in India? 3. Is there any written statement from the government which validates this?
2017/01/20
[ "https://academia.stackexchange.com/questions/83566", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/20923/" ]
In [this article](https://sites.udel.edu/victorp/files/2010/11/Psychological-Science-2014-Mueller-0956797614524581-1u0h0yu.pdf), "The Pen is Mightier than the Keyboard," the researchers tested this very issue. They found that taking notes with pen and paper is more effective... but, that was because students who typed their notes were copying lectures verbatim whereas students who took notes by hand were taking in the information and then writing it in their own words (thus processing the info at a deeper level). So, the key is the way you process the information, not necessarily the method you use to take notes. But, at the same time, it is noteworthy (no pun intended) that longhand notes tends to lead to that deeper level of processing more so than does taking notes digitally. Personally, I'm all about taking notes longhand, and I print out articles that are important to me/my work.
I used and still use pen and paper, although for my discipline, I bought engineering paper so that I put graphs on the left page and content on the right page. That is what I used for lectures and presentations. There are limitations on a digital format unless you turn it into a glorified writing pad. You cannot mark arrows easily, you cannot easily link text to graphs and you cannot write marginalia as easily, unless you are typing in LaTeX. Outside of lecture, I use highlighters. Although I keep a digital copy of articles, you cannot markup a pdf from a publisher. I maintain four inch binders that are organized in a manner that is useful for me. I have my own Dewey system. Electronically, I store the articles using tags as names such as serial\_correlation\_explosive\_roots or mvue\_cauchy\_trimmed\_mean. I also depend a lot upon memory. The difficulty of using a markup system is that you do not know what will be important in three years. When you read an article it may be that keywords a, b, and c were what was important to you, but the article contained a seemingly uninteresting reference to keyword d, which is not a keyword because you don't care at this point in time. The keywords do not hurt, but if they cause you to commit less to memory because you say "I can search it," then you actually have lost retrievable data. Of course in an ideal world you would have built a search using the contents of the pdfs. Pre-built bibliographic tools exist. BibTex is very useful, though not ideal. For continuity I use BibTex though if I were starting today, I may not. I maintain a unified bibliography for everything I have ever used or done. BibTex is part of LaTeX. If you are going to do professional writing, you should probably learn LaTeX. Download something like MikTex and then use something like TexStudio as a wrapper so you do not have to type out all of the commands. It isn't bad to learn on MikTex, but it is slower than TexStudio since TexStudio will guess what you are trying to do and autocomplete.
83,566
I have finished my M.Sc. in Applied Mathematics in 2016. I wish to pursue a PhD. Currently I am preparing for GATE (Graduate Aptitude Test in Engineering, a master’s-level national entrance exam in India). In this respect, I have a few questions. 1. If I only have a valid GATE score but no CSIR-JRF NET qualification, will I be eligible for the 25 k funding? 2. If yes to above, is this funding available for any NAAC-accredited university (public or private) in India? 3. Is there any written statement from the government which validates this?
2017/01/20
[ "https://academia.stackexchange.com/questions/83566", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/20923/" ]
In [this article](https://sites.udel.edu/victorp/files/2010/11/Psychological-Science-2014-Mueller-0956797614524581-1u0h0yu.pdf), "The Pen is Mightier than the Keyboard," the researchers tested this very issue. They found that taking notes with pen and paper is more effective... but, that was because students who typed their notes were copying lectures verbatim whereas students who took notes by hand were taking in the information and then writing it in their own words (thus processing the info at a deeper level). So, the key is the way you process the information, not necessarily the method you use to take notes. But, at the same time, it is noteworthy (no pun intended) that longhand notes tends to lead to that deeper level of processing more so than does taking notes digitally. Personally, I'm all about taking notes longhand, and I print out articles that are important to me/my work.
The support is probably the least relevant part. What you actually need is a structure to organise your notes. If it goes well digitally for you, go for it. At the end, it all depends on how you function. I know that if I need to learn something, I better write it on paper than on a machine, unless it's computer programming. But that might not work for you. There are multiple tools to manage bibliography, with or without the ability to add notes. Just pick the one you like and can work with.
29,183,312
Any idea on how to force chrome devtools - sources - '[go to member](https://developer.chrome.com/devtools/docs/shortcuts#sources-panel)' Ctrl+Shift+O to take preference over bookmark manager? chrome version [41.0.2272.101 m] on windows 8.1
2015/03/21
[ "https://Stackoverflow.com/questions/29183312", "https://Stackoverflow.com", "https://Stackoverflow.com/users/506843/" ]
The go to member shortcut only works when you have a JavaScript file open already.
This feature will become available upon opening the first source file tab - as I had closed them all, chrome had nothing to look up on. I was (unrealistically?) expecting the search to traverse all sources on the tree...
36,509
I think "pater" is a greek word that could not be translated as "parents", because pater mean father and in plural mean "fathers" always. And I saw many translators who accept the wrong translation, but why? Is there any good reson to choose this translation? I want to proof me that. I guess the word goneus can be used for parents but not pater. And the apostle don't use this word. Thanx.
2018/12/13
[ "https://hermeneutics.stackexchange.com/questions/36509", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/27858/" ]
In his commenatry on Hebrews 11:23, Franz Delitzsch wrote,1 > > Nor could the writer of our epistle, though following the ἰδόντες of the LXX., have meant to exclude Jochebed, nor indeed does he do so: **πατέρες elsewhere is not unfrequently equivalent to the more usual οἱ γονεῖς = parents, male and female.** Comp. not only [Bleek’s citation](https://books.google.com/books?id=8lUsAAAAYAAJ&pg=PG796#v=onepage&q&f=true) from Parthenius, Erot. 10; but also [Plato, Legg. p. 772 B](http://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.01.0165:book=6:section=772e&highlight=pate%2Frwn) [sic], ἀγαθῶν πατέρων φύντι; [Dion. Hal. Ant. ii. 26](https://archive.org/details/romanantiquities01dionuoft/page/386), ἵνα σέβωσι (οἱ παῖδες) τοὺς πατέρας and Rhet. iii. 3, ποίων τινῶν προγόνων καὶ πατέρων. The πατέρες here, then, are Amram and Jochebed. These hid Moses three months... > > > --- ### Footnotes 1 Delitsch, p. [259](https://books.google.com/books?id=4XAuAAAAYAAJ&pg=PG259#v=onepage&q&f=true). Also, cf. Stephanus, p. [603](https://books.google.com/books?id=8w8rKLzd77gC&pg=PG603#v=onepage&q&f=true). ### References Delitzsch, Franz. [*Commentary on the Epistle to the Hebrews.*](https://books.google.com/books?id=4XAuAAAAYAAJ) Trans. Kingsbury, Thomas L. Vol. 2. Edinburgh: Clark, 1872. Stephanus, Henricus (a.k.a. Estienne, Henri). [*ΘΗΣΑΥΡΟΣ ΤΗΣ ΕΛΛΗΝΙΚΗΣ ΓΛΩΣΣΗΣ. THESAURUS GRAECAE LINGUAE.*](https://books.google.com/books?id=8w8rKLzd77gC) Vol. 6. Paris: Ambrosius Firmin, 1842.
According to the BDAG entry for "pater" #1b, the plural word ("pateron" here in Heb 11:23) can mean "parents" generally, that is both father and mother collectively. It then lists three instances of this in the NT, namely Heb 11:23, Eph 6:4, Col 3:21. This is perfect example of the aphorism that in Greek (as often in English) men do not own their gender. That is, the masculine noun is sometimes used for male and female as well. Note the use of the masculine "deacon" for female deacon(ess) in Rom 16:1, 2, 1 Tim 3:11.
36,509
I think "pater" is a greek word that could not be translated as "parents", because pater mean father and in plural mean "fathers" always. And I saw many translators who accept the wrong translation, but why? Is there any good reson to choose this translation? I want to proof me that. I guess the word goneus can be used for parents but not pater. And the apostle don't use this word. Thanx.
2018/12/13
[ "https://hermeneutics.stackexchange.com/questions/36509", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/27858/" ]
In his commenatry on Hebrews 11:23, Franz Delitzsch wrote,1 > > Nor could the writer of our epistle, though following the ἰδόντες of the LXX., have meant to exclude Jochebed, nor indeed does he do so: **πατέρες elsewhere is not unfrequently equivalent to the more usual οἱ γονεῖς = parents, male and female.** Comp. not only [Bleek’s citation](https://books.google.com/books?id=8lUsAAAAYAAJ&pg=PG796#v=onepage&q&f=true) from Parthenius, Erot. 10; but also [Plato, Legg. p. 772 B](http://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.01.0165:book=6:section=772e&highlight=pate%2Frwn) [sic], ἀγαθῶν πατέρων φύντι; [Dion. Hal. Ant. ii. 26](https://archive.org/details/romanantiquities01dionuoft/page/386), ἵνα σέβωσι (οἱ παῖδες) τοὺς πατέρας and Rhet. iii. 3, ποίων τινῶν προγόνων καὶ πατέρων. The πατέρες here, then, are Amram and Jochebed. These hid Moses three months... > > > --- ### Footnotes 1 Delitsch, p. [259](https://books.google.com/books?id=4XAuAAAAYAAJ&pg=PG259#v=onepage&q&f=true). Also, cf. Stephanus, p. [603](https://books.google.com/books?id=8w8rKLzd77gC&pg=PG603#v=onepage&q&f=true). ### References Delitzsch, Franz. [*Commentary on the Epistle to the Hebrews.*](https://books.google.com/books?id=4XAuAAAAYAAJ) Trans. Kingsbury, Thomas L. Vol. 2. Edinburgh: Clark, 1872. Stephanus, Henricus (a.k.a. Estienne, Henri). [*ΘΗΣΑΥΡΟΣ ΤΗΣ ΕΛΛΗΝΙΚΗΣ ΓΛΩΣΣΗΣ. THESAURUS GRAECAE LINGUAE.*](https://books.google.com/books?id=8w8rKLzd77gC) Vol. 6. Paris: Ambrosius Firmin, 1842.
Well, "πατήρ" is a greek word that in the plural, πατέρων, CAN be translated as "parents", i.e. father+mother.Let's have a look in 2-3 lexicons. > > **Gingrich's Greek Lexicon** and **Thayer's Greek Lexicon**: πατέρων: plural > parents — b. forefather, ancestor, progenitor Mt 3:9; 23:30, 32; Mk > 11:10; Lk 1:73; 16:24; J 4:20; 8:39, 53, 56; Ac 3:13, 25; Ro 9:10; Hb > 1:1.— > > > **Liddell and Scott's Greek-English Lexicon:** πατήρ in pl.: > ***1. forefathers***, Il.6.209, etc. ; ἐξέτι πατρῶν from our fathers' time, Od.8.245; ἐκ πατέρων Pi.P.8.45. > ***2. parents***, D.S.21.17, Alciphr.3.40, Epigr.Gr.227 (Teos). > ***3. parent-nation***, opp. colonists, Hdt.7.51, 8.22, Plu.Them.9. (Cf. Skt.pitár-, Lat. pater, etc.) > > > Please search [here](http://logeion.uchicago.edu/%CF%80%CE%B1%CF%84%CE%AE%CF%81), this way it will be much easier for you to find out the meanings of the word and to understand why the translation is fine.
932,872
I have two Internet connections, how can I have downloads go through one and uploads go through the other without a new router? I was thinking two network cards in a computer, but how do you connect to both and route downloads/uploads to the different connections?
2015/06/26
[ "https://superuser.com/questions/932872", "https://superuser.com", "https://superuser.com/users/50313/" ]
[Dispatch proxy](https://github.com/Morhaus/dispatch-proxy) may work here, and in fact this is one of the use cases suggested, and may do even more. 1. You need two connections, and ideally if they're on seperate routers *non overlapping* ip address ranges. 2. run dispatch proxy (or I guess any proxy), and bind it to one interface. Tell software to use that proxy 3. Dispatch-proxy would also let you do 'naive' load balancing with 2 interfaces and one dispatch proxy instance. It'll either let you combine multiple internet connections and/or set the proportion of connections (not traffic) that go through each.
This is not possible, unless you are running all connection with UDP (but not every application is supported), TCP handshake process is already included upload
932,872
I have two Internet connections, how can I have downloads go through one and uploads go through the other without a new router? I was thinking two network cards in a computer, but how do you connect to both and route downloads/uploads to the different connections?
2015/06/26
[ "https://superuser.com/questions/932872", "https://superuser.com", "https://superuser.com/users/50313/" ]
[Dispatch proxy](https://github.com/Morhaus/dispatch-proxy) may work here, and in fact this is one of the use cases suggested, and may do even more. 1. You need two connections, and ideally if they're on seperate routers *non overlapping* ip address ranges. 2. run dispatch proxy (or I guess any proxy), and bind it to one interface. Tell software to use that proxy 3. Dispatch-proxy would also let you do 'naive' load balancing with 2 interfaces and one dispatch proxy instance. It'll either let you combine multiple internet connections and/or set the proportion of connections (not traffic) that go through each.
I am always amazed by people here who put weird answers, anyway Yes you can make that, but it's tricky here by using QOS So lets say you have 2 routers each one have different WAN IP and both of them gives your PC same StaticIP for both Ethernet/Wireless card easy for now :P the next step is using QOS service On the first router 0 upload X download the second one X upload 0 download now if you want to browse something your internet explorer will not open any site The tricky thing is to change the MAC address of your wireless/Ethernet card and make both of them have the same MAC "now people will vote down for this part, because everyone know the MAC not important for web browsing Well some websites like Facebook use MAC address and WAN IP in the same time" **BUT** you still can't open any site simply because when you enter a domain/site on your browser your browser will send a command to DNS server then the DNS server will connect you to a server to bring the website for you, when you block the download on your first router the server can't send you the site ok you have a mac address but your WAN IP on the second router is different so the server can't know that's you To solve this problem you need a network MASK to make both WAN-IP work as one address, so you need a DNS server for that :)
1,819,591
It is possible to work with a Delphi 5 project in the Delphi 2009 IDE by referencing the Delphi 5 version of dcc32? If so are there any issues to watch out for concerning the way that project settings (search paths, conditional defines etc.) are implemented in 2009? Edit: Just to clarify I am also upgrading the project to Unicode but will still need to debug and run releases in the old configuration
2009/11/30
[ "https://Stackoverflow.com/questions/1819591", "https://Stackoverflow.com", "https://Stackoverflow.com/users/24773/" ]
It depends on what you're trying to accomplish and what limitations you are willing to accept. As far as I know, you can't use the Delphi 2009 IDE to maintain Delphi 5 projects directly. For example, even if you stick to functionality that's common between the two, some properties that are not supported in Delphi 5 are written to your DFMs, causing an error at run time. I've maintained projects and library code that were written in Delphi 2005/2006/2007 that was also being used in Delphi 6/7. I usually edited and debugged these using the latest IDE. I had separate project files for each target version and made sure they all used the same [memory manager](http://sourceforge.net/projects/fastmm/). Finally, I had an automated build process and unit tests that would strip incompatible properties out of the DFMs (my own DFM Scrubber), make sure all of the targets always compile and run unit tests, which are also recompiled for each target. All in all, it's more effort and I wouldn't recommend it unless you have a specific requirement to do so.
No. That said, it is still Delphi, and assuming you have source or D2009 versions of any custom components it can be modified to compile in Delphi 2009. The layout of the VCL has changed quite a bit since D5, so expect to have to modify your `uses` clauses and probably rewrite some small chunks here and there, but it is doable.
1,819,591
It is possible to work with a Delphi 5 project in the Delphi 2009 IDE by referencing the Delphi 5 version of dcc32? If so are there any issues to watch out for concerning the way that project settings (search paths, conditional defines etc.) are implemented in 2009? Edit: Just to clarify I am also upgrading the project to Unicode but will still need to debug and run releases in the old configuration
2009/11/30
[ "https://Stackoverflow.com/questions/1819591", "https://Stackoverflow.com", "https://Stackoverflow.com/users/24773/" ]
It depends on what you're trying to accomplish and what limitations you are willing to accept. As far as I know, you can't use the Delphi 2009 IDE to maintain Delphi 5 projects directly. For example, even if you stick to functionality that's common between the two, some properties that are not supported in Delphi 5 are written to your DFMs, causing an error at run time. I've maintained projects and library code that were written in Delphi 2005/2006/2007 that was also being used in Delphi 6/7. I usually edited and debugged these using the latest IDE. I had separate project files for each target version and made sure they all used the same [memory manager](http://sourceforge.net/projects/fastmm/). Finally, I had an automated build process and unit tests that would strip incompatible properties out of the DFMs (my own DFM Scrubber), make sure all of the targets always compile and run unit tests, which are also recompiled for each target. All in all, it's more effort and I wouldn't recommend it unless you have a specific requirement to do so.
You either port your code to Delphi 2009/2010 level (Unicode), or you may as well not install the product. I suggest you open the project and see where it fails, close the project (without saving anything), find the component versions you need and install them, and once the project opens up in design mode (all components are installed) you can start porting. Read the Unicode Delphi migration (porting) information available at the website. Ask your self each time you see PChar, and Char, if it needs to be PAnsiChar, or AnsiChar instead? If you are reading bytes from a disk, a com port, or a network connection, you will need to change from Char to AnsiChar, from PChar to PAnsiChar, otherwise, you might just leave the Char and PChar as they are and they will become Unicode. Always be aware that Char is not a Byte, anymore. You also must replace explicit references to narrow Win32 API calls with versions without the A (ansi) suffix. Example: CreateFileA might need to become just CreateFile. W
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I tried to use "I" in the first version of my thesis (in mathematics). When my advisor suggested corrections, the most detailed and strongly-worded of them was to use "we"; later, I asked another young professor whether one could use "I" and she said "Only if you want to sound like an arrogant bastard", and observed that only old people with established reputations can get away with it. My extremely informal recollection of some articles that are more than, say, forty years old is that the singular is used more often, so what she says may be true but for a different reason than simple pride. The modern culture may disparage apparent displays of ego simply because of the greater prevalence of collaboration, whether or not your paper is a product of it. This is complete speculation, though. I disagreed with the change at the time but acquiesced anyway, and now, with distance, I realize that it was a good idea. Scattering the paper with "I" draws attention to the author, and especially in mathematical writing, the prose is filled with impersonal subjects (that is, you often don't mean "I" literally, as in "If y = f(x), then we have an equation..."). Using "we" allows it to simply sink into the background, where it belongs. If it's your thesis, you don't have to put any special effort into reminding the reader who is talking, just like in an essay, they used to tell me not to say "in my opinion" before stating it. **EDIT:** Oh, I forgot entirely about "the author". I hate that phrase, because it is just as inconsistent with "we" as with "I" and disingenuous to boot. If you have to make a truly personal remark, just say "I", and perhaps set off the entire comment by "Personally..." or something like that.
I don't think there's anything wrong with using *we* in single-author scientific journal papers. It's the tradition, and if you use *I* in scientific papers it stands out, not necessarily in a good way. On the other hand, a PhD thesis is **not** a scientific journal paper, but a PhD thesis, and if you want to use *I* in it I don't see anything wrong with that. The passive voice should not be used to avoid writing *I* or *we*. If the entire thesis is written in the passive voice, it is much harder to read, and the sentences within it1 have to be reworded awkwardly so that some good transitions between the sentences within a paragraph are lost. On the other hand, if some sentences seem to require the passive voice, by all means those sentences should be written in the passive voice. But the passive voice should only be used where it is justified, that is, where its use improves readability of the thesis. 1 See how much better *your sentences* would read here.
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I tried to use "I" in the first version of my thesis (in mathematics). When my advisor suggested corrections, the most detailed and strongly-worded of them was to use "we"; later, I asked another young professor whether one could use "I" and she said "Only if you want to sound like an arrogant bastard", and observed that only old people with established reputations can get away with it. My extremely informal recollection of some articles that are more than, say, forty years old is that the singular is used more often, so what she says may be true but for a different reason than simple pride. The modern culture may disparage apparent displays of ego simply because of the greater prevalence of collaboration, whether or not your paper is a product of it. This is complete speculation, though. I disagreed with the change at the time but acquiesced anyway, and now, with distance, I realize that it was a good idea. Scattering the paper with "I" draws attention to the author, and especially in mathematical writing, the prose is filled with impersonal subjects (that is, you often don't mean "I" literally, as in "If y = f(x), then we have an equation..."). Using "we" allows it to simply sink into the background, where it belongs. If it's your thesis, you don't have to put any special effort into reminding the reader who is talking, just like in an essay, they used to tell me not to say "in my opinion" before stating it. **EDIT:** Oh, I forgot entirely about "the author". I hate that phrase, because it is just as inconsistent with "we" as with "I" and disingenuous to boot. If you have to make a truly personal remark, just say "I", and perhaps set off the entire comment by "Personally..." or something like that.
By all means write "I". By an amusing coincidence, I have in front of me the article *Deformations of Symmetric Products*, a proceedings article published by Princeton University Press. The author is the late George R. Kempf, a distinguished algebraic geometer, and on the very first page I read [not we read:-)]: "My proof uses heavily the deformation theory..." . And on the second page "I will use without particular references standard facts from deformation theory". I could give any number of examples: this usage is quite widespread.
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I tried to use "I" in the first version of my thesis (in mathematics). When my advisor suggested corrections, the most detailed and strongly-worded of them was to use "we"; later, I asked another young professor whether one could use "I" and she said "Only if you want to sound like an arrogant bastard", and observed that only old people with established reputations can get away with it. My extremely informal recollection of some articles that are more than, say, forty years old is that the singular is used more often, so what she says may be true but for a different reason than simple pride. The modern culture may disparage apparent displays of ego simply because of the greater prevalence of collaboration, whether or not your paper is a product of it. This is complete speculation, though. I disagreed with the change at the time but acquiesced anyway, and now, with distance, I realize that it was a good idea. Scattering the paper with "I" draws attention to the author, and especially in mathematical writing, the prose is filled with impersonal subjects (that is, you often don't mean "I" literally, as in "If y = f(x), then we have an equation..."). Using "we" allows it to simply sink into the background, where it belongs. If it's your thesis, you don't have to put any special effort into reminding the reader who is talking, just like in an essay, they used to tell me not to say "in my opinion" before stating it. **EDIT:** Oh, I forgot entirely about "the author". I hate that phrase, because it is just as inconsistent with "we" as with "I" and disingenuous to boot. If you have to make a truly personal remark, just say "I", and perhaps set off the entire comment by "Personally..." or something like that.
Remember that in situations like this, it is common for the author to refer to himself as "this author," e.g., "This author proposes a novel solution to the problem of X."
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I tried to use "I" in the first version of my thesis (in mathematics). When my advisor suggested corrections, the most detailed and strongly-worded of them was to use "we"; later, I asked another young professor whether one could use "I" and she said "Only if you want to sound like an arrogant bastard", and observed that only old people with established reputations can get away with it. My extremely informal recollection of some articles that are more than, say, forty years old is that the singular is used more often, so what she says may be true but for a different reason than simple pride. The modern culture may disparage apparent displays of ego simply because of the greater prevalence of collaboration, whether or not your paper is a product of it. This is complete speculation, though. I disagreed with the change at the time but acquiesced anyway, and now, with distance, I realize that it was a good idea. Scattering the paper with "I" draws attention to the author, and especially in mathematical writing, the prose is filled with impersonal subjects (that is, you often don't mean "I" literally, as in "If y = f(x), then we have an equation..."). Using "we" allows it to simply sink into the background, where it belongs. If it's your thesis, you don't have to put any special effort into reminding the reader who is talking, just like in an essay, they used to tell me not to say "in my opinion" before stating it. **EDIT:** Oh, I forgot entirely about "the author". I hate that phrase, because it is just as inconsistent with "we" as with "I" and disingenuous to boot. If you have to make a truly personal remark, just say "I", and perhaps set off the entire comment by "Personally..." or something like that.
How about using neither? What about using factual voice instead : > > "A new method to study cell differentiation in nematodes is proposed.""A new method to study cell differentiation in nematodes will be proposed." > or > "Figure 4.2 shows that..." > > > Edit : "A new method to study cell differentiation in nematodes will be proposed." Was Replaced with : "A new method to study cell differentiation in nematodes is proposed." in accordance with suggestions (details in comments below).
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
Many people in academia encourage the use of “we” instead of “I”, although many other people don’t — I can easily remember that Chomsky, at least in *Aspects of the Theory of Syntax*, do use the first-person singular. Personally, I prefer to use “I”, if I’m the only author. I believe that it sounds much better, not to mention, humbler. If you have an adviser, then you should really ask him. If you’re writing for a journal, see if they have published articles in which the author use “I” instead of “we”.
How about using neither? What about using factual voice instead : > > "A new method to study cell differentiation in nematodes is proposed.""A new method to study cell differentiation in nematodes will be proposed." > or > "Figure 4.2 shows that..." > > > Edit : "A new method to study cell differentiation in nematodes will be proposed." Was Replaced with : "A new method to study cell differentiation in nematodes is proposed." in accordance with suggestions (details in comments below).
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I don't think there's anything wrong with using *we* in single-author scientific journal papers. It's the tradition, and if you use *I* in scientific papers it stands out, not necessarily in a good way. On the other hand, a PhD thesis is **not** a scientific journal paper, but a PhD thesis, and if you want to use *I* in it I don't see anything wrong with that. The passive voice should not be used to avoid writing *I* or *we*. If the entire thesis is written in the passive voice, it is much harder to read, and the sentences within it1 have to be reworded awkwardly so that some good transitions between the sentences within a paragraph are lost. On the other hand, if some sentences seem to require the passive voice, by all means those sentences should be written in the passive voice. But the passive voice should only be used where it is justified, that is, where its use improves readability of the thesis. 1 See how much better *your sentences* would read here.
Remember that in situations like this, it is common for the author to refer to himself as "this author," e.g., "This author proposes a novel solution to the problem of X."
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
By all means write "I". By an amusing coincidence, I have in front of me the article *Deformations of Symmetric Products*, a proceedings article published by Princeton University Press. The author is the late George R. Kempf, a distinguished algebraic geometer, and on the very first page I read [not we read:-)]: "My proof uses heavily the deformation theory..." . And on the second page "I will use without particular references standard facts from deformation theory". I could give any number of examples: this usage is quite widespread.
Many people in academia encourage the use of “we” instead of “I”, although many other people don’t — I can easily remember that Chomsky, at least in *Aspects of the Theory of Syntax*, do use the first-person singular. Personally, I prefer to use “I”, if I’m the only author. I believe that it sounds much better, not to mention, humbler. If you have an adviser, then you should really ask him. If you’re writing for a journal, see if they have published articles in which the author use “I” instead of “we”.
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
I don't think there's anything wrong with using *we* in single-author scientific journal papers. It's the tradition, and if you use *I* in scientific papers it stands out, not necessarily in a good way. On the other hand, a PhD thesis is **not** a scientific journal paper, but a PhD thesis, and if you want to use *I* in it I don't see anything wrong with that. The passive voice should not be used to avoid writing *I* or *we*. If the entire thesis is written in the passive voice, it is much harder to read, and the sentences within it1 have to be reworded awkwardly so that some good transitions between the sentences within a paragraph are lost. On the other hand, if some sentences seem to require the passive voice, by all means those sentences should be written in the passive voice. But the passive voice should only be used where it is justified, that is, where its use improves readability of the thesis. 1 See how much better *your sentences* would read here.
Many people in academia encourage the use of “we” instead of “I”, although many other people don’t — I can easily remember that Chomsky, at least in *Aspects of the Theory of Syntax*, do use the first-person singular. Personally, I prefer to use “I”, if I’m the only author. I believe that it sounds much better, not to mention, humbler. If you have an adviser, then you should really ask him. If you’re writing for a journal, see if they have published articles in which the author use “I” instead of “we”.
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
Many people in academia encourage the use of “we” instead of “I”, although many other people don’t — I can easily remember that Chomsky, at least in *Aspects of the Theory of Syntax*, do use the first-person singular. Personally, I prefer to use “I”, if I’m the only author. I believe that it sounds much better, not to mention, humbler. If you have an adviser, then you should really ask him. If you’re writing for a journal, see if they have published articles in which the author use “I” instead of “we”.
Remember that in situations like this, it is common for the author to refer to himself as "this author," e.g., "This author proposes a novel solution to the problem of X."
24,629
> > **Possible Duplicate:** > > [Style Question: Use of “we” vs. “I” vs. passive voice in a dissertation](https://english.stackexchange.com/questions/9986/style-question-use-of-we-vs-i-vs-passive-voice-in-a-dissertation) > > > When the first person voice is used in scientific writing it is mostly used in the first person plural, as scientific papers almost always have more than one co-author, such as > > We propose a new method to study cell differentiation in nematodes. > > > Often the "we" also includes the reader > > We may see in Figure 4.2 that... > > > However, I am writing a thesis which means I am the only author and I even have to testify in writing that the work is my own and I did not receive any help other than from the indicated sources. Therefore it seems I should use "I", but this seems to be very unusual in scientific writing and even discouraged as one may sound pretentious or self-absorbed. However, the alternative is to use the passive voice, which seems to be even more discouraged as it produces hard to read writing and indeed an entire thesis in the passive voice may be indigestible for any reader. So far, I used the second form of "we" extensively that includes me and the reader. This form is often natural when describing mathematical derivations as the truth is objective and it suggests that I am taking the reader by the hand and walking her through the process. Still, I'm trying not do overdo this form. However, eventually I will need to refer to methods that *I* propose and choices that *I* have made. Should I just follow scientific convention and use "we" although it is factually inaccurate or indeed write in the scorned-upon "I"?
2011/05/10
[ "https://english.stackexchange.com/questions/24629", "https://english.stackexchange.com", "https://english.stackexchange.com/users/2499/" ]
By all means write "I". By an amusing coincidence, I have in front of me the article *Deformations of Symmetric Products*, a proceedings article published by Princeton University Press. The author is the late George R. Kempf, a distinguished algebraic geometer, and on the very first page I read [not we read:-)]: "My proof uses heavily the deformation theory..." . And on the second page "I will use without particular references standard facts from deformation theory". I could give any number of examples: this usage is quite widespread.
How about using neither? What about using factual voice instead : > > "A new method to study cell differentiation in nematodes is proposed.""A new method to study cell differentiation in nematodes will be proposed." > or > "Figure 4.2 shows that..." > > > Edit : "A new method to study cell differentiation in nematodes will be proposed." Was Replaced with : "A new method to study cell differentiation in nematodes is proposed." in accordance with suggestions (details in comments below).
124,214
How do major studios fake the effect of "wear & tear" on the edges of guns and other things? I've always wondered this, but today it got to the point where I figured, why not just ask you guys. I"ve tried painting a greyscale mask, where the edges show a rough concretelike texture (Painted white and use lerp in ue4) but for some reason I feel like There is something im missing. Then, today I noticed sometihng playing BO3 - the edges seemed to have some more specularity on guns. Is this my answer? What process would you go through to show roughed edges? What goes into that effect?
2016/06/20
[ "https://gamedev.stackexchange.com/questions/124214", "https://gamedev.stackexchange.com", "https://gamedev.stackexchange.com/users/73229/" ]
Certainly when there is some kind of 'finish' worn off of a surface the albedo/diffuse texture changes, but what is also important is, as you note, the specular highlight as well as any glossiness or reflectivity. This is normally done with a grey-scale texture used as a mask to make the worn off sections look matte while the pristine areas remain glossy.
Edge effects are generally produced by using multiple surface materials (texture sets) and blending between them with hand-painted or generated edge textures. Note that these materials only exist in the artist's workflow, as they're rendered to a single set of textures for the game. Textures that may contain edge information are curvature maps and ambient occlusion maps. You can see how it's often done by artists in this video: <https://www.youtube.com/watch?v=4fCF5HPc5_c>