Please Subscribe My YouTube Channel

Showing posts with label computer ki important jankariyan. Show all posts
Showing posts with label computer ki important jankariyan. Show all posts

Sunday, November 19, 2023

Excel Shortcut Keys

Microsoft Excel Shortcut Keys

































Tuesday, November 14, 2023

MS Word Magic Trick (Find All Shortcut Keys)


Find All Shortcut without any Book/Internet (Macros Trick)



        Watch Full Video that given Below






                       



   

Monday, October 16, 2023

How To Make Transparent Dos Window

दोस्तों आज हम आपको बतायेगे की कमांड प्रांप्ट या डॉस की विंडो को ट्रांसपेरेंट कैसे बनाते हैं ?

कृपया हमारे चैनल  ITCI Computer Hardoi - YouTube  को सब्सक्राइब जरुर करें यंहा आपको मिलेगे सभी ट्रिक्स वीडियो और कंप्यूटर से सम्बन्धित सभी विडियो .

तो दोस्तों शुरू करते है :-

1 दोस्तों सबसे पहले आपको डॉस को ओपन करना है . (Window+R >>Cmd>>OK)
२. फिर आपको ctrl और शिफ्ट बटन को दबाये रखना है और माउस से स्क्रॉल बटन को up एंड डाउन करना है ,
आप देखेंगे की आपकी विंडो ट्रांसपेरेंट हो चुकी है .
धन्यवाद !!






यदि आपको  कोई समस्या आती है तो आप  पूरा विडियो देखने के लिए नीचे लिंक पर क्लिक करें .


Saturday, September 30, 2023

How to Create Folder Without Name


1. Press CTRL+SHIFT+N  For make New Folder
2. Then Hold ALT key and Type 0160 or 255 And Press Enter Key
Your Folder IS Displayed That Have No Name.
                                         Thanks!!




Subscribe My Channel ITCI Computer Hardoi @Computerwithsatyamsir

Tuesday, March 14, 2023

How To Make Vote Age Calculator with Python

How To Make Vote Age Calculator with Python


print("Hi!\nWelcome To Voting Pannel")
age=int(input("Enter your age:- "))
if age >=18:
    print("you Are Eligible For Vote")
else:
    print("you Are Not Eligible For Vote")



Watch full video about this blog.


Friday, February 10, 2023

For access list items/values using for loop and while loop.


For access list items/values using for loop and while loop.

Python for Loop

In this blog we'll learn about to use a for loop in Python.
In computer programming, loops are used to repeat a block of code.
For example, if we want to show a message 50 or more  times, then we can use a loop.
There are 2 types of loops in Python: for loop and while loop
Python for Loop
In Python, the for loop is used to run a block of code for a certain number of times. It is used to iterate over any sequences such as list, tuple, string, etc. Loop continues until we reach the last item in the sequence.

Flowchart of Python for Loop

Working of Python for loop 


Example: Loop over Python List
os = ['mac', 'window', 'linux', 'unix']

#Here we can access items value of a list using for loop
for i in os:
    print(i)

#OUTPUT:-
mac
window
linux
unix

Python for Loop with Python range()

A range is a series of values between two numeric intervals.
Here we use a built-in function range() to define a range of values.
For example,
values = range(5)
Here, 5 inside range() defines a range containing values 0, 1, 2, 3 and 4.

In Python, we can use for loop to iterate over a range.
For example:-
# use of range() to define a range of values
values = range(5)

# iterate from i = 0 to i = 4
for i in values:
    print(i)
Result:- 
0
1
2
3
4
In the above example, we have used the for loop to iterate over a range from 0 to 4.
The value of i is set to 0 and it is updated to the next number of the range on each iteration. This process continues until 4 is reached.

Python for loop with else
A for loop can have an optional else block as well. The else part is executed when the loop is finished. 
For example:-
listb = [0, 3, 6]
for i in listb:
    print(i)
else:
    print("Items or value not found in the listb")

#Result:-
0
3
6
Items or value not found in the listb.
Here, the for loop prints all the items of the listb. When the loop finishes, it executes the else block and prints ‘Items or value not found in the listb’.


Python while Loop

Python while loop is used to run a block code until a certain condition is met or finded. A while loop evaluates the condition. If the condition evaluates to True, the code inside the while loop is executed, condition is evaluated again. This process continues until the condition is False, and when condition evaluates to False, the loop will stop.

Flowchart of Python while Loop




Example: Python while Loop
# program to display numbers from 1 to 5

# here we initialize two variable i and n
i = 1
n = 5

# while loop from i = 1 to 5
while i <= n:
    print(i)
    i = i + 1

#Output:-
1
2
3
4
5

Example 2: Python while Loop

# program to calculate the sum of numbers
# until the user enters zero

total = 0

number = int(input('Enter a number: '))

# add numbers until number is zero
while number != 0:
    total += number    # total = total + number
    
    # take integer input again
    number = int(input('Enter a number: '))
    

print("total is =", total)


#output:-
Enter a number: 18
Enter a number: 6
Enter a number: -5
Enter a number: 0
('total is =', 19)

In the above example, the while iterates until the user enters zero. When the user enters zero, the test condition evaluates to False and the loop ends or stop.

Infinite while Loop with else in Python

If the condition of a loop is always True, the loop runs for infinite times (until the memory is full). For example,
age = 30
# the test condition is always True
while age > 18:
    print('You are eligible for vote')
else:
    print('You are not eligible for vote')

#if you change age less than 18 then it will else condition.

In the above example, the condition always evaluates to True. Hence, the loop body will run for infinite times.

Example 2:-
counter = 0

while counter < 3:
    print('we are looping')
    counter = counter + 1
else:
    print('we stop bcz value is >= 3')





Thursday, January 26, 2023

Css Cursor Property (Make Cursors)

How To Make Cursor, Pointer, Loader, Processor, etc.


<!DOCTYPE html>    
https://itcicomputerhardoi.blogspot.com/2023/01/css-cursor-property-make-cursors.html
<html>
<head>
<style>
.alias {cursor: alias;}
.all-scroll {cursor: all-scroll;}
.auto {cursor: auto;}
.cell {cursor: cell;}
.col-resize {cursor: col-resize;}
.context-menu {cursor: context-menu;}
.copy {cursor: copy;}
.crosshair {cursor: crosshair;}
.default {cursor: default;}
.e-resize {cursor: e-resize;}
.ew-resize {cursor: ew-resize;}
.grab {cursor: -webkit-grab; cursor: grab;}
.grabbing {cursor: -webkit-grabbing; cursor: grabbing;}
.help {cursor: help;}
.move {cursor: move;}
.n-resize {cursor: n-resize;}
.ne-resize {cursor: ne-resize;}
.nesw-resize {cursor: nesw-resize;}
.ns-resize {cursor: ns-resize;}
.nw-resize {cursor: nw-resize;}
.nwse-resize {cursor: nwse-resize;}
.no-drop {cursor: no-drop;}
.none {cursor: none;}
.not-allowed {cursor: not-allowed;}
.pointer {cursor: pointer;}
.progress {cursor: progress;}
.row-resize {cursor: row-resize;}
.s-resize {cursor: s-resize;}
.se-resize {cursor: se-resize;}
.sw-resize {cursor: sw-resize;}
.text {cursor: text;}
.url {cursor: url(myBall.cur),auto;}
.w-resize {cursor: w-resize;}
.wait {cursor: wait;}
.zoom-in {cursor: zoom-in;}
.zoom-out {cursor: zoom-out;}
</style>
</head>
<body>
<h1>ITCI Computer Hardoi</h1>
<h1>The cursor Property</h1>
<p>Insersion Pointer when you hovering on the text.</p>

<p class="alias">alias</p>
<p class="all-scroll">all-scroll</p>
<p class="auto">auto</p>
<p class="cell">cell</p>
<p class="col-resize">col-resize</p>
<p class="context-menu">context-menu</p>
<p class="copy">copy</p>
<p class="crosshair">crosshair</p>
<p class="default">default</p>
<p class="e-resize">e-resize</p>
<p class="ew-resize">ew-resize</p>
<p class="grab">grab</p>
<p class="grabbing">grabbing</p>
<p class="help">help</p>
<p class="move">move</p>
<p class="n-resize">n-resize</p>
<p class="ne-resize">ne-resize</p>
<p class="nesw-resize">nesw-resize</p>
<p class="ns-resize">ns-resize</p>
<p class="nw-resize">nw-resize</p>
<p class="nwse-resize">nwse-resize</p>
<p class="no-drop">no-drop</p>
<p class="none">none</p>
<p class="not-allowed">not-allowed</p>
<p class="pointer">pointer</p>
<p class="progress">progress</p>
<p class="row-resize">row-resize</p>
<p class="s-resize">s-resize</p>
<p class="se-resize">se-resize</p>
<p class="sw-resize">sw-resize</p>
<p class="text">text</p>
<p class="url">url</p>
<p class="w-resize">w-resize</p>
<p class="wait">wait</p>
<p class="zoom-in">zoom-in</p>
<p class="zoom-out">zoom-out</p>

</body>
</html>





Important Points

alias

The cursor indicates an alias of something is to be created


all-scroll

The cursor indicates that something can be scrolled in any direction


auto

Default. The browser sets a cursor


cell

The cursor indicates that a cell (or set of cells) may be selected


col-resize

The cursor indicates that the column can be resized horizontally


context-menu

The cursor indicates that a context-menu is available


copy

The cursor indicates something is to be copied


crosshair

The cursor render as a crosshair


default

The default cursor


e-resize

The cursor indicates that an edge of a box is to be moved right (east)


ew-resize

Indicates a bidirectional resize cursor


grab

The cursor indicates that something can be grabbed


grabbing

The cursor indicates that something can be grabbed


help

The cursor indicates that help is available


move

The cursor indicates something is to be moved


n-resize

The cursor indicates that an edge of a box is to be moved up (north)


ne-resize

The cursor indicates that an edge of a box is to be moved up and right (north/east)


nesw-resize

Indicates a bidirectional resize cursor


ns-resize

Indicates a bidirectional resize cursor


nw-resize

The cursor indicates that an edge of a box is to be moved up and left (north/west)


nwse-resize

Indicates a bidirectional resize cursor


no-drop

The cursor indicates that the dragged item cannot be dropped here


none

No cursor is rendered for the element


not-allowed

The cursor indicates that the requested action will not be executed


pointer

The cursor is a pointer and indicates a link


progress

The cursor indicates that the program is busy (in progress)


row-resize

The cursor indicates that the row can be resized vertically


s-resize

The cursor indicates that an edge of a box is to be moved down (south)


se-resize

The cursor indicates that an edge of a box is to be moved down and right (south/east)


sw-resize

The cursor indicates that an edge of a box is to be moved down and left (south/west)


text

The cursor indicates text that may be selected


URL

A comma separated list of URLs to custom cursors. 

Note: Always specify a generic cursor at the end of the list, 

in case none of the URL-defined cursors can be used


vertical-text

The cursor indicates vertical-text that may be selected

w-resize

The cursor indicates that an edge of a box is to be moved left (west)

wait

The cursor indicates that the program is busy


zoom-in

The cursor indicates that something can be zoomed in


zoom-out

The cursor indicates that something can be zoomed out


initial

Sets this property to its default value.

inherit

Inherits this property from its parent element.

Please Subscribe My YouTube Channel

Wednesday, January 25, 2023

Htm Css Program for Css Transform animation

Css Transform animation:-



<!DOCTYPE html>

<html>
<head>
<style> 
#rollbox {
  margin: 60px;
  border: 5px solid blue;
  border-radius:20px;
  width: auto;
  height: auto;
  background-color: coral;
  color: white;
  animation: satyam 10s infinite;
}

@keyframes satyam {
  10% {transform: rotate(360deg);}
}
</style>
</head>
<body>
<center>
<h1>Animation of Transform</h1>
<p>Text rotate of div element 180 degrees, and back:<p></center>
<div id="rollbox">
  <h1>ITCI Computer Center Hardoi</h1>
</div>
</body>
</html>

Sunday, January 22, 2023

How to open computer without password ?


How to open computer without password ?
दोस्तों कैसा होगा यदि आपको  अपने Computer में password  न  डालना पड़े और वह open हो जाये, है न बहुत ही महत्वपूर्ण पोस्ट, चलो कोई नहीं बताएगा तो हम बतायेगे क्यूंकि आप सत्यम सर् के ब्लॉग पढ़ रहे है, एक बात और पोस्ट अच्छी लगे तो शेयर जरुर कर देना और कमेंट भी कर देना, तो चलो करते है शुरू :--


सबसे पहले आपको एक  Softwere Computer में इंस्‍टाल करना है, यदि आपके कंप्यूटर में वेब कैमरा नही है तो उसे लगाना है और Softwere में दिये गये निर्देशों का पालन करना है और Computer को रीस्‍टार्ट करना है। बस हो गया आपका काम  अब जब तक आप कम्‍प्‍यूटर के सामने नहीं बैठेंगे तब तक यह ओपन नहीं होगा। असल में यह Softwere face recognition system पर आधारित है, इसमें बेव कैमरे द्वारा आपका फोटो लिया जाता है, जिस में Softwere आपके चेहरे के कुछ खास हिस्‍सो को पांइट कर लेता है, और database तैयार कर लेता जब आप अपने कम्‍प्‍यूटर के सामने बैठते है तो Softwere उन्‍हीं पांइटों/database के आधार पर आपके चेहरे से मैच कराता है मैच हो जाने पर वह Computer को ओपन कर देता है और किसी दूसरे व्‍यक्ति या user के Computer के सामने बैठने पर Computer ओपन नहीं होता क्‍यूकि उसके पास उस नये user का database नहीं होता, इस Softwere निशुल्‍क है। इसका नाम है की-लैमन, इसका आप यहॉ से डाउनलोड कर सकते हैं। 
अथवा इस नीचे दी गयी वेबसाइट पर जाकर डाउनलोड कर सकते हैं. 
https://www.filehorse.com/download-keylemon/




--------------------------------------------------------------------------------------------------------------------

                    CSS, HTML और जावास्क्रिप्ट के लिए इस लिंक पर क्लिक करें और पायें सभी विडियो

www.itcicomputerhardoi.blogspot.com

Monday, January 16, 2023

कंप्यूटर की स्क्रीन पर कर्सर का लुक कैसे बदले ?

20 बेस्‍ट फ्री माउस कर्सर स्‍कीम 


क्या हुआ विंडोज यूजर इंटरफ़ेस से ऊब गए हैं और आप इसके डिफ़ॉल्ट कर्सर के लुक स्टाइल कलर सब कुछ चेंज करना चाहते है, तो प्रॉब्लम क्या है चलिए हम बताते है :-

इसके लिए आप इंटरनेट पर आप जाइये और सबसे पहले माउस कर्सर थीम डाउनलोड कर लीजिये ।  अब करना कैसे है तो नीचे दिए गए  इंस्ट्रक्शन  को फालो कीजिये -

How To Install a Mouse Cursor Theme Pack:

अधिकांश थीम पैक में आपके कंप्यूटर पर नए माउस कर्सर थीम इंस्‍टॉलर कि .exe फ़ाइल शामिल होती है।

सबसे पहले एक नया थीम पैक डाउनलोड करें। जो जिप फोर्मेट में होगी अब इस जि़प फ़ाइल को अनजि़प करें और install.inf फ़ाइल पर राइट क्लिक करें और Install कर लीजिये ।

अब जो भी नए-नए कर्सर होंगे वो उचित लोकेशन पर इंस्‍टॉल हो जाएंगे और विंडोज़ में आटोमेटिकली एक्टिवेट हों जायेगें ।


विंडोज के लिए कर्सर थीम पैक डाउनलोड करने के लिए मैंने नीचे लिंक दे दी है इन लिंक पर क्लिक करके आप डाउनलोड कीजिये ---

1) Rainbow Cursors:

Best Free Mouse Cursor Themes Hindi

मैक कर्सर के आधार पर इस पूर्ण कर्सर पैक में 15 एनिमेटेड कर्सर है, जिनमें से प्रत्येक में 24 फ्रेम हैं जो 24 अलग-अलग रंगों में हैं।

डाउनलोड करें: Rainbow Cursors

2) Wii Cursors v1.0:

इस कर्सर सेट में आपके कंप्यूटर माउस के लिए 18 हैंड- क्राफ्टेड कर्सर हैं। उनमें से तीन एनिमेटेड हैं। इसमें कर्सर के कई फॉर्मेट को शामिल किया गया है।

डाउनलोड करें: Wii Cursors v1.0

3) Metro X Cursor Set:

मेट्रो एक्स पैकेज आपके कंप्यूटर को एक कर्सर स्‍कीम देता है जो विंडोज 8 से प्रेरित है।

डाउनलोड करें: Metro X Cursor Set

4) New Mac OS X Cursors:

आप मैक ओएस एक्स के लोगों की तरह दिखने के लिए इस कर्सर के सेट को आजमाने का लुत्फ उठा सकते हैं। इस कलेक्‍शन में कर्सर की छह अलग-अलग स्‍टाइल शामिल हैं। उस INF फ़ाइल को इंस्टॉल करें जो उस स्‍टाइल से मेल खाता है जिसका आप उपयोग करना चाहते हैं।

डाउनलोड करें: New Mac OS X Cursors

5) Transparency Cursors 2:

उन लोगों के लिए यह कर्सर थीम हैं, जो न्यूनतम डिजाइन पसंद करते हैं। सुंदर, मैक की तरह, और मॉडर्न माउस कर्सर सेट।

डाउनलोड करें: Transparency Cursors 2

6) Metro X3 Cursors (Update Two):

मेट्रो लेआउट उनके लिए है जो अधिक रंग पसंद करते हैं। यह विंडोज पीसी के लिए सबसे अच्छा माउस कर्सर है।

डाउनलोड करें: Metro X3 Cursors (Update Two)

7) Android Material Cursors (Blue):

अपने विंडोज़ डेस्कटॉप को ‘मटेरियलाइज’ करें! इस मुफ्त कर्सर को अपने कंप्यूटर इंटरफ़ेस में इस मटेरियल डिज़ाइन को एड कर सेट करें।

डाउनलोड करें: Android Material Cursors (Blue)

8) Updated ElCapitan cursors:

विंडोज के लिए El Capitan Cursors थीम एक ऑसम पैक हैं। विंडोज़ पर मैक जैसे कर्सर को पाकर आपका मूड फ्रेश हो जाएगा।

डाउनलोड करें: Updated ElCapitan cursors

9) Zune’d Animated Cursors Set:

एक Zune थीम बेस एनिमेटेड कर्सर का यह सेट हैं। 

डाउनलोड करें: Zune’d Animated Cursors Set

10) Direction:

पॉइंटर्स का एक और असामान्य सेट, जिसका आप आनंद ले सकते हैं।

डाउनलोड करें: Direction

11) Oxygen Cursors:

विंडोज पीसी के लिए हर समय सबसे लोकप्रिय आइकॉन सेटों में से एक है। इस सेट में 37 अलग-अलग कलर स्‍कीम हैं।

डाउनलोड करें: Oxygen Cursors

12) Obsidian Cursor set:

ऑब्जिडियन कर्सर पोलर कर्सर थीम के आधार पर इंकस्केप में बनाए गए चमकदार और क्लिन कर्सर सेट हैं। ब्‍लैक चमकदार दिखने वाले कर्सर आकर्षक लगते है।

डाउनलोड करें: Obsidian Cursor set

13) mL-Blau Cursor (Smaller Version):

यह एक और ब्‍लैक कर्सर विंडोज XP, Vista, 7 और Windows 8 के साथ कंम्‍पेटिबल हैं। विशेष इंस्‍ट्रक्‍शन के साथ, आप उन्हें विंडोज 10 में भी एड कर सकते हैं। विंडोज के लिए यह आश्चर्यजनक माउस कर्सर सेट हैं।

डाउनलोड करें: mL-Blau Cursor (Smaller Version)

14) Comix Cursors Blue:

Best Free Mouse Cursor Scheme Hindi

क्‍या आपको कॉमिक आइकॉन पसंद हैं? एनिमेटेड और कार्टूनिस्टिक डिज़ाइन इस कॉमिक्स कर्सर ब्लू माउस कर्सर सेट की विशेषता है।

डाउनलोड करें: Comix Cursors Blue

15) Polar Cursor Set for Windows:

Best Free Mouse Cursor Scheme Hindi

इसका डिजाइन ही सब कुछ कहता है। यह बहुत ही आकर्षक और बहुत क्लिन है।

डाउनलोड करें: Polar Cursor Set for Windows

16) Neon Rainbow Cursors Set 01:

Best Free Mouse Cursor Scheme Hindi

इस सेट में कुल 113 कर्सर हैं, प्रति कलर 14 कर्सर और एक बिजी कर्सर सभी रंगों के साथ उपयोग किया जा सकता है।

डाउनलोड करें: Neon Rainbow Cursors Set 01

17) Comix Cursors Black and Red:

Best Free Mouse Cursor Scheme Hindi

यदि आपको कॉमिक्स कर्सर माउस कर्सर स्‍कीम पसंद है लेकिन इसके रंग आपको प्रभावित नहीं करते, तो कॉमिक्स कर्सर का यह काले और लाल रंग का वर्शन आपको पसंद आएंगा।

डाउनलोड करें: Comix Cursors Black and Red

18) Shvag- simple, static cursors:

क्या आपको छोटे कर्सर पसंद हैं जो इतनी मॉडर्न और हाई-टेक दिखाई देंगे कि वे आपके पीसी के स्‍टैंडर्ड को बढ़ाएंगे? वैसे तो इस माउस कर्सर थीम को आजमाएं।

डाउनलोड करें: Shvag- simple, static cursors

19) Comix Cursors Orange:

Best Free Mouse Cursor Scheme Hindi

क्‍युट कॉमिक्स कर्सर के लिए यह एक और कलर कॉम्बिनेशन है।

डाउनलोड करें: Comix Cursors Orange

20) ml.blau.3:

Best Free Mouse Cursor Scheme Hindi

विंडोज के लिए ब्‍लू बिजी व्‍हील के साथ फ्री ब्लैक कर्सर सेट। यह सेट सुपर हाई-रिज़ॉल्यूशन डिस्प्ले के लिए डिज़ाइन किया गया है: 100% डीपीआई; 150% डीपीआई और 200% डीपीआई। 

डाउनलोड करें: ml.blau.3

अब पोस्ट अच्छी लगी है तो सेव कर लो शेयर कर लो लाइक कर दो और हाँ कमेंट जरुर कर दीजियेगा ..


                    CSS, HTML और जावास्क्रिप्ट के लिए इस लिंक पर क्लिक करें और पायें सभी विडियो
                                ब्लॉगर - सत्यम त्रिवेदी