Skip to content

Instantly share code, notes, and snippets.

CREATE A CLASSIC SHELL EXPLORER TOOLBAR BUTTON TO COPY AS PATH

I often really like to copy a file or folder path to the clipboard. If you use Classic Shell with the additional Shell Explorer toolbar, then you can do this by following these instructions. Much of this information I found on Winaero [^1] but I also had to adapt it to my own setup.

  1. Open Classic Explorer Settings and switch to the "Toolbar Buttons" tab. There you will see two columns with various commands. The left one is your current toolbar, and the right column is the available set of commands which you can add.
  2. You will see a "Custom" item in the right column if you scroll down. Add this new Custom item to the left column by dragging it from the right column to the left or by double clicking it. You can reposition it anywhere you want after you add it to the left column.
  3. Double click the Custom button item and an "Edit Toolbar Button" dialog will appear on the screen:

![Usi

@lundeen-bryan
lundeen-bryan / README.md
Last active September 18, 2023 05:32
Show remaining time for Udemy course sections that are open

Udemy Time Remaining

Introduction

A browser extension that calculates and displays the total remaining time of Udemy courses.

Features

  • Automatic time calculation for all videos in a course.
  • Convenient popup interface with total course time.
  • Easy sharing to Twitter with a click.
@lundeen-bryan
lundeen-bryan / Change String Date.au3
Last active September 13, 2023 05:41
autoit snippets
HotKeySet("+!d", "ConvDate") ; Shift-Alt-d
While 1
Sleep(100)
Wend
Func ConvDate()
sleep(200)
Send("^c")
@lundeen-bryan
lundeen-bryan / group_name.txt
Last active July 6, 2023 19:08
formula for list
=IF(OR(LEFT(patient_name, 1)="A", LEFT(patient_name, 1)="B", LEFT(patient_name, 1)="C"), "ABC",
IF(OR(LEFT(patient_name, 1)="D", LEFT(patient_name, 1)="E", LEFT(patient_name, 1)="F"), "DEF",
IF(OR(LEFT(patient_name, 1)="G", LEFT(patient_name, 1)="H", LEFT(patient_name, 1)="I"), "GHI",
IF(OR(LEFT(patient_name, 1)="J", LEFT(patient_name, 1)="K", LEFT(patient_name, 1)="L"), "JKL",
IF(OR(LEFT(patient_name, 1)="M", LEFT(patient_name, 1)="N"), "MN",
IF(OR(LEFT(patient_name, 1)="O", LEFT(patient_name, 1)="P", LEFT(patient_name, 1)="Q"), "OPQ",
IF(OR(LEFT(patient_name, 1)="R", LEFT(patient_name, 1)="S"), "RS",
IF(OR(LEFT(patient_name, 1)="T", LEFT(patient_name, 1)="U", LEFT(patient_name, 1)="V"), "TUV",
IF(OR(LEFT(patient_name, 1)="W", LEFT(patient_name, 1)="X", LEFT(patient_name, 1)="Y", LEFT(patient_name, 1)="Z"), "WXYZ"
)
@lundeen-bryan
lundeen-bryan / README.md
Created May 26, 2023 16:05
readme template

Read Me Template

Project Image

This is a ReadMe template to help save you time and effort.


Link To Project

See the Project Name on Linkify.

@lundeen-bryan
lundeen-bryan / gptchats.md
Last active March 17, 2023 13:30
archive of gpt chats

GPT Chats

These are all chats with GPT just the link is provided

2023-03-17

RE: several programming principles like SOLID, KISS, etc

https://higpt.wiki/jPfFHed

@lundeen-bryan
lundeen-bryan / Excel_Formatting.ipynb
Created February 4, 2023 19:01 — forked from pybokeh/Excel_Formatting.ipynb
Excel Formatting in xlwings
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lundeen-bryan
lundeen-bryan / xlwings_test.ipynb
Last active January 22, 2023 17:20
just a test for sql in jupyter nb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lundeen-bryan
lundeen-bryan / bar_chart_exercise.ipynb
Last active January 22, 2023 18:25
bar_chart_exercise.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lundeen-bryan
lundeen-bryan / .bash_aliases
Last active September 15, 2023 13:24
bash_backups
# list files per line
alias lf="ls -1ASk"
# quit bash like in vim
alias :q="exit"
# clear the screen
alias clr="clear"
# run ipython with vi
alias ipy="ipython --TerminalInteractiveShell.editing_mode='vi'"
# show grep history
alias gh="history|grep"