Skip to content

Instantly share code, notes, and snippets.

View 3arlN3t's full-sized avatar

Otsile Earl Kole 3arlN3t

View GitHub Profile
@3arlN3t
3arlN3t / default.md
Created June 22, 2025 02:30 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@3arlN3t
3arlN3t / OhMyPosh
Last active May 16, 2025 04:11
OhMyPosh
#Requires -Version 5.1
#------------------------------------------------------------------------------
# PowerShell Profile
#
# This script enhances the PowerShell console experience with PSReadLine,
# custom keybindings, argument completers, and shell integrations.
#------------------------------------------------------------------------------
# Explicitly use namespaces for clarity and to leverage their types directly.
@3arlN3t
3arlN3t / sql-cheatsheet.md
Created July 28, 2023 04:01 — forked from smarteist/sql-cheatsheet.md
SQL cheat sheet

SQL languages

DDL is short name of Data Definition Language, which deals with database schemas and descriptions, of how the data should reside in the database.

DCL is short name of Data Control Language which includes commands such as GRANT, and mostly concerned with rights, permissions and other controls of the database system.

DML is short name of Data Manipulation Language which deals with data manipulation, and includes most common SQL statements such INSERT, UPDATE, DELETE etc, and it is used to store, modify, delete and update data in database.

DQL is short name of Data Query Language which used for performing queries on the data within schema objects. The purpose of the DQL Command is to get some schema relation based on the query passed to it. SELECT statement is used to retrieve data from the database.