This document describes how to set up Windows 10 for cross-platform development (Go, NodeJS, etc) with Windows Subsystem for Linux (WSL).
Most of the information here is collected from
| from typing import Dict, Union | |
| from huggingface_hub import get_safetensors_metadata | |
| import argparse | |
| import sys | |
| # Example: | |
| # python get_gpu_memory.py Qwen/Qwen2.5-7B-Instruct | |
| # Dictionary mapping dtype strings to their byte sizes | |
| bytes_per_dtype: Dict[str, float] = { |
| /* | |
| TABLE OPTIONS | |
| This options should be used for : | |
| - FileTable | |
| - Partitioning and Filegroups | |
| - WITH options | |
| - TEXTIMAGE_ON | |
| - FILESTREAM_ON | |
| */ |
This document describes how to set up Windows 10 for cross-platform development (Go, NodeJS, etc) with Windows Subsystem for Linux (WSL).
Most of the information here is collected from
| defmodule RingFacade do | |
| @moduledoc """ | |
| A hash ring facade calulates to which node and facade in ring command will be sent. | |
| ## Example | |
| iex> params = %{"id" => 1, "first_name" => "Foo", "last_name" => "Baz", "email" => "foo.baz@example.com"} | |
| iex> RingFacade.call(:create_user, params, routing_key: 1, timout: 5_000) | |
| {:ok, :created} | |
| """ |
| Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 } |
| <!DOCTYPE html> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <meta name=apple-mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-status-bar-style content=black> | |
| <title>Test fullscreen</title> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| padding: 0; |