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
| <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- This file exposes the following parameters --> | |
| <!-- TailwindVersion: The version of the Tailwind Standalone CLI to download. --> | |
| <!-- TailwindDownloadPath: The path to where to download the Tailwind Standalone CLI. This property is optional, and defaults to %LOCALAPPDATA% on Windows, and $XDG_CACHE_HOME on Linux and MacOS. --> | |
| <!-- TailwindInputStyleSheetPath: The path to the input stylesheet. --> | |
| <!-- TailwindOutputStyleSheetPath: The path to the output stylesheet. --> | |
| <!-- TailwindOptimizeOutputStyleSheet: Whether to optimize the output stylesheet. This property is optional, and defaults to false. --> | |
| <!-- TailwindMinifyOutputStyleSheet: Whether to minify the output stylesheet. This property is optional, and defaults to false when Configuration is Debug, and true when Configuration is Release. --> | |
| <!-- TailwindDownloadUrl: The URL to the Tailwind Standalone CLI. This property is optional, and defau |
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 python | |
| # Kawin Viriyaprasopsook<kawin.v@kkumail.com> | |
| # 2023-10-19 | |
| # sudo apt-get -y install pcscd python-pyscard python-pil | |
| import binascii | |
| import os | |
| import sys | |
| from PIL import Image | |
| from smartcard.System import readers |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| $base=<<-SCRIPT | |
| echo ">>> Run Kubernetes Base script" |