Optional Evaluation Questions

  1. What is one thing you would most like to change to improve this class? This could be something about the content, structure, instruction, environment, or anything else. 
  2. Now that you’re near the end, what advice would you give to a student who is considering taking this course in the future?

Ideas for Project 4

The NYT without any Trump text

Cosmo without any pictures in the Love section

Wikipedia with no text

Facebook with no pictures and names

NRA page with no text

NRA page with texts replace with “Our thoughts and prayers”

Wikipedia but all text is Shrek the Third script

Twitter but all text regarding Kardashian/Jenner and Trump is gone

Tampermonkey Code


// ==UserScript==
// @name         IWSMT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Maddie
// @match        https://iwastesomuchtime.com/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
    var j = jQuery.noConflict();
    j('.object_container').fadeOut(5000);
    j('.action-container').fadeOut(10000);
    j('.cross_promote').fadeOut(10000);
    j('.cross_object_tall').fadeOut(10000);
    j('.recent_comments_box').fadeOut(10000);
})();

Project 4: 8 Ideas

0 rhetorical google – no buttons to submit anything, go anywhere
1 no hyperlinks (ideally just broken not deleted text)
2 gmail with no send button
3 sponsored content only (deleting everything else, on facebook, google, whatever)
4 hide everything but certain words, phrases, is that possible
5 gmail with no subject or preview text
6 erase all instances of fascists
7 youtube no album art, etc.

Project 4 Ideas

  1. Remove YouTube comments (comments in general)
  2. Remove song names, bands, etc… from music websites like Pandora
  3. Remove ads
  4. Remove notifications from tumblr (when people like / reblog your posts)
  5. Remove self from tumblr feed
  6. Remove prices (amazon, ebay- maybe remove bids from ebay?)
  7. Remove names / subjects from email
  8. Remove top stories from google

Code

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://en.wikipedia.org/wiki/Gordon_Ramsay*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
var j = jQuery.noConflict();
   j('a').css('border', '3px solid orange');
   j('a:contains("Ramsay")').append(' thinks youre fucking shit but ');
   j('a.mw-wiki-logo').hide();
   j('p').text('PISS OF MY WIKI PAGE YOU FUCKING DONKEY');

setInterval(fadeOutIn, 3000);

setTimeout(fadeOutIn, 2000);

function fadeOutIn() {
 j('img').fadeOut(1000, fadeBackIn);
}
function fadeBackIn() {
  j('img').fadeIn();
}

})();

jQuery Exercise Feb 7

1. At the bottom of the NY Times homepage, write one line of Javascript/jQuery to set the background color of the “ARTS” heading in light blue (as illustrated below).



2. On the Wikipedia page for jQuery, write one line of Javascript/jQuery that highlights both the header and the “edit” text in their own green borders (as illustrated below).



3. On this Amazon page, use a single line of Javascript/jQuery to highlight the bold headings in the tech specs table (like this).

When you have it, post your code to your blog for all three exercises. Follow these instructions on how to post the code.

jQuery + CSS 2

i wrote one line to replace the background image of an ad with the cutest cat this side of the vermillion and reformat the size and such, and another to get rid of all the text (set opacity to zero.. don’t know if there’s a better way through jquery)