Skip to content

Instantly share code, notes, and snippets.

View jaikt's full-sized avatar
🏖️
w.vacations

Jai Krishna Tavva jaikt

🏖️
w.vacations
View GitHub Profile
@echo off
title Activate Windows 10 for FREE! TechProfet.com&cls&echo ============================================================================&echo #Project: Activating All Verions of Windows 10 for FREE using CMD (TechieProfet.com)&echo ============================================================================&echo.&echo #Supported products:&echo - Windows 10 Home&echo - Windows 10 Home N&echo - Windows 10 Home Single Language&echo - Windows 10 Home Country Specific&echo - Windows 10 Professional&echo - Windows 10 Professional N&echo - Windows 10 Education N&echo - Windows 10 Education N&echo - Windows 10 Enterprise&echo - Windows 10 Enterprise N&echo - Windows 10 Enterprise LTSB&echo - Windows 10 Enterprise LTSB N&echo.&echo.&echo ============================================================================&echo Activating your Windows...&cscript //nologo slmgr.vbs /upk >nul&cscript //nologo slmgr.vbs /cpky >nul&wmic os | findstr /I "enterprise" >nul
if %errorlevel% EQU 0 (cscript //nologo slmgr.vbs /i
Links:
1) microsoft.com/en-us/education/products/office/default.aspx
2) Email site: 24mail.chacuo.net
3) Now you don't have to use the domain name(@chacauo.net) or it will not work, you must change it to this '@stu.mao.office.gy'
4) Fill all the fake details
5) Wait for verification code (It can take upto 5 minutes)
#Now account is created "Sorry was not able to cover in the video"
6) Now you have to activate the A1 Plus License
7) Go to - https://account.activedirectory.windowsazure.com/r#/groups
8) You will need to verify with your phone number (If it asks) (Note - use your real phone number fake will not work)
@jaikt
jaikt / index.html
Last active August 28, 2021 15:46
Independence Day 2021 Wishing Script
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Independence Day</title>
<meta name="google" value="notranslate">
<meta property="og:type" content="Make your own wonderful wish for you loved one" />
<meta property="og:title" content="Happy Independence Day Script" />
<meta property="og:url" content="https://www.google.com/>
@jaikt
jaikt / main.py
Last active August 12, 2021 12:49
Send An Email Using Python & PyCharm
import smtplib
server = smtplib.SMTP('smtp.address.com', 587)
server.starttls()
server.login('email@address.com','Password')
server.sendmail('',
'receiver@address.com',
'Sent this email using PYTHON by watching a tutorial video at https://youtu.be/DBigIFA33RY.'
)
@jaikt
jaikt / emmetabbreviation.html
Last active September 23, 2021 08:55
Emmet Abbreviation (HTML Skeleton)
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><!-- Website Name--></title>
</head>
<body>
@jaikt
jaikt / linkstylesheet.html
Created August 29, 2021 17:57
Link Stylesheet in HTML (stlye.css)
<link rel="stylesheet" href="style.css">
<center class="logo"><a href="#"><img src="logo.png"></a></center>
<center class="content">
<h1>◺Browse Projects◿</h1>
<a href="https://tipstech.online/projects/lamp-project/" target="_blank" class="underline">Lamp Project <i class="fas fa-long-arrow-alt-right"></i></a></li><br>
<br>
<a href="https://tipstech.online/projects/airplane-takeoff/" target="_blank" class="underline">Flight Takeoff <i class="fas fa-long-arrow-alt-right"></i></a></li><br>
<br>
<a href="https://tipstech.online/projects/sharing-buttons/" target="_blank" class="underline">Sharing Buttons <i class="fas fa-long-arrow-alt-right"></i></a></li><br>
<br>
<a href="https://tipstech.online/projects/fancy-text-generator/" target="_blank" class="underline">Fancy Text Genrator <i class="fas fa-long-arrow-alt-right"></i></a></li><br>
@jaikt
jaikt / add-background.css
Last active August 29, 2021 18:26
Add Background In CSS
*{
background: #DFCFBE /* Edit This Colour Code*/;
}
@jaikt
jaikt / index-style.css
Created August 30, 2021 08:38
Index Directory CSS Code
*{
background: #DFCFBE;
}
/*Add the following code*/
.logo{
display: block;
margin-left: auto;
margin-right: auto;
@jaikt
jaikt / index-between-body-tag.html
Created September 8, 2021 09:27
404 Error Page Design By Tips Tech
<!-- This template was made possible by Tips Tech (https://geektechtips.xyz/) -->
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>Oops!</h1>
<h2>404 - NOTHING EXISTS</h2>
</div>
<a href="#" target="_blank">HOME</a>
</div>
</div>