Firefox
michaelvizsolyi
Joined in 2020
Finding guides
michaelvizsolyi
Joined in 2020
preview
tyler
Joined in 2015
Finding guides
tyler
Joined in 2015

password managers
Password Managers

password managers3 guides
About h/passwordmanagers

A password manager, like 1Password or DashLand, helps you securely keep track of the passwords you use for various services and websites, making it so you only have to remember one. At Howchoo, we recommend everyone start using a good password manager to increase their overall browsing security. Password managers also let businesses and families securely share passwords with one another.

These interests are similar to the passwordmanagers interest.

h/security • 38 guides
About h/passwordmanagers

A password manager, like 1Password or DashLand, helps you securely keep track of the passwords you use for various services and websites, making it so you only have to remember one. At Howchoo, we recommend everyone start using a good password manager to increase their overall browsing security. Password managers also let businesses and families securely share passwords with one another.

These interests are similar to the passwordmanagers interest.

h/security • 38 guides
About h/passwordmanagers

A password manager, like 1Password or DashLand, helps you securely keep track of the passwords you use for various services and websites, making it so you only have to remember one. At Howchoo, we recommend everyone start using a good password manager to increase their overall browsing security. Password managers also let businesses and families securely share passwords with one another.

About h/passwordmanagers
3
2
About h/passwordmanagers
3
2
Related interests
h/security • 38 guides
h/security • 38 guides
Started By
michaelvizsolyi's profile picture
michaelvizsolyi
Joined in 2020
michaelvizsolyi's profile picture
michaelvizsolyi
Joined in 2020
michaelvizsolyi's profile picture
Unlock 1Password with Your Apple Watch
Unlock 1Password with Your Apple WatchHow to Unlock 1Password With Your Apple Watchsecurity1passwordpasswordmanagers
NordPass Review
NordPass ReviewNordPass Review: Finally a Free Password Manager We Can Lovesecuritynordvpnpasswordmanagers
1Password vs NordPass
1Password vs NordPass1Password vs NordPass: Who Wins Might Surprise You!securitypasswordmanagers
Finding guides
Finding guides
Unlock 1Password with Your Apple Watch
Unlock 1Password with Your Apple WatchHow to Unlock 1Password With Your Apple Watchsecurity1passwordpasswordmanagers
NordPass Review
NordPass ReviewNordPass Review: Finally a Free Password Manager We Can Lovesecuritynordvpnpasswordmanagers
1Password vs NordPass
1Password vs NordPass1Password vs NordPass: Who Wins Might Surprise You!securitypasswordmanagers

These interests are similar to the passwordmanagers interest.

h/security • 38 guides
h/security • 38 guides
Discover interesting things!
Explore Howchoo’s most popular interests.
Explore

Follow @howchoo and learn cool things:

Are you a passionate writer? We’re hiring!

Write for Howchoo

Like what we do?

Donate

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Write for HowchooDonate

Build a Simple Raspberry Pi LED Power/Status Indicator

ZachZach Zach (248)
Feb 26, 2021
15 minutes

This short guide will show you how to add an LED power indicator/status light to your Raspberry Pi, letting you know when it’s powered and when it’s safe to unplug your Pi. This LED will illuminate when your Pi is running and turn off when your Pi has been successfully shut down. The LED can then be mounted anywhere on your project—for example, on the outside of your PiCart’s NES cartridge/case.

This guide will work with any Raspberry Pi model/version. In addition to the full guide below, I also made a Raspberry Pi power LED video version of this guide:

Watch the video:

Be sure to check out both!

Raspberry PiRaspberry PiRaspberry Pi ×1
Soldering ironSoldering ironSoldering iron ×1
330ohm resistor ×1
Solder ×1
LED, red, 3mm ×1
Jumper wiresJumper wiresJumper wires ×2

Howchoo is reader-supported. As an Amazon Associate, we may earn a small affiliate commission at no cost to you when you buy through our links.

There are several reasons a power LED is useful:

You left your Pi on

This LED will remind you to turn it off.

Your Pi is safe to unplug

It’s unsafe to shut down your Raspberry Pi by pulling the plug since this can lead to data corruption. However, after shutting your Pi down safely, this LED will tell you when it’s safe to pull the plug.

Methods for adding Pi LED status indicatorsMethods for adding Pi LED status indicators

There are a few basic methods for illuminating LEDs on your Pi:

1. Software approach:

The LED is connected to one of your Pi’s GPIO (general-purpose input/output) pins and you write a bit of code that will monitor and update the LED based on some input—for example, your Pi running or the temperature outside being higher than 76 degrees.

Pros: You can illuminate LEDs of various colors, or illuminate your LED based on dynamic input—such as when a battery-powered Pi is running low on juice.

Cons: Requires you to write software that executes at startup, adding a bit of complexity.

2. Serial approach (this guide):

The LED Is connected to your Pi’s TxD pin, which monitors the serial console. The LED will flicker a tad while booting, stay solid while your Pi is running, and turn off when it’s safe to remove power.

Pros: Simplicity. No code is needed and it just sort of works. Also, this is a great foray into the hardware portion of your Pi.

Cons: Limited to providing information about when the Pi is on or off—a very binary solution.

Newer versions of Raspberry Pi OS (May 2016 and later) have the GPIO serial port disabled by default; the end result is your LED will not light up! Luckily, enabling it is super easy.

Edit your /boot/config.txt file and add the following line:

enable_uart=1

You can edit this file by connecting to your Pi via SSH or by putting the SD card into your computer and editing the file directly. This file is accessible from the SD card.

Raspberry Pi power LED GPIO wiring/pinout diagramRaspberry Pi power LED GPIO wiring/pinout diagram

This step will require some soldering. I rigged everything up on a breadboard to prototype, but you can go straight to soldering now that we have the circuit figured out.

To build this circuit, we’re going to use a 330Ω (ohm) resistor connected to a small LED (about 2V, but one of slightly higher voltage will work well too—just keep it below 5V). The LED is powered by the Pi’s TxD serial output pin and the resistor protects the Pi against your LED requesting high current draws that can fry your Pi.

The LED’s “short” (negative/cathode) lead connects to the resistor and your Pi’s ground pin, while the “long” (positive/anode) lead connects to the TxD pin.

Use the attached circuit diagram to solder your connections. If you’re using a Pi Zero and don’t have header pins soldered to your Raspberry Pi, you can solder directly to the Pi itself. Remove your SD card before soldering to your Pi as it is easily damaged by heat. Be sure to leave enough wire for your LED to reach its final destination.

Pinout.xyz is a great resource for learning about and identifying your Pi’s GPIO pins.

If something is already connected to your Pi’s ground on pin 6, you can use any other ground pin on your Pi. You can see a list of other GPIO ground pins here.

Testing Pi power LED circuitTesting Pi power LED circuit

Boot up your Pi—the LED should illuminate solid once fully booted. Next, safely shut down your Pi and after several seconds the LED should turn off.

Install the LED circuitInstall the LED circuit

Now for the fun part: installing the LED in your case. I used a small drill bit and installed the LED just beneath the thumb-hold on my Pi Cart so that it would illuminate the table just beneath the cartridge.

Route your wires carefully and use hot glue to secure your LED in place.

Circuit powered offCircuit powered off

Here’s a shot of the status LED after the Pi has been powered off. This also shows the installation location I chose. I used a 3mm drill bit to install the LED.

All finished!All finished!

Here’s the final product. Works great! If you have any comments or questions, post below and I’ll do my best to help you out.

Next, add a power button to your Raspberry Pi and shut it down safely! The power button will even wake your Pi up. You can even use an illuminated button by combining the fundamentals from this LED guide and the power button guide. 🙂

Because you should always safely shut down your Pi.
JohnJohn John (304)
Nov 25, 2020
20 minutes

To keep the price down, the Raspberry Pi doesn’t ship with a power button, yet it’s easy to add your own!

Follow @howchoo and learn cool things:

Are you a passionate writer? We’re hiring!

Write for Howchoo

Like what we do?

Donate

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Build a Simple Raspberry Pi LED Power/Status Indicator

ZachZach Zach (248)
Feb 26, 2021
15 minutes

This short guide will show you how to add an LED power indicator/status light to your Raspberry Pi, letting you know when it’s powered and when it’s safe to unplug your Pi. This LED will illuminate when your Pi is running and turn off when your Pi has been successfully shut down. The LED can then be mounted anywhere on your project—for example, on the outside of your PiCart’s NES cartridge/case.

This guide will work with any Raspberry Pi model/version. In addition to the full guide below, I also made a Raspberry Pi power LED video version of this guide:

Watch the video:

Be sure to check out both!

Raspberry PiRaspberry PiRaspberry Pi ×1
Soldering ironSoldering ironSoldering iron ×1
330ohm resistor ×1
Solder ×1
LED, red, 3mm ×1
Jumper wiresJumper wiresJumper wires ×2

Howchoo is reader-supported. As an Amazon Associate, we may earn a small affiliate commission at no cost to you when you buy through our links.

There are several reasons a power LED is useful:

You left your Pi on

This LED will remind you to turn it off.

Your Pi is safe to unplug

It’s unsafe to shut down your Raspberry Pi by pulling the plug since this can lead to data corruption. However, after shutting your Pi down safely, this LED will tell you when it’s safe to pull the plug.

Methods for adding Pi LED status indicatorsMethods for adding Pi LED status indicators

There are a few basic methods for illuminating LEDs on your Pi:

1. Software approach:

The LED is connected to one of your Pi’s GPIO (general-purpose input/output) pins and you write a bit of code that will monitor and update the LED based on some input—for example, your Pi running or the temperature outside being higher than 76 degrees.

Pros: You can illuminate LEDs of various colors, or illuminate your LED based on dynamic input—such as when a battery-powered Pi is running low on juice.

Cons: Requires you to write software that executes at startup, adding a bit of complexity.

2. Serial approach (this guide):

The LED Is connected to your Pi’s TxD pin, which monitors the serial console. The LED will flicker a tad while booting, stay solid while your Pi is running, and turn off when it’s safe to remove power.

Pros: Simplicity. No code is needed and it just sort of works. Also, this is a great foray into the hardware portion of your Pi.

Cons: Limited to providing information about when the Pi is on or off—a very binary solution.

Newer versions of Raspberry Pi OS (May 2016 and later) have the GPIO serial port disabled by default; the end result is your LED will not light up! Luckily, enabling it is super easy.

Edit your /boot/config.txt file and add the following line:

enable_uart=1

You can edit this file by connecting to your Pi via SSH or by putting the SD card into your computer and editing the file directly. This file is accessible from the SD card.

Raspberry Pi power LED GPIO wiring/pinout diagramRaspberry Pi power LED GPIO wiring/pinout diagram

This step will require some soldering. I rigged everything up on a breadboard to prototype, but you can go straight to soldering now that we have the circuit figured out.

To build this circuit, we’re going to use a 330Ω (ohm) resistor connected to a small LED (about 2V, but one of slightly higher voltage will work well too—just keep it below 5V). The LED is powered by the Pi’s TxD serial output pin and the resistor protects the Pi against your LED requesting high current draws that can fry your Pi.

The LED’s “short” (negative/cathode) lead connects to the resistor and your Pi’s ground pin, while the “long” (positive/anode) lead connects to the TxD pin.

Use the attached circuit diagram to solder your connections. If you’re using a Pi Zero and don’t have header pins soldered to your Raspberry Pi, you can solder directly to the Pi itself. Remove your SD card before soldering to your Pi as it is easily damaged by heat. Be sure to leave enough wire for your LED to reach its final destination.

Pinout.xyz is a great resource for learning about and identifying your Pi’s GPIO pins.

If something is already connected to your Pi’s ground on pin 6, you can use any other ground pin on your Pi. You can see a list of other GPIO ground pins here.

Testing Pi power LED circuitTesting Pi power LED circuit

Boot up your Pi—the LED should illuminate solid once fully booted. Next, safely shut down your Pi and after several seconds the LED should turn off.

Install the LED circuitInstall the LED circuit

Now for the fun part: installing the LED in your case. I used a small drill bit and installed the LED just beneath the thumb-hold on my Pi Cart so that it would illuminate the table just beneath the cartridge.

Route your wires carefully and use hot glue to secure your LED in place.

Circuit powered offCircuit powered off

Here’s a shot of the status LED after the Pi has been powered off. This also shows the installation location I chose. I used a 3mm drill bit to install the LED.

All finished!All finished!

Here’s the final product. Works great! If you have any comments or questions, post below and I’ll do my best to help you out.

Next, add a power button to your Raspberry Pi and shut it down safely! The power button will even wake your Pi up. You can even use an illuminated button by combining the fundamentals from this LED guide and the power button guide. 🙂

Because you should always safely shut down your Pi.
JohnJohn John (304)
Nov 25, 2020
20 minutes

To keep the price down, the Raspberry Pi doesn’t ship with a power button, yet it’s easy to add your own!

Follow @howchoo and learn cool things:

Are you a passionate writer? We’re hiring!

Write for Howchoo

Like what we do?

Donate

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Michael's profile pictureMichael
Joined in 2020 154 guides
A maker at heart, Michael loves all things DIY. Michael is an award-winning poet, writer, and editor. He has published two books of poetry and has writing in publications such as The Wall Street Journal, New York Magazine, The New Yorker, and many others. He has taught writing at colleges across the country, and managed many leading literary magazines to national prominence. Now, he’s excited to devote his energies full time to Howchoo. He currently resides in the Tampa-area with his wife and puppy.
Related to this guide:
pigeon people japanpigeon people japan
From the comedic to the breathtaking.
In these interests: photographygoogle
Google Default ProfileGoogle Default Profile
Changing your default Google account could save you major time in the long run!
In these interests: remoteworkgoogle
Posted in these interests:
googlegoogle
Explore
h/google 26 guides
Google Docs LogoGoogle Docs Logo
Explore
h/googledocs 19 guides
Google Workspace GraphicGoogle Workspace Graphic
Explore
h/googleworkspace 18 guides
Discuss this guide!

How to Create a Folder in Google Docs

You can create new folders directly in Google Docs!
Michael Michael (154)
Feb 23, 2021
0

When you make a Google Doc, it’s automatically saved into your Google Drive. However, you can put it in a custom folder and even create a brand new folder in Google Docs. This way, you won’t have to open a new tab to move your Google Doc into a new folder.

We’ll show you how to make a folder in Google Docs easily.

Google Drive and Google Docs saving

Remember that Google Drive is where all of your folders are located. You can open things and move things into your folders from Google Docs, however — so you don’t have to jump back and forth.

Google WorkspaceGoogle Workspace ×1

Howchoo is reader-supported. When you buy through links on our site, we may earn a small affiliate commission at no cost to you.

Create new folder google docsCreate new folder google docs

Even if you don’t want to move this particular document into your new folder in Google Docs, you still:

  • Select the small folder icon next to the document name.
  • Next, click the folder icon with the + sign at the bottom-left.

This will take you to a screen where you can create a new folder.

Name new folder in google docsName new folder in google docs

Give your new folder a name and click the ✓ mark to create it.

You can now move this document and other Google Docs, Sheets, etc., into your new folder, which is in your Google Drive.

We’ll show both extremes of text verticality!
Michael Michael (154)
Feb 23, 2021
0

In this guide, we’ll show the shortcuts for both using subscripts and superscripts in Google Docs. What is a subscript?

Follow @howchoo and learn cool things:

Are you a passionate writer? We’re hiring!

Write for Howchoo

Like what we do?

Donate

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Michael's profile pictureMichael's profile pictureMichael
Joined in 2020 175 guides
A maker at heart, Michael loves all things DIY. Michael is an award-winning poet, writer, and editor. He has published two books of poetry and has writing in publications such as The Wall Street Journal, New York Magazine, The New Yorker, and many others. He has taught writing at colleges across the country, and managed many leading literary magazines to national prominence. Now, he’s excited to devote his energies full time to Howchoo. He currently resides in the Tampa-area with his wife and puppy.
Related to this guide:
Basic vim commandsBasic vim commands
Because you’ve accidentally opened Vim and don’t know how to exit
In these interests: vim
How to Restore Normal Tab Cycling in Sublime TextHow to Restore Normal Tab Cycling in Sublime Text
By default, CTRL-TAB and SHIFT-CTRL-TAB don’t operate in the same way that Google Chrome’s tab cycling does. For example, when you press CTRL-TAB, it doesn’t always cycle to the next open document.
In these interests: macwindowssublime
Alfawise U20 Review: A Large Scale Budget 3D PrinterAlfawise U20 Review: A Large Scale Budget 3D Printer
A large scale review for a large scale printer!
In these interests: 3dprinterreviews3dprinting
People also read:
Zonestar Z10M2 3d printerZonestar Z10M2 3d printer
An affordable, large, dual extruder 3D printer that has its faults.
CZ-300 3D PrinterCZ-300 3D Printer
A sleek printer for large scale printing.
Alfawise U30 ProAlfawise U30 Pro
A 3D printer with a built in touchscreen!
How to Convert Images and PDFs to Text Using Google Documents!How to Convert Images and PDFs to Text Using Google Documents!
Google’s powerful suite of tools makes copying text from images or PDFs a complete breeze!
Posted in these interests:
Google Docs LogoGoogle Docs Logo
Explore
h/googledocs 30 guides
Google Workspace GraphicGoogle Workspace Graphic
Explore
h/googleworkspace 58 guides
fonts differentfonts different
Explore
h/fonts 15 guides
Discuss this guide!