Skip to content
View scr2em's full-sized avatar
  • Egypt
Block or Report

Block or report scr2em

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
scr2em/README.md

Hey there!

I'm Mohamed!

Programming reminds me of a quote by Drew Houston

"It’s like harpooning a whale. The good news is, you’ve harpooned a whale. And the bad news is, you’ve harpooned a whale!"

except that he was talking about blitzscaling

Anyone can learn progarmming, but can they cope up with new technologies or make them ? benefit their community ? or make people's lives easier ? those are the real questions. 👀

Find me in

LinkedIn DEV.to

Skills

HTML5 CSS3 Sass JavaScript Git React Next Angular NodejsBootstrap

🏘️ Available for Remote Freelance projects.

💬 Ask me anything ...

Pinned

  1. How to remove all liked videos from ... How to remove all liked videos from youtube
    1
    After you open Liked Videos as a playlsit, Type in console...
    2
    `
    3
    var items = $('body').getElementsByClassName("style-scope ytd-menu-renderer"); 
    4
    for(var i = 0; i < items.length; i++){
    5
        items[i].click();
  2. convert bulk of files from webp to png convert bulk of files from webp to png
    1
    
                  
    2
    1. Download dwebp (WebP decoder tool) https://developers.google.com/speed/webp/download
    3
    2. run this code in in cmd 
    4
    ```for %f in (*.webp) do dwebp.exe  "%f" -o "%~nf.png"```