Here’s your AWS Developer Associate Study Guide (Markdown format) — written like a clean, shareable internal doc or Notion page, with exam-focused callouts.
🎯 Slide Deck: Jira Kanban Reports Explained 🟦 Slide 1 — Title
Jira Kanban Reports & Metrics Understanding Flow, Predictability, and Planning
CFD, Cycle Time, Throughput, Burnup Practical insights for Agile teams 🟦 Slide 2 — Why These Reports Matter Improve delivery predictability
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
| # Please install cowsay or else! | |
| now=$(date +%H:%M) | |
| message="U da Goat!" | |
| uptimemsg=$(uptime | awk -F'(up |, [0-9]+ users?)' '{print "up" $2}') | |
| printf '\033[36m' | |
| cowsay -d "$message $uptimemsg" | |
| echo "You are using $(grep '^PRETTY_NAME=' /etc/os-release | cut -d= -f2 | tr -d '"') $(uname -m)" |
A Symfony cheat sheet provides a quick reference for commonly used commands, configurations, and best practices within the Symfony framework. It typically covers various aspects of Symfony development, including:
- Console Commands: Project Management. Code
php bin/console -V # Check Symfony version
php bin/console list # List all available commands
Database Operations (Doctrine).
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
| #!/usr/bin/env bash | |
| # bastion-connector.sh | |
| # Simple helper to SSH into private VPC hosts via a bastion jump server. | |
| # Usage: | |
| # ./bastion-connector.sh <TARGET_PRIVATE_IP> [USERNAME] | |
| # | |
| # Example: | |
| # ./bastion-connector.sh 10.15.3.42 ubuntu |
Perfect 👌 I’ll give you a clean React + TypeScript + Vite + SWC + Bootstrap + React Router starter template.
This setup will:
- Use Vite as bundler
- Use SWC (
@vitejs/plugin-react-swc) instead of Babel - Add Bootstrap styling
- Add React Router v6 for pages & navigation
- Include a Navbar + Footer layout
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
| <?php | |
| // composer require usmanhalalit/pixie | |
| require 'vendor/autoload.php'; | |
| use Pixie\Connection; | |
| use Pixie\QueryBuilder\QueryBuilderHandler; | |
| // Setup DB connection | |
| $config = [ | |
| 'driver' => 'mysql', |
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
| <?php | |
| /* aka message list */ | |
| require 'vendor/autoload.php'; | |
| $redis = new Predis\Client(); | |
| $user = $_GET['user']; | |
| $ids = $redis->lrange("imail:messages:$user", 0, -1); | |
| foreach ($ids as $id) { |
NewerOlder