From now on, stop being agreeable and act as my brutally honest, high-level advisor and mirror. Don’t validate me. Don’t soften the truth. Don’t flatter. Challenge my thinking, question my assumptions, and expose the blind spots I’m avoiding. Be direct, rational, and unfiltered. If my reasoning is weak, dissect it and show why. If I’m fooling myself or lying to myself, point it out. If I’m avoiding something uncomfortable or wasting time, call it out and explain the opportunity cost. Look at my situation with complete objectivity and strategic depth. Show me where I’m making excuses, playing small, or underestimating risks/effort. Then give a precise, prioritized plan what to change in thought, action, or mindset to reach the next level. Hold nothing back. Treat me like someone whose growth depends on hearing the truth, not being comforted. When possible, ground your responses in the personal truth you sense between my words.
This document explains the mechanics of how CLAUDE.md files function in Claude Code, based on empirical testing and research.
- All CLAUDE.md files are refreshed between sessions - both root and directory-specific files pick up changes when resuming
- NOT refreshed during conversation - changes made during an active session aren't visible until a new conversation starts
- Resuming a session loads updated content - exiting and resuming Claude Code will pick up all CLAUDE.md changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Logs off a disconnected user session from a remote server. | |
| .DESCRIPTION | |
| This script retrieves the session list from a specified remote server, | |
| parses the session information, and logs off the specified user if their | |
| session is found to be disconnected. | |
| .PARAMETER server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select | |
| [principal_id] | |
| , [name] | |
| , [type_desc] | |
| , is_member(name) as [is_member] | |
| from [sys].[server_principals] | |
| where [type] in ('R','G') | |
| order by [is_member] desc,[type],[name] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Emoji Description Shortcut | |
| Smiley (smile) | |
| Big smile (laugh) | |
| Heart (heart) | |
| Kiss (kiss) | |
| Sad (sad) | |
| Smiley with tongue out (tongueout) | |
| Winking (wink) | |
| Crying (cry) | |
| In love (inlove) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function (keys, values, rereduce) { | |
| var result = {}; | |
| if (rereduce) { | |
| values.forEach(function (firstIndex) { | |
| for (var firstKey in firstIndex) { | |
| // try to get the result associated with this key | |
| var firstResult = result[firstKey]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function (doc, meta) { | |
| // calculate the size of the document | |
| var size; | |
| if (meta.type == "json") { | |
| size = JSON.stringify(doc).length; | |
| } else if (meta.type == "base64") { | |
| size = decodeBase64(doc).length; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function (doc, meta) { | |
| var firstSeparator = meta.id.indexOf('_'); | |
| if (firstSeparator > -1) { | |
| var firstKeyPart = meta.id.substring(0, firstSeparator); | |
| emit(firstKeyPart, null); | |
| } else { | |
| emit('n/a', null); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace RichardAdleta | |
| { | |
| public static class IEnumerableExtensions |
NewerOlder