Please Subscribe My YouTube Channel

Thursday, April 27, 2023

Notepad ++ Shortcut For O level Exam (Important)

Notepad ++ Shortcut

Reload From Disk:- Ctrl + R
Save All:- Ctrl+Shift+S
Save As:- Ctrl+Alt+S 
Close:- Ctrl+W
Close All:- Ctrl+Shift+W
Undo:- Ctrl+Z or Alt+Backspace
Redo:- Ctrl+Y or Ctrl+Shift+Z
Cut:- Ctrl+X or Shift+Delete
Copy:- Ctrl+C or Ctrl+Insert
Paste:- Ctrl+V or Shift+Insert
Begin/End Select:- Ctrl+Shift+B
Column Editor:- Alt+C
Find in Files:- Ctrl+Shift+F
Find Previous:- Shift+F3
Mark:- Ctrl+M
Toggle Bookmark:-Ctrl+F2
Next Bookmark:- F2
Previous Bookmark:- Shift+F2
Jump Up (First Style):-Ctrl+Shift+1
Jump Up (Second Style):-Ctrl+Shift+2
Jump Up (Third Style):-Ctrl+Shift+3
Jump Up (Fourth Style):-Ctrl+Shift+4
Jump Up (Fifth Style):-Ctrl+Shift+5
Toggle Full Screen:- F11
Hide Lines:- Alt+H
Fold All:- Alt+0
Unfold All:- Alt+shit+0
Text Direction RTL (Right To Left):-Ctrl+Alt+R
Text Direction LTR (Left To Right):-Ctrl+Alt+L
Encoding/Converter In Notepad ++:- ANSI,UTF-8, UTF-8-BOM, UTF-16 BE BOM
                         UTF-16 LE BOM
Tools In Notepad ++:- MD5, SHA-256
Converter (Method):- ASCII >> HEX and HEX >> ASCII
Short The Notepad ++ Windows By:- Name, Path, Type and Size.




Saturday, April 22, 2023

Calculation in Python (Add, Sub, Multi, Division, Square, and Module) IT...

Python Program No 1:-  
Calculation in Python(Add, Sub, Multi, Division, Square, & Module)





Thursday, April 13, 2023

IOT Important Point Part 1



IOT

How To Make Friend Request Card with Html & Css.

How To Make Friend Request Card with Html & Css.

<!DOCTYPE html>
<html>
<title>card</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
  <h2>Friend Request Card</h2>
  <div class="w3-card-4 w3-brown" style="width:20%">
 <div class="w3-container w3-center">
      <h3>Friend Request</h3>
      <img src="mypik.png" style="width:90%"class="w3-circle">
      <h4>Satyam Trivedi</h4>
      <div class="w3-section">
        <button class="w3-button w3-green w3-circle">Accept</button>
        <button class="w3-button w3-red w3-circle">Decline</button>
        <div class="w3-section">
        <button class="w3-btn w3-button w3-blue w3-ripple w3-block"><b>Hide Profile</b></button></div>
      </div>
    </div>
  </div>
</div>

</body>
</html>

What is Booting ? ITCI Tutorials Hardoi


What is Booting ?

Saturday, April 08, 2023

Cloud Computing




Cloud Computing 


Monday, April 03, 2023

Wifi developer

Sunday, April 02, 2023

How to open your computer without password


How to open your computer without password



Saturday, April 01, 2023

How To Make Digital Clock with Python



How To Make Digital Clock with Python




#first download ds digital font and install it.
from tkinter import *
from tkinter.ttk import *
from time import strftime 

dk = Tk()
dk.title("Clock")
dk.minsize(width=610,height=110)
dk.maxsize(width=600,height=100)

label = Label(dk, font=("ds-digital",80),background="black",foreground='white')
label.pack(anchor='center')

def time():
    string = strftime("%H:%M:%S %p")
    label.config(text=string)
    label.after(1000,time)

time()

dk.mainloop()

How to create voice recorder app with Python

How to create voice recorder app with Python





#import required libraries
import sounddevice as sd
from scipy.io.wavfile import write
import wavio as wv

#sampling frequency
freq = 44100
#Recording Duration
duration = 15

#Start Recoder With The Given Values of duration and sample frequency
recording = sd.rec(int(duration * freq), samplerate = freq, channels = 2)

#Recode audio for the given number of seconds
sd.wait()

#this will convert the Numpy array to an Audio
#File with The Given Sampling Frequency
write("recording0.wav", freq, recording)

#Convert the Numpy Array To Audio File
wv.write("recording1.way", recording, freq, sampwidth = 2)