Small purchases that improved your life

ViShawn

Superstar
Supporter
Joined
Aug 26, 2015
Messages
14,314
Reputation
5,261
Daps
47,669
Handheld Garment Steamer. I iron every now and then, but my clothes are mostly smart casual so I don't need to iron AS much. Still I need to make sure they're crisp.

This is a great purchase to get IMO to bump your clothes.

 

Skooby

Alone In My Zone
Supporter
Joined
Sep 30, 2012
Messages
25,206
Reputation
10,262
Daps
59,761
Reppin
The Cosmos
Handheld Garment Steamer. I iron every now and then, but my clothes are mostly smart casual so I don't need to iron AS much. Still I need to make sure they're crisp.

This is a great purchase to get IMO to bump your clothes.


For some reason I can never see Amazon links on this site unless it's in the code brackets. Is this what you're referring to:

Code:
https://www.amazon.com/Conair-Handheld-Garment-Worldwide-ExtremeSteam/dp/B0BLHV6DTS
 

ViShawn

Superstar
Supporter
Joined
Aug 26, 2015
Messages
14,314
Reputation
5,261
Daps
47,669
For some reason I can never see Amazon links on this site unless it's in the code brackets. Is this what you're referring to:

Code:
https://www.amazon.com/Conair-Handheld-Garment-Worldwide-ExtremeSteam/dp/B0BLHV6DTS
Yep! That's it. This is the portable version and I have it when I travel. They have a home version but I use this one for home and travel
 

InterestedNow

Rookie
Joined
Aug 16, 2013
Messages
407
Reputation
50
Daps
460
Can you guys recommend a foodsaver-type product that you've actually used and that you can use for when one of your favorite grocery items is on sale and you want to buy in bulk?
 

bnew

Veteran
Joined
Nov 1, 2015
Messages
55,654
Reputation
8,224
Daps
157,153
For some reason I can never see Amazon links on this site unless it's in the code brackets. Is this what you're referring to:

Code:
https://www.amazon.com/Conair-Handheld-Garment-Worldwide-ExtremeSteam/dp/B0BLHV6DTS

check your ad blocker or run this bookmarklet in the page to convert all amazon embeds to links

Vuf8PAa.png


Code:
javascript:(function(){
  var links = document.querySelectorAll('span[data-s9e-mediaembed="amazon"]');
  links.forEach(function(link){
    var iframe = link.querySelector('span iframe');
    if (iframe) {
      var asin = iframe.src.match(/asins=([^&]+)/)[1];
      var newLink = document.createElement('a');
      newLink.href = 'https://www.amazon.com/dp/' + asin;
      newLink.textContent = 'https://www.amazon.com/dp/' + asin;
      newLink.style.textDecoration = 'underline';
      link.parentNode.replaceChild(newLink, link);
    }
  });
})();


or

Here is the userscript version of the code:
Code:
// ==UserScript==
// @name         Amazon Link Converter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Convert Amazon media embeds to direct links
// @author       You
// @match        https://thecoli.com/*
// @match        http://www.thecoli.com/*
// @grant        none
// ==/UserScript==

(function() {
  var links = document.querySelectorAll('span[data-s9e-mediaembed="amazon"]');
  links.forEach(function(link) {
    var iframe = link.querySelector('span iframe');
    if (iframe) {
      var asin = iframe.src.match(/asins=([^&]+)/)[1];
      var newLink = document.createElement('a');
      newLink.href = 'https://www.amazon.com/dp/' + asin;
      newLink.textContent = 'https://www.amazon.com/dp/' + asin;
      newLink.style.textDecoration = 'underline';
      link.parentNode.replaceChild(newLink, link);
    }
  });
})();

This userscript uses the Tampermonkey syntax, which is a popular userscript manager.

Here's how to use it:

1. Install Tampermonkey (if you haven't already) from the Chrome Web Store or Firefox Add-ons.
2. Create a new userscript by clicking on the Tampermonkey icon in the browser toolbar and selecting "Add a new script".
3. Paste the above code into the editor.
4. Save the script by clicking on the "Save" button.
5. Go to Sports, Hip Hop & Piff - The Coli or www.thecoli.com and the script should automatically run, converting the Amazon media embeds to direct links.

Note: You can adjust the `@match` directive to include other domains or URLs if you want the script to run on other sites as well.
 
Last edited:

Cynic

Superstar
Joined
Jan 7, 2013
Messages
16,151
Reputation
2,269
Daps
34,914
Reppin
NULL
check your ad blocker or run this bookmarklet in the page to convert all amazon embeds to links

Vuf8PAa.png


Code:
javascript:(function(){
  var links = document.querySelectorAll('span[data-s9e-mediaembed="amazon"]');
  links.forEach(function(link){
    var iframe = link.querySelector('span iframe');
    if (iframe) {
      var asin = iframe.src.match(/asins=([^&]+)/)[1];
      var newLink = document.createElement('a');
      newLink.href = 'https://www.amazon.com/dp/' + asin;
      newLink.textContent = 'https://www.amazon.com/dp/' + asin;
      newLink.style.textDecoration = 'underline';
      link.parentNode.replaceChild(newLink, link);
    }
  });
})();


or

Here is the userscript version of the code:
Code:
// ==UserScript==
// @name         Amazon Link Converter
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Convert Amazon media embeds to direct links
// @author       You
// @match        https://thecoli.com/*
// @match        http://www.thecoli.com/*
// @grant        none
// ==/UserScript==

(function() {
  var links = document.querySelectorAll('span[data-s9e-mediaembed="amazon"]');
  links.forEach(function(link) {
    var iframe = link.querySelector('span iframe');
    if (iframe) {
      var asin = iframe.src.match(/asins=([^&]+)/)[1];
      var newLink = document.createElement('a');
      newLink.href = 'https://www.amazon.com/dp/' + asin;
      newLink.textContent = 'https://www.amazon.com/dp/' + asin;
      newLink.style.textDecoration = 'underline';
      link.parentNode.replaceChild(newLink, link);
    }
  });
})();

This userscript uses the Tampermonkey syntax, which is a popular userscript manager.

Here's how to use it:

1. Install Tampermonkey (if you haven't already) from the Chrome Web Store or Firefox Add-ons.
2. Create a new userscript by clicking on the Tampermonkey icon in the browser toolbar and selecting "Add a new script".
3. Paste the above code into the editor.
4. Save the script by clicking on the "Save" button.
5. Go to Sports, Hip Hop & Piff - The Coli or www.thecoli.com and the script should automatically run, converting the Amazon media embeds to direct links.

Note: You can adjust the `@match` directive to include other domains or URLs if you want the script to run on other sites as well.

fukk javascript breh...
 
Top