- テキストボックス中のカーソル位置を取得し、また、カーソル位置にプレースホルダーを挿入するサンプルコードです。
- Target Textarea は、カーソル位置取得・プレースホルダ挿入対象のテキストボックスです。
- Dummy Textarea や Dummy Text は、無関係のテキストボックス・段落です。
| # | |
| # Modify Windows shortcut files | |
| # | |
| # Path to find shortcuts from | |
| # e.g. | |
| # [string]$findPath = "\\myserver1\myfolder" | |
| # -> Find shortcuts from "\\myserver1\myfolder". | |
| [string]$findPath = "." |
| version: '3' | |
| services: | |
| xxx: | |
| build: | |
| context: dockerfile/ | |
| args: | |
| - http_proxy=${http_proxy} | |
| - https_proxy=${https_proxy} | |
| - ftp_proxy=${ftp_proxy} | |
| - no_proxy=${no_proxy} |
| import os | |
| basedir = os.path.abspath(os.path.dirname(__file__)) | |
| # BASIC APP CONFIG | |
| WTF_CSRF_ENABLED = True | |
| SECRET_KEY = 'We are the world' | |
| BIND_ADDRESS = '0.0.0.0' | |
| PORT = 9393 | |
| LOGIN_TITLE = "PDNS" |
| #!/bin/zsh | |
| USERNAME="" | |
| PASSWORD="" | |
| HOSTNAME="" | |
| curl "https://$USERNAME:$PASSWORD@dynupdate.no-ip.com/nic/update?hostname=$HOSTNAME&myip=$(curl https://ifconfig.me 2> /dev/null),$(curl https://ifconfig.co 2> /dev/null)" |
| <?xml version="1.0" standalone='no'?><!--*-nxml-*--> | |
| <!DOCTYPE service-group SYSTEM "avahi-service.dtd"> | |
| <service-group> | |
| <name replace-wildcards="yes">%h</name> | |
| <service> | |
| <type>_device-info._tcp</type> | |
| <port>0</port> | |
| <txt-record>model=Xserve</txt-record> | |
| </service> | |
| </service-group> |
| wsl --distribution Ubuntu --user root --cd ~ -- true | |
| Get-NetIPInterface | | |
| where {$_.InterfaceAlias -eq 'vEthernet (WSL)' -or $_.InterfaceAlias -eq 'vEthernet (Default Switch)'} | | |
| Set-NetIPInterface -Forwarding Enabled |
| wsl.exe --distribution Ubuntu --user root --cd ~ -- /bin/zsh -c "sudo apt update; sudo apt upgrade -y; sudo apt autoremove -y; sudo apt autoclean" |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\SOFTWARE\Citrix\ICA Client\Engine\Lockdown Profiles\All Regions\Lockdown\Virtual Channels\Seamless Windows] | |
| "TopMostonFullScreen"=True | |
| "TWIMode"=False | |
| [HKEY_CURRENT_USER\SOFTWARE\Citrix\ICA Client\Engine\Lockdown Profiles\All Regions\Lockdown\Virtual Channels\Thinwire Graphics] | |
| "TWIFullScreenMode"=True | |
| "UseFullScreen"=True |
| function unpin_taskbar([string]$appname) { | |
| ((New-Object -Com Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() | Where-Object {$_.Name -eq $appname}).Verbs() | Where-Object {$_.Name.replace('&','') -match 'タスク バーからピン留めを外す'} | ForEach-Object {$_.DoIt()} | |
| } | |
| foreach ($taskbarapp in ("PowerPoint", "Excel")) { | |
| Write-Host "Unpinning $taskbarapp" | |
| unpin_taskbar("$taskbarapp") | |
| } |