Skip to main content

Posts

SIGN UP, SIGN IN HTML, JS, CSS USING FIREBASE

SUBSCRIBE TO OUR YOUTUBE CHANNEL   HTML + CSS <!DOCTYPE html> <html lang="en" dir="ltr"> <head>     <title>         FORM     </title>     <!--add scripts-->     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-app.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-analytics.js"></script>     <script src="https://www.gstatic.com/firebasejs/8.9.0/firebase-auth.js"></script>     <script src="form.js"></script>     </head> <body>     <h1>WELCOME</h1>     <div id="frmcontainer">       <div id="head"></div>         <input type="email" placeholder="Email" id="email">         <input type="password" placeholder="Password" id="password"> ...

NAIROBI WEST HOSPITAL

Hello. Download Nairobi West APK final  here   Once downloaded, check your downloads folder and install the apk. AndroidManifest.xml <? xml version ="1.0" encoding ="utf-8" ?> here <manifest xmlns:android ="http://schemas.android.com/apk/res/android" package ="com.example.nairobiwest" > <uses-permission android:name ="android.permission.INTERNET" /> <uses-permission android:name ="android.permission.WRITE_EXTERNAL_STORAGE" /> <application android:allowBackup ="true" android:icon ="@mipmap/ic_launcher" android:label ="NAIROBI WEST HOSPITAL" android:roundIcon ="@mipmap/ic_launcher_round" android:supportsRtl ="true" android:theme ="@style/Theme.NAIROBIWEST" > <activity android:name =".splashscreen" > <intent-filter> <a...

How to create Radio Buttons in Android studio - Java

MainActivity.java package com.example.youtuberadio; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { RadioButton radioButton; RadioGroup radioGroup; TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); radioGroup=findViewById(R.id.rGroup); textView=findViewById(R.id.view_selected); //variable for the button Button buttonOk =findViewById(R.id.btn_ok); buttonOk.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { int radioId=radioGroup.getCheckedRadioButtonId(); radioButto...

ACTIVATING MS OFFICE WITHOUT KEY

Step1 Open cmd as admin Step2 copy office directory Step3  Go to office directory, type cd on cmd then paste the office directory you copied e.g., for a 64-bit machine it will look like this. cd C:\Program Files (x86)\Microsoft Office\Office16 Step4 Type in the following commands into cmd then hit enter after every command: cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 cscript ospp.vbs /unpkey:BTDRB >nul cscript ospp.vbs /unpkey:KHGM9 >nul cscript ospp.vbs /unpkey:CPQVG >nul cscript ospp.vbs /sethst:kms8.msguides.com cscript ospp.vbs /setprt:1688 cscript ospp.vbs /act METHOD 2 Copy script https://gist.github.com/amitbd1508/fe64e926005c85d424e8e79a943b3b60 @echo off title Activate Microsoft Office 2019 (ALL versions) for FREE - MSGuides.com&cls&echo =====================================================================================&echo #Project: Activating Microsoft software products for FREE without additional software&echo =====================...

HOW TO SOLVE WINDOWS 10 BLACK SCREEN WITH CURSOR PROBLEM

Perhaps you have done some updates or installed new software on your windows computer and then all you can see after logging in is a black screen with a white mouse cursor. Something more like this.. This could have happened due to some malware or some system update that is conflicting with your system settings. There are various methods you can solve this; - Manually correcting the user shell - Troubleshooting from advanced start-up option. Method 1: Manually correct the user shell 1. Open task manager while on the black screen. Press the keyboard combination Ctrl+Alt+Del or right-click at the bottom part of your black screen then move three times with your upper arrow key and press enter to open task manager. 2. A task manager window will show. Go to File >> Run new task >> type in regedit >> check the checkbox (create this task with administrator privileges) >> then click OK. 3. Double click / Expand the HKEY_LOCAL_MACHINE folder. 4. Double click / Expand ...