- Popup Mode
- Conditional formatting
- Number Formatting (for tooltip)
- Measure based on category, only Numeric Filter
- Saved Filters
- Alphanumeric filter*
- Filter Context support
- Single select for month / Day
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
┌────────────────────────────────────┐ | |
│ Teams Email Bridge [?] [Settings]│ | |
├─────────────────────────────────────┤ | |
│ 📧 Quick Compose │ | |
│ 📋 Templates │ | |
│ 👥 Recent Contacts │ | |
│ 📝 Sent History │ | |
└─────────────────────────────────────┘ |
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
mkdir -p chapter1/1.{1,2,3,4,5,6} |
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
{ | |
"type": "module", | |
"dependencies": { | |
"@coinpaprika/api-nodejs-client": "^2.0.0", | |
"@modelcontextprotocol/sdk": "^1.7.0", | |
"ws": "^8.18.1", | |
"zod": "^3.24.2" | |
} | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>LinkedIn Resume Builder</title> | |
<link | |
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@400;500;600&display=swap" | |
rel="stylesheet" | |
/> |
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
""" | |
Business Simulation Decision Types | |
================================= | |
This module defines the various decision types available in the business simulation | |
and their specific parameters and effects. | |
""" | |
from typing import Dict, Any, List, Optional | |
from enum import Enum |
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
{ | |
"privileges": [ | |
{ | |
"name": "ExportContent", | |
"essential": true | |
}, | |
{ | |
"name": "LocalStorage", | |
"essential": true | |
}, |
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
// Example with nested conditionals (harder to read) | |
function processUserRegistration(user) { | |
if (user.hasValidEmail) { | |
if (user.isMinimumAge) { | |
if (user.hasAcceptedTerms) { | |
if (user.hasProvidedValidPassword) { | |
// Perform registration | |
return { | |
success: true, | |
userId: generateUserId(), |
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
input | |
1 - 2 | |
1 - 3 | |
2 - 3 | |
2 - 4 | |
3 - 1 | |
3 - 2 | |
4 - 1 | |
4 - 2 |
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
import sqlite3 | |
import torch | |
from transformers import AutoTokenizer, AutoModel | |
from tqdm import tqdm | |
import gc | |
#python3 -m venv path/to/venv | |
#source path/to/venv/bin/activate | |
# Connect to the SQLite database | |
conn = sqlite3.connect('data.sqlite') |
NewerOlder