No Tension Programming
No Tension Programming
  • Видео 140
  • Просмотров 56 892
How to show all Wifi passwords.
#show wifi passwords, #crack wifi password, #open any wifi password, #open any connected unconnected wifi password, #wifi, #passwors
Image Credits:
www.flaticon.com/free-icon/wifi_6690057?term=wifi+password&page=1&position=10&origin=search&related_id=6690057
Просмотров: 1

Видео

How to stop Chrome From Blocking Downloads.| How to Unblock Downloads in google Chrome.
Просмотров 212 часов назад
#unblock downloads, #stop chrome to block files, #solve chrome blocking files,
How to Change Google Chrome Default Language.
Просмотров 114 часов назад
#change chrome language, #change Chrome Default language,#change Chrome settings, #change settings
How to show Wi-Fi Password using your Phone .
Просмотров 72 часа назад
#share wifi password, #share Qr code of wifi, #find any wifi password, #Hack password of wifi, #find any wifi password #show wifi password using android. Image credits: www.flaticon.com/free-icon/wifi_7661236?k=1721058526750&log-in=google
Create Beautiful Responsive Navigation Bar using Html and Css.
Просмотров 24 часа назад
#Responsive navigation bar , #learn to create navigation bar, #beautiful navigation bar using html and css, #Html , #css, # html and css projects, #website using html and css, #create navigation bar, #Nav bar, #create nav bar
Add and Delete User Accounts With Command Prompt in Windows.
Просмотров 14 часа назад
#Add user account, #delete account, #create user account, #create admin account
How to Find Wifi Password in Windows.
4 часа назад
#wifi password, #find Wifi password, #find connection password
How to set Password on Windows 10 or Windows 11.
Просмотров 34 часа назад
#set password on windows, #set password on windows 10 or 11,#set pin in windows 10 or 11, #set signin option in windows 10 or 11, Image credits:www.flaticon.com/free-icon/password_159478?term=password&page=1&position=5&origin=search&related_id=159478
How to Change Administrator on Windows 10 and Windows 11 easy way.
Просмотров 34 часа назад
#change administrator,#windows10,#windows11,#create new administrator, #make new admin in windows 10 or 11 Image credits:flaticons
How to create Admin User Account Via CMD in Windows 10 and windows 11.
Просмотров 104 часа назад
#create admin account, #create admin account using cmd, #create new user admin account in windows, #new admin account, #new account Image Credits: www.flaticon.com/search?word=user account
Create Simple Responsive Website Layout Using Html & CSS.
Просмотров 37 часов назад
#Html & Css Website, #Html & Css Projects, # Html Layout, #Website using html & Css, #create website using Html & Css, # Create Webpage Using Html & Css.
Create Website Layout Using Html & Css.
Просмотров 909 часов назад
#Html project, #css project, #Html & css, #Html & css Project, # html & css page layout, # Webpage Design.
4.Text Formatting in Html.
Просмотров 19 часов назад
# html, #text Formatting, #Strong, #subscript, #superscript, #bold, #italic,#em,#underline
3.What is Html Paragraph Tag.
Просмотров 39 часов назад
3.What is Html Paragraph Tag.
2.What is Heading Tag in Html.
Просмотров 179 часов назад
2.What is Heading Tag in Html.
1.What is Html.
Просмотров 49 часов назад
1.What is Html.
How to install Window 11 23H2/24H2 on Unsupported Hardware Easiest Way.
Просмотров 812 часов назад
How to install Window 11 23H2/24H2 on Unsupported Hardware Easiest Way.
Fix Screen Brightness Keeps Changing in Windows 11.
Просмотров 612 часов назад
Fix Screen Brightness Keeps Changing in Windows 11.
9 Ways to Lock the Screen in Windows 10 and Windows 11.
Просмотров 512 часов назад
9 Ways to Lock the Screen in Windows 10 and Windows 11.
How to upgrade windows 11 Home to Pro in Easiest Way.
Просмотров 1012 часов назад
How to upgrade windows 11 Home to Pro in Easiest Way.
fix HDMI port not working in windows 11.
Просмотров 114 часов назад
fix HDMI port not working in windows 11.
How to disable speech recognition in windows 11.
Просмотров 1014 часов назад
How to disable speech recognition in windows 11.
How to fix fps drop in windows.| Gaming screen setting.
Просмотров 216 часов назад
How to fix fps drop in windows.| Gaming screen setting.
How to fix high CPU usage in windows 11.
Просмотров 819 часов назад
How to fix high CPU usage in windows 11.
How to Download and Install Safari Browser on windows .
Просмотров 1619 часов назад
How to Download and Install Safari Browser on windows .
Cortana not working in windows 11 Solution.
Просмотров 421 час назад
Cortana not working in windows 11 Solution.
Solve Snipping tool or Screenshot not working in windows 11
Просмотров 16День назад
Solve Snipping tool or Screenshot not working in windows 11
Solve Blue Screen WHEA UNCORRECTABLE ERROR in windows 11.
Просмотров 39День назад
Solve Blue Screen WHEA UNCORRECTABLE ERROR in windows 11.
How to fix random or automatic restart problem in windows 10/11.
Просмотров 17День назад
How to fix random or automatic restart problem in windows 10/11.
Fix watch hours not updating in Youtube easy way.
Просмотров 11День назад
Fix watch hours not updating in RUclips easy way.

Комментарии

  • @NoTensionProgramming
    @NoTensionProgramming 2 дня назад

    Full Code: index.html: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width,intial-scale=1.0"> <title>Navigation Bar</title> <link rel="stylesheet" href="style.css"> </head> <body> <nav> <div class="brand"> <p>Digitex</p> </div> <ul> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Blogs</a></li> <li><a href="#">Contact Us</a></li> </ul> </nav> <div class="bodycontent"> <img src="/camera.jpg"> </div> </body> </html> style.css: * { margin:0px; padding:0px; } nav{ width:100%; height:65px; background-image: linear-gradient(#141212,#0f0f0f); line-height: 65px; padding: 0px 100px; position: fixed; } nav .brand p{ font-size: 28px; float:left; font-weight: bold; color: white; text-transform: uppercase; letter-spacing: 1.3px; } nav ul{ float:right; } nav li { display:inline; list-style: none; } nav li a{ font-size:20px; text-decoration: uppercase; padding: 0px 10px; text-align: none; color:white; } .bodycontent img{ width:100%; height:100vh; background-position: center; background-size: cover; } nav li a:hover{ color:#a2ff00; transition: all 0.2s ease-in-out; }

  • @LEGEND_MAMNOON
    @LEGEND_MAMNOON 8 дней назад

    utorrent web is not working

  • @Bing-pro
    @Bing-pro 12 дней назад

    Useful...

  • @VIJAYShortFilms
    @VIJAYShortFilms 20 дней назад

    not working bro in Java file (public ) WebView findViewById, getSettings, setWebViewClient all are showing red error

    • @NoTensionProgramming
      @NoTensionProgramming 19 дней назад

      rebuild your project or create new activity and paste same code it will work

  • @nezahzeta00raiser
    @nezahzeta00raiser 23 дня назад

    I did this step-by-step and to my amazement, my wi-fi icon is back! Like and subscribed! 🎉

  • @NoTensionProgramming
    @NoTensionProgramming 25 дней назад

    I am Providing Complete Code Here If you Like My work Please hit like & Subscribe to my Channel. calculator,html file: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content ="width=device-width,initial-sacle=1.0"> <title>Calculator</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div id="calculate"> <input id="display" readonly> <div id="buttons"> <button onclick="passData('/')" class="signbtn">/</button> <button onclick="passData('7')">7</button> <button onclick="passData('8')">8</button> <button onclick="passData('9')">9</button> <button onclick="passData('*')" class="signbtn">*</button> <button onclick="passData('4')">4</button> <button onclick="passData('5')">5</button> <button onclick="passData('6')">6</button> <button onclick="passData('+')" class="signbtn">+</button> <button onclick="passData('1')">1</button> <button onclick="passData('2')">2</button> <button onclick="passData('3')">3</button> <button onclick="passData('-')" class="signbtn">-</button> <button onclick="passData('0')">0</button> <button onclick="passData('.')">.</button> <button onclick="calculate()">=</button> <button onclick="clearDisplay()" class="signbtn">C</button> </div> </div> <script src="index.js"></script> </body> </html> index.js file: const display= document.getElementById('display'); function passData(input) { display.value += input; } function clearDisplay() { display.value=""; } function calculate() { try{ display.value=eval(display.value); } catch(error) { display.value="Err"; } } styles.css file: button{ width:95px; height:95px; border-radius:50px; background-color: hsl(0, 0%, 30%); color:white; font-size: 3rem; font-weight: lighter; border:none } #buttons { gap:10px; padding:22px; display:grid; grid-template-columns:repeat(4,2fr); } #calculate { font-family: Arial; background-color:#221f1f; border-radius: 15px; max-width: 500px; overflow: hidden; } #display { width:100%; padding-right:10px; color:white; font-size:4rem; text-align: right; border:1px solid white; background-color: black; } body{ margin:0; display:flex; justify-content:center; align-items:center; height:90vh; background-color: hsl(0,0%, 95%); } button:hover { background-color: hsl(0, 0%, 49%); } .signbtn { background-color: #a4730f; } .signbtn:hover{ background-color:hsl(35, 100%, 59%) ; }

  • @NoTensionProgramming
    @NoTensionProgramming 28 дней назад

    Copy the Script and Dont Forgot to like and subscribe my channel cls @ECHO OFF title Folder Locker if EXIST "Locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo Are you sure u want to Lock the folder(Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren Locker "Locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock folder set/p "pass=>" if NOT %pass%==yourpassword goto FAIL attrib -h -s "Locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Locker.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDLOCKER md Locker echo Locker created successfully goto End :End

  • @NoTensionProgramming
    @NoTensionProgramming 28 дней назад

    please subscribe my channel

  • @Surendrakushwaha84
    @Surendrakushwaha84 Месяц назад

    Kaha se ho

  • @Surendrakushwaha84
    @Surendrakushwaha84 Месяц назад

    Best information

  • @Get_YT_Views_174
    @Get_YT_Views_174 Месяц назад

    Well-deserved applause!

  • @cbbcbb6803
    @cbbcbb6803 Месяц назад

    Voice-over, please.

  • @Masterakoya
    @Masterakoya Месяц назад

    Sounds nahi aa Raha hai !

  • @Masterakoya
    @Masterakoya Месяц назад

    Swiggy order karne samai payment ka option Kiya rahta hai ??

    • @NoTensionProgramming
      @NoTensionProgramming Месяц назад

      Any payment option you can use just add flash.co coupon from coupon section

    • @Masterakoya
      @Masterakoya Месяц назад

      @@NoTensionProgramming oh , you get 200 RS cashbacks in your swiggy money ? Really it's work? That will be great deal .. but have any security issue to give them email ID ??

    • @NoTensionProgramming
      @NoTensionProgramming Месяц назад

      No you can change your email after 1 month

    • @Masterakoya
      @Masterakoya Месяц назад

      @@NoTensionProgramming ok thanks I definitely try this

    • @NoTensionProgramming
      @NoTensionProgramming Месяц назад

      Subscribe bhi kardo bhai