Skip to content

Instantly share code, notes, and snippets.

View mushfiqur-rahman's full-sized avatar
🏡
Work From Home

mushfiqur-rahman

🏡
Work From Home
View GitHub Profile
@mushfiqur-rahman
mushfiqur-rahman / copy_disable.js
Created June 23, 2024 15:31
Restrict/Disable Copy & Paste on Blogger Blog — Protect Your Content From Copying
/**
Firstly, log in to Blogger Dashboard.
Now go to the Layout Section on the left side menu.
After that click on Add a Gadget on the right side.
Now paste the below code in it without naming the gadget with the title.
Now click save.
**/
<script src='demo-to-prevent-copy-paste-on-blogger_files/googleapis.js'></script>
<script type='text/javascript'>
$(window).on('scroll',function() {
var scroll = $(window).scrollTop();
if (scroll < 245) {
$(".header-middle").removeClass("scroll-header");
}else{
$(".header-middle").addClass("scroll-header");
}
});
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$formcontent=" From: $name \n subject: $subject \n Message: $message";
$recipient = "admin@softitbd.com";
$subject = "Add Your Subject Here";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
@mushfiqur-rahman
mushfiqur-rahman / OpenWithSublimeText3.bat
Created August 21, 2017 05:27 — forked from roundand/OpenWithSublimeText3.bat
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 7)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f