Skip to main content

Block Spotify Ads


Spotify is a digital music service that gives you access to millions of songs without having to pay a penny. Off couse you can pay so you don't have to listen to those ads anymore, but there is a free way to block Spotify ads. The best ad blocker at the moment is Blockify that mutes Spotify whenever it detects an audio ad. When the ad finished playing it will unmute Spotify and play your tracks. Blockify also adds customizable hotkeys to Spotify, so you can skip tracks, play, pause, shuffle, and change the volume with keyboard shortcuts.
Features:
  • Mutes Spotify whenever it detects an audio ad.
  • Play your own MP3s during adverts.
  • Control Spotify via keyboard hotkeys.
  • Easy to use, totally portable.
  • Unlike every other advert blocker, it doesn't rely on a list!

Download Blockify

Comments

Popular posts from this blog

ASP.NET MVC 4 - ControllerFactory And StructureMap

StructureMap is an IoC container that we can use to inject implementations into the client. To do this in ASP.NET MVC we will use the constructor of the controller. Create a new ASP.NET MVC 4 project and install StructureMap via NuGet. When the package is installed a reference to StructureMap is automatically created. Create a class named  BootStrapper  inside the root of the MVC project with the following code listing: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 using StructureMap; using StructureMap.Configuration.DSL; using Mvc4ControllerFactoryAndStructureMap.Services; namespace Mvc4ControllerFactoryAndStructureMap {      public class BootStrapper      {          public static void ConfigureDependencies()          {       ...

Java - Varargs

Welcome to Java and varargs (short for variable arguments). In a situation where it is needed to pass in an variable amount of arguments to a method, varargs is a good answer. Some portions of this article are the same as this one: C# params. This is because they are both written by me and cover very similair topics. The code in both examples has the same idea. This is done to create a consistency for both articles. With that in mind lets continue. Before we get to the code there are a couple things to keep in mind. The varargs parameter needs to be the last in line; Only one vararg parameter is allowed.  The basic syntax is as follows: ? 1 public void methodName(parameterType... parameterName){} Notice the three dots behind parameterType. This is to tell the compiler that you want to use variable arguments. So what does the compiler in the background? It gathers all of the values and puts them into an array. The type of params can be anything...