pepsi Posted February 5, 2011 Posted February 5, 2011 (edited) that a lot of people can't spell "science" correctly, and you get get more survey results by just searching for "computer"? (this may result in some computer engineering noise) it doesnt help that the survey autocomplete suggests "Computer Scicence" as the first result! Edited February 5, 2011 by pepsi
newms Posted February 5, 2011 Posted February 5, 2011 Yeah I noticed that What happens is that when the first person entered a misspelling, gets saved into the database and whenever someone enters their result, it comes up as an option as well as the correct spelling, and some people choose the wrong one.
Azazel Posted February 5, 2011 Posted February 5, 2011 (edited) Yeah, sort of annoying. The trick I use to get around such spelling mishaps is to search on "[school] computer" (e.g. "berkeley computer"). This returns both the science and scicence results. Sometimes a few for ECE as well, but that's ok. Edited February 5, 2011 by Azazel
edvolkov Posted February 5, 2011 Posted February 5, 2011 Does anybody know how to filter out masters results?
OH YEAH Posted February 6, 2011 Posted February 6, 2011 Does anybody know how to filter out masters results? I suggested this, but all it got was a snarky comment.
symbolic Posted February 9, 2011 Posted February 9, 2011 I suggested this, but all it got was a snarky comment. This really should change; it's less helpful to group MS and PhD together, when the admissions and processes for each are very different. (I was annoyed by this the first time I visited this site. Not to sound like a **** but I too couldn't care less about MS admissions/results.) Anyone have ideas on how to go about changing this?
Azazel Posted February 9, 2011 Posted February 9, 2011 This really should change; it's less helpful to group MS and PhD together, when the admissions and processes for each are very different. (I was annoyed by this the first time I visited this site. Not to sound like a **** but I too couldn't care less about MS admissions/results.) Anyone have ideas on how to go about changing this? Well from the browser side of things, it shouldn't be too hard to write a javascript bookmarklet that removes all the table rows with "MS" when clicked. Alternatively, the owners of this site could add better support for regular expressions.
edvolkov Posted February 12, 2011 Posted February 12, 2011 I've wrote greasemonkey script that removes masters entries from results. // ==UserScript== // @name thegradcafe remove masters script // @description removes all masters entries on results page // @include http://thegradcafe.com/* // @include http://www.thegradcafe.com/* // ==/UserScript== var tmp = document.getElementsByTagName('tr'); for (i=0;i<tmp.length;i++){ if(!(tmp.innerHTML.match(/<td class="instcol">[^<]*<\/td><td>[^P]*PhD[^<]*<\/td><td>[^<]*<\/td><td>[^<]*<\/td><td class="datecol">[^<]*<\/td>/))){ tmp.parentNode.removeChild(tmp); i = i - 1; } pepsi 1
pepsi Posted February 12, 2011 Author Posted February 12, 2011 I've wrote greasemonkey script that removes masters entries from results. // ==UserScript== // @name thegradcafe remove masters script // @description removes all masters entries on results page // @include http://thegradcafe.com/* // @include http://www.thegradcafe.com/* // ==/UserScript== var tmp = document.getElementsByTagName('tr'); for (i=0;i<tmp.length;i++){ if(!(tmp.innerHTML.match(/<td class="instcol">[^<]*<\/td><td>[^P]*PhD[^<]*<\/td><td>[^<]*<\/td><td>[^<]*<\/td><td class="datecol">[^<]*<\/td>/))){ tmp.parentNode.removeChild(tmp); i = i - 1; } cool script. had to make some changes for it to work on chrome (plus i wanted to remove the phd entries instead of ms ), but works nicely now
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now