Skip to main content

Mendisable Anti Addblock di Samehadaku.net



suka anime? pasti pernah download di situs samehadaku.net iya kan? :D :D , nah situs ini memiliki banyak anime, salah satunya adalah anime kesukaan saya yaitu onepiece. waktu saya mau download anime di situs ini, eh tiba2 ada notif "matikan addblock", saya mikir kq hebat banget ini halaman bisa tau kalo aku make addblock :o . dan akhirnya saya nyoba footprinting terhadap website ini, ternyata website ini adalah blog yang menggunakan script jquery untuk memberikan notifikasi "matikan addblock", segera setelah itu saya coba membuat script untuk menghilangkan notif tersebut, script ini saya kasih nama "anti anti addblock samehadaku.net " :D :D :D hahahaha langsung aja check langkah2nya :

1. buka halaman samehadaku.net yang mau di download animenya
2. apabila keluar notifikasi "hilangkan addblock", klik kanan "inspect element" 



3. buka tab console



4. ketikkan script berikut di console
jQuery(document).ready(function( $ ) { $("b").hide(5000)});
 NB : Text berwarna merah bisa di hilangkan kalau pengen cepet.

5. enter



daaan voilaa. :D

NB: tutorial ini hanya di gunakan untuk pendidikan semata

Popular posts from this blog

Automatic API Documentation Swagger in Golang #GolangDev

pixabay.com In this article, I'll explain how to generate an API blueprint instantly using SwagGo in Golang. API blueprint is a document that contains a bunch of API endpoints, its slickly same as documentation but less description, it's allow another programmer to read and see all the available endpoint and try it out with sandbox feature. Swagger is one of the most used API blueprints right now, it's available in free but limited usage. if you wanna use the free credit, you need to understand YAML notation, you can read the example notation in swagger official documentation. but again, it's really hard and takes an expensive time to arranges all the notation to achieve a good API blueprint. fortunately, there are tools in Golang that allow us to generate the YAML notation and automatically generate the blueprint page with only using markup notation, and it's FREE unlimited for self-host, insane right? SwagGo tools are available here , the documentation is very cl...

Playing with Hooks in Gorm #GolangDev

Pixabay Hello everyone, I would like to share some tricks in gorm, the Idea of this tricks is to execute a command or code statement in the middle of an ORM operation, if you ever know about trigger in the query language, then hooks is just kinda like that. Hooks could execute statement in some events such as: beforeCreate, beforeUpdate, afterCreate,  and afterUpdate . those event is similar as a trigger,  when the trigger is executed in DBMS layer, hooks are executed in the application layer. In my real case, my current company has different convention of naming database column, so when I try to implement ORM, a lot of columns such as created_at, updated_at and deleted_at can't be generated automatically. also if you have a custom UUID you could pass the value UUID generator into hooks before the insert is executed. for more detail let's jump into code : # Explanation Above code containing model struct, and several methods from gorm to serve model, TableName method used to d...

Laravel Tips : Membuat Model, Migration dan Controller dengan Sekali Jalan

  php artisan adalah generator laravel yang berfungsi untuk membuat file kodingan dengan mudah, seperti membuat controller, model, seeder, migration dan masih banyak lagi. artisan hanya bisa di lakukan di dalam lingkungan console, seperti cmd dan terminal. berikut akan saya tunjukan cara membuat controller, model, migration menggunakan php artisan. # membuat controller ketikkan perintah di bawah ini php artisan make:controller BlogController # membuat model ketikkan perintah di bawah ini php artisan make:model Blog # membuat migration ketikkan perintah di bawah ini php artisan make:migration blog # membuat seeder ketikkan perintah di bawah ini php artisan make:seeder BlogSeeder # membuat migration, controller, dan model sekaligus ketikkan perintah di bawah ini php artisan make:model -crm Blog perintah di atas akan mengenerate controller dengan nama BlogController dengan keadaan Resource method tertulis, m...