How to open your computer without password
This institute placed in Hardoi Up & It is the hub of Tally, CCC and O level. This is best blogger site to learn about to computer courses like:- Adca, Dca, Pgdca, CCC, O level, Dtp, Tally, Gst, Etc. You can contact us for more query on my contact no:- 9026728220, 8423606968.
Labels
- Artificial Intelligence (2)
- CCC EXAM NOTES (52)
- computer ki important jankariyan (55)
- Computer Notes (23)
- COMPUTER TIPS (28)
- computer tricks (38)
- CSS O LEVEL (43)
- Gst (1)
- HTML (2)
- IOT (3)
- IOT MCQs (1)
- IT Tools (21)
- Javascript (4)
- Libreoffice (12)
- M2R5 (O level) CSS (32)
- mobile tricks (10)
- O level (63)
- O level Notes (59)
- O level Practical (2)
- O level Project (44)
- PDF Tricks (2)
- Python program (22)
- Python Program List (3)
- ROCHAK JANKARIYA (39)
- Tally Gst (1)
- Tricks & Tips (20)
- Tricks and Tips (17)
- Viva O (1)
- Viva O Level (1)
- What is ? (1)
- Windows Tricks (11)
Information & Technology Computer Institution's
In front of Gandhi Bhawan, Numaish Chauraha Hardoi.
☎ +91 9026728220, +91 8423606968
Please Subscribe My YouTube Channel
Sunday, April 02, 2023
How to open your computer without password
Labels:
ROCHAK JANKARIYA,
Tricks & Tips,
Windows Tricks
My name is Satyam Trivedi, I live in Hardoi Up, I am graduate in Bsc. I have many other diploma's related to computer courses like:- Adctt, Doap, ccc, 'O' Level, Bca, Pgdca. I am a Blogger, Youtuber, Programmer and a Teacher by profession.I hold 10 years experiance of computer software training.
Saturday, April 01, 2023
How To Make Digital Clock with Python
How To Make Digital Clock with Python
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()
Labels:
O level Project
My name is Satyam Trivedi, I live in Hardoi Up, I am graduate in Bsc. I have many other diploma's related to computer courses like:- Adctt, Doap, ccc, 'O' Level, Bca, Pgdca. I am a Blogger, Youtuber, Programmer and a Teacher by profession.I hold 10 years experiance of computer software training.
How to create voice recorder app with Python
How to create voice recorder app with Python
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)
Labels:
O level Project,
Tricks & Tips
My name is Satyam Trivedi, I live in Hardoi Up, I am graduate in Bsc. I have many other diploma's related to computer courses like:- Adctt, Doap, ccc, 'O' Level, Bca, Pgdca. I am a Blogger, Youtuber, Programmer and a Teacher by profession.I hold 10 years experiance of computer software training.
Subscribe to:
Posts (Atom)