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
103,974
There is this startup founded by well known people in the industry. They are making a very good product and I'll be proud to work on it, but my first motivation to apply is to be with (and to learn from) these great masters. Should I tell them or keep it for me and focus on the product and the global company feeling?
2017/12/12
[ "https://workplace.stackexchange.com/questions/103974", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/78447/" ]
"I've been very impressed with the work the founders have done in the past, and I'm excited to see what they're going to do next" is a good reason to work for a company. "To be with these great masters" seems excessively sycophantic and toadying.
I am sure you can say that, but don't make it too dramatic. Include the performance of the company and mention you are excited to join such a successful company founded and run by the leaders. At the end of the day, we want to work with the best people and learn from them.
103,974
There is this startup founded by well known people in the industry. They are making a very good product and I'll be proud to work on it, but my first motivation to apply is to be with (and to learn from) these great masters. Should I tell them or keep it for me and focus on the product and the global company feeling?
2017/12/12
[ "https://workplace.stackexchange.com/questions/103974", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/78447/" ]
"I've been very impressed with the work the founders have done in the past, and I'm excited to see what they're going to do next" is a good reason to work for a company. "To be with these great masters" seems excessively sycophantic and toadying.
There is nothing wrong in telling them that during the interview. It will do you only good. It will show that you have a reason why you have a proper reason why you have applied to the company, and not like applying to any other company. It will show that you really have done your background research about the company. This will definitely give you an upper-hand over your competitors in the interview.
103,974
There is this startup founded by well known people in the industry. They are making a very good product and I'll be proud to work on it, but my first motivation to apply is to be with (and to learn from) these great masters. Should I tell them or keep it for me and focus on the product and the global company feeling?
2017/12/12
[ "https://workplace.stackexchange.com/questions/103974", "https://workplace.stackexchange.com", "https://workplace.stackexchange.com/users/78447/" ]
I am sure you can say that, but don't make it too dramatic. Include the performance of the company and mention you are excited to join such a successful company founded and run by the leaders. At the end of the day, we want to work with the best people and learn from them.
There is nothing wrong in telling them that during the interview. It will do you only good. It will show that you have a reason why you have a proper reason why you have applied to the company, and not like applying to any other company. It will show that you really have done your background research about the company. This will definitely give you an upper-hand over your competitors in the interview.
13,454,202
I have added a chat capability to a site using jquery and PHP and it seems to generally work well, but I am worried about scalability. I wonder if anyone has some advice. The key area for me I think is efficiently managing awareness of who is onine. detail: I haven't implemented long-polling (yet) and I'm worried about the raw number of long-running processes in PHP (Apache) getting out of control. My code runs a periodic jquery ajax poll (4secs), that first updates the db to say I am active and sets a timestamp. Then there is a routine that checks the timestamp for all active users and sets those outside (10mins) to inactive. This is fairly normal from my research so far. However, I am concenred that if I allow every active user to check every other active user and then everyone update the db to kick off inactive users, then I will get duplicated effort, record locks and unnecessary server load. So I have implemented an idea of the role of a 'sweeper'. This is just one of the online users, who inherits the role of the person doing the cleanup. Everyone else just checks whether there is a 'sweeper' in existence (DB read) and carries on. If there is no sweeper when they check, they make themselves sweeper (DB write for their own record). If there are more than one, make yourself 'non-sweeper', sleep for a random period and check again. My theory is that this way there is only one user regularly writing updates to several records on the relevant table and everyone else is either reading or just writing to their own record. So it works OK, but the problem possibly is that the process requires a few DB reads and may actually be less efficient than just letting everyone do the cleanup as with other research as I mentioned. I have had over 100 concurrent users running OK so far, but the client wants to scale up to several 100's, even over 1,000 and I have no idea of knowing at this stage whether this idea is good or not. Does anyone know whether this is a good approach or not, whether it is scalable to hundreds of active users, or whether you can recommend a different approach? AS an aside, long polling / comet for the actual chat messages seems simple and I have found a good resource for the code, but there are several blog comments that suggest it's dangerous with PHP and apache specifically. active threads etc. Impact minimsed with usleep and session\_write\_close. Again does anyone have any practical experience of a PHP long polling set up for hundreds of active users, maybe you can put my mind at ease ! Do I really ahve to look to migrate this to node.js (no experience) ? Thank you in advance Tony
2012/11/19
[ "https://Stackoverflow.com/questions/13454202", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1759826/" ]
Long polling is indeed pretty disastrous for PHP. PHP is always runs with limited concurrent processes, and it will scale great as long as you optimize for handling each request as quickly as possible. Long polling and similar solutions will quickly fill up your pipe. It could be argued that PHP is simply not the right technology for this type of stuff, with the current tools out there. If you insist on using PHP you could try [ReactPHP](https://github.com/react-php/react), which is a framework for PHP quite similar to how NodeJS is built. The implication with React is also that it's expected to run as a separate deamon, and not within a webserver such as apache. I have no experience on the stability of this, and how well it scales, so you will have to do the testing yourself. NodeJS is not hard to get into, if you know javascript well. NodeJS + [socket.io](http://socket.io/) make it really easy to write the chat-server and client with websockets. This would be my recommendations. When I started with this is, I had something nice up and running within several hours.
My advice would be to do this with [**meteor**](http://meteor.com/) framework, which should be pretty trivial to do, even if you are not an expert, and then simply load such chat into your PHP website via iframe. It will be scalable, won't consume much resources, and it will get only better in the future, I presume. And it sure beats both PHP comet solutions and jquery & ajax timeout based calls to server. I even believe you could find on github more or less a completed solution that just requires tweaking. But of course, **do read the [docs](http://docs.meteor.com/)** before you implement it. If you worry about security issues, read [**security with meteor**](http://britto.co/blog/security_with_meteor)
13,454,202
I have added a chat capability to a site using jquery and PHP and it seems to generally work well, but I am worried about scalability. I wonder if anyone has some advice. The key area for me I think is efficiently managing awareness of who is onine. detail: I haven't implemented long-polling (yet) and I'm worried about the raw number of long-running processes in PHP (Apache) getting out of control. My code runs a periodic jquery ajax poll (4secs), that first updates the db to say I am active and sets a timestamp. Then there is a routine that checks the timestamp for all active users and sets those outside (10mins) to inactive. This is fairly normal from my research so far. However, I am concenred that if I allow every active user to check every other active user and then everyone update the db to kick off inactive users, then I will get duplicated effort, record locks and unnecessary server load. So I have implemented an idea of the role of a 'sweeper'. This is just one of the online users, who inherits the role of the person doing the cleanup. Everyone else just checks whether there is a 'sweeper' in existence (DB read) and carries on. If there is no sweeper when they check, they make themselves sweeper (DB write for their own record). If there are more than one, make yourself 'non-sweeper', sleep for a random period and check again. My theory is that this way there is only one user regularly writing updates to several records on the relevant table and everyone else is either reading or just writing to their own record. So it works OK, but the problem possibly is that the process requires a few DB reads and may actually be less efficient than just letting everyone do the cleanup as with other research as I mentioned. I have had over 100 concurrent users running OK so far, but the client wants to scale up to several 100's, even over 1,000 and I have no idea of knowing at this stage whether this idea is good or not. Does anyone know whether this is a good approach or not, whether it is scalable to hundreds of active users, or whether you can recommend a different approach? AS an aside, long polling / comet for the actual chat messages seems simple and I have found a good resource for the code, but there are several blog comments that suggest it's dangerous with PHP and apache specifically. active threads etc. Impact minimsed with usleep and session\_write\_close. Again does anyone have any practical experience of a PHP long polling set up for hundreds of active users, maybe you can put my mind at ease ! Do I really ahve to look to migrate this to node.js (no experience) ? Thank you in advance Tony
2012/11/19
[ "https://Stackoverflow.com/questions/13454202", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1759826/" ]
Long polling is indeed pretty disastrous for PHP. PHP is always runs with limited concurrent processes, and it will scale great as long as you optimize for handling each request as quickly as possible. Long polling and similar solutions will quickly fill up your pipe. It could be argued that PHP is simply not the right technology for this type of stuff, with the current tools out there. If you insist on using PHP you could try [ReactPHP](https://github.com/react-php/react), which is a framework for PHP quite similar to how NodeJS is built. The implication with React is also that it's expected to run as a separate deamon, and not within a webserver such as apache. I have no experience on the stability of this, and how well it scales, so you will have to do the testing yourself. NodeJS is not hard to get into, if you know javascript well. NodeJS + [socket.io](http://socket.io/) make it really easy to write the chat-server and client with websockets. This would be my recommendations. When I started with this is, I had something nice up and running within several hours.
If you want to keep your application stack using PHP, you want the chat application running in your actual web app (not an iframe) and your concerned about scaling your realtime infrastructure then I'd recommend you look at a hosted service for the realtime updates, such as [Pusher](http://pusher.com) who I work for. This way the hosted service handles the scaling of the realtime infrastructure for you and lets you concentrate on building your application functionality. This way you only need to handle the chat message requests - sanitize/verify the content - and then push the information through Pusher to the 1000's of connected clients. The quick start guide is available here: <http://pusher.com/docs/quickstart> I've a full list of hosted services on my [realtime web tech guide](http://www.leggetter.co.uk/real-time-web-technologies-guide).
227,677
I use windows and now ubuntu and want to use ubuntu one to backup and sync files between them both so no matter what OS I use, I have the latest synced files. Is that possible?
2012/12/10
[ "https://askubuntu.com/questions/227677", "https://askubuntu.com", "https://askubuntu.com/users/113924/" ]
Yes, there is [Ubuntu One client for Windows](https://one.ubuntu.com/downloads/windows/).
It is. You can install an Ubuntu One client in Widows (just follow the instructions on the Ubuntu One website), log in with your account and start syncing.
227,677
I use windows and now ubuntu and want to use ubuntu one to backup and sync files between them both so no matter what OS I use, I have the latest synced files. Is that possible?
2012/12/10
[ "https://askubuntu.com/questions/227677", "https://askubuntu.com", "https://askubuntu.com/users/113924/" ]
Yes, there is [Ubuntu One client for Windows](https://one.ubuntu.com/downloads/windows/).
I believe it should be possible. Just install [Ubuntu One](https://one.ubuntu.com/downloads/) on both Windows and Ubuntu. Say you have a folder `Documents` in Ubuntu and you want it to be synced between Windows and Ubuntu. Then just select Sync Locally for that folder in both the Ubuntu and Windows - Ubutnu One Client. ![enter image description here](https://i.stack.imgur.com/TYfFB.png)
227,677
I use windows and now ubuntu and want to use ubuntu one to backup and sync files between them both so no matter what OS I use, I have the latest synced files. Is that possible?
2012/12/10
[ "https://askubuntu.com/questions/227677", "https://askubuntu.com", "https://askubuntu.com/users/113924/" ]
I believe it should be possible. Just install [Ubuntu One](https://one.ubuntu.com/downloads/) on both Windows and Ubuntu. Say you have a folder `Documents` in Ubuntu and you want it to be synced between Windows and Ubuntu. Then just select Sync Locally for that folder in both the Ubuntu and Windows - Ubutnu One Client. ![enter image description here](https://i.stack.imgur.com/TYfFB.png)
It is. You can install an Ubuntu One client in Widows (just follow the instructions on the Ubuntu One website), log in with your account and start syncing.
9,982
Working in web-development, I face a common situation when clients want to use 3rd party software as a starting point of the project. That could be a CMS, an e-commerce site, or something else. Motivation is usually budget-driven; it seems to the client that having a web site built atop of some off-the-shelf product will cut costs. It is not always true. For example: * The client (often a non-technical person) was told that it's super-easy to build a 3-page website using a famous CMS. However, nobody knows what it takes to build a 100-page website, with a blog feature and 3 levels of paid membership. * The team doesn't know the CMS before the project starts, so adding requested features become a hard task, and the existing CMS code often stands in the way of effective development. * It also may turn out that there's no decent documentation. The team would create similar features faster *without* that CMS, but the client still insists on using it. * Adding custom design to the CMS-based site may cause trouble for HTML developers, requiring development of non-trivial code (for example, an obscure menu system). * It may turn out that the CMS is not compatible with the hosting that was usually used for deployment, the CMS has internal flaws preventing scalability in production, or that the solution requires enormous hardware setup to operate properly under load. That leads to questions I'd like to ask: * How can we convince a client that his solution should not require a custom CMS, or that it may take *longer* to develop a custom solution using pre-existing code? Clients usually has arguments like 'the biggest sites on the Internet are using this CMS,' but we don't really know how much effort was put but those biggest sites to run the CMS properly. * How to include 3rd party (or pre-existing) code into our initial estimation and risk-management calculations? Any numbers and techniques are welcome.
2013/09/30
[ "https://pm.stackexchange.com/questions/9982", "https://pm.stackexchange.com", "https://pm.stackexchange.com/users/5475/" ]
TL;DR ----- You aren't really asking a risk-management question. At heart, the question is really about how to estimate projects where you have no baseline values. A common solution is to use a pilot project to generate planning values as inputs to a full-scale project. Ability to Estimate ------------------- Your project's ability to estimate accurately (or at all) depends a great deal on the team's experience with a specific knowledge domain. If you have zero experience with a given technology or project, then your project schedule is a black box; there is no way to estimate it other than guesswork. Even assuming some knowledge, all projects have a [cone of uncertainty](http://en.wikipedia.org/wiki/Cone_of_Uncertainty). Generally, you will plot a preliminary schedule based on some planning values, often adjusted by a [fudge factor](http://en.wikipedia.org/wiki/Fudge_factor) representing the amount of uncertainty the team has about the project. For example, inexperienced teams might multiply their initial productivity values (e.g. velocity) by 0.6, or pad their schedule by multiplying time estimates by 1.4. The actual value of the fudge factor is less important than the clear knowledge that it *is* an adjustment to the planning values. Remember: an estimate is an *informed opinion*, not an iron-clad guarantee. Pilot Projects -------------- If your project involves skills outside the team's current area of expertise, or if there's a need to perform some tasks in order to calibrate the schedule for a larger project, then you need a [pilot project](http://en.wikipedia.org/wiki/Pilot_experiment). For example, rather than trying to estimate a 100-page website with a tool-chain no one has experience with, you might plan a pilot project for a 5-page web site. The important deliverables from a pilot project like this aren't actually the web pages; the real deliverables are experience with the proposed solution and better input values for the larger project. For instance, you might do your 5-page study in two weeks, but discover that the solution won't scale the way you need it to. Or, you might find that initial setup takes a week, and developers can average a page a day thereafter. Whatever the results, you use the data from the pilot project along with a new set of more-informed fudge factors to generate the schedule or estimate for the larger project. This may or may not be linear: a 100-page web project isn't necessarily 20 times the complexity of a 5-page project. However, your cone of uncertainty should be smaller after a pilot study, and your estimates will be much more likely to fall within the boundaries of acceptable variance.
Question #1: this is a business case. To convince a customer of anything, you need to build an argument. Develop a case that exhibits several alternatives from which the customer can choose, the benefits/costs/risks of each alternative, and your recommendation. Your recommendation needs to be supported and substantiated with industry standards and facts that you find in your research, not just your opinion likely biased by your pursuit of profit. Your entire presentation needs to be supported by the relationship you have developed with your customer. You would not be just a vendor pitching your wares but a trusted adviser. Question #2: This is a risk management question. And you would apply normal risk management techniques. There are few projects out there that are not dependent upon something external that could adversely or favorably impact your schedule and budget. So this is normal; welcome to project management 101. Research what you can about the external dependency, e.g., reputation in the market place, history of being late or on time, references, etc. What you can't learn, you need to draft an appropriate assumption (a source of risk). You load your schedule with the external milestones based on that assumption so you can communicate clearly how your performance would be impacted if those assumptions do not bear fruit. You can load schedule reserves to accommodate something coming in late and, most of all, you communicate clearly to your customer where you have dependencies, the risks you and your customer must accept, and any updates to what you are observing. You can only control what you can control. Most of the very random variables that affect our performance, both favorably and unfavorably, are way out of our control, which is very counter intuitive to all the business type A's managing projects, but such is life. All you can do is watch for them, plan for them (risk management), communicate what you are observing in a timely way, and accept the fact this is all very normal.
9,982
Working in web-development, I face a common situation when clients want to use 3rd party software as a starting point of the project. That could be a CMS, an e-commerce site, or something else. Motivation is usually budget-driven; it seems to the client that having a web site built atop of some off-the-shelf product will cut costs. It is not always true. For example: * The client (often a non-technical person) was told that it's super-easy to build a 3-page website using a famous CMS. However, nobody knows what it takes to build a 100-page website, with a blog feature and 3 levels of paid membership. * The team doesn't know the CMS before the project starts, so adding requested features become a hard task, and the existing CMS code often stands in the way of effective development. * It also may turn out that there's no decent documentation. The team would create similar features faster *without* that CMS, but the client still insists on using it. * Adding custom design to the CMS-based site may cause trouble for HTML developers, requiring development of non-trivial code (for example, an obscure menu system). * It may turn out that the CMS is not compatible with the hosting that was usually used for deployment, the CMS has internal flaws preventing scalability in production, or that the solution requires enormous hardware setup to operate properly under load. That leads to questions I'd like to ask: * How can we convince a client that his solution should not require a custom CMS, or that it may take *longer* to develop a custom solution using pre-existing code? Clients usually has arguments like 'the biggest sites on the Internet are using this CMS,' but we don't really know how much effort was put but those biggest sites to run the CMS properly. * How to include 3rd party (or pre-existing) code into our initial estimation and risk-management calculations? Any numbers and techniques are welcome.
2013/09/30
[ "https://pm.stackexchange.com/questions/9982", "https://pm.stackexchange.com", "https://pm.stackexchange.com/users/5475/" ]
TL;DR ----- You aren't really asking a risk-management question. At heart, the question is really about how to estimate projects where you have no baseline values. A common solution is to use a pilot project to generate planning values as inputs to a full-scale project. Ability to Estimate ------------------- Your project's ability to estimate accurately (or at all) depends a great deal on the team's experience with a specific knowledge domain. If you have zero experience with a given technology or project, then your project schedule is a black box; there is no way to estimate it other than guesswork. Even assuming some knowledge, all projects have a [cone of uncertainty](http://en.wikipedia.org/wiki/Cone_of_Uncertainty). Generally, you will plot a preliminary schedule based on some planning values, often adjusted by a [fudge factor](http://en.wikipedia.org/wiki/Fudge_factor) representing the amount of uncertainty the team has about the project. For example, inexperienced teams might multiply their initial productivity values (e.g. velocity) by 0.6, or pad their schedule by multiplying time estimates by 1.4. The actual value of the fudge factor is less important than the clear knowledge that it *is* an adjustment to the planning values. Remember: an estimate is an *informed opinion*, not an iron-clad guarantee. Pilot Projects -------------- If your project involves skills outside the team's current area of expertise, or if there's a need to perform some tasks in order to calibrate the schedule for a larger project, then you need a [pilot project](http://en.wikipedia.org/wiki/Pilot_experiment). For example, rather than trying to estimate a 100-page website with a tool-chain no one has experience with, you might plan a pilot project for a 5-page web site. The important deliverables from a pilot project like this aren't actually the web pages; the real deliverables are experience with the proposed solution and better input values for the larger project. For instance, you might do your 5-page study in two weeks, but discover that the solution won't scale the way you need it to. Or, you might find that initial setup takes a week, and developers can average a page a day thereafter. Whatever the results, you use the data from the pilot project along with a new set of more-informed fudge factors to generate the schedule or estimate for the larger project. This may or may not be linear: a 100-page web project isn't necessarily 20 times the complexity of a 5-page project. However, your cone of uncertainty should be smaller after a pilot study, and your estimates will be much more likely to fall within the boundaries of acceptable variance.
To answer your second question - you would apply risk management techniques. There is a lot of material on the internet regarding the entire process. There is a good worked-through example of risk management on a software project in the [Risk Register User Guide](http://www.projectbalm.com/rr-userguide/).
3,691
I am an Italian student, and I'm looking for a particular dataset. I'm interested in a model for spatial regression, with time-varying data. I'm looking for data with coordinates, measured in different moments for each point. Where can I find them? I don't have a specific request for the dataset. I need to try a statistical model. This model works with data spatially distributed (so every datum is located with his coordinates), and for every point (located by the coordinates) I need more measurements, at different times. I leave an example. I'm measuring the temperature at different points of my city during the day. I'm interested in two points: the center (coordinates...) and near the river (coordinates...). Data are measured hourly. So I have (starting from 8:00): Center: 25C, 27C, ... River: 22C, 24C, ...
2014/09/23
[ "https://opendata.stackexchange.com/questions/3691", "https://opendata.stackexchange.com", "https://opendata.stackexchange.com/users/3653/" ]
You could look for climate data on the open data portals around Italy, Regione Liguria has it for meteorogical measurements (<http://www.cartografiarl.regione.liguria.it/SiraQualMeteo/Fruizione.asp>) but doesn't have an API. Other suggestions from <https://groups.google.com/forum/#!forum/spaghettiopendata> : * <http://toolserver.openstreetmap.it/carburantiMiSE/> (fuel data) * <http://www2.arpalombardia.it/sites/QAria/_layouts/15/QAria/IDati.aspx?v=1> (air pollution)
You have two basic options for data -- either time series data from a known location (or multiple locations), or reocurring satelite imagery. Most fixed-location time series data will have a finer temporal resolution, but will be lower spatial resolution. You'll sometimes see this called a "sensor net" if it follows a fixed grid, but that term's also used in other fields, so it's difficult to find useful results using most search engines. For urban temp data, you might want to see [Muller et.al's 'Sensors and the Cirty'](http://www.academia.edu/2455213/Sensors_and_The_City_A_Review_of_Urban_Meteorological_Networks) which catalogs 'Urban Meteorological Networks'. It'll at least give you the names of sensor networks to look for data from. There's a lot of spatio-temporal satelite data, but the ones with higher resolution (eg, [Landsat](https://landsat.usgs.gov/LSDP.php)) take days before they come back to give another pass (16 days for Landsat 7 & 8). The geostationary satellites such as [GOES](http://goes.gsfc.nasa.gov/) tend to have fixed telescopes, which likely won't give you the resolution needed (the 'high resolution' images are ~64km^2/pixel). **update** : I was wrong about the satellites -- because I didn't consider that you might get data from more than one satellite flying the same instrument. [MODIS](http://modis.gsfc.nasa.gov/) is flown on both Aqua and Terra, has 250m resolution, and they each scan the whole earth every 1.2 days. Due to how they scan, there's also overlap in the passes, so stuff not directly below the satellite track can be imaged twice (with distortion).
3,691
I am an Italian student, and I'm looking for a particular dataset. I'm interested in a model for spatial regression, with time-varying data. I'm looking for data with coordinates, measured in different moments for each point. Where can I find them? I don't have a specific request for the dataset. I need to try a statistical model. This model works with data spatially distributed (so every datum is located with his coordinates), and for every point (located by the coordinates) I need more measurements, at different times. I leave an example. I'm measuring the temperature at different points of my city during the day. I'm interested in two points: the center (coordinates...) and near the river (coordinates...). Data are measured hourly. So I have (starting from 8:00): Center: 25C, 27C, ... River: 22C, 24C, ...
2014/09/23
[ "https://opendata.stackexchange.com/questions/3691", "https://opendata.stackexchange.com", "https://opendata.stackexchange.com/users/3653/" ]
You could look for climate data on the open data portals around Italy, Regione Liguria has it for meteorogical measurements (<http://www.cartografiarl.regione.liguria.it/SiraQualMeteo/Fruizione.asp>) but doesn't have an API. Other suggestions from <https://groups.google.com/forum/#!forum/spaghettiopendata> : * <http://toolserver.openstreetmap.it/carburantiMiSE/> (fuel data) * <http://www2.arpalombardia.it/sites/QAria/_layouts/15/QAria/IDati.aspx?v=1> (air pollution)
Copy-paste from an IEEE article: **[Now on Google Earth: 150 Years of Global Temperature Data](http://spectrum.ieee.org/tech-talk/at-work/test-and-measurement/now-on-google-earth-150-years-of-global-temperature-data)** > > The CRU Temperature database, version 4 (CRUTEM4) includes information from some 6000 weather stations, with some time series reaching back to 1850. > > > The CRUTEM4 KML schema divides the Earth’s land surface into 780 grid boxes, each 5 degrees latitude by 5 degrees longitude. > > > Lists of raw data types are **[here](http://www.cru.uea.ac.uk/data)**, and in particular **[temperature](http://www.cru.uea.ac.uk/cru/data/temperature/)**. ![enter image description here](https://i.stack.imgur.com/eqAGV.jpg)
3,691
I am an Italian student, and I'm looking for a particular dataset. I'm interested in a model for spatial regression, with time-varying data. I'm looking for data with coordinates, measured in different moments for each point. Where can I find them? I don't have a specific request for the dataset. I need to try a statistical model. This model works with data spatially distributed (so every datum is located with his coordinates), and for every point (located by the coordinates) I need more measurements, at different times. I leave an example. I'm measuring the temperature at different points of my city during the day. I'm interested in two points: the center (coordinates...) and near the river (coordinates...). Data are measured hourly. So I have (starting from 8:00): Center: 25C, 27C, ... River: 22C, 24C, ...
2014/09/23
[ "https://opendata.stackexchange.com/questions/3691", "https://opendata.stackexchange.com", "https://opendata.stackexchange.com/users/3653/" ]
Copy-paste from an IEEE article: **[Now on Google Earth: 150 Years of Global Temperature Data](http://spectrum.ieee.org/tech-talk/at-work/test-and-measurement/now-on-google-earth-150-years-of-global-temperature-data)** > > The CRU Temperature database, version 4 (CRUTEM4) includes information from some 6000 weather stations, with some time series reaching back to 1850. > > > The CRUTEM4 KML schema divides the Earth’s land surface into 780 grid boxes, each 5 degrees latitude by 5 degrees longitude. > > > Lists of raw data types are **[here](http://www.cru.uea.ac.uk/data)**, and in particular **[temperature](http://www.cru.uea.ac.uk/cru/data/temperature/)**. ![enter image description here](https://i.stack.imgur.com/eqAGV.jpg)
You have two basic options for data -- either time series data from a known location (or multiple locations), or reocurring satelite imagery. Most fixed-location time series data will have a finer temporal resolution, but will be lower spatial resolution. You'll sometimes see this called a "sensor net" if it follows a fixed grid, but that term's also used in other fields, so it's difficult to find useful results using most search engines. For urban temp data, you might want to see [Muller et.al's 'Sensors and the Cirty'](http://www.academia.edu/2455213/Sensors_and_The_City_A_Review_of_Urban_Meteorological_Networks) which catalogs 'Urban Meteorological Networks'. It'll at least give you the names of sensor networks to look for data from. There's a lot of spatio-temporal satelite data, but the ones with higher resolution (eg, [Landsat](https://landsat.usgs.gov/LSDP.php)) take days before they come back to give another pass (16 days for Landsat 7 & 8). The geostationary satellites such as [GOES](http://goes.gsfc.nasa.gov/) tend to have fixed telescopes, which likely won't give you the resolution needed (the 'high resolution' images are ~64km^2/pixel). **update** : I was wrong about the satellites -- because I didn't consider that you might get data from more than one satellite flying the same instrument. [MODIS](http://modis.gsfc.nasa.gov/) is flown on both Aqua and Terra, has 250m resolution, and they each scan the whole earth every 1.2 days. Due to how they scan, there's also overlap in the passes, so stuff not directly below the satellite track can be imaged twice (with distortion).
66,613
How can someone become a multi-disciplinary researcher? For example, can one study a multi-disciplinary domain that combines signal processing, artificial intelligence (neural net, machine learning), robotics, instrumentation and control engineering, and embedded systems? Is there a path that could make a candidate a marketable researcher across all these domains?
2016/04/10
[ "https://academia.stackexchange.com/questions/66613", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/50446/" ]
To answer the general question: You can be a interdisciplinary researcher by getting multiple degrees in different fields, getting a single interdisciplinary degree, or by getting a degree in one field and, over the course of your career, working your way into another. Most academic jobs are hired by departments, and the wide majority of departments are single-disiplinary, though interdisciplinary programs are fashionable right now. To be a marketable researcher in a given discipline, you would generally need at least a phd in that discipline, possibly a interdisciplinary phd that centrally involved it (marketability depends a lot on the specific interdisciplinary program, but in general, these will be less appealing than an phd in the actual discipline), or, in very rare cases, a a phd in a different discipline but VERY extensive research in that discipline. When it comes to the latter, things are probably more flexible in the humanities than in the sciences, and often only in one direction (ex. there are philosophy phds in rhetoric departments, but not rhetoric phds in philosophy departments). In general, you need to be able to teach introductory courses in that discipline as well as in your particular area. Some universities do have particular interdisciplinary departments or other interdisciplinary lines, but these are in established interdisciplinary subjects—cognitive science, peace studies, asian cultures, environmental studies... There are also "cluster hires," where universities look to give a researcher appointments in multiple departments for work on topics like diaspora studies and agroecology that are appealing to administrators but too small to support entire departments. Cluster hires are rare and are not something you can plan a career around. There are no lines for unspecified "interdisciplinary" researchers. You need to be able to market yourself under a specific discipline or under an established interdisciplinary program. In general, the latter will be harder.
There are two groups of researchers relevant to your question. The inter-disciplinary ones, and the multi-disciplinary ones. I know one or two hundred inter-disciplinary researchers. With a couple of exceptions (so now we're down to a tiny tiny proportion of all researchers), they nevertheless all have a single specialism: in each case, it's a specialism that spans more than one traditional topic. Typically, they did one (or occasionally two) Masters' degree(s) in fields different to their first degree, and then did an inter-disciplinary PhD. Only the exceptions are multi-disciplinary. We became that through many years of working across different fields. We're not specialists in all of those fields. But we know enough to be able to work in teams that consist of specialists from any combination of them. None of us planned it this way - it just emerged as a consequence of our (lack of) career path. Many fields see the multi-disciplinary researcher as something of a luxury. In the first instance, most principal investigators and other research leaders seem to prefer single-discipline experts. An enlightened few see the benefits of creating the best team, rather than just selecting the best individuals; and for inter-disciplinary work, a multi-disciplinary researcher can be the catalyst that enhances the performance of the rest of the team, as well as doing research in their own right.
66,613
How can someone become a multi-disciplinary researcher? For example, can one study a multi-disciplinary domain that combines signal processing, artificial intelligence (neural net, machine learning), robotics, instrumentation and control engineering, and embedded systems? Is there a path that could make a candidate a marketable researcher across all these domains?
2016/04/10
[ "https://academia.stackexchange.com/questions/66613", "https://academia.stackexchange.com", "https://academia.stackexchange.com/users/50446/" ]
To answer the general question: You can be a interdisciplinary researcher by getting multiple degrees in different fields, getting a single interdisciplinary degree, or by getting a degree in one field and, over the course of your career, working your way into another. Most academic jobs are hired by departments, and the wide majority of departments are single-disiplinary, though interdisciplinary programs are fashionable right now. To be a marketable researcher in a given discipline, you would generally need at least a phd in that discipline, possibly a interdisciplinary phd that centrally involved it (marketability depends a lot on the specific interdisciplinary program, but in general, these will be less appealing than an phd in the actual discipline), or, in very rare cases, a a phd in a different discipline but VERY extensive research in that discipline. When it comes to the latter, things are probably more flexible in the humanities than in the sciences, and often only in one direction (ex. there are philosophy phds in rhetoric departments, but not rhetoric phds in philosophy departments). In general, you need to be able to teach introductory courses in that discipline as well as in your particular area. Some universities do have particular interdisciplinary departments or other interdisciplinary lines, but these are in established interdisciplinary subjects—cognitive science, peace studies, asian cultures, environmental studies... There are also "cluster hires," where universities look to give a researcher appointments in multiple departments for work on topics like diaspora studies and agroecology that are appealing to administrators but too small to support entire departments. Cluster hires are rare and are not something you can plan a career around. There are no lines for unspecified "interdisciplinary" researchers. You need to be able to market yourself under a specific discipline or under an established interdisciplinary program. In general, the latter will be harder.
This is a tough question. I will set aside the issues of whether it is "interdisciplinary," "multidisciplinary," "cross-disciplinary" or any of a number of other terms that some people get very emotional about. I have heard some people give definitions of all of these terms that overlap, and my humanities friends definitely have strong opinions about them, while my science friends often just can't see the point of using any of the terms or keep them straight. This sort of work is intrinsically hard to support in academic settings. Many departments actively punish people who do inter-, cross-, multi-disciplinary work in promotion decisions, by either downgrading the importance of that work in the promotion decision or completely removing it from the calculation; effectively saying "focus on what **we** do, here." Most interdisciplinary workers I know believe that they are behind the curve on promotions and advancement. So programs that are truly interdisciplinary are rare. (There are some great exceptions, "Energy Studies" was mentioned in comments, and "Neuroethics" exists at my school -- there are others. Basically once a set of topics get pushed together often enough they can form their own field or discipline.) You seem to be interested in the student or taking-classes side of this, so I will focus on that. First, look at the topics you are trying to combine and see if they exist in that combination. For instance, you mentioned neural nets and machine learning which 20+ years ago were semi-independent fields (the former often in computer science departments and the latter often in engineering), and are now the inter-disciplinary "artificial intelligence" (at least at some schools; your local history may vary). Likewise, instrumentation and control engineering, embedded systems, and robotics will all include strong signal processing components. So signal processing may be covered in the others. So start by picking as a central field one that combines the maximum number of interests you have. Then, pick your second majors and minors carefully to fill in more, if you can. You may end up getting multiple degrees along the way, all in different fields. That is what happened to me, I have a BA/BS, three masters degrees, and a PhD; all in different fields, and all important to the work I do these days. Just as importantly as degrees and classes are projects. Often part of education is doing projects and you usually get to pick topics that interest you. Pick things that combine topics you want to combine. To do projects you will need a lot of self-study, a skill you will need a lot of if you are serious about being multi/inter/cross-disciplinary in your working life. **But** a lot of inter/cross/multi-disciplinary work only comes into existence once you get to work. So expect to keep learning well past the degree phase. That may be where you get the most of the stuff that makes your work interdisciplinary.
134,611
Is there a term that describes the act of giving tangible qualities to an intangible noun? > > I **stumbled over** a metaphor > > > or > > I felt sadness **condense** on my skin > > > The first one might just be "figure of speech", but perhaps there is a more specific name.
2013/11/07
[ "https://english.stackexchange.com/questions/134611", "https://english.stackexchange.com", "https://english.stackexchange.com/users/26279/" ]
The closest word I could find was *personification* which means: > > [personification](https://en.wikipedia.org/wiki/Personification) — the attribution of human form or other characteristics to anything other than a human being. > > > Its synonym is *anthropomorphism*. The key difference between the word you seek and *personification* is that you are not strictly describing *human* characteristics. *Personification* isn't strictly human in nature but it does typically refer to characteristics that are related to active beings or people. More strictly: * Describing a non-human with human terms (e.g. the dog pondered its existence thoughtfully) * Describing an inanimate object with animate terms (e.g. the sun smiled down on us) But what you want is a term that refers to an intangible object as if it were tangible. This is very similar to *personification* and I was able to find a few descriptions of *personification* that included such usage. An example: > > One of the primary uses of personification is in metaphor, **in which something tangible is used to represent something intangible**. By personifying the intangible, it takes on a sort of life in the mind of a reader or listener. A person might describe a bad experience as a nightmare, or like a roller coaster ride. A storm could be described as an angry child throwing a tantrum, yelling and screaming and throwing things about. Death is often personified as the grim reaper, a frightening robed figure carrying a scythe whose job is taking the souls of the dead to the afterlife. — [wiseGEEK](http://www.wisegeek.com/what-are-the-different-uses-of-personification.htm) > > > Dictionary definitions do not seem to support this usage but until a more appropriate word enters the English lexicon it is the closest match. Aside from that, the more generic term would be *metaphor*: > > [metaphor](https://en.wikipedia.org/wiki/Metaphor) — a figure of speech that describes a subject by asserting that it is, on some point of comparison, the same as another otherwise unrelated object. > > >
The word embodiment works well in this case.
134,611
Is there a term that describes the act of giving tangible qualities to an intangible noun? > > I **stumbled over** a metaphor > > > or > > I felt sadness **condense** on my skin > > > The first one might just be "figure of speech", but perhaps there is a more specific name.
2013/11/07
[ "https://english.stackexchange.com/questions/134611", "https://english.stackexchange.com", "https://english.stackexchange.com/users/26279/" ]
reification: essentially making something intangible (or abstract), tangible > > [Cambridge](https://dictionary.cambridge.org/dictionary/english/reify?q=Reify) > > Reify: > > to make something more real or consider it as real: > > >
The closest word I could find was *personification* which means: > > [personification](https://en.wikipedia.org/wiki/Personification) — the attribution of human form or other characteristics to anything other than a human being. > > > Its synonym is *anthropomorphism*. The key difference between the word you seek and *personification* is that you are not strictly describing *human* characteristics. *Personification* isn't strictly human in nature but it does typically refer to characteristics that are related to active beings or people. More strictly: * Describing a non-human with human terms (e.g. the dog pondered its existence thoughtfully) * Describing an inanimate object with animate terms (e.g. the sun smiled down on us) But what you want is a term that refers to an intangible object as if it were tangible. This is very similar to *personification* and I was able to find a few descriptions of *personification* that included such usage. An example: > > One of the primary uses of personification is in metaphor, **in which something tangible is used to represent something intangible**. By personifying the intangible, it takes on a sort of life in the mind of a reader or listener. A person might describe a bad experience as a nightmare, or like a roller coaster ride. A storm could be described as an angry child throwing a tantrum, yelling and screaming and throwing things about. Death is often personified as the grim reaper, a frightening robed figure carrying a scythe whose job is taking the souls of the dead to the afterlife. — [wiseGEEK](http://www.wisegeek.com/what-are-the-different-uses-of-personification.htm) > > > Dictionary definitions do not seem to support this usage but until a more appropriate word enters the English lexicon it is the closest match. Aside from that, the more generic term would be *metaphor*: > > [metaphor](https://en.wikipedia.org/wiki/Metaphor) — a figure of speech that describes a subject by asserting that it is, on some point of comparison, the same as another otherwise unrelated object. > > >
134,611
Is there a term that describes the act of giving tangible qualities to an intangible noun? > > I **stumbled over** a metaphor > > > or > > I felt sadness **condense** on my skin > > > The first one might just be "figure of speech", but perhaps there is a more specific name.
2013/11/07
[ "https://english.stackexchange.com/questions/134611", "https://english.stackexchange.com", "https://english.stackexchange.com/users/26279/" ]
reification: essentially making something intangible (or abstract), tangible > > [Cambridge](https://dictionary.cambridge.org/dictionary/english/reify?q=Reify) > > Reify: > > to make something more real or consider it as real: > > >
The word embodiment works well in this case.
132,765
I'm using Logisim to experiment with Electrical Circuit design, and I was wondering if it is possible to copy a circuit created in 1 Logisim **.circ** file and place it into a different Logisim **.circ** file or instance? I'd really like to reuse some components I've previously put together into a new file for a larger design, but can't seem to find a way to get the circuit from one file/instance to another. It is possible to copy a circuit within a file and paste into another circuit in that same file, but I can't find anywhere online or in Logisim documentation about getting a circuit from 1 file into another. Anyone know if this is possible? I'd really prefer not to repeat all the work over if I don't have to...
2014/10/11
[ "https://electronics.stackexchange.com/questions/132765", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/54258/" ]
I know you asked this a while ago, but in case you still need the answer, yes it is possible. According to <http://www.cburch.com/logisim/docs/2.1.0/guide/menu/edit.html> "Note: Logisim's clipboard is maintained separately from the clipboard for the overall system; as a result, cut/copy/paste will not work across different applications, even including other running copies of Logisim. If, however, you have multiple projects open under the same Logisim process, then you should be able to cut/copy/paste between them."
in the target project session, Project > Load Library > Logisim Library. Then locate to your source project. Then source project will be added to target project as a library. after that you can copy from it.
7,970
It seems as if both words mean *to humiliate and degrade*?
2011/01/05
[ "https://english.stackexchange.com/questions/7970", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3267/" ]
To *abase* is to behave in a way so as to belittle or degrade someone. To *abash* is to cause someone to feel embarrassed or ashamed.
I wonder if you're conflating or confusing words here… * abase - behave in a way so as to belittle or degrade * abash - embarrassed, disconcerted, or ashamed * bash - (3) criticize severely * debase - reduce (something) in quality or value; degrade From the note on **humble** in the *New Oxford American Dictionary*: > > *Humble* and *humiliate* sound similar, but *humiliate* emphasizes shame and the loss of self-respect and usually takes place in public (: *humiliated by her tearful outburst*), while *humble* is a milder term implying a lowering of one's pride or rank (: *to humble the arrogant professor by pointing out his mistake*). > > > ***Abase*** suggests groveling or a sense of inferiority and is usually used reflexively (: *got down on his knees and abased himself before the king*), while *demean* is more likely to imply a loss of dignity or social standing (: *refused to demean herself by marrying a common laborer*). > > > When used to describe things, *debase* means a deterioration in the quality or value of something (: *a currency debased by the country's political turmoil*), but in reference to people it connotes a weakening of moral standards or character (: *debased himself by accepting bribes*). > > > *Degrade* is even stronger, suggesting the destruction of a person's character through degenerate or shameful behavior (: *degraded by long association with criminals*). > > >
7,970
It seems as if both words mean *to humiliate and degrade*?
2011/01/05
[ "https://english.stackexchange.com/questions/7970", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3267/" ]
To *abase* is to behave in a way so as to belittle or degrade someone. To *abash* is to cause someone to feel embarrassed or ashamed.
The main difference is that 'abase' is something you do yourself (or other people do themselves, of their own volition), whereas 'abash' is something that you do to other people (or other people do to you). I'm also not convinced that 'abase' really means 'humiliate' or 'degrade', unless you assume that any signs of abasement are automatically humiliating and degrading. That was certainly not the original meaning of 'abase'; I'm not sure it is yet an acquired meaning. --- From an ancient Chambers Twentieth Century Dictionary (1978 reprint of 1972 edition with 1977 supplement), page 1: **abase**, *v.t.* to lower: to cast down: to humble: to degrade. -- *adj.* **abased**, lowered. -- *n.* **abasement**. [O.Fr. *abaisser*, to bring low--L. *ad*, to, L.L. *bassus*, low.] **abash**, *v.t.* to strike with shame; to put out of countenance: to astound: to confound.-- *adjs*. **abashed**: **abashless**, shameless: unabashed.-- *n.* **abashment**. [O.Fr. *esbahir* -- pfx. *es-* (L. *ex*, out), *bahir*, to astound--interj. *bah*.] --- It seems clear to me that you do not normally abash yourself, so someone else does it to you. It is not so clear that you do normally abase yourself, but the verb is often used reflexively - 'he abased himself'. I'm not sure how you could abase someone else.
7,970
It seems as if both words mean *to humiliate and degrade*?
2011/01/05
[ "https://english.stackexchange.com/questions/7970", "https://english.stackexchange.com", "https://english.stackexchange.com/users/3267/" ]
I wonder if you're conflating or confusing words here… * abase - behave in a way so as to belittle or degrade * abash - embarrassed, disconcerted, or ashamed * bash - (3) criticize severely * debase - reduce (something) in quality or value; degrade From the note on **humble** in the *New Oxford American Dictionary*: > > *Humble* and *humiliate* sound similar, but *humiliate* emphasizes shame and the loss of self-respect and usually takes place in public (: *humiliated by her tearful outburst*), while *humble* is a milder term implying a lowering of one's pride or rank (: *to humble the arrogant professor by pointing out his mistake*). > > > ***Abase*** suggests groveling or a sense of inferiority and is usually used reflexively (: *got down on his knees and abased himself before the king*), while *demean* is more likely to imply a loss of dignity or social standing (: *refused to demean herself by marrying a common laborer*). > > > When used to describe things, *debase* means a deterioration in the quality or value of something (: *a currency debased by the country's political turmoil*), but in reference to people it connotes a weakening of moral standards or character (: *debased himself by accepting bribes*). > > > *Degrade* is even stronger, suggesting the destruction of a person's character through degenerate or shameful behavior (: *degraded by long association with criminals*). > > >
The main difference is that 'abase' is something you do yourself (or other people do themselves, of their own volition), whereas 'abash' is something that you do to other people (or other people do to you). I'm also not convinced that 'abase' really means 'humiliate' or 'degrade', unless you assume that any signs of abasement are automatically humiliating and degrading. That was certainly not the original meaning of 'abase'; I'm not sure it is yet an acquired meaning. --- From an ancient Chambers Twentieth Century Dictionary (1978 reprint of 1972 edition with 1977 supplement), page 1: **abase**, *v.t.* to lower: to cast down: to humble: to degrade. -- *adj.* **abased**, lowered. -- *n.* **abasement**. [O.Fr. *abaisser*, to bring low--L. *ad*, to, L.L. *bassus*, low.] **abash**, *v.t.* to strike with shame; to put out of countenance: to astound: to confound.-- *adjs*. **abashed**: **abashless**, shameless: unabashed.-- *n.* **abashment**. [O.Fr. *esbahir* -- pfx. *es-* (L. *ex*, out), *bahir*, to astound--interj. *bah*.] --- It seems clear to me that you do not normally abash yourself, so someone else does it to you. It is not so clear that you do normally abase yourself, but the verb is often used reflexively - 'he abased himself'. I'm not sure how you could abase someone else.
139,086
I have seen mentions in various places on Stack Overflow of a chat room that exists so that users can post links to questions to try and gather close or reopen votes for that question. I found a question today I think deserves reopening, and so I went in search of this chat room. I'm not sure what it's called, though, and a search for the common terms you might expect in the name yielded no results. Can someone point me in the direction of this chat room please?
2012/07/09
[ "https://meta.stackexchange.com/questions/139086", "https://meta.stackexchange.com", "https://meta.stackexchange.com/users/187816/" ]
The room you're probably looking for is [Popular Demand](https://meta.stackexchange.com/users/131713/popular-demand)'s [Posse Comitatus](https://chat.meta.stackexchange.com/rooms/227/posse-comitatus), which you might have had some trouble finding because it had been frozen due to inactivity. It seems that it's been unfrozen [by the power of ~~Greyskull~~ random](https://chat.meta.stackexchange.com/transcript/message/1016989#1016989), so you should be able to both find and post in that room now.
The room is [SO Close Vote Reviewers](https://chat.stackoverflow.com/rooms/41570/so-close-vote-reviewers). > > This room is for support and discussion about reviewing and coordination of site-wide cleanup efforts. Read our FAQ at [socvr.org](https://socvr.org/). > > >
3,816,537
We have a series of nightly batch jobs running as Windows Scheduled Tasks. Their numbers have grown to a point that they are beginning to step on each other since there are no dependencies between the batch files, just start times. We are considering the use of PowerShell to write scripts to control the nightly cycle...can anyone confirm we are making a sound choice. Is there a better way to create a nightly batch job scheduler (other than purchasing a product ) or is PowerShell the recommended method for such tasks. Thanks for your response.
2010/09/28
[ "https://Stackoverflow.com/questions/3816537", "https://Stackoverflow.com", "https://Stackoverflow.com/users/458281/" ]
Powershell would be a reasonable place to start. You could dispense with the Windows scheduler altogether and run a Powershell script as a service (using something like SRVANY.EXE). There may even be a "native" way of getting Powershell to run as a service. Your job definitions, dependencies, failure actions, Etc., could be stored in XML format, which can easily be read by Powershell. The only area I can see being an issue is the required accuracy of scheduling, i.e.: does it have to be to the second? PowerShell has some nifty job execution cmdlets, see start-job, get-job and receive-job.
I don't think PowerShell will help much with your specific problem of scheduling and dependency management. But it may be a good idea for the actual jobs. For scheduling, maybe you should look at a free build management tool like [CruiseControl](http://cruisecontrol.sourceforge.net/) or [Luntbuild](http://luntbuild.javaforge.com/). Such tools are built to handling scheduling and dependency management for many jobs.
40,044
To my mind, the ο ων of Exodus 3 would fit better here than ο ζων, even more naturally, with the words "I am the First and the Last," ο ων of course being the translation of the Tetragrammaton in the Greek Old Testament. And I can see how "alive" (ζων) could possibly become a corruption of ων in the immediate context: "I am the First and the Last, and the Living One [ο ζων]. And I was dead, but behold, I live (ζων ειμι) forever..." To me, "I am the First and the Last, and He who is [יהוה/ο ων]. And was dead, but behold, I live forever..." After all, ο ζων would amount to a divine title—"the Living One," since you wouldn't say, "I am *he who is* alive" if you were simply going to say, "I am alive" (not that "the First and the Last" is not already the name of God used here of the Son). Question -------- Is there any manuscript evidence in NT manuscripts or the Fathers which indicate ο ων was ever the reading?
2019/04/11
[ "https://hermeneutics.stackexchange.com/questions/40044", "https://hermeneutics.stackexchange.com", "https://hermeneutics.stackexchange.com/users/13583/" ]
Metzger's [*Textual Commentary on the New Testament*](https://rads.stackoverflow.com/amzn/click/com/1598561642) does not discuss any significant textual variant here. According to Tischendorff's apparatus, there is a redaction of the Codex Siniaticus that omits και from the phrase και ο ζων, but nothing else. The oldest complete Patristic commentary on Revelation was written by [Andrew of Caesarea](https://en.wikipedia.org/wiki/Andreas_of_Caesarea) (533-637), and has been [translated by Dr. Eugenia Constantinou](http://www.tpkatsa.com/papers/Revelation_Andrew.pdf). Andrew here writes: > > *And when I saw him I fell down at his feet as dead. And he laid his right hand upon me saying, "Do not be afraid. I am the first and the last and the living one. And I became dead, and behold I am living unto the ages of ages. Amen.* > > > Christ revived the Apostle [John] himself who had died through the weakness of human nature like Joshua son of Nun (Joshua 5:14) and Daniel (Daniel 8:17, 10:9-12) by saying to him, "Do not fear, for I have not come near to kill you, since I am beginningless and endless, having become dead for your sakes." > > > --- Oecumenius of Isauria, who slightly predates Andrew, wrote: > > The holy John would not have been strong enough to survive his astonishment had the saving right hand of the Son of God not touched him, which by the mere touch had accomplished so many wonderful things. And he said to me, “I am the first and the last,” which is as though he had said, “I am he who for the salvation of you all sojourned among you in the flesh at the end of times, even though I am the First and the firstborn of all creation. How is it possible that anything evil transpire from my appearance? For if I who am living and am the wellspring of life became dead for you, and trampled death underfoot and lived again, how is it possible that you who are living become dead on account of me and my appearance? And if ‘I have the keys of death and of hades,’ so that I make dead and make alive those whom I wish, and that I will bring down to hades and bring up again, as it is written concerning me, and that, as the prophet says, escape from death belongs to me (Psalm 68:20), I would not have sent my own worshipers and disciples to an untimely death.” > > > --- One other Church Father who comments on Revelation 1:18 is [Cyprian of Carthage](https://en.wikipedia.org/wiki/Cyprian) (210-258). In his Latin translation of the verse in *Ad Quirinium*, II.26, he also reads ο ζων here. --- Eastern Orthodox writers are usually particularly sensitive to being faithful to patristic interpretations of Scripture and highlighting differences of opinion between the Fathers. [Lawrence Farley](https://www.ancientfaith.com/contributors/lawrence_farley)'s commentary here explains: > > He tells John, “Do not be afraid,” and in this He tells all of John’s churches not to fear. They need not fear death, martyrdom, or anything in all the world. Why? Because Christ has overcome the world, trampling down death by death. He became dead, but now He is alive to ages of ages. As such, He is the first and the last, sovereign over all (compare God as the Alpha and Omega in 1:8) and the Living One, the source of all life. He had authority over death and Hadesby His Resurrection. Death cannot now separate us from Him, for He is Lord of both the living and the dead.1 > > > --- Russian Orthdox Archbishop [Averky Taushev](https://www.google.com/search?q=averky%20taushev) (1906-1976) also wrote a Patristic commentary on Revelation. Here he comments: > > From these words, St John had to understand that the One Who appeared was none other than the Lord Jesus Christ, and that his appearance could not be fatal for the Apostle, but on the contrary, would be life giving. To have the keys to something signified among the Jews to receive authority over something. Thus, “the keys of hell and of death” signify authority over the death of the body and the soul.2 > > > --- Thus, I do not believe there is any credible Patristic source that ever read anything other than ο ζων in the text. --- 1. *[The Apocalypse of Saint John: A Revelation of Love and Power](https://rads.stackoverflow.com/amzn/click/com/1936270404) (Orthodox Bible Study Companion Series)* (Conciliar Press) 2. *[The Epistles and Apocalypse](https://rads.stackoverflow.com/amzn/click/com/B07BB36541) (Commentary on the Holy Scriptures of the New Testament*) (Holy Trinity Monastery) ---
First, I could find no evidence of any variation in the text of ancient sources at Rev 1:18. (I can understand the reason for the excellent, ingenious and penetrating question.) However, I find much precedent for text as it is BUT implying that YHWH is implied. I note that: * That Jesus takes the title, "First and Last" is a direct allusion to the exclusive title of YHWH in Isa 41:4, 44:6 * In John's writings, Jesus is often depicted as the source of life, 1 John 5:11, 12 (Greek zoe). See also John 15:1-5. * In other places Jesus is described explicitly as the source of life such as John 6:35-51 (bread of life); John 11:25 (resurrection and life); John 14:6 (way truth and life). Again, in each case, the Greek word is zoe. There are numerous other places where NT writers use OT titles of YHWH as titles of Jesus. God (Deut 4:35, 6:4, 32:39 vs Matt 1:22, 23; John 1:1, 18 20:28), Creator (Isa 44:24, 45:18 vs John 1:3, Col 1:16, 17), Saviour (Isa 43:3, 11, 45:17, 21 vs Matt 1:21; Acts 4:12; 2 Tim 1:10, Tit 1:4, 2:13, 3:6; 2 Pet 1:1, 11), First and Last (as quoted above), etc.
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
No symbol for 'why ?', I'd say for the following reason. Isn't logic's concern with the structure of propositions (statements, sentences) and predicates, and the relations of contradiction, implication and independence between them, also the valid and fallacious forms of argument (valid in the case e.g. of modus ponens, fallacious in that of affirming the consequent ? 'Why?' is usually an epistemological question rather than a logical one. In modus ponens, for example : If p then q p\_\_\_\_\_\_\_\_\_\_ q we do not look to logic to explain e.g. 'why p ?'. We look to it to identify p's role in valid or invalid arguments such as the above schema. See further Michael Gabbay, 'Logic with Added Reasoning', Ontarioo, 2002, Preface & ch. 1. My indication of logic's concerns at the start is not offered as a full refinement but only as a broad pointer. Refinement can be found in texts such as Gabbay's or Patrick Shaw's 'Logic and its Limits', London, 1981, where in turn more sophisticated texts are listed in the bibliographies. You also asked about 'what is'. Your example suggests you are thinking of disjunction : 'either it's X or it's Y'. Symbolically : 'V' or 'v' : 'X v Y'. The name of the symbol is 'vel'. 'Or' is ambiguous in logic : there's the inclusive or the exclusive 'or'. So, for example, 'Either X or Y (but not both)'. This is the exclusive use. But 'Either X or Y (or both)' illustrates the inclusive use : it includes both alternatives as possibly being the case. 'Either it's red or it's antique' - inclusive (it could be both). 'Either it's a circle or it's a square' - exclusive (it is one or the other but not both). Your example seems to employ the exclusive 'or' - either it is a car-crash or it is a kid oopping a balloon but not both. On the inclusive and exclusive uses of 'or' ('V') see Patrick Shaw, 'Logic and its Limits', London, 1981 : 49-51.
No. Formal logics deal with concrete propositions, not speculative discussions. Speculations have huge levels of nuances and are usually performed with narrative language. In fact, papers or scientific documents use mostly narrative argumentation, except for the concrete formal propositions, which are written using formal logics.
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
No symbol for 'why ?', I'd say for the following reason. Isn't logic's concern with the structure of propositions (statements, sentences) and predicates, and the relations of contradiction, implication and independence between them, also the valid and fallacious forms of argument (valid in the case e.g. of modus ponens, fallacious in that of affirming the consequent ? 'Why?' is usually an epistemological question rather than a logical one. In modus ponens, for example : If p then q p\_\_\_\_\_\_\_\_\_\_ q we do not look to logic to explain e.g. 'why p ?'. We look to it to identify p's role in valid or invalid arguments such as the above schema. See further Michael Gabbay, 'Logic with Added Reasoning', Ontarioo, 2002, Preface & ch. 1. My indication of logic's concerns at the start is not offered as a full refinement but only as a broad pointer. Refinement can be found in texts such as Gabbay's or Patrick Shaw's 'Logic and its Limits', London, 1981, where in turn more sophisticated texts are listed in the bibliographies. You also asked about 'what is'. Your example suggests you are thinking of disjunction : 'either it's X or it's Y'. Symbolically : 'V' or 'v' : 'X v Y'. The name of the symbol is 'vel'. 'Or' is ambiguous in logic : there's the inclusive or the exclusive 'or'. So, for example, 'Either X or Y (but not both)'. This is the exclusive use. But 'Either X or Y (or both)' illustrates the inclusive use : it includes both alternatives as possibly being the case. 'Either it's red or it's antique' - inclusive (it could be both). 'Either it's a circle or it's a square' - exclusive (it is one or the other but not both). Your example seems to employ the exclusive 'or' - either it is a car-crash or it is a kid oopping a balloon but not both. On the inclusive and exclusive uses of 'or' ('V') see Patrick Shaw, 'Logic and its Limits', London, 1981 : 49-51.
This sort of thing may have some bearing on answering your question (and won't fit in a comment): [![enter image description here](https://i.stack.imgur.com/FZjOQ.png)](https://i.stack.imgur.com/FZjOQ.png) The Oxford Handbook of Epistemology p409 An '[explanandum](https://en.wikipedia.org/wiki/Explanandum_and_explanans)' is what is to be explained
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
No symbol for 'why ?', I'd say for the following reason. Isn't logic's concern with the structure of propositions (statements, sentences) and predicates, and the relations of contradiction, implication and independence between them, also the valid and fallacious forms of argument (valid in the case e.g. of modus ponens, fallacious in that of affirming the consequent ? 'Why?' is usually an epistemological question rather than a logical one. In modus ponens, for example : If p then q p\_\_\_\_\_\_\_\_\_\_ q we do not look to logic to explain e.g. 'why p ?'. We look to it to identify p's role in valid or invalid arguments such as the above schema. See further Michael Gabbay, 'Logic with Added Reasoning', Ontarioo, 2002, Preface & ch. 1. My indication of logic's concerns at the start is not offered as a full refinement but only as a broad pointer. Refinement can be found in texts such as Gabbay's or Patrick Shaw's 'Logic and its Limits', London, 1981, where in turn more sophisticated texts are listed in the bibliographies. You also asked about 'what is'. Your example suggests you are thinking of disjunction : 'either it's X or it's Y'. Symbolically : 'V' or 'v' : 'X v Y'. The name of the symbol is 'vel'. 'Or' is ambiguous in logic : there's the inclusive or the exclusive 'or'. So, for example, 'Either X or Y (but not both)'. This is the exclusive use. But 'Either X or Y (or both)' illustrates the inclusive use : it includes both alternatives as possibly being the case. 'Either it's red or it's antique' - inclusive (it could be both). 'Either it's a circle or it's a square' - exclusive (it is one or the other but not both). Your example seems to employ the exclusive 'or' - either it is a car-crash or it is a kid oopping a balloon but not both. On the inclusive and exclusive uses of 'or' ('V') see Patrick Shaw, 'Logic and its Limits', London, 1981 : 49-51.
To the extend that 'what is' is '=', in systems of logic that trace deduction literally, such as proof theory, implication (⇒) captures the basic notion of why. What lies to the right of the arrow is true because of something that lies to the left. But Classical logic simplifies the meaning of implication into something unnatural by insisting all true statements are equal in meaning and all false statements prove anything, regardless of referential content. People who want to talk about semantics then usually introduce a symbol to recapture the natural meaning of implication. So I would suggest that the semantic implication symbol 'turnstile' (⊨) really at least intends to capture the natural sense of 'why?' When these are interrogative, what is implying or what is equated is a free variable. "Ǝ X: X ⊨ 2^4 > 4^2" means "There are collections of facts and deductions that entails the fourth power of two exceeds the square of four, we will call some one of those X." (In this case there is no X, because the right-hand-side is simply always false.) Then using X anywhere is, in effect, asking why.
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
It is not impossible in principle that there might be a logic of explanation, which is to say, a logic that answers "why?" questions. Different logics, such as intuitionistic, relevance, linear, etc., have different natural semantics. It is not unthinkable that one could have a logic whose natural semantics was that of explanation. Asserting a proposition "A" would then be interpreted as "A is explicable", and a conditional "A → B" would be interpreted as "A explains B", or possibly "an explanation of A can be manipulated into an explanation of B". The main problem is that I expect it would be fiendishly hard to come up with satisfactory general rules for such a logic. Carl Hempel attempted to describe a logic of scientific explanation, but it is widely regarded as unsuccessful. Different branches of science seem to use different paradigms for explanations of phenomena, so the rules would be difficult to generalize. In some specialized contexts one might be more successful. In computer programming, for example, running a debugging tool might be interpreted as enquiring why one obtained a particular result from a program. Depending on how the program is structured, it might be possible to produce debugging output that takes the form of a formal logic.
No. Formal logics deal with concrete propositions, not speculative discussions. Speculations have huge levels of nuances and are usually performed with narrative language. In fact, papers or scientific documents use mostly narrative argumentation, except for the concrete formal propositions, which are written using formal logics.
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
No. Formal logics deal with concrete propositions, not speculative discussions. Speculations have huge levels of nuances and are usually performed with narrative language. In fact, papers or scientific documents use mostly narrative argumentation, except for the concrete formal propositions, which are written using formal logics.
This sort of thing may have some bearing on answering your question (and won't fit in a comment): [![enter image description here](https://i.stack.imgur.com/FZjOQ.png)](https://i.stack.imgur.com/FZjOQ.png) The Oxford Handbook of Epistemology p409 An '[explanandum](https://en.wikipedia.org/wiki/Explanandum_and_explanans)' is what is to be explained
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
No. Formal logics deal with concrete propositions, not speculative discussions. Speculations have huge levels of nuances and are usually performed with narrative language. In fact, papers or scientific documents use mostly narrative argumentation, except for the concrete formal propositions, which are written using formal logics.
To the extend that 'what is' is '=', in systems of logic that trace deduction literally, such as proof theory, implication (⇒) captures the basic notion of why. What lies to the right of the arrow is true because of something that lies to the left. But Classical logic simplifies the meaning of implication into something unnatural by insisting all true statements are equal in meaning and all false statements prove anything, regardless of referential content. People who want to talk about semantics then usually introduce a symbol to recapture the natural meaning of implication. So I would suggest that the semantic implication symbol 'turnstile' (⊨) really at least intends to capture the natural sense of 'why?' When these are interrogative, what is implying or what is equated is a free variable. "Ǝ X: X ⊨ 2^4 > 4^2" means "There are collections of facts and deductions that entails the fourth power of two exceeds the square of four, we will call some one of those X." (In this case there is no X, because the right-hand-side is simply always false.) Then using X anywhere is, in effect, asking why.
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
It is not impossible in principle that there might be a logic of explanation, which is to say, a logic that answers "why?" questions. Different logics, such as intuitionistic, relevance, linear, etc., have different natural semantics. It is not unthinkable that one could have a logic whose natural semantics was that of explanation. Asserting a proposition "A" would then be interpreted as "A is explicable", and a conditional "A → B" would be interpreted as "A explains B", or possibly "an explanation of A can be manipulated into an explanation of B". The main problem is that I expect it would be fiendishly hard to come up with satisfactory general rules for such a logic. Carl Hempel attempted to describe a logic of scientific explanation, but it is widely regarded as unsuccessful. Different branches of science seem to use different paradigms for explanations of phenomena, so the rules would be difficult to generalize. In some specialized contexts one might be more successful. In computer programming, for example, running a debugging tool might be interpreted as enquiring why one obtained a particular result from a program. Depending on how the program is structured, it might be possible to produce debugging output that takes the form of a formal logic.
This sort of thing may have some bearing on answering your question (and won't fit in a comment): [![enter image description here](https://i.stack.imgur.com/FZjOQ.png)](https://i.stack.imgur.com/FZjOQ.png) The Oxford Handbook of Epistemology p409 An '[explanandum](https://en.wikipedia.org/wiki/Explanandum_and_explanans)' is what is to be explained
47,516
Is there a formal logic symbol for "why"? For example how would you formulate "Why is 2^4 > 4^2?" Could that be formulated in pure symbols of logic if possible? Also, the phrase "what is" can it be described with logic symbols? Is it just "=" equals? So for example you walk down the street and hear a bang. And you conclude it's either a car crash or a kid popping a balloon. How would that be expressed logically with symbols?
2017/11/28
[ "https://philosophy.stackexchange.com/questions/47516", "https://philosophy.stackexchange.com", "https://philosophy.stackexchange.com/users/29679/" ]
It is not impossible in principle that there might be a logic of explanation, which is to say, a logic that answers "why?" questions. Different logics, such as intuitionistic, relevance, linear, etc., have different natural semantics. It is not unthinkable that one could have a logic whose natural semantics was that of explanation. Asserting a proposition "A" would then be interpreted as "A is explicable", and a conditional "A → B" would be interpreted as "A explains B", or possibly "an explanation of A can be manipulated into an explanation of B". The main problem is that I expect it would be fiendishly hard to come up with satisfactory general rules for such a logic. Carl Hempel attempted to describe a logic of scientific explanation, but it is widely regarded as unsuccessful. Different branches of science seem to use different paradigms for explanations of phenomena, so the rules would be difficult to generalize. In some specialized contexts one might be more successful. In computer programming, for example, running a debugging tool might be interpreted as enquiring why one obtained a particular result from a program. Depending on how the program is structured, it might be possible to produce debugging output that takes the form of a formal logic.
To the extend that 'what is' is '=', in systems of logic that trace deduction literally, such as proof theory, implication (⇒) captures the basic notion of why. What lies to the right of the arrow is true because of something that lies to the left. But Classical logic simplifies the meaning of implication into something unnatural by insisting all true statements are equal in meaning and all false statements prove anything, regardless of referential content. People who want to talk about semantics then usually introduce a symbol to recapture the natural meaning of implication. So I would suggest that the semantic implication symbol 'turnstile' (⊨) really at least intends to capture the natural sense of 'why?' When these are interrogative, what is implying or what is equated is a free variable. "Ǝ X: X ⊨ 2^4 > 4^2" means "There are collections of facts and deductions that entails the fourth power of two exceeds the square of four, we will call some one of those X." (In this case there is no X, because the right-hand-side is simply always false.) Then using X anywhere is, in effect, asking why.
49,878
What does it mean that a boy gave his girlfriend even his *thespian pin*? > > And they are so in love! He even gave her his **thespian pin** or something. > > >
2011/11/28
[ "https://english.stackexchange.com/questions/49878", "https://english.stackexchange.com", "https://english.stackexchange.com/users/15344/" ]
From my understanding, his *thespian pin* represents a valuable personal belonging here. He gives it to her because he is so in love with her. A *thespian pin* is a pin you receive once you have done enough hours of shows (theatrical) to be a thespian. For example: ![enter image description here](https://i.stack.imgur.com/ydfuX.jpg)
Giving someone your pin is a sign of romantic commitment for young people still in school, who are likely to participate in extracurricular activities that use pins or badges as signs of membership. (Other examples would be a fraternity or honor society pin, a varsity letter, or a high-school or college ring.)
2,250
I've recently suggested several edits on this site. After two accepted edits [(1)](https://webapps.stackexchange.com/posts/33153/revisions), [(2)](https://webapps.stackexchange.com/posts/30019/revisions), it seems that my account has been disallowed for further suggested edits. I don't have links for rejected ones, however. I realize that presumably, someone has decided the edits were too minor or whatsoever. Indeed, I was primarily fixing grammar, layout, or other things making the Q&A more readable. Nevertheless, [it's a common sense](https://meta.stackexchange.com/questions/116509/an-alert-to-serial-minor-edits) on SE that even minor edits are still useful, if they indeed provide with meaningful value and [aren't massive](https://meta.stackexchange.com/questions/129487/do-rapid-serial-edits-get-auto-reversed). So *any constructive edits*, even fixing typos or formatting, should be encouraged as they (1) improve readability and (2) searchability on search engines, which in turn attracts new visitors and provide with value for existing ones. **This is the very ultimate judgment for evaluating users' behavior at the entire SE community.** (except maybe this site :)) Is it true that WA@SE rules are somehow different? I'm not an active user here, but I was thinking that could be a positive contribution to a community. Am I wrong? --- **Update** *This is not an an appeal*. What's done is done. *"Something else to be improved in the posts"*. Look at the edits that have been kindly accepted (I don't find the links to rejected ones). Is there anything else to improve there? Moreover, minor edits is a kind of "dirty work". They consume a lot of moderator's time which they can rather spend on something else. Doing it by non-moderators (or users with rep under 2000) is a profit for the site, see links above for why. *"Pursuing rep"*. Please don't accuse me pursuing +2 reputation for these edits; it's much easier time investment to submit five good Q/A to gain rep. *Actual Question*. My goal is to figure out whether the WebApp@SE community needs **this very type of contribution**. If it doesn't (*for whatever reasons or whoever is right or wrong*), this is the only thing I really want to know.
2012/11/18
[ "https://webapps.meta.stackexchange.com/questions/2250", "https://webapps.meta.stackexchange.com", "https://webapps.meta.stackexchange.com/users/24807/" ]
I was the moderator who rejected your edits. Your edits were just adding the keyboard style to the post. I approved the first couple as they seemed OK, but then as more edits of the same kind came in I realised that **all** you had done is gone through looking for posts that required this edit. While this kind of edit can improve the post, it's very rarely the only change that needs making. By concentrating on this one aspect you are ignoring the rest of the post and not making other edits that would improve it overall. The other danger is that by making lots of minor edits like this you flood the homepage with old, often answered, questions. The ban on suggesting edits is only temporary, so when it's lifted you can go back to helping to improve the site. Just take your time and look at the big picture.
Guidelines on what to suggest for edits are the same for across the network. It just depends on how much the reviewers let you get away with or don't pay attention to the other issues left over with a post. When you change just the formatting, or only add superficial styles, and there remains more that can be done (spelling, grammar, spacing) then the weight of those left around counts against the edit. Have enough [suggested edits knocked back](https://meta.stackexchange.com/questions/76251/how-do-suggested-edits-work "definitions of abuse depend on abuse") and you'll have to wait a week to do it again. It's true that there are some high reputation users who only edit a single letter, but that comes from a privilege of having clawed their way up past the 2000 mark. Once past 2000 reputation the system kind of trusts you to do edits without being reviewed at the first instance. But doesn't mean it can't be rolled back in cases where those edits are unwarranted or useless.
449,867
* I'm trying to build a controllable switch for a heavy load (3D printer), controlled by a microcomputer. * I don't want to use relay because of slowness, sound and durability. So I've built a switch based on MOSFET IRLB3034 [datasheet](https://static.chipdip.ru/lib/300/DOC000300294.pdf). * And here is my circuit diagram: [![circuit diagram](https://i.stack.imgur.com/J92wC.png)](https://i.stack.imgur.com/J92wC.png) The main issue is, the transistor getting more than 150 °C after 20 sec of working at full power. 1. Vgs = 4.5v or even 11v (that makes no difference) of constant DC 2. Vds = 1v and rising 3. Current is about 15A (max of power supply is 20A) What could be my possible mistake?
2019/07/24
[ "https://electronics.stackexchange.com/questions/449867", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/227270/" ]
Assuming you've actually **measured** Vgs **at the MOSFET pins** (it gets only about 90% of the drive voltage, and the drive voltage is heavily loaded by the LED), then one would tend to conclude that the MOSFET is not actually a genuine part of the type indicated. The certainty would increase to near 100% if the MOSFET was sourced on a platform that hosts bad actors. The dissipation should be no more than about 0.7W which **will** get hot without a heatsink, but not excessively so (150°C is excessive). If your traces or wires going to the MOSFET are thin you may also be getting heating from those sources. Tja is 62°C/W so the rise should be the order of 40-45°C. Rds(on) increases with increasing junction temperature, maybe 50%. But not 125°C rise worth.
The mosfet you picked should be able to handle 15A with no heatsink without any issues. The datasheet says that at Vgs=10V the Rdson should be 1.4mR. P = I2\*R = 15\*15\*0.0014 = 0.315W. At 20A that would be 0.56W The datasheet also says that Junction-To-Ambient thermal resistance is 62degC/W. So at 560mW that gives 35degC temperature rise over ambient. Did you measure the Vds over the MOSFET? At 15A and 1.4mR it should be only 21mV. If you see anything higher, the part is bogus. btw in your schematics you are running the load current through a jumper (J5). A standard jumper will have a resistance of 20-50mR. So at 15A that will dissipate at least 4.5W - that should be enough to melt the jumper.
449,867
* I'm trying to build a controllable switch for a heavy load (3D printer), controlled by a microcomputer. * I don't want to use relay because of slowness, sound and durability. So I've built a switch based on MOSFET IRLB3034 [datasheet](https://static.chipdip.ru/lib/300/DOC000300294.pdf). * And here is my circuit diagram: [![circuit diagram](https://i.stack.imgur.com/J92wC.png)](https://i.stack.imgur.com/J92wC.png) The main issue is, the transistor getting more than 150 °C after 20 sec of working at full power. 1. Vgs = 4.5v or even 11v (that makes no difference) of constant DC 2. Vds = 1v and rising 3. Current is about 15A (max of power supply is 20A) What could be my possible mistake?
2019/07/24
[ "https://electronics.stackexchange.com/questions/449867", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/227270/" ]
> > the transistor getting more than 150 °C after 20 sec of working at full power > > > If I understood correctly, this is being used to control a 3D printer heated bed. Its not clear from your post what "full power" means, but if it is really on a 3D printer application, I suspect its not on all the time but rather in PWM due to PID control of the bed temperature. Considering that the gate capacitance of that FET and that the gate resistor is relatively high (1k Ohm), it could be that a lot of the heat you are generating is from turning it on and off (High RdsOn periods). If that is the case, you can try to lower the gate resistor a bit and/or find a part with lower gate capacitance.
The mosfet you picked should be able to handle 15A with no heatsink without any issues. The datasheet says that at Vgs=10V the Rdson should be 1.4mR. P = I2\*R = 15\*15\*0.0014 = 0.315W. At 20A that would be 0.56W The datasheet also says that Junction-To-Ambient thermal resistance is 62degC/W. So at 560mW that gives 35degC temperature rise over ambient. Did you measure the Vds over the MOSFET? At 15A and 1.4mR it should be only 21mV. If you see anything higher, the part is bogus. btw in your schematics you are running the load current through a jumper (J5). A standard jumper will have a resistance of 20-50mR. So at 15A that will dissipate at least 4.5W - that should be enough to melt the jumper.
449,867
* I'm trying to build a controllable switch for a heavy load (3D printer), controlled by a microcomputer. * I don't want to use relay because of slowness, sound and durability. So I've built a switch based on MOSFET IRLB3034 [datasheet](https://static.chipdip.ru/lib/300/DOC000300294.pdf). * And here is my circuit diagram: [![circuit diagram](https://i.stack.imgur.com/J92wC.png)](https://i.stack.imgur.com/J92wC.png) The main issue is, the transistor getting more than 150 °C after 20 sec of working at full power. 1. Vgs = 4.5v or even 11v (that makes no difference) of constant DC 2. Vds = 1v and rising 3. Current is about 15A (max of power supply is 20A) What could be my possible mistake?
2019/07/24
[ "https://electronics.stackexchange.com/questions/449867", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/227270/" ]
As @Kripacharya [said](https://electronics.stackexchange.com/questions/449867/mosfet-is-overheating-when-running-on-a-20a-load#comment1129326_449867) the figure 8 in datasheet shows that I'm operating beyond transistor's capabilities. So that might be the main reason (as far I can't test with suitable MOSFET), so I need to find another one or another way to reach my goal. [![fig. 8](https://i.stack.imgur.com/wnJ31.png)](https://i.stack.imgur.com/wnJ31.png) P.S. Could anyone suggest transistor searching tool for similar cases?
The mosfet you picked should be able to handle 15A with no heatsink without any issues. The datasheet says that at Vgs=10V the Rdson should be 1.4mR. P = I2\*R = 15\*15\*0.0014 = 0.315W. At 20A that would be 0.56W The datasheet also says that Junction-To-Ambient thermal resistance is 62degC/W. So at 560mW that gives 35degC temperature rise over ambient. Did you measure the Vds over the MOSFET? At 15A and 1.4mR it should be only 21mV. If you see anything higher, the part is bogus. btw in your schematics you are running the load current through a jumper (J5). A standard jumper will have a resistance of 20-50mR. So at 15A that will dissipate at least 4.5W - that should be enough to melt the jumper.
449,867
* I'm trying to build a controllable switch for a heavy load (3D printer), controlled by a microcomputer. * I don't want to use relay because of slowness, sound and durability. So I've built a switch based on MOSFET IRLB3034 [datasheet](https://static.chipdip.ru/lib/300/DOC000300294.pdf). * And here is my circuit diagram: [![circuit diagram](https://i.stack.imgur.com/J92wC.png)](https://i.stack.imgur.com/J92wC.png) The main issue is, the transistor getting more than 150 °C after 20 sec of working at full power. 1. Vgs = 4.5v or even 11v (that makes no difference) of constant DC 2. Vds = 1v and rising 3. Current is about 15A (max of power supply is 20A) What could be my possible mistake?
2019/07/24
[ "https://electronics.stackexchange.com/questions/449867", "https://electronics.stackexchange.com", "https://electronics.stackexchange.com/users/227270/" ]
I believe the consistent view is that your MOSFET is suspect. If you were doing pwm, then maybe the large C on the input ((10.3nF) was causing problems. But because you are testing at DC this excessive heat should not take place. Try sourcing the same/ similar MOSFET from a more reliable source.
The mosfet you picked should be able to handle 15A with no heatsink without any issues. The datasheet says that at Vgs=10V the Rdson should be 1.4mR. P = I2\*R = 15\*15\*0.0014 = 0.315W. At 20A that would be 0.56W The datasheet also says that Junction-To-Ambient thermal resistance is 62degC/W. So at 560mW that gives 35degC temperature rise over ambient. Did you measure the Vds over the MOSFET? At 15A and 1.4mR it should be only 21mV. If you see anything higher, the part is bogus. btw in your schematics you are running the load current through a jumper (J5). A standard jumper will have a resistance of 20-50mR. So at 15A that will dissipate at least 4.5W - that should be enough to melt the jumper.
158,893
Droidekas or Destroyer Droids have Shield Generations to provide protection. [![](https://i.stack.imgur.com/vlSOtm.jpg)](https://i.stack.imgur.com/vlSOtm.jpg) In *Phantom Menace*,they have shield generators [![](https://i.stack.imgur.com/ndivZm.jpg)](https://i.stack.imgur.com/ndivZm.jpg) In *Attack of the Clones*, it appears that they don't have shield generators on this one. [![](https://i.stack.imgur.com/YafaNm.jpg)](https://i.stack.imgur.com/YafaNm.jpg) In *Revenge of the Sith*,they have also shield generators like in Episode 1. As you can see in the movies and the in the pictures, droidekas have shield generators in the majority of battles. But why don't they have shield generators in the battle of Geonosis?
2017/05/06
[ "https://scifi.stackexchange.com/questions/158893", "https://scifi.stackexchange.com", "https://scifi.stackexchange.com/users/70135/" ]
Main Canon ---------- There's a throwaway line in the film to explain her decision to time-jump without a second's thought. > > **GILLIAN:** *What are you talking about? I'm coming with you.* > > > **KIRK:** *You can't. Our next stop is the 23rd Century.* > > > **GILLIAN:** *What do I care? **I've got nobody but those whales**...* > > > [Star Trek: The Voyage Home - Original Screenplay](https://i.stack.imgur.com/YU2iC.jpg) > > > While the clear implication is that she has no family and friends, there's nothing specific beyond that within the main canon. She doesn't appear in any future films or within any of the TV shows. The final mention of her is that she's been given her own ship and sent off on a mission to recruit some divers to work with her whales. > > *"You're going to your ship, I'm going to mine. Science vessel, bound > for Mer to recruit some divers to help the whales. Why, the next time > you see me, I may have learned to breathe underwater!" She grinned, > honestly and completely happy for the first time since Jim had met > her. "I've got three hundred years of catchup learning to do," she > said.* > > > [Star Trek IV: The Voyage Home - Official Novelisation](https://memory-alpha.fandom.com/wiki/Star_Trek_IV:_The_Voyage_Home_(novel)) > > > For the record, the factbook "[Who's Who in Star Trek 2](https://comicbookrealm.com/series/4972/67519/Who%27s%20Who%20in%20Star%20Trek)" identifies her ship as the USS Clarke and her organisation as the 'New Cetacean Institute'. --- EU Canon. --------- There are several mentions of her in authorised fiction, both relating to the present day and her future in the 23rd century. In the story "[Whales Weep Not](http://memory-beta.wikia.com/wiki/Whales_Weep_Not)" we learn that her disappearance was reported to the police by her landlady. The novel also confirms that she has no family or significant ties. > > *“She doesn’t have any family. Only child, you know. Her mother died a > couple of years ago. Cancer if I recall.” She scratched at a curler > and thought for a minute before adding, “she never talks about her > dad. I figure he’s long gone. Only steady boyfriend she had quit > coming around when her mom got sick."* > > > and that the police left her case open, in the event that she turned up again. > > *The case couldn’t officially be closed but that didn’t mean he was going to put any more time into it either. After placating Mrs. Schimmerman with some story he would quietly add the folder to the inactive file. He just hoped that Dr. Gillian Taylor was happy with her whales.* > > > **She makes a brief return in [TOS: Debt of Honor](https://memory-alpha.fandom.com/wiki/Debt_of_Honor), set some 10 years after her arrival in the future.** ![enter image description here](https://i.stack.imgur.com/YU2iC.jpg) **She attended Kirk's memorial in 2293** > > Many individuals had spoken throughout the morning. Dr. Gillian > Taylor, a twentieth-century cetacean biologist who had helped the > captain and the Enterprise’s command crew bring a pair of humpback > whales into the present in order to avert Earth’s destruction, had > recalled meeting Jim, being charmed by him, and at last being enlisted > to his cause > > > [Crucible: Spock - The Fire and the Rose](http://memory-beta.wikia.com/wiki/The_Fire_and_the_Rose) > > > **The factbook [Star Trek: Federation - The First 150 Years](https://memory-alpha.fandom.com/wiki/Star_Trek:_Federation_-_The_First_150_Years) lists her 2299 book in its fictional bibliography** ![a](https://i.stack.imgur.com/0lY5k.png) **And the (chronologically) final mention of her is in 2310, as part of an expedition involving Captain Uhura, Carol Marcus, a mysteriously missing humpbacked whale and a renewed Genesis Project.** > > *It wasn’t God who had summoned the darkness, but a woman named Carol > Marcus. Even without God making an appearance, this was Genesis: the > birth of life on a lifeless world. The rebirth of a failed project. > But no birth is without danger. Lost in the birth-tempest was a young > humpbacked whale, named Harpo.* > > > *In the observation room of the drift-station Madrigal, Gillian > searched the waters and swore.* > > > [Strange New Worlds II - The Hero of My Own Life](http://memory-beta.wikia.com/wiki/Strange_New_Worlds_II) > > >
To add to Valorum's answer. She's assigned to a science vessel to catch up on 300 years of...everything. > > GILLIAN: I'm so happy for you, I can't tell you! Thank you, so much. > > > KIRK: Wait a minute! Where you going? > > > GILLIAN: You're going to your ship. I'm going to mine. Science vessel. I've got three hundred years of catch-up learning to do. > > > KIRK: You mean this is ...goodbye? > > > GILLIAN: Why does it have to be goodbye? > > > KIRK: Well, like they say in your century, ...I don't even have your telephone number. ...How will I find you? > > > GILLIAN: Don't worry. ...I'll find you. (a kiss) See you around the galaxy. > > >
226,307
Say two photons moving beside each other through space at speed of light, since it carries energy it can bend spacetime. So both photons will exert gravitational force on each other at speed of light however so slightly, say strings theory is right that gravition really do exist. I'm thinking if the force carrier of gravity moving at speed could exchange between the two photons? Of course I'm aware this whole stuff makes little sense so what's am I missing here?
2015/12/28
[ "https://physics.stackexchange.com/questions/226307", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/75502/" ]
Photons don't move at all. What changes is the probability to find an excited photon state at a spacetime point. If gravity were just another field, then the existence of a photon state in one spacetime point would create excited graviton states around it. This is the usual formulation of quantum field theory on a preordained background. Unfortunately gravity doesn't quantize this way. Gravity is the distortion of the background metric itself, rather than an excitation of a field that lives on the background metric. I do not believe that string theory has achieved the required manifest background independence, yet, but I am willing to let a string theorist correct me on this. In absence of this string theory can still use a perturbative approach to the problem that one can hope gives the correct results without requiring a background independent mathematical formulation. Having said that, the coupling between single photons and gravitons is incredibly weak until we get to extremely high energies. If the Planck scale exists (a big if), then we will have basically no way of producing photon energies high enough to see the production of high energy gravitons in our accelerator facilities anytime soon. At this point the question if gravitons exist is therefor experimentally not tractable, leaving little else but guesswork for theoreticians.
Because in my view we have a coupled photon-graviton. The Photon – Graviton pair (coupled) has the same speed and frequency, and the photon energy divided by the graviton energy is the electromagnetic energy divided by the gravitational energy, the electromagnetic force divided by the gravitational force.
226,307
Say two photons moving beside each other through space at speed of light, since it carries energy it can bend spacetime. So both photons will exert gravitational force on each other at speed of light however so slightly, say strings theory is right that gravition really do exist. I'm thinking if the force carrier of gravity moving at speed could exchange between the two photons? Of course I'm aware this whole stuff makes little sense so what's am I missing here?
2015/12/28
[ "https://physics.stackexchange.com/questions/226307", "https://physics.stackexchange.com", "https://physics.stackexchange.com/users/75502/" ]
Here is a lower level explanation: Two photon physics , i.e. photon photon interactions exist and even gamma gamma colliders are proposed for experiments. Here is a two photon Feynman diagram, lowest order: [![photon photon](https://i.stack.imgur.com/ttmYqs.png)](https://i.stack.imgur.com/ttmYqs.png) > > [A Feynman diagram](https://en.wikipedia.org/wiki/Two-photon_physics) (box diagram) for photon–photon scattering, one photon scatters from the transient vacuum charge fluctuations of the other > > > With [electromagnetic couplings](http://hyperphysics.phy-astr.gsu.edu/hbase/forces/funfor.html) at the vertices, this diagram when calculated gives a very low probability due to the 1/137 value of the coupling constant Only at high energies due to the functional form under the integrals can a measurable probability be predicted. Suppose that one has quantized gravity , and the hypothetical graviton exists. The corresponding coupling is 6\*10^-39 . So the equivalent gravitational interaction diagram would be about 10^35 times weaker than the corresponding electromagnetic one, just at each vertex. Thus one is talking of infinitessimally small gravitational effects, not attainable in our laboratories. In cosmological models such energies can be hypothesized and in the primordial soup of the [Big Bang](https://en.wikipedia.org/wiki/Big_Bang) it will be part of the gravitational interactions that bounds the universe but these are theoretical propositions.
Because in my view we have a coupled photon-graviton. The Photon – Graviton pair (coupled) has the same speed and frequency, and the photon energy divided by the graviton energy is the electromagnetic energy divided by the gravitational energy, the electromagnetic force divided by the gravitational force.
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
I am not sure I understand "round" versus "triangular". Yet in chemistry, least-squares polynomial fitting filters are used to keep the smooth shape of spectra peaks. The most famous are the [Savitzky–Golay filters](https://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter). They have been revived in signal processing by a recent overview paper by R. W. Shafer: [What Is a Savitzky-Golay Filter?](http://www-inst.eecs.berkeley.edu/~ee123/fa11/docs/SGFilter.pdf) (2011).
Use two or three passes of moving average (can be pipelined).
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
I am not sure I understand "round" versus "triangular". Yet in chemistry, least-squares polynomial fitting filters are used to keep the smooth shape of spectra peaks. The most famous are the [Savitzky–Golay filters](https://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter). They have been revived in signal processing by a recent overview paper by R. W. Shafer: [What Is a Savitzky-Golay Filter?](http://www-inst.eecs.berkeley.edu/~ee123/fa11/docs/SGFilter.pdf) (2011).
In the question Aybe implied that the red curve is a moving average of the blue curve. That doesn't look correct to me. (It seems to me that a moving-averaged output would not have the sharp peaks seen in the red curve.) My first thought was to suggest, as Yves Daoust did, a moving average filter as a possible answer to the question. If Yves and I had access the the blue curve's sample values we could see if a true moving average filter will satisfy Aybe.
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
I am not sure I understand "round" versus "triangular". Yet in chemistry, least-squares polynomial fitting filters are used to keep the smooth shape of spectra peaks. The most famous are the [Savitzky–Golay filters](https://en.wikipedia.org/wiki/Savitzky%E2%80%93Golay_filter). They have been revived in signal processing by a recent overview paper by R. W. Shafer: [What Is a Savitzky-Golay Filter?](http://www-inst.eecs.berkeley.edu/~ee123/fa11/docs/SGFilter.pdf) (2011).
Try a small Gaussian filter. An approximation to the Gaussian can be achieved by applying a moving average filter multiple times.
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
Use two or three passes of moving average (can be pipelined).
In the question Aybe implied that the red curve is a moving average of the blue curve. That doesn't look correct to me. (It seems to me that a moving-averaged output would not have the sharp peaks seen in the red curve.) My first thought was to suggest, as Yves Daoust did, a moving average filter as a possible answer to the question. If Yves and I had access the the blue curve's sample values we could see if a true moving average filter will satisfy Aybe.
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
Use two or three passes of moving average (can be pipelined).
Try a small Gaussian filter. An approximation to the Gaussian can be achieved by applying a moving average filter multiple times.
25,828
I have a signal (in blue) that I would like to smooth out (in red, moving average). I would like to get red peaks to look more round than triangular and at the same time their width would become closer to the original ones. [![enter image description here](https://i.stack.imgur.com/imLVk.png)](https://i.stack.imgur.com/imLVk.png) Do you know / can you suggest a filter that would yield such result ? **Background:** The input is the zero-crossing rate from a song, for building a colored waveform as I've tried in this question : [Coloring a waveform with spectral centroid or by other means](https://dsp.stackexchange.com/questions/8997/coloring-a-waveform-with-spectral-centroid-or-by-other-means) Here's the result of the new approach: (unprocessed) [![enter image description here](https://i.stack.imgur.com/0vgWr.png)](https://i.stack.imgur.com/0vgWr.png) (ideal result, cheated somehow here using a post, expensive gaussian blur) [![enter image description here](https://i.stack.imgur.com/JuiB8.png)](https://i.stack.imgur.com/JuiB8.png) **Update** Here's the result, using **@Laurent Duval** answer: [![enter image description here](https://i.stack.imgur.com/ejF6i.png)](https://i.stack.imgur.com/ejF6i.png) Also, I still need to try all of your suggestions again as my input/initial take was buggy, surprisingly now the ZCR yields better output than using FFTW out of the box (pics on the right): [![enter image description here](https://i.stack.imgur.com/l9SSs.png)](https://i.stack.imgur.com/l9SSs.png) **Update 2** Simple moving average (green: 1-pass, gold: 2-passes) [![enter image description here](https://i.stack.imgur.com/Y5Zqd.png)](https://i.stack.imgur.com/Y5Zqd.png)
2015/09/14
[ "https://dsp.stackexchange.com/questions/25828", "https://dsp.stackexchange.com", "https://dsp.stackexchange.com/users/3290/" ]
Try a small Gaussian filter. An approximation to the Gaussian can be achieved by applying a moving average filter multiple times.
In the question Aybe implied that the red curve is a moving average of the blue curve. That doesn't look correct to me. (It seems to me that a moving-averaged output would not have the sharp peaks seen in the red curve.) My first thought was to suggest, as Yves Daoust did, a moving average filter as a possible answer to the question. If Yves and I had access the the blue curve's sample values we could see if a true moving average filter will satisfy Aybe.
142,991
Ubuntu 10.04 With Gnome Every time Ubuntu goes to the screensaver and I unlock it, Firefox won't let me type anything. I can move the mouse and type in other programs... just not in Firefox. If I quit Firefox and reopen it again, I can type in it. My keyboard connection is PS/2. Sounds buggish? --- Update #1 - Hmm... this time around, I just waited for a minute and it appeared to return to normal. I still think it's a bug but at least it's not as bad as I originally thought.
2010/05/19
[ "https://superuser.com/questions/142991", "https://superuser.com", "https://superuser.com/users/15351/" ]
In either Windows or OS X verify the partition information for the drive. **In Windows 7:** * Right Click "Computer" and then click on "Manage". * Once the Computer Management window opens select Disk Management from under the "Storage" header. * This should show you the partition information for any connected drives. It will be good to note if it shows the full size of the drive being used. **In OS X:** * Open Applications folder in Finder and go to the Utilities directory and open Disk Utility (or press CMD+Space and type in Disk Utility to open it from Spotlight). * Select the USB connected drive and you should see the partition information here as well. Verifying that the partition information is correct will help determine the next step. If you are expecting there to be files and they aren't appearing, you can try to use the Windows software [Recuva](http://www.piriform.com/recuva) to recover files. If you aren't missing data but just working out a drive space issue, then reformatting/repartitioning the drive should help get your space back to normal. Formatting and partitioning can be done from either of the previously mentioned programs (Computer Management -> Disk Management in Win7/WinXP or Disk Utility in OS X).
If a Unix machine, you could run fsck to check and repair a partition. On the Mac, the Disk Utility has a "Verify Disk" button that you can use to check the disk and a "Repair Disk" button that you can use to repair any inconsistencies on the disk. I'm not sure, but most likely those two buttons use "fsck" to do most or all of the work. In windows there is a checkdsk utility that does about the same thing.
142,991
Ubuntu 10.04 With Gnome Every time Ubuntu goes to the screensaver and I unlock it, Firefox won't let me type anything. I can move the mouse and type in other programs... just not in Firefox. If I quit Firefox and reopen it again, I can type in it. My keyboard connection is PS/2. Sounds buggish? --- Update #1 - Hmm... this time around, I just waited for a minute and it appeared to return to normal. I still think it's a bug but at least it's not as bad as I originally thought.
2010/05/19
[ "https://superuser.com/questions/142991", "https://superuser.com", "https://superuser.com/users/15351/" ]
In either Windows or OS X verify the partition information for the drive. **In Windows 7:** * Right Click "Computer" and then click on "Manage". * Once the Computer Management window opens select Disk Management from under the "Storage" header. * This should show you the partition information for any connected drives. It will be good to note if it shows the full size of the drive being used. **In OS X:** * Open Applications folder in Finder and go to the Utilities directory and open Disk Utility (or press CMD+Space and type in Disk Utility to open it from Spotlight). * Select the USB connected drive and you should see the partition information here as well. Verifying that the partition information is correct will help determine the next step. If you are expecting there to be files and they aren't appearing, you can try to use the Windows software [Recuva](http://www.piriform.com/recuva) to recover files. If you aren't missing data but just working out a drive space issue, then reformatting/repartitioning the drive should help get your space back to normal. Formatting and partitioning can be done from either of the previously mentioned programs (Computer Management -> Disk Management in Win7/WinXP or Disk Utility in OS X).
1. Your missing files, probably a damaged table from a poorly timed dismount. My suggestion: use a data carving tool to recover the data off the drive. PC inspector is free and I've used it before: <http://www.snapfiles.com/get/pcinspector.html> Alternatively you can obtain something more powerful like AccessData. 2. Recovering that lost space. once your data is recovered and off the drive... blow the drive away. quick and easy: click start, right click my computer, click manage, click disk manager, click your usb drive, delete the partitions, create a new partition using 100% of the space. 3. Keep it from happening again. Kinda vague on my instructions here, but basically you right click that new volume on your usb disk, properties of it and there should be a tab that is unique to USB removable drives. That tab has some options to basically "make this volume run faster- but there will be he11 to pay for yanking it out" - you are going to click the one that says "Run a little slower but be prepared to be randomly ejected from the computer". Also, it wouldn't hurt to run one of those check disk tools against it to make sure the physical disk wasn't the cause of the problem.
7,655,088
i'm creating a shopping website using c# and asp.net and i want to use MVP pattern inside of three tier architecture, specifically in the presentation layer. the reason i'm doing this is because i've been read and heard that MVP is a UI pattern however i came across a design problem! if MVP is a UI pattern and it should be used inside of presentaion layer and so it's not a representation of a database table then what exactly would make up my model?? i suspect that the data from the business layer is making up my model but when i think about it the only thing that is coming to my presentation layer from my business layer is the requested data table. so what would make up the model? for an example consider the amazon.com as the shopping site that i'm trying to create.
2011/10/04
[ "https://Stackoverflow.com/questions/7655088", "https://Stackoverflow.com", "https://Stackoverflow.com/users/935672/" ]
I will probably be in the minority with this, but whenever I talk about the usage of any of the MV\* architectural patterns, I often do not apply it at a system wide level, but on a individual component level. For example, Java Swing UI elements are built using MVC principles. That is to say that MVC is being applied on a component level in the presentation layer. For your case (using MVP only in well-defined presentation layer), your MVP model could be a shell that interfaces with your business logic layer. Or it could be domain POCOs, that get instantiated by repositories.
The Data Table is your model. Or the way I prefer to think about it is the *entire* business layer is the model, and the UI contains the View and Presenter.
1
Most American crosswords use rotational (or "radial") symmetry so that squares directly opposite each other (through the center) are identical. In the Times, I've only seen this **not** be the case when the layout was directly linked to the theme. Is that one of the "rules" you can count on, or are there (modern, Will Shortz era) examples of cases where you can't assume that non-radial symmetry will be somehow related to the theme? Here's an example where the theme **does** justify the deviation: ![enter image description here](https://i.stack.imgur.com/CQ2Hy.jpg) The theme in this example was celebrating the 50th anniversary of Frank Lloyd Wright's landmark Guggenheim building.
2014/05/14
[ "https://puzzling.stackexchange.com/questions/1", "https://puzzling.stackexchange.com", "https://puzzling.stackexchange.com/users/5/" ]
> > Nearly all the Times crossword grids have rotational symmetry: they > can be rotated 180 degrees and remain identical. Rarely, puzzles with > only vertical or horizontal symmetry can be found; yet rarer are > asymmetrical puzzles, usually when an unusual theme requires breaking > the symmetry rule. **This rule has been part of the puzzle since the > beginning; when asked why, initial editor Margaret Farrar is said to > have responded, "Because it is prettier.**" > > > ***SOURCE:*** ["The Ins and Outs of Across and Down" The New York Times Magazine, 1992-02-16.](http://www.nytimes.com/1992/02/16/magazine/crosswords-fiftyyears.html?ei=5070&en=eb226eeaee1ab061&ex=1237089600&pagewanted=all)
Quality crossword puzzles have had a [rotational symmetry requirement](http://www.cruciverb.com/index.php?action=ezportal;sa=page;p=21) for a very long time. It was determined early on in the development of the puzzle that the symmetry rule (along with the fully checked and all-over interlock rules) made the puzzles more interesting. (IMHO, that is because it puts interesting constraints on the beginnings of words towards the upper left corner, with mirrors of those constraints on the endings of words in the lower right.) The NYT does expressly give the editor freedom to break the rules, ["if the theme warrants"](http://www.cruciverb.com/index.php?action=ezportal;sa=page;p=16). But notably none of my searches for submissions guidelines to the NYT made any more explicit statements than that.
10,727,893
I'm writing a weather app that learns what you wear based on current conditions/temperatures to tell you what you should wear outside. I'm collecting some simple data and storing it on the device. I'm collecting: * Date/time * Weather temperature * Weather conditions * 6 int fields: + Head + Chest + Hands + Legs + Feet + Accessory I will query the data based on the current temperature/condition to get an average of the values in the 6 int fields to predict what the user usually wears. I'm keeping this on iPhone only. What would be a good, client-side, data storage method for this? The queries aren't too intense, but I need to query on type and range. I haven't used Core Data before. Very familiar at MySQL but haven't touched SQLite. Again, I'd like to keep this client-side and not use a database for the sake of simplicity/speed. I'm aiming for a get-in/get-out app.
2012/05/23
[ "https://Stackoverflow.com/questions/10727893", "https://Stackoverflow.com", "https://Stackoverflow.com/users/940936/" ]
I would recommend using Core Data or SQLite. Your right, this is not a lot of data being store. What if that Application is a success, and you want to expand your concept? For example: (1) You want to store more data (2) Maybe sync data to a server (3) Changing the type of data your storing You even mention QUERY in your question, to me that is your answer right there. This would all be much easier with Core Data. There will be a learning curve, but learning this framework will be beneficial with future projects. Good luck with your project.
A previous poster recommends Core Data over SQLite. Although they're right to suggest one of those two alternatives, if you are already familiar with MySQL and you're looking for a get-in/get-out app, I'd recommend you go with SQLite. Core Data is an excellent framework, but there is a learning curve that may not be worthwhile considering your specifications and your previous experience. SQLite is simple, fast, and client side. Moreover, your queries won't look any different from MySQL. Other posters mention serializing over NSUserDefaults or NSKeyedArchiver. While they do make serialization simple, you'll end up rolling your own query code using NSPredicate. It's not so difficult, but again, it may be a new technology that, while worthwhile, is better saved for another time. More of a concern is that they won't scale well if your app does start using a lot of data quickly. Regarding scale more generally, ff your app does become wildly successful, worry about it then. You can always refactor and scale when it's necessary.
44,801,590
I have a column in Sharepoint 2013 and set the type to 'Calculated'. I have set the data return type to integer (pic attached) so that the field is hyperlink. [![Calculated field - setup](https://i.stack.imgur.com/KTgRP.png)](https://i.stack.imgur.com/KTgRP.png) All worked fine for over a year in all environments (dev and production) and browsers (chrome, firefox, IE) until recently when users reportted the hyperlink was not clickable anymore and displayed as text (pic attached). Inspecting the element, reveals the value of is treated as text. [![Calculated field - as displayed on UI](https://i.stack.imgur.com/wEKt6.png)](https://i.stack.imgur.com/wEKt6.png) I have spent some time simplifying the formula, removing fields and having a simple element to navigate to google, but have not found a solution. I suspect there may been a Sharepoint update which handles the formula differently creating text inside the element surrounding it with double quotes.
2017/06/28
[ "https://Stackoverflow.com/questions/44801590", "https://Stackoverflow.com", "https://Stackoverflow.com/users/2052544/" ]
After research I have found the cause and the solution to my problem. **Cause** SharePoint update removed the ability of calculated fields to be set us markups and is explained in [Handling HTML markup in SharePoint calculated fields](https://support.microsoft.com/en-gb/help/4032106/handling-html-markup-in-sharepoint-calculated-fields). **Solution** I have found a solution with JSLink. After opening link above, there are some examples using JSLink. With a bit of play-around, I managed to achieve having the calculated field as a hyperlink. The steps are simple. 1. Create a js file with code - in my case I create a hyperlink which posts to another list with values from current item. 2. Copy link location of js file. 3. Reference js file on web part on view, under section Miscellaneous. 4. Voila! Note: in the script, the field name must be the internal field name, that slowed me down quite a bit. to get the internal field name, open list settings, hover over desired field and on the bottom left of your browser you get the internal field name (Field=Internal field name here). JSExample can be found [here](https://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a). Another helpful read [here](https://www.codeproject.com/Articles/620110/SharePoint-Client-Side-Rendering-List-Views).
As mentioned as a follow-up by the original poster, as of June 2017, you can't do this anymore. For SharePoint Online, the alternatives are to embed some JavaScript on the page or to use the new [SharePoint PnP Fx Extensions](https://github.com/SharePoint/sp-dev-fx-extensions). If you have your own SharePoint Server, you can use the API [i.e. through PowerShell] to modify the Web object's CustomMarkupInCalculatedFieldDisabled property. I needed a little bit more robust solution, so I created a SharePoint Extension to do this. You can [view it from GitHub](https://github.com/JNadrowski/js-field-url-link). The instructions should be able to get you up and running in a couple minutes. I find it much easier to manage than the JavaScript alternative.
266,943
I am looking for some advice on getting LVP installed. We have an area of about 2000 sf where we want to install LVP. The area is currently a mix of flooring consisting of a mix of tile, laminate, and carpet. We will hire a professional installation company to do the job and 2 companies recommended removing all the old flooring for the new installation. One company, however, suggested installing OSB planks over the tile and then installing the LVP on top of the OSB in order to reduce time, dust, and dirt as well as money for the tile removal! I am very confused now about what would be the better and most lasting option! Any advice is highly appreciated.
2023/02/14
[ "https://diy.stackexchange.com/questions/266943", "https://diy.stackexchange.com", "https://diy.stackexchange.com/users/163023/" ]
This comes down to opinion based on preferences for time, cost, current flooring conditions, etc. Here's mine. This sounds like a company looking for a quick-n-clean job with max profit. You'll have areas of floor higher than others. You'll have base trim and door casing issues to address. Also, tile can be skimmed with leveler. It's not necessary to overlay it, but that's probably the installer's preference out of laziness or greed. I would drop all contact with that one. They sound sketchy, like the window replacement outfits who leave you with smaller windows because they don't want to take out the existing trim and reinstall it so they just fit windows *inside* it. The best solution is usually to strip everything to the same level of subfloor and carry on as if the home was new.
With multiple types of flooring being replaced with LVP, the only 2 companies you should be dealing with are those that recommended removal of all the old flooring. DO NOT consider one that recommended OSB over the tile. Throw away their business card as well.
20,774
I have the same image vertical above horizontal in this photograph. The photo was captured with an old film camera, and scanned in using my scanner. How do I remove this extra image? Could I do this in Photoshop? ![enter image description here](https://i.stack.imgur.com/OBJwc.jpg)
2012/03/01
[ "https://photo.stackexchange.com/questions/20774", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/8769/" ]
If that's the original image, and you don't have a good copy of either picture you can subtract out, it's going to be incredibly difficult. This sort of thing falls into the extreme end of the restorer/conservator's art, since it means inventing detail. The upper image is gone for good, likely, but it's not something that's irreplaceable. You can probably buy a postcard that carries more-or-less the same image. Unless it is the only existing image of something that was set up temporarily or destroyed by some catastrophe, I wouldn't worry about it. The picture of the people, below, is probably the more important image of the two by far. How easy it would be to repair the image is difficult to tell because of the white box—accurately recovering the facial details is the most important part of restoring something like this, whether its value is historic or just family memories. If there's enough facial detail to work with, there is a good chance that the photograph can be satisfactorily recovered. But it will take a lot of work—for an inexperienced restorer, it could be many tens or even hundreds of hours—and a very good eye, along with some artistic ability. And it would help tremendously if there were other photos of the people in that picture to work from. If the basic features are there in the photo, even somewhat obstructed, and there are other references to work from in recreating the features (and, if possible, the architectural details) I'd estimate it to be about a three-day job for me (including "resting time", since it's easy to get carried away if you don't take frequent breaks from an image when you're restoring), and I know what I'm doing. The latest versions of Photoshop (or a fully-loaded installation of the GIMP, complete with the "content aware fill" module) will make the work a whole lot easier than it might have been even two or three years ago. And trying to do the work with a trackpad or a mouse would be an exercise in frustration—a tablet, and preferably a tablet/monitor combo, should be considered almost compulsory for something like this. In the end there's still going to have to be a lot of hand-work painting in textures, making the eyes believable, and so on. Luckily, you can work on copies and in stages. But it is a long, slow, painstaking process if you want to do it yourself, and it will be very expensive if you use a reputable professional restorer.
That's a corrupt image (unless I'm just really not seeing it right) at the least, possibly a double exposure if you're using film, or a corrupt memory card possibly. Nothing to do to fix it now. Try formatting the card and see if it happens again, if it does, replace the card.
20,774
I have the same image vertical above horizontal in this photograph. The photo was captured with an old film camera, and scanned in using my scanner. How do I remove this extra image? Could I do this in Photoshop? ![enter image description here](https://i.stack.imgur.com/OBJwc.jpg)
2012/03/01
[ "https://photo.stackexchange.com/questions/20774", "https://photo.stackexchange.com", "https://photo.stackexchange.com/users/8769/" ]
If that's the original image, and you don't have a good copy of either picture you can subtract out, it's going to be incredibly difficult. This sort of thing falls into the extreme end of the restorer/conservator's art, since it means inventing detail. The upper image is gone for good, likely, but it's not something that's irreplaceable. You can probably buy a postcard that carries more-or-less the same image. Unless it is the only existing image of something that was set up temporarily or destroyed by some catastrophe, I wouldn't worry about it. The picture of the people, below, is probably the more important image of the two by far. How easy it would be to repair the image is difficult to tell because of the white box—accurately recovering the facial details is the most important part of restoring something like this, whether its value is historic or just family memories. If there's enough facial detail to work with, there is a good chance that the photograph can be satisfactorily recovered. But it will take a lot of work—for an inexperienced restorer, it could be many tens or even hundreds of hours—and a very good eye, along with some artistic ability. And it would help tremendously if there were other photos of the people in that picture to work from. If the basic features are there in the photo, even somewhat obstructed, and there are other references to work from in recreating the features (and, if possible, the architectural details) I'd estimate it to be about a three-day job for me (including "resting time", since it's easy to get carried away if you don't take frequent breaks from an image when you're restoring), and I know what I'm doing. The latest versions of Photoshop (or a fully-loaded installation of the GIMP, complete with the "content aware fill" module) will make the work a whole lot easier than it might have been even two or three years ago. And trying to do the work with a trackpad or a mouse would be an exercise in frustration—a tablet, and preferably a tablet/monitor combo, should be considered almost compulsory for something like this. In the end there's still going to have to be a lot of hand-work painting in textures, making the eyes believable, and so on. Luckily, you can work on copies and in stages. But it is a long, slow, painstaking process if you want to do it yourself, and it will be very expensive if you use a reputable professional restorer.
This is going to be an incredibly hard restoration job, since there's no automatic way of telling which part of the exposure came from the intended image and which part came from the overlaid one. In the unlikely circumstance that you have an *unduplicated* version of one of the photos (taken from the exact same place with the exact same lighting), one could attempt to subtract that from the image. But even then, the results would be far from perfect. Mostly, you have to give it up as lost. Sorry.
23,656,026
What size of image I need to have if I want to use it as background to full screen? 1.png 320 - 568 points non retina 1@2x.png 640 - 1126 points retina Am I right? Or what size are correct?
2014/05/14
[ "https://Stackoverflow.com/questions/23656026", "https://Stackoverflow.com", "https://Stackoverflow.com/users/3631176/" ]
You could use the size of the splash screen images for your views too, making your app iOS 7 forward compatible. For iPhone 5 and iPod touch (5th generation): 640 x 1136 pixels For other iPhone and iPod touch devices: 640 x 960 pixels (retina) 320 x 480 pixels (standard resolution)
It depends on what device you're targeting. If you looking at just the iPhone 5/5s then you're spot on. If you're also taking into account everything below the iPhone 5, then you will also need 320x480 (non retina) 640x960 (retina) So it just depends on the devices you're supporting. There are loads of resources on the net about these things. Also bear in mind that the background size will be different depending on what components you use, such as navigation bars and tab bars. And also if you're supporting iOS 7 then the status bar is transparent, where as on iOS 6 and below, you don't need to provide the background for that (so the above dimensions are actually correct for iOS 7 but not exactly right for iOS 6)
4,305,895
Whats the best way to have file attachments in blocks like you can with nodes? Is this possible with an existing module?
2010/11/29
[ "https://Stackoverflow.com/questions/4305895", "https://Stackoverflow.com", "https://Stackoverflow.com/users/295112/" ]
You should start Glassfish with the debug instead of the run option inside the Servers view.
Same problem that you and it was driving me crazy. My configuration is eclipse indigo over windows 7 and glassfish 3.1.1. The jdk I'm using is 1.7x64. I downloaded the glassfish server tools through the new server window. I have solved it (it currently works, who knows what's happening in the near future) downloading and installing jdk1.6.30. I haven't uninstalled jdk1.7, but I've configured my eclipse project to use jdk1.6 instead.
4,305,895
Whats the best way to have file attachments in blocks like you can with nodes? Is this possible with an existing module?
2010/11/29
[ "https://Stackoverflow.com/questions/4305895", "https://Stackoverflow.com", "https://Stackoverflow.com/users/295112/" ]
You should start Glassfish with the debug instead of the run option inside the Servers view.
Hi all I found solution for debugging problem. In my case Eclipse Indigo and linux x64 it works. More details in other thread about the same error <https://stackoverflow.com/a/14551690/1976844>
4,305,895
Whats the best way to have file attachments in blocks like you can with nodes? Is this possible with an existing module?
2010/11/29
[ "https://Stackoverflow.com/questions/4305895", "https://Stackoverflow.com", "https://Stackoverflow.com/users/295112/" ]
Same problem that you and it was driving me crazy. My configuration is eclipse indigo over windows 7 and glassfish 3.1.1. The jdk I'm using is 1.7x64. I downloaded the glassfish server tools through the new server window. I have solved it (it currently works, who knows what's happening in the near future) downloading and installing jdk1.6.30. I haven't uninstalled jdk1.7, but I've configured my eclipse project to use jdk1.6 instead.
Hi all I found solution for debugging problem. In my case Eclipse Indigo and linux x64 it works. More details in other thread about the same error <https://stackoverflow.com/a/14551690/1976844>
57,269,320
i am settingup a new server, i want to use and want to connect sql, nodejs witout using xampp. i have tried to install phpmyadmin but it is not working. CMD prompt also needs phpmyadmin
2019/07/30
[ "https://Stackoverflow.com/questions/57269320", "https://Stackoverflow.com", "https://Stackoverflow.com/users/10649883/" ]
PhpMyAdmin runs using PHP, Apache and MYSQL, be sure to install all of these before trying to install it. Although, considering you're not going to use PHP, you might check for alternatives using node or being pure software so you don't have to install anything else.
Well to run phpmyadmin you need php engine like apache so if Xampp is your problem then you might want to use other apache stacks like wamp or check [this out](https://www.zyxware.com/articles/5139/how-to-run-phpmyadmin-without-apache-only-using-the-php-built-in-web-server)
1,748,179
I have a laptop that runs Windows 11, and I am planning to install Microsoft Bob on it. I know that there are compatibility settings for Windows 95, but can I still use Bob even though it is 16-bit?
2022/10/18
[ "https://superuser.com/questions/1748179", "https://superuser.com", "https://superuser.com/users/1739951/" ]
It's only possible on a 32-bit VM of Windows 10, which can still run 16-bit software. For an example of how this is done see the video [Microsoft Bob on Windows 10](https://www.youtube.com/watch?v=Au1ph3BntRI). [![enter image description here](https://i.stack.imgur.com/0Sg3m.jpg)](https://i.stack.imgur.com/0Sg3m.jpg)
> > can I still use Bob even though it is 16-bit? > > > On a Windows 11 Machine? ... No. No chance. 16-bit software does not and will never run on a 64-bit machine. Windows 11 is only 64-bit. So you cannot use Bob on Windows 11.
76,484
I'm working with a client whose sole selling point is affordability. They sell at low margins and aim for the cheapest of demographics. What are some UX or design decisions I can make to make their visitors feel like they are making a bargain? Some obvious ones are large text for prices. Perhaps strike through list prices and show discounted prices in red and so on. But are there other ways to achieve "affordability"?
2015/04/17
[ "https://ux.stackexchange.com/questions/76484", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/64916/" ]
**Without going into dark UX patterns, I'd recommend many of the techniques from <http://www.goodui.org/>** Some specific examples would be to recommend a specific product instead of treating everything equally ([#7](http://www.goodui.org/#7)), use the anchoring effect on prices or trim the cents ([#41](http://www.goodui.org/#41), [#51](http://www.goodui.org/#51)), or sell in limited quantities ([#36](http://www.goodui.org/#36)). Another thing to consider would be the the perception your website or storefront has on the prices your customers expect. The concept of *horror vacui* is why low end retailers (like a dollar store) tend to have very cluttered websites or stores with no space left empty while higher end retailers (like Apple) tend to have more minimal pages or storefronts with ample empty space. You'll have to decide if you want to create a user experience that leads customers to expect low prices so they know what they are getting, or one that leads to expectations of higher prices (and higher quality) so they are surprised by the prices (and hopefully not disappointed by the quality).
With this request I feel like you're starting to enter into the overlap of Marketing/UX - which can maybe explain why this might be a little different of a request. Humans are strange creatures when it comes to purchasing - they want to feel like they got a good value (generally - not talking about purchasers that purchase due to high price - aka the very expensive Apple Watch - they purchase it because they can.) However, a good bargain does not always mean the lowest price; it has more to do with the value of the product vs the cost of the product. People want to feel like they paid less than they should've. Some things that might help that (which again, this isn't entirely UX - this is more marketing/manipulative to the user) 1. Showing a "retail price" and then showing the price they want to sell it at. 2. Showing pictures of the demographic happily using the product. 3. Show reviews/testimonials of other people that have purchased the product. These should be real people. 4. Demonstrate that the company itself is trustworthy - this could be by things they do to give back to the community or even showing that they regularly post to social media. Hope this helps. Encourage the company to be HONEST with everything - otherwise it will hurt them in the long run.
76,484
I'm working with a client whose sole selling point is affordability. They sell at low margins and aim for the cheapest of demographics. What are some UX or design decisions I can make to make their visitors feel like they are making a bargain? Some obvious ones are large text for prices. Perhaps strike through list prices and show discounted prices in red and so on. But are there other ways to achieve "affordability"?
2015/04/17
[ "https://ux.stackexchange.com/questions/76484", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/64916/" ]
With this request I feel like you're starting to enter into the overlap of Marketing/UX - which can maybe explain why this might be a little different of a request. Humans are strange creatures when it comes to purchasing - they want to feel like they got a good value (generally - not talking about purchasers that purchase due to high price - aka the very expensive Apple Watch - they purchase it because they can.) However, a good bargain does not always mean the lowest price; it has more to do with the value of the product vs the cost of the product. People want to feel like they paid less than they should've. Some things that might help that (which again, this isn't entirely UX - this is more marketing/manipulative to the user) 1. Showing a "retail price" and then showing the price they want to sell it at. 2. Showing pictures of the demographic happily using the product. 3. Show reviews/testimonials of other people that have purchased the product. These should be real people. 4. Demonstrate that the company itself is trustworthy - this could be by things they do to give back to the community or even showing that they regularly post to social media. Hope this helps. Encourage the company to be HONEST with everything - otherwise it will hurt them in the long run.
Study your users ---------------- The only way to answer this question is user research. Every target audience has their own preferences when it comes to this kind of problem (perceived value). Some demographics will respond to big red prices with "original" prices slashed out; some will favor a focus on product details and imagery, with price as a secondary data point primarily used for filtering. In some cases, choice is part of making the experience sticky; in others, it will just kill your conversion rate. Get to know your users and draw up some representative user experience maps. Once you understand what motivates them and what they hope to find when shopping in your space, the details will fall into place. Job security ------------ Fortunately for the design and UX community, there is no single answer to this question. Doing your homework and truly designing for *your* audience is what separates the big converters from the pretty websites.
76,484
I'm working with a client whose sole selling point is affordability. They sell at low margins and aim for the cheapest of demographics. What are some UX or design decisions I can make to make their visitors feel like they are making a bargain? Some obvious ones are large text for prices. Perhaps strike through list prices and show discounted prices in red and so on. But are there other ways to achieve "affordability"?
2015/04/17
[ "https://ux.stackexchange.com/questions/76484", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/64916/" ]
With this request I feel like you're starting to enter into the overlap of Marketing/UX - which can maybe explain why this might be a little different of a request. Humans are strange creatures when it comes to purchasing - they want to feel like they got a good value (generally - not talking about purchasers that purchase due to high price - aka the very expensive Apple Watch - they purchase it because they can.) However, a good bargain does not always mean the lowest price; it has more to do with the value of the product vs the cost of the product. People want to feel like they paid less than they should've. Some things that might help that (which again, this isn't entirely UX - this is more marketing/manipulative to the user) 1. Showing a "retail price" and then showing the price they want to sell it at. 2. Showing pictures of the demographic happily using the product. 3. Show reviews/testimonials of other people that have purchased the product. These should be real people. 4. Demonstrate that the company itself is trustworthy - this could be by things they do to give back to the community or even showing that they regularly post to social media. Hope this helps. Encourage the company to be HONEST with everything - otherwise it will hurt them in the long run.
> > Perhaps strike through list prices and show discounted prices in red > > > I think most people realize there's a level of bullshit involved with that. Test, obviously, but in general, I'd avoid that altogether. If you want to show that your prices are especially low, consider showing competitors prices along side. In general, the best way to show affordability is just as you suggest: focus on prices and have the business make sure they are good, affordable prices to begin with. Beyond that, there's likely a level of marketing and branding that needs to accompany this.
76,484
I'm working with a client whose sole selling point is affordability. They sell at low margins and aim for the cheapest of demographics. What are some UX or design decisions I can make to make their visitors feel like they are making a bargain? Some obvious ones are large text for prices. Perhaps strike through list prices and show discounted prices in red and so on. But are there other ways to achieve "affordability"?
2015/04/17
[ "https://ux.stackexchange.com/questions/76484", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/64916/" ]
**Without going into dark UX patterns, I'd recommend many of the techniques from <http://www.goodui.org/>** Some specific examples would be to recommend a specific product instead of treating everything equally ([#7](http://www.goodui.org/#7)), use the anchoring effect on prices or trim the cents ([#41](http://www.goodui.org/#41), [#51](http://www.goodui.org/#51)), or sell in limited quantities ([#36](http://www.goodui.org/#36)). Another thing to consider would be the the perception your website or storefront has on the prices your customers expect. The concept of *horror vacui* is why low end retailers (like a dollar store) tend to have very cluttered websites or stores with no space left empty while higher end retailers (like Apple) tend to have more minimal pages or storefronts with ample empty space. You'll have to decide if you want to create a user experience that leads customers to expect low prices so they know what they are getting, or one that leads to expectations of higher prices (and higher quality) so they are surprised by the prices (and hopefully not disappointed by the quality).
Study your users ---------------- The only way to answer this question is user research. Every target audience has their own preferences when it comes to this kind of problem (perceived value). Some demographics will respond to big red prices with "original" prices slashed out; some will favor a focus on product details and imagery, with price as a secondary data point primarily used for filtering. In some cases, choice is part of making the experience sticky; in others, it will just kill your conversion rate. Get to know your users and draw up some representative user experience maps. Once you understand what motivates them and what they hope to find when shopping in your space, the details will fall into place. Job security ------------ Fortunately for the design and UX community, there is no single answer to this question. Doing your homework and truly designing for *your* audience is what separates the big converters from the pretty websites.
76,484
I'm working with a client whose sole selling point is affordability. They sell at low margins and aim for the cheapest of demographics. What are some UX or design decisions I can make to make their visitors feel like they are making a bargain? Some obvious ones are large text for prices. Perhaps strike through list prices and show discounted prices in red and so on. But are there other ways to achieve "affordability"?
2015/04/17
[ "https://ux.stackexchange.com/questions/76484", "https://ux.stackexchange.com", "https://ux.stackexchange.com/users/64916/" ]
**Without going into dark UX patterns, I'd recommend many of the techniques from <http://www.goodui.org/>** Some specific examples would be to recommend a specific product instead of treating everything equally ([#7](http://www.goodui.org/#7)), use the anchoring effect on prices or trim the cents ([#41](http://www.goodui.org/#41), [#51](http://www.goodui.org/#51)), or sell in limited quantities ([#36](http://www.goodui.org/#36)). Another thing to consider would be the the perception your website or storefront has on the prices your customers expect. The concept of *horror vacui* is why low end retailers (like a dollar store) tend to have very cluttered websites or stores with no space left empty while higher end retailers (like Apple) tend to have more minimal pages or storefronts with ample empty space. You'll have to decide if you want to create a user experience that leads customers to expect low prices so they know what they are getting, or one that leads to expectations of higher prices (and higher quality) so they are surprised by the prices (and hopefully not disappointed by the quality).
> > Perhaps strike through list prices and show discounted prices in red > > > I think most people realize there's a level of bullshit involved with that. Test, obviously, but in general, I'd avoid that altogether. If you want to show that your prices are especially low, consider showing competitors prices along side. In general, the best way to show affordability is just as you suggest: focus on prices and have the business make sure they are good, affordable prices to begin with. Beyond that, there's likely a level of marketing and branding that needs to accompany this.
857
I just disassembled the front brake caliper (dual piston) on my 1974 Ford F250 390 V8. There was a spring on each of the caliper bolts in between the brake pads. The springs are really rusty and one of them broke in half. Looking on O'Reilly's site, I can't find replacement springs. Are these in use anymore? If so, what are they called? Where should I look for a new set?
2011/05/12
[ "https://mechanics.stackexchange.com/questions/857", "https://mechanics.stackexchange.com", "https://mechanics.stackexchange.com/users/29/" ]
I'm going to say yes, you should replace those springs, especially the broken one.... Some [Googling](http://www.google.com/search?hl=en&rls=com.microsoft%3a%2a&biw=1259&bih=773&tbm=shop&q=1974%20Ford%20F250%20brake%20caliper%20springs&aq=f&aqi=&aql=&oq=) indicates that springs fitting your description are still in use and you should be able to mail order them.
Your local NAPA store can order them. It is part number UP 82116A and contains springs for both wheels.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
As for C++ developing I'd choose [Qt Creator IDE](http://qt.nokia.com/products/developer-tools) for easiest migrating from Visual Studio. I believe it can cover all your needs.
The best tools that you need are: * make * gcc * g++ * Your Favorite Text Editor * auto-tools * Qt Creator * [Glade](http://www.google.com.br/url?sa=t&source=web&ct=res&cd=1&ved=0CAkQFjAA&url=http%3A%2F%2Fglade.gnome.org%2F&ei=ZQjoSq_1GcWJuAeaopH_Bw&usg=AFQjCNFeufUW38BgbtjL3o6aBSgqIcGjIQ&sig2=c8mYmyVCokY71iZXaqGd0g) * Your Favorite Project Manager For Ubuntu I suggest you to use Glade, because Ubuntu uses Gnome(GTK). About IDEs: * [Eclipse For C/C++](http://eclipse.org) * [Netbeans For C/C++](http://netbeans.org) * [Code::Blocks](http://codeblocks.org) * [Kdevelop](http://www.kdevelop.org/)
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
The best tools that you need are: * make * gcc * g++ * Your Favorite Text Editor * auto-tools * Qt Creator * [Glade](http://www.google.com.br/url?sa=t&source=web&ct=res&cd=1&ved=0CAkQFjAA&url=http%3A%2F%2Fglade.gnome.org%2F&ei=ZQjoSq_1GcWJuAeaopH_Bw&usg=AFQjCNFeufUW38BgbtjL3o6aBSgqIcGjIQ&sig2=c8mYmyVCokY71iZXaqGd0g) * Your Favorite Project Manager For Ubuntu I suggest you to use Glade, because Ubuntu uses Gnome(GTK). About IDEs: * [Eclipse For C/C++](http://eclipse.org) * [Netbeans For C/C++](http://netbeans.org) * [Code::Blocks](http://codeblocks.org) * [Kdevelop](http://www.kdevelop.org/)
You can use Glade Interface designer (glade.gnome.org) for interface design. BOUML for UML modelling & project management You can always use eclipse or netbeans for c++ development on linux. Though I recommend Eclipse, it would automatically generate makefiles, debugging is very easy & you can configure your code repositories within the IDE.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
The best tools that you need are: * make * gcc * g++ * Your Favorite Text Editor * auto-tools * Qt Creator * [Glade](http://www.google.com.br/url?sa=t&source=web&ct=res&cd=1&ved=0CAkQFjAA&url=http%3A%2F%2Fglade.gnome.org%2F&ei=ZQjoSq_1GcWJuAeaopH_Bw&usg=AFQjCNFeufUW38BgbtjL3o6aBSgqIcGjIQ&sig2=c8mYmyVCokY71iZXaqGd0g) * Your Favorite Project Manager For Ubuntu I suggest you to use Glade, because Ubuntu uses Gnome(GTK). About IDEs: * [Eclipse For C/C++](http://eclipse.org) * [Netbeans For C/C++](http://netbeans.org) * [Code::Blocks](http://codeblocks.org) * [Kdevelop](http://www.kdevelop.org/)
I think you should just bite the bullet and learn enough make, gcc, and gdb to accomplish what you need to do at the command line. If you get that taken care of, you can use whatever editor you like to write the code -- even Visual Studio's editor.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
The best tools that you need are: * make * gcc * g++ * Your Favorite Text Editor * auto-tools * Qt Creator * [Glade](http://www.google.com.br/url?sa=t&source=web&ct=res&cd=1&ved=0CAkQFjAA&url=http%3A%2F%2Fglade.gnome.org%2F&ei=ZQjoSq_1GcWJuAeaopH_Bw&usg=AFQjCNFeufUW38BgbtjL3o6aBSgqIcGjIQ&sig2=c8mYmyVCokY71iZXaqGd0g) * Your Favorite Project Manager For Ubuntu I suggest you to use Glade, because Ubuntu uses Gnome(GTK). About IDEs: * [Eclipse For C/C++](http://eclipse.org) * [Netbeans For C/C++](http://netbeans.org) * [Code::Blocks](http://codeblocks.org) * [Kdevelop](http://www.kdevelop.org/)
Have a look at Code::Blocks. It's a nice IDE for doing C/C++ and comes with an own build-system. But be sure not to grab the version inside the official ubuntu repository but go to the CB forum and look for the latest nightly build. There are people maintaining repositories with ubuntu packages. I think CB is worth the hassle of installing the latest version. [Link to Code::Blocks Forum](http://forums.codeblocks.org/) Btw. I did an install some days ago. There are two people maintaining 64-Bit Ubuntu packages. Only one did work, though. It was [this](http://apt.jenslody.de/) one.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
As for C++ developing I'd choose [Qt Creator IDE](http://qt.nokia.com/products/developer-tools) for easiest migrating from Visual Studio. I believe it can cover all your needs.
You can use Glade Interface designer (glade.gnome.org) for interface design. BOUML for UML modelling & project management You can always use eclipse or netbeans for c++ development on linux. Though I recommend Eclipse, it would automatically generate makefiles, debugging is very easy & you can configure your code repositories within the IDE.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
As for C++ developing I'd choose [Qt Creator IDE](http://qt.nokia.com/products/developer-tools) for easiest migrating from Visual Studio. I believe it can cover all your needs.
I think you should just bite the bullet and learn enough make, gcc, and gdb to accomplish what you need to do at the command line. If you get that taken care of, you can use whatever editor you like to write the code -- even Visual Studio's editor.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
As for C++ developing I'd choose [Qt Creator IDE](http://qt.nokia.com/products/developer-tools) for easiest migrating from Visual Studio. I believe it can cover all your needs.
Have a look at Code::Blocks. It's a nice IDE for doing C/C++ and comes with an own build-system. But be sure not to grab the version inside the official ubuntu repository but go to the CB forum and look for the latest nightly build. There are people maintaining repositories with ubuntu packages. I think CB is worth the hassle of installing the latest version. [Link to Code::Blocks Forum](http://forums.codeblocks.org/) Btw. I did an install some days ago. There are two people maintaining 64-Bit Ubuntu packages. Only one did work, though. It was [this](http://apt.jenslody.de/) one.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
I think you should just bite the bullet and learn enough make, gcc, and gdb to accomplish what you need to do at the command line. If you get that taken care of, you can use whatever editor you like to write the code -- even Visual Studio's editor.
You can use Glade Interface designer (glade.gnome.org) for interface design. BOUML for UML modelling & project management You can always use eclipse or netbeans for c++ development on linux. Though I recommend Eclipse, it would automatically generate makefiles, debugging is very easy & you can configure your code repositories within the IDE.
1,635,871
I am setting up a Linux development machine ([Ubuntu](http://en.wikipedia.org/wiki/Ubuntu_(operating_system)) 9.0.x). I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below). 1. 5 years+ C++ 2. 5 years Visual Studio 3. Not much experience using GNU tools ([GCC](http://en.wikipedia.org/wiki/GNU_Compiler_Collection), [GDB](http://en.wikipedia.org/wiki/GNU_Debugger), [make](http://en.wikipedia.org/wiki/Make_(software)), etc.) 4. 6 months or so of using [Emacs](http://en.wikipedia.org/wiki/Emacs) at university (about 8 years ago!) - I don't remember anything though ;) I come from a Windows background so am more at ease with GUI than [CLI](http://en.wikipedia.org/wiki/Command-line_interface), although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux. I am particular interested in tools that will make my life easier for: 1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on. Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop? So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio for the latest Ubuntu (9.0.x) desktop OS?
2009/10/28
[ "https://Stackoverflow.com/questions/1635871", "https://Stackoverflow.com", "https://Stackoverflow.com/users/197843/" ]
Have a look at Code::Blocks. It's a nice IDE for doing C/C++ and comes with an own build-system. But be sure not to grab the version inside the official ubuntu repository but go to the CB forum and look for the latest nightly build. There are people maintaining repositories with ubuntu packages. I think CB is worth the hassle of installing the latest version. [Link to Code::Blocks Forum](http://forums.codeblocks.org/) Btw. I did an install some days ago. There are two people maintaining 64-Bit Ubuntu packages. Only one did work, though. It was [this](http://apt.jenslody.de/) one.
You can use Glade Interface designer (glade.gnome.org) for interface design. BOUML for UML modelling & project management You can always use eclipse or netbeans for c++ development on linux. Though I recommend Eclipse, it would automatically generate makefiles, debugging is very easy & you can configure your code repositories within the IDE.
36,024
I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? . Also is there anyway to pin a shortcut to the taskbar? **Edit**: I figured out why I was having problems now. If you already have a shortcut pinned to the taskbar that points to one application, you cannot pin another shortcut to the application that points to the same application (it shows an x when you drag it to the taskbar). This is why I was having problems, as I already had the same application on the taskbar and I wanted to pin a different version with different startup commands. Is there any way to do this?
2009/09/04
[ "https://superuser.com/questions/36024", "https://superuser.com", "https://superuser.com/users/1462/" ]
> > Is it possible to change a pinned icon in windows 7?" > > > To change a shortcuts icon that is pinned to the taskbar can be done indirectly... The easiest method I've found is to drag it to desktop, unpin it, modify it, re-pin it. > > I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? > > > If you have a shortcut for each of the command prompts each of them can have there own individual icon. Right Click properties, change icon, select an ico or exe file, or create an ico and hunt down it. > > Also is there anyway to pin a shortcut to the taskbar? > > > Right Click > Pin to Taskbar (from startup menu) otherwise just drag it there. Try Ctrl + Shift + RightClick to get to properties but visual changes to the icon are not updated even after reboot. I guess that it is cached somewhere. I'll let someone more knowledgeable jump in and that facet answer. Sorry, I fumbled the answer at first. Have I answered your questions; or would you like me to expand or rephrase anything.
no, you have to unpin it, make a shortcut on the desktop or something, change the icon then re-pin it.
36,024
I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? . Also is there anyway to pin a shortcut to the taskbar? **Edit**: I figured out why I was having problems now. If you already have a shortcut pinned to the taskbar that points to one application, you cannot pin another shortcut to the application that points to the same application (it shows an x when you drag it to the taskbar). This is why I was having problems, as I already had the same application on the taskbar and I wanted to pin a different version with different startup commands. Is there any way to do this?
2009/09/04
[ "https://superuser.com/questions/36024", "https://superuser.com", "https://superuser.com/users/1462/" ]
> > Is it possible to change a pinned icon in windows 7?" > > > To change a shortcuts icon that is pinned to the taskbar can be done indirectly... The easiest method I've found is to drag it to desktop, unpin it, modify it, re-pin it. > > I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? > > > If you have a shortcut for each of the command prompts each of them can have there own individual icon. Right Click properties, change icon, select an ico or exe file, or create an ico and hunt down it. > > Also is there anyway to pin a shortcut to the taskbar? > > > Right Click > Pin to Taskbar (from startup menu) otherwise just drag it there. Try Ctrl + Shift + RightClick to get to properties but visual changes to the icon are not updated even after reboot. I guess that it is cached somewhere. I'll let someone more knowledgeable jump in and that facet answer. Sorry, I fumbled the answer at first. Have I answered your questions; or would you like me to expand or rephrase anything.
Addressing your edit: You could try making a shortcut to a shortcut. Maybe make a shortcut in the app folder with your CLI arguments and make a shortcut to that?
36,024
I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? . Also is there anyway to pin a shortcut to the taskbar? **Edit**: I figured out why I was having problems now. If you already have a shortcut pinned to the taskbar that points to one application, you cannot pin another shortcut to the application that points to the same application (it shows an x when you drag it to the taskbar). This is why I was having problems, as I already had the same application on the taskbar and I wanted to pin a different version with different startup commands. Is there any way to do this?
2009/09/04
[ "https://superuser.com/questions/36024", "https://superuser.com", "https://superuser.com/users/1462/" ]
> > Is it possible to change a pinned icon in windows 7?" > > > To change a shortcuts icon that is pinned to the taskbar can be done indirectly... The easiest method I've found is to drag it to desktop, unpin it, modify it, re-pin it. > > I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? > > > If you have a shortcut for each of the command prompts each of them can have there own individual icon. Right Click properties, change icon, select an ico or exe file, or create an ico and hunt down it. > > Also is there anyway to pin a shortcut to the taskbar? > > > Right Click > Pin to Taskbar (from startup menu) otherwise just drag it there. Try Ctrl + Shift + RightClick to get to properties but visual changes to the icon are not updated even after reboot. I guess that it is cached somewhere. I'll let someone more knowledgeable jump in and that facet answer. Sorry, I fumbled the answer at first. Have I answered your questions; or would you like me to expand or rephrase anything.
How about making a batch file for each? Then Windows won't know what the batch file is and won't keep you from having the two icons pinned at the same time. For example comspec1.cmd and comspec2.cmd.
36,024
I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? . Also is there anyway to pin a shortcut to the taskbar? **Edit**: I figured out why I was having problems now. If you already have a shortcut pinned to the taskbar that points to one application, you cannot pin another shortcut to the application that points to the same application (it shows an x when you drag it to the taskbar). This is why I was having problems, as I already had the same application on the taskbar and I wanted to pin a different version with different startup commands. Is there any way to do this?
2009/09/04
[ "https://superuser.com/questions/36024", "https://superuser.com", "https://superuser.com/users/1462/" ]
How about making a batch file for each? Then Windows won't know what the batch file is and won't keep you from having the two icons pinned at the same time. For example comspec1.cmd and comspec2.cmd.
no, you have to unpin it, make a shortcut on the desktop or something, change the icon then re-pin it.
36,024
I have a couple of command prompts that start with different environment variables and a couple of applications with the generic "Application Icon", is there any way to give them different icons? . Also is there anyway to pin a shortcut to the taskbar? **Edit**: I figured out why I was having problems now. If you already have a shortcut pinned to the taskbar that points to one application, you cannot pin another shortcut to the application that points to the same application (it shows an x when you drag it to the taskbar). This is why I was having problems, as I already had the same application on the taskbar and I wanted to pin a different version with different startup commands. Is there any way to do this?
2009/09/04
[ "https://superuser.com/questions/36024", "https://superuser.com", "https://superuser.com/users/1462/" ]
How about making a batch file for each? Then Windows won't know what the batch file is and won't keep you from having the two icons pinned at the same time. For example comspec1.cmd and comspec2.cmd.
Addressing your edit: You could try making a shortcut to a shortcut. Maybe make a shortcut in the app folder with your CLI arguments and make a shortcut to that?
53,145,861
I have a GI that I created to be a Primary List menu entry for the modern menu, but I cannot add it as a menu item. It does not show up on the menu edit. The only difference I have noticed is that the existing PL inquiries are all in CompanyID 1 and mine is in CompanyID 2. Is there a special way to add it into the site map in company 1? Is that why it doesn't show on Edit menu add item?
2018/11/04
[ "https://Stackoverflow.com/questions/53145861", "https://Stackoverflow.com", "https://Stackoverflow.com/users/1203107/" ]
Have you configured the GI as an [entry point](https://help.acumatica.com/Help?ScreenId=ShowWiki&pageid=958345a7-f4df-43fd-a397-d109be7af881)? You can use S130 Data Retrieval Analysis Documentation Training Part 1, Lesson 2 "Configuring an Inquiry as the Entry Point" [![Entry Point](https://i.stack.imgur.com/0I7YN.png)](https://i.stack.imgur.com/0I7YN.png)
If you're trying to follow the PL inquiry pattern check if your screen is listed in the 'Lists as Entry Points' SM208500 screen: [![enter image description here](https://i.stack.imgur.com/C8Uxt.png)](https://i.stack.imgur.com/C8Uxt.png)
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
[Octagate's Site Timer](http://www.octagate.com/service/SiteTimer/) provides a graphical view of the load time if you want a web site, or you can get similar statistics with Chrome and Opera's developer tools. ![Octagate example result](https://i.stack.imgur.com/M0AA6.png) ![Chrome example result](https://i.stack.imgur.com/fxcap.png) ![Opera example result](https://i.stack.imgur.com/mlYj6.png)
There's a very good metric that never fails for when we tweak (or sometimes un-tweak) our highly successful website. If the pages are even 0.5 of a second slower, sales drop by up to 30%. Sounds crazy, but it's true. When I remember to enable GZip compression and minify our JS/CSS and switched to sprites our sales went up.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
Google has another tool within Google Webmaster tools. Go to your site within Webmaster Tools, click on Labs, and then Site Performance. This will show you what Google believes to be your sites overall performance and average load time. It will also list suggestions on what pages are slowing you down. The tool is relatively new and as such isn't great. Microsoft provides a tool within the SEO Toolkit that is now included in IIS7. When you do a Website Analysis of your site it will tell you how long it took to load each page.
There's a very good metric that never fails for when we tweak (or sometimes un-tweak) our highly successful website. If the pages are even 0.5 of a second slower, sales drop by up to 30%. Sounds crazy, but it's true. When I remember to enable GZip compression and minify our JS/CSS and switched to sprites our sales went up.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
AOL's [WebPageTest](http://www.webpagetest.org/)
[gtmetrix.com](http://gtmetrix.com) is similar to webpagetest.org, but another option as well.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
AOL's [WebPageTest](http://www.webpagetest.org/)
Google has another tool within Google Webmaster tools. Go to your site within Webmaster Tools, click on Labs, and then Site Performance. This will show you what Google believes to be your sites overall performance and average load time. It will also list suggestions on what pages are slowing you down. The tool is relatively new and as such isn't great. Microsoft provides a tool within the SEO Toolkit that is now included in IIS7. When you do a Website Analysis of your site it will tell you how long it took to load each page.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
Google has another tool within Google Webmaster tools. Go to your site within Webmaster Tools, click on Labs, and then Site Performance. This will show you what Google believes to be your sites overall performance and average load time. It will also list suggestions on what pages are slowing you down. The tool is relatively new and as such isn't great. Microsoft provides a tool within the SEO Toolkit that is now included in IIS7. When you do a Website Analysis of your site it will tell you how long it took to load each page.
[gtmetrix.com](http://gtmetrix.com) is similar to webpagetest.org, but another option as well.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
What I've gotten in the habit of doing is loading up firebug, which measures every file loading to the ms, and then jumping on a proxy like Tor. Then I can see in real time which files are taking too long to load in say Germany or Australia. Usually at throttled speeds not much faster than dial up. I'm sure the other serveces mentioned are great but this is a real world way to do it.
[gtmetrix.com](http://gtmetrix.com) is similar to webpagetest.org, but another option as well.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
[Zoompf](http://zoompf.com/) & MSFast/MySpace’s Performance Tracker are two other notable free web performance analysis & optimization tools
[Octagate's Site Timer](http://www.octagate.com/service/SiteTimer/) provides a graphical view of the load time if you want a web site, or you can get similar statistics with Chrome and Opera's developer tools. ![Octagate example result](https://i.stack.imgur.com/M0AA6.png) ![Chrome example result](https://i.stack.imgur.com/fxcap.png) ![Opera example result](https://i.stack.imgur.com/mlYj6.png)
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
Google has another tool within Google Webmaster tools. Go to your site within Webmaster Tools, click on Labs, and then Site Performance. This will show you what Google believes to be your sites overall performance and average load time. It will also list suggestions on what pages are slowing you down. The tool is relatively new and as such isn't great. Microsoft provides a tool within the SEO Toolkit that is now included in IIS7. When you do a Website Analysis of your site it will tell you how long it took to load each page.
[Octagate's Site Timer](http://www.octagate.com/service/SiteTimer/) provides a graphical view of the load time if you want a web site, or you can get similar statistics with Chrome and Opera's developer tools. ![Octagate example result](https://i.stack.imgur.com/M0AA6.png) ![Chrome example result](https://i.stack.imgur.com/fxcap.png) ![Opera example result](https://i.stack.imgur.com/mlYj6.png)
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
AOL's [WebPageTest](http://www.webpagetest.org/)
There's a very good metric that never fails for when we tweak (or sometimes un-tweak) our highly successful website. If the pages are even 0.5 of a second slower, sales drop by up to 30%. Sounds crazy, but it's true. When I remember to enable GZip compression and minify our JS/CSS and switched to sprites our sales went up.
135
I know of a couple tools to measure end user web site performance and I'm wondering what else is out there. The two major ones I know of are [yslow](http://developer.yahoo.com/yslow) and [Google's page speed](http://code.google.com/speed/page-speed).
2010/07/08
[ "https://webmasters.stackexchange.com/questions/135", "https://webmasters.stackexchange.com", "https://webmasters.stackexchange.com/users/69/" ]
AOL's [WebPageTest](http://www.webpagetest.org/)
What I've gotten in the habit of doing is loading up firebug, which measures every file loading to the ms, and then jumping on a proxy like Tor. Then I can see in real time which files are taking too long to load in say Germany or Australia. Usually at throttled speeds not much faster than dial up. I'm sure the other serveces mentioned are great but this is a real world way to do it.
31,341
Now when the *ICO+Shadow of Colossus Collection* is out for the PS3, I was wondering that are these games some how related to each other? Is it better to play *ICO* first or vice versa? **EDIT:** After getting an answer I searched again and found out that Wikipedia has also a small section how these games are connected to each other. [Wikipedia - Shadow of the Colossus & connections to Ico](http://en.wikipedia.org/wiki/Shadow_of_the_Colossus#Connections_to_Ico)
2011/09/30
[ "https://gaming.stackexchange.com/questions/31341", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/12832/" ]
Yes, they are. *Shadow of the Colossus* is a prequel to *ICO*, set in the same world. In addition, *Shadow of the Colossus* explains some of the story from *ICO*. So I would recommend playing *Shadow of the Colossus* before starting *ICO*.
SotC and ICO's connection as well as timelines are left up to personal interpretation. The games' creator has gone on record saying he had no idea in mind as to how they both intertwine while creating them other than the fact they both take place in the same world. Most fans believe SotC is a prequel due to the ending which reveals a baby with a "certain condition". Have a look at this (slightly spoiler laden) [bit from Wikipedia](http://en.wikipedia.org/wiki/Shadow_of_the_Colossus#Connections_to_Ico): > > Shadow of the Colossus is considered both a spiritual successor > and prequel to Ico. For several months during and after the game's > release, the game's director and lead designer, Fumito Ueda, > maintained that the game's status as a prequel was simply his personal > take on the game and not necessarily its canon nature, as he largely > intended for players to decide the specifics of the story for > themselves, but he confirmed the two do have a connection. > Moreover, the shadowy figures which appear in the Shrine of Worship > are connected to the shadows which the player must fight in Ico. > Both games feature "horned" characters for protagonists (Wander > sprouts horns at the end of the game). The Queen's Sword from Ico is > also available as a bonus unlockable item. Both games also use > unique fictional languages. > > >
31,341
Now when the *ICO+Shadow of Colossus Collection* is out for the PS3, I was wondering that are these games some how related to each other? Is it better to play *ICO* first or vice versa? **EDIT:** After getting an answer I searched again and found out that Wikipedia has also a small section how these games are connected to each other. [Wikipedia - Shadow of the Colossus & connections to Ico](http://en.wikipedia.org/wiki/Shadow_of_the_Colossus#Connections_to_Ico)
2011/09/30
[ "https://gaming.stackexchange.com/questions/31341", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/12832/" ]
Yes, they are. *Shadow of the Colossus* is a prequel to *ICO*, set in the same world. In addition, *Shadow of the Colossus* explains some of the story from *ICO*. So I would recommend playing *Shadow of the Colossus* before starting *ICO*.
The games are connected and also in the book if you consider that relevant to this explains there are many people that have had horns and by icos time they are being sacrificed so in order for there to be so many I think that ico is a few hundred years after shadow of the colossus
31,341
Now when the *ICO+Shadow of Colossus Collection* is out for the PS3, I was wondering that are these games some how related to each other? Is it better to play *ICO* first or vice versa? **EDIT:** After getting an answer I searched again and found out that Wikipedia has also a small section how these games are connected to each other. [Wikipedia - Shadow of the Colossus & connections to Ico](http://en.wikipedia.org/wiki/Shadow_of_the_Colossus#Connections_to_Ico)
2011/09/30
[ "https://gaming.stackexchange.com/questions/31341", "https://gaming.stackexchange.com", "https://gaming.stackexchange.com/users/12832/" ]
SotC and ICO's connection as well as timelines are left up to personal interpretation. The games' creator has gone on record saying he had no idea in mind as to how they both intertwine while creating them other than the fact they both take place in the same world. Most fans believe SotC is a prequel due to the ending which reveals a baby with a "certain condition". Have a look at this (slightly spoiler laden) [bit from Wikipedia](http://en.wikipedia.org/wiki/Shadow_of_the_Colossus#Connections_to_Ico): > > Shadow of the Colossus is considered both a spiritual successor > and prequel to Ico. For several months during and after the game's > release, the game's director and lead designer, Fumito Ueda, > maintained that the game's status as a prequel was simply his personal > take on the game and not necessarily its canon nature, as he largely > intended for players to decide the specifics of the story for > themselves, but he confirmed the two do have a connection. > Moreover, the shadowy figures which appear in the Shrine of Worship > are connected to the shadows which the player must fight in Ico. > Both games feature "horned" characters for protagonists (Wander > sprouts horns at the end of the game). The Queen's Sword from Ico is > also available as a bonus unlockable item. Both games also use > unique fictional languages. > > >
The games are connected and also in the book if you consider that relevant to this explains there are many people that have had horns and by icos time they are being sacrificed so in order for there to be so many I think that ico is a few hundred years after shadow of the colossus
149,464
On a computer here when first powered on the USB wired mouse is not recognised. The light under the mouse is not lit up. Other usb hub's and keyboards work fine. Disconnecting it and reconnecting it fixes the issue, even after a restart - after the pc is switched off for a length of time (for example overnight) the problem reappears. I swapped the mouse, updated the bios and installed updated intellimouse drivers, turned of power saving on the usb ports. Any ideas? edit: bubu, the following descriptioni is correct: > > let me see if i am getting your > question correctly. is it that when > your mouse is plugged in correctly, > and you boot up then it doesn't work > when your windows finish booting, even > after waiting 3-5 minutes? and then, > by that time, if you unplug the mouse > and plug it in again then it works. am > i getting it correctly? – bubu 4 hours > ago > > >
2010/06/06
[ "https://superuser.com/questions/149464", "https://superuser.com", "https://superuser.com/users/568/" ]
Install Windows on the first SSD Install Ubuntu on the second. This will automatically detect Windows 7 and set the boot order correctly. Then boot into Windows 7. Open Run and type diskmgmt.msc. This will open the disk management console. In the bottom section of the console, select one of the empty data disks and right click. Then select "Add A New Mirrored Volume" and select the two data disks. Then format the new volume and you're done.
if you plan to do the system install on win7 and ubuntu, you should install win7 first and ubuntu later, as suggested by MarkM above. then, for the matter, depending on whether you plan on using software or hardware raid, you should format the volume *after* ubuntu & windows 7 installed (to minimize the fuss associated with multiple disk sets while installing ubuntu) and adjust the set accordingly in windows (e.g. install the RAID card/raid set driver, etc.), and in linux. you need to note too, that the current kernel driver for ntfs is limited in terms of write support although it reads almost perfectly. check out ntfsmount ( <http://www.linux-ntfs.org/> ) if necessary.
149,464
On a computer here when first powered on the USB wired mouse is not recognised. The light under the mouse is not lit up. Other usb hub's and keyboards work fine. Disconnecting it and reconnecting it fixes the issue, even after a restart - after the pc is switched off for a length of time (for example overnight) the problem reappears. I swapped the mouse, updated the bios and installed updated intellimouse drivers, turned of power saving on the usb ports. Any ideas? edit: bubu, the following descriptioni is correct: > > let me see if i am getting your > question correctly. is it that when > your mouse is plugged in correctly, > and you boot up then it doesn't work > when your windows finish booting, even > after waiting 3-5 minutes? and then, > by that time, if you unplug the mouse > and plug it in again then it works. am > i getting it correctly? – bubu 4 hours > ago > > >
2010/06/06
[ "https://superuser.com/questions/149464", "https://superuser.com", "https://superuser.com/users/568/" ]
I recall reading somewhere that software raid set up in Windows is not easily readable/mountable from Ubuntu and vice-versa (correct me if I'm wrong), you may wish to research that first just in case. I have a similar set up to what you're after though (I have Win7 on SSD, 2x 500gb in RAID0 for storage, and 1x 500gb hdd for important data with a partition for ubuntu) My steps were: 1. Setup the RAID via the BIOS (I used on-board Intel RAID controller as it seemed the easiest option). 2. Install Windows 7 onto SSD. 3. Partition the 500gb drive from Disk Management in Windows. 4. Reboot with ubuntu disc and install onto the partition. 5. Ubuntu installer should auto detect the Win7 install and setup the boot loader for you automatically. Only problem with my setup is that since onboard RAID controller is "fake" RAID, I need to do a few more steps in Ubuntu to get the RAID0 volume to show up properly. It shows up fine in Win7 though. Hope that helps in some way :)
if you plan to do the system install on win7 and ubuntu, you should install win7 first and ubuntu later, as suggested by MarkM above. then, for the matter, depending on whether you plan on using software or hardware raid, you should format the volume *after* ubuntu & windows 7 installed (to minimize the fuss associated with multiple disk sets while installing ubuntu) and adjust the set accordingly in windows (e.g. install the RAID card/raid set driver, etc.), and in linux. you need to note too, that the current kernel driver for ntfs is limited in terms of write support although it reads almost perfectly. check out ntfsmount ( <http://www.linux-ntfs.org/> ) if necessary.
98,970
Ok, I say *PC**s***... but I actually mean *PC*. I am running a 1-player D&D 5e game for a friend (let's call her Jane), as a way of introducing them to the game. It was only meant to be a "non-canon", one-time-adventure that was supposed to peter out when the actual game started, (we are both PCs in the actual game, that is run by a different DM, with additional players). However, Jane spoke with the DM, and they decided that my game would be part of the characters' backstories. I was fine with this at first, and I have a storyline to follow, that will eventually end in a way that doesn't affect the actual story of the main game. For reference, the PC's name is "Cass". So the story arc I made was: * Cass' father (an "evil" king, from her backstory) wants to bring her back home after she ran away. * Enter Big Bad Guy - objective: Bring Cass home. The party has a run-in, and only barely escape with their lives. * Now the party need to turn the tables, find the Big Bad Guy before they find the party. * Kill the Big Bad Guy. Pretty simple, just to keep things short. However, Jane has decided to develop a love interest between the PC's (which I decided to entertain at first), after my PC saved hers, but it has now gotten out of hand, so much so that she has completely abandoned the storyline, to focus purely on the relationship. It has arrived at the point where I no longer want to run the game, because it has turned into some kind of weird third-person sexting adventure more than anything. Yes, I do have an interest in Jane, but I don't want to bring that into the game as well. The game is becoming a hassle, because I don't want this to be what it has become, and I'm not sure how I can bring the focus back to the storyline. I want to finish the game, and get back to the *actual* game that is being run for the larger group. I have spoken to her about this issue more than once, and she does agree that it is taking away from the story development. I have then tried to continue the plot, but every time I do, she always brings it back to the love interest. Every time I have spoken to her about it, she has said that she agrees that the story is not developing, and she sounds like she's sincere about trying to restrain herself, but I have not seen any change in that direction. So I really don't feel she has any real issue with it. (We do have something going on the outside the game romantically, so there's no need for it during the game that I can see.) So my only real option seems to be to alter the story in some way to change her focus. How can I get this game back on track? What kind of simple plot hook, twist or in-game device can I introduce to bring Jane's focus back to the story?
2017/04/27
[ "https://rpg.stackexchange.com/questions/98970", "https://rpg.stackexchange.com", "https://rpg.stackexchange.com/users/12193/" ]
Do not introduce a twist. Just progress the plot ================================================ Your story structure is based on a villain hunting down the players. The benefit of having a villain is that they are people with dynamic plans. They will not wait until the players do something to thwart them, but they will carry out their own plans in the absence of the players. So all you need to do is bring the villain's plan to fruition in a manner that will make it impossible to have her bring the story focus back to the relationship. ### Present a scene that challenges *her* If the villain's plan was to abduct her, then if he were to come in and take Cass away, separating her from the party, she *must* respond. It becomes impossible for her to steer the story back into romance. This is a little "railroad-y," but the fact is, if you find the relationship between Cass and your PC to be the problem, then you take the problem away by removing one of the people involved in that relationship. But if you really want a twist... ================================= ### Kill your PC (temporarily) In the villain's attempts to find and abduct Cass, maybe he also kills your PC while doing it. This again removes your PC. Now you can set up a bridge quest where she can find a scroll/potion of Raise Dead, which you can tie back into the main narrative. She must now pursue the quest or else lose her love. (In the event that she fails this quest, you must also have a plan for reviving your PC. Write it in a way that it does not seem like Deus Ex Machina.) Remember: as the DM, you must understand the motivations of your players so you can use it to your advantage in the story. Her motivation is her relationship with your PC, so use that as a plot hook. ### Introduce an alternative love interest for *her* Once you have your PC out of the picture, introduce an NPC who does not appear in the main game, who can then take on the shoes of the love interest. If she goes with the plot hook, then you have successfully written your PC out of this game while simultaneously removing the love aspect from the larger game, where both of you play. It also gives you an NPC whose fate you have much more control over, because this one doesn't have plot armor, unlike Cass and your PC. If she doesn't go with the plot hook, then you have a fantastic opportunity for a great story. Have the NPC follow her around, helping her selflessly when she needs it. Meanwhile, she is rejecting his advances in true "friendzone" fashion. Play on the emotions of love and rejection while using the NPC and villain to advance the plot you have designed. Talk to her with your real feelings (of the non-romantic kind) ============================================================== Let her know that you're finding the third-person sexting weird and uncomfortable. As the DM, you need to be on the same page as she is, and she needs to be on the same page as you are. While she seems sincere that she thinks she is hampering the main story, she doesn't look like she thinks it's a problem. And indeed, why is it a problem? She's still having fun. Meanwhile, you have not told her that it is not fun for you when she veers away from the main story. Perhaps you've put hours of effort into preparing an adventure for her, and not going down that path feels bad for you since it makes you feel like you wasted your efforts. Let her know this with as much gentleness as you can. Fade to black when it comes to scenes of that nature. When you sense that the scene is now moving to something like *that*, narrate over it immediately and go to the next day. This might seem like you're pulling the rug from under her, but... Does she really want to play the game you want to play? ======================================================= Consider that the two of you may just be out of sync. Maybe she does not want to play the game you want to play, and vice versa. If there is no point of compatibility between your play styles in D&D, I recommend you stop the game altogether. Continuing to host a game you do not enjoy will only breed dissatisfaction and other negative feelings between the DM and the players, and it might leak out into your real world relationships. So yes, while it might sting when you drop the game, it only hurts as much as pulling a band-aid. It might just be the best course of action for you in the long run.
Precis ------ The issue seems to be that you're playing two different games, or desire two different results from the game. You're playing 'cops and robbers' and she appears to be playing 'house.' (*Saying* that might be a *bit* impolitic, though. Just a touch (I recommend that you *don't*, in fact, say this or any permutation thereof.)) Additionally, if she's not new to role playing games in general, then she may have 'bad habits' from other games she's played. In many Computer Role Playing Games, for example, there can be a few 'love interest' side-plays or quest-lines (Neverwinter Nights (1 and 2), Knights of the Old Republic (1 and 2), Skyrim, Mass Effect (1, 2, and 3)...that's a lot of Bioware there). Perhaps those color her view. A Fix ----- Get your PC out of the picture. I'd strongly suggest capture; the Evil King might know, or suspect, the attachment. The benefit of this capture to your introductory game has at least two forks that I can see, perhaps there are more. First, it gets your PC out of the picture; both you and she can then concentrate on the story you want without distractions. Second, her character has in-game motivation to go *do the quest*. This feels much less 'railroad-y' to me than forcing direct confrontations or having *her* character captured; it doesn't remove her agency. Perhaps there was some meeting with a double dealing NPC who was supposed to capture you both, but only she manages to escape. Or perhaps you were separated trying to escape a squad of troops, and were to meet up, but you don't show. She might not even know how your character was captured initially and might have to use 'social' or investigatory skills in game. This solution provides quite a few possibilities, and you can be released later if it becomes canon in the main game somehow, and she hasn't managed to effect your escape. Good luck.