User Controls
AdBlock not working on Youtube?
-
2024-06-10 at 5:05 PM UTC
-
2024-06-10 at 5:07 PM UTCI love this forum
-
2024-06-10 at 5:08 PM UTC14$ is a significant amount for me
-
2024-06-10 at 6:59 PM UTC
-
2024-06-11 at 4:57 AM UTC
Originally posted by Jiggaboo_Johnson That assumes it keeps working…which this thread kind of underlines.
Its working, just keep getting the odd blips here and there. Its just the Youtube Vs Adblock battle, most of the time its barely half a day maybe once or twice a week. And this is only been happening for a couple of months. And as this fred has revealed there are other options that would take a few minutes to install, if it continues then I will.
Tell us how much do you pay in subscriptions every month in total?
How much you think you'll be paying per month in 5 years?
Now multiply that by 60
. -
2024-06-11 at 5:31 PM UTCDaddy money bags Jiggaboo making fun of all us poorfags. Nah I could pay but that's not any fun, like when I was doing the sat card thing years ago. I got way more pleasure helping poor folks watch that $50 PPV, fuck I even rarely watched TV.
-
2024-06-11 at 6:13 PM UTClearn to code your own, it's not hard
-
2024-06-11 at 7:08 PM UTC
-
2024-06-11 at 7:16 PM UTC
Originally posted by Narc Prove it then
Seeing as this fred's turned into a 'hey everyone look at me'
.
program AdBlocker;
uses
SysUtils, Sockets;
const
BLOCKED_IPS: array[0..2] of string = (
'192.168.1.10',
'10.0.0.5',
'172.16.0.3'
);
var
sock: Longint;
addr: sockaddr_in;
recvBuffer: array[0..1023] of byte;
bytesRead: ssize_t;
ipString: string;
i: Integer;
function IsBlockedIP(ip: string): Boolean;
begin
for i := Low(BLOCKED_IPS) to High(BLOCKED_IPS) do
begin
if ip = BLOCKED_IPS[i] then
begin
Result := True;
Exit;
end;
end;
Result := False;
end;
begin
WriteLn('=====================================');
WriteLn(' ____ __ ____ ___ ');
WriteLn(' / /\ \ / / / __ \|__ \ ');
WriteLn(' / / \ \/ / | | | | ) | ');
WriteLn(' / / \ / | | | | / / ');
WriteLn(' / / / / _ | |__| |/ /_ ');
WriteLn('/_/ /_/ (_) \____/____(_) ');
WriteLn(' ');
WriteLn('=====================================');
WriteLn(' Hardware-based AdBlocker ');
WriteLn('=====================================');
sock := fpSocket(AF_INET, SOCK_RAW, IPPROTO_TCP);
if sock < 0 then
begin
WriteLn('Error creating socket');
Halt(1);
end;
while True do
begin
bytesRead := fpRecv(sock, @recvBuffer, SizeOf(recvBuffer), 0);
if bytesRead < 0 then
begin
WriteLn('Error receiving data');
Halt(1);
end;
addr.sin_addr := PInAddr(@recvBuffer[16])^;
ipString := NetAddrToStr(addr.sin_addr);
if IsBlockedIP(ipString) then
begin
WriteLn('Blocked connection attempt to: ', ipString);
end
else
begin
WriteLn('Allowed connection to: ', ipString);
end;
end;
fpClose(sock);
end. -
2024-06-11 at 8:35 PM UTC
Originally posted by the man who put it in my hood
program AdBlocker;
uses
SysUtils, Sockets;
const
BLOCKED_IPS: array[0..2] of string = (
'192.168.1.10',
'10.0.0.5',
'172.16.0.3'
);
var
sock: Longint;
addr: sockaddr_in;
recvBuffer: array[0..1023] of byte;
bytesRead: ssize_t;
ipString: string;
i: Integer;
function IsBlockedIP(ip: string): Boolean;
begin
for i := Low(BLOCKED_IPS) to High(BLOCKED_IPS) do
begin
if ip = BLOCKED_IPS[i] then
begin
Result := True;
Exit;
end;
end;
Result := False;
end;
begin
WriteLn('=====================================');
WriteLn(' ____ __ ____ ___ ');
WriteLn(' / /\ \ / / / __ \|__ \ ');
WriteLn(' / / \ \/ / | | | | ) | ');
WriteLn(' / / \ / | | | | / / ');
WriteLn(' / / / / _ | |__| |/ /_ ');
WriteLn('/_/ /_/ (_) \____/____(_) ');
WriteLn(' ');
WriteLn('=====================================');
WriteLn(' Hardware-based AdBlocker ');
WriteLn('=====================================');
sock := fpSocket(AF_INET, SOCK_RAW, IPPROTO_TCP);
if sock < 0 then
begin
WriteLn('Error creating socket');
Halt(1);
end;
while True do
begin
bytesRead := fpRecv(sock, @recvBuffer, SizeOf(recvBuffer), 0);
if bytesRead < 0 then
begin
WriteLn('Error receiving data');
Halt(1);
end;
addr.sin_addr := PInAddr(@recvBuffer[16])^;
ipString := NetAddrToStr(addr.sin_addr);
if IsBlockedIP(ipString) then
begin
WriteLn('Blocked connection attempt to: ', ipString);
end
else
begin
WriteLn('Allowed connection to: ', ipString);
end;
end;
fpClose(sock);
end.
That's just a script to fix an adblocker from giving a false positive you mug
. -
2024-06-12 at 11:40 AM UTCHey Narc uBlock Origin also works on TUBI if you watch anything on there, haven't tried it on other free movie services.
-
2024-06-12 at 11:58 AM UTC
-
2024-06-12 at 12:08 PM UTCit's actually the real script I use to enhancement certain traffic on my network. It's a hardware specific ad blocker that only works on my computer. These are trivial to develop if you understand how your hardware interacts with the internet. Now if you'll excuse me I have a mothers board to fry
-
2024-06-12 at 12:09 PM UTCI've literally never seen FreePascal code before. What the hell does it run on?
-
2024-06-12 at 12:16 PM UTC
Originally posted by the man who put it in my hood it's actually the real script I use to enhancement certain traffic on my network. It's a hardware specific ad blocker that only works on my computer. These are trivial to develop if you understand how your hardware interacts with the internet. Now if you'll excuse me I have a mothers board to fry
sockets aren't hardware level nigger -
2024-06-12 at 12:20 PM UTC
-
2024-06-12 at 12:25 PM UTCDon't make me bring bears into this thread.
-
2024-06-12 at 12:28 PM UTCFor the second time I am saying this, the problem fixed itself. The videos that were not displaying weirdly enough only related to my math class.
I took the exam and got an 85% (34/40) last Friday. So I successfully taught myself the math course well enough to get a 92% and an 85% on the exams and get full credit so now I'm done with it.
Now I go on other videos and they don't display ads anymore. Glad I didn't take any of the advice in this thread relying only on my laziness and clicking "SKIP VIDEO" one at a time.
So yeah, IDK why the videos weren't like Trademark Copied Underwriters Limited videos they were just generic math teachers explaining basic concepts. Even my accounting videos (Which are much more proprietary/produced by A College Professor) ain't fucking me with ads. Just the math ones, that's mathed up. -
2024-06-12 at 12:32 PM UTC
-
2024-06-12 at 12:33 PM UTC> yuge beest