Source document at: http://nginx.org/en/docs/http/ngx_http_core_module.html#variables
Wiki document (deprecated) at: http://wiki.nginx.org/HttpCoreModule
Read only| Name | Description |
|---|
| # Tailwind CSS LLMs.txt Documentation | |
| > This document provides a comprehensive overview of Tailwind CSS utility classes, examples, and customization options. It covers various CSS properties like layout, spacing, typography, backgrounds, borders, effects, transitions, transforms, and more, explaining how to use Tailwind's utility classes to style web elements effectively and responsively. | |
| This document details the documentation of Tailwind CSS utilities. It explains how Tailwind scans source files for classes, the importance of using complete class names, and how utility classes can be applied conditionally using variants for states (hover, focus), responsive breakpoints, dark mode, and other conditions. It also covers customization via theme variables and adding custom styles. | |
| **Core Concepts (from styling-with-utility-classes.mdx & responsive-design.mdx):** | |
| * **Utility-First:** Style elements by combining many single-purpose utility classes directly in HTML. | |
| * **Constraint-Based:** Utilities general |
| loginctl enable-linger $UID |
| // Idiomatic Semaphore Example in Go | |
| // Lucas Wagner | |
| // Golang has no built-in facility to implement semaphores, so a common design | |
| // pattern is to use buffered channels. | |
| package main | |
| import ( | |
| "fmt" |
| import java.time.format.DateTimeFormatter; | |
| import java.time.temporal.ChronoUnit; | |
| import java.time.OffsetDateTime; | |
| import java.time.ZonedDateTime; | |
| import java.util.Date; | |
| class Main { | |
| public static void main(String args[]) { | |
| String documentDateTime = "2022-02-02T12:00:00+04:00"; | |
| String createDateTime = "2022-02-02T08:15:00.000Z"; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Validate Emirates ID</title> | |
| <link rel="stylesheet" href="https://unpkg.com/mvp.css"> | |
| <style> | |
| section { | |
| display: flex; |
| #!/bin/bash | |
| # file: ttfb.sh | |
| # curl command to check the time to first byte | |
| # ** usage ** | |
| # 1. ./ttfb.sh "https://google.com" | |
| # 2. seq 10 | xargs -Iz ./ttfb.sh "https://google.com" | |
| curl -o /dev/null \ | |
| -H 'Cache-Control: no-cache' \ | |
| -s \ |
Source document at: http://nginx.org/en/docs/http/ngx_http_core_module.html#variables
Wiki document (deprecated) at: http://wiki.nginx.org/HttpCoreModule
Read only| Name | Description |
|---|
| js_include batch-api-min.js; | |
| # keyval_zone for APIs where the last portion of the URI is an argument | |
| # The key is the portion of the URL before the last part | |
| keyval_zone zone=batch_api:64k state=/etc/nginx/state-files/batch-api.json; | |
| keyval $uri_prefix $batch_api zone=batch_api; | |
| # keyval_zone for APIs where the last portion of the URI is an argument | |
| # The key is the URI | |
| keyval_zone zone=batch_api2:64k state=/etc/nginx/state-files/batch-api2.json; |
| #!/usr/bin/env python | |
| import os | |
| import numpy | |
| import pandas | |
| xlsx = './workbook.xlsx' | |
| df = pandas.read_excel(open(xlsx,'rb'), sheetname=1) | |
| df2 = pandas.pivot_table(df, |
| #!/usr/bin/env python | |
| import os | |
| import numpy | |
| import pandas | |
| xlsx = './workbook.xlsx' | |
| df = pandas.read_excel(open(xlsx,'rb'), sheetname=0) | |
| id_vars = ['Department', 'Category', 'Item'] |