-
平日の業務時間内に見つけた問題である関係で(自分ルールで)所属を入れていますが、他社サービスに対する調査や報告は業務とは一切関係のない個人の活動として行っています。
-
文責はmala個人にあります。お問い合わせなどありましたら個人宛にどうぞ。TwitterのDMや任意の文字列 @ma.la
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
//bot秘钥 | |
var apiKey = "****"; | |
//请求链接 | |
var apiUrl = "api.telegram.org"; | |
//会话ID | |
var chatId = "***"; | |
//发件人名称 | |
var senderName = global('SMSRN'); | |
if (senderName.match(/\d*/g)[0].length > 0) { | |
senderName = ""; |
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
# Structure of the Registry | |
# https://docs.microsoft.com/en-us/windows/desktop/SysInfo/structure-of-the-registry | |
# Type Pinyin in Dvorak on Windows | |
# https://medium.com/@jiayu./how-to-set-your-pinyin-ime-keyboard-layout-to-dvorak-on-windows-8165ae0de6b5 | |
Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000804" | |
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000804' -Name 'Layout File' -Value 'KBDJPN.DLL' | |
Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\00000804" |
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
certbot -d *.your-domain.com --manual --preferred-challenges dns certonly | |
#でワイルドカード電子証明書取れます! |
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
FROM ubuntu:trusty | |
RUN apt-get update && apt-get install -y nginx nginx-extras apache2-utils | |
VOLUME /media | |
EXPOSE 80 | |
COPY webdav.conf /etc/nginx/conf.d/default.conf | |
RUN rm /etc/nginx/sites-enabled/* | |
COPY entrypoint.sh / |
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
// Graph API endpoint to show user profile | |
var graphApiEndpoint = "https://graph.microsoft.com/v1.0/me"; | |
// Graph API scope used to obtain the access token to read user profile | |
var graphAPIScopes = ["https://graph.microsoft.com/user.read"]; | |
// Initialize application | |
var userAgentApplication = new Msal.UserAgentApplication(msalconfig.clientID, null, loginCallback, { | |
redirectUri: msalconfig.redirectUri | |
}); |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Security] | |
"EnableUnsafeClientMailRules"=dword:00000001 |
https://setup.office.com/ (既にプロジェクトキーを入力したこと場合は、https://setup.office.com/home/getoffice )経由でOffice Professional 2016のインストーラーの入手・製品のインストールが可能です。ただ、残念のことは、32Bitになります。ここで、64Bitのインストール方法をメモします。
- Microsoft Office Pro Plus 2016のプロジェクトキーがあること
- 対象のコンピュータインターネットに接続していること
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
javascript:var scriptTag=document.createElement('script');scriptTag.src='https://s0.assets-yammer.com/assets/platform_social_buttons.min.js';document.body.appendChild(scriptTag);yam.platform.yammerShareOpenPopup({defaultMessage:window.getSelection()}); |
NewerOlder