Content :
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
| #include "IIrcClient.bi" | |
| Const IrcClientTypeLibName = "BatchedFilesIrcClient" | |
| Const IrcClientTypeLibFileName = "BatchedFilesIrcClient.tlb" | |
| Const IrcClientTypeLibDescription = "Клиентская библиотека для поддержки протокола IRC" | |
| Const IrcClientClassDescription = "Класс для Ircclient" | |
| Const IIrcClientInterfaceName = "IIrcClient" | |
| Const IIrcClientInterfaceDescription = "Интерфейс для поддержки протокола IRC" | |
| Const StdOleLibrary = "stdole32.tlb" |
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
| #ifndef unicode | |
| #define unicode | |
| #endif | |
| #include once "windows.bi" | |
| #include once "win\objbase.bi" | |
| Const ProgID_XmlHttpRequest = "Microsoft.XmlHttp" | |
| Const UserName = "UserName" | |
| Const Password = "Password" |
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
| function logColor(color, args) { | |
| console.log(`%c ${args.join(' ')}`, `color: ${color}`); | |
| } | |
| const log = { | |
| aliceblue: (...args) => { logColor('aliceblue', args)}, | |
| antiquewhite: (...args) => { logColor('antiquewhite', args)}, | |
| aqua: (...args) => { logColor('aqua', args)}, | |
| aquamarine: (...args) => { logColor('aquamarine', args)}, | |
| azure: (...args) => { logColor('azure', args)}, |
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
| // File: RollThroughLibrary/CreateMaps/JunctionPoint.cs | |
| // User: Adrian Hum/ | |
| // | |
| // Created: 2017-11-19 2:46 PM | |
| // Modified: 2017-11-19 6:10 PM | |
| using System; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.IO; | |
| using System.Runtime.InteropServices; |
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
| https://rfc3161.ai.moda | |
| https://rfc3161.ai.moda/adobe | |
| https://rfc3161.ai.moda/microsoft | |
| https://rfc3161.ai.moda/apple | |
| https://rfc3161.ai.moda/any | |
| http://rfc3161.ai.moda | |
| http://timestamp.digicert.com | |
| http://timestamp.globalsign.com/tsa/r6advanced1 | |
| http://rfc3161timestamp.globalsign.com/advanced | |
| http://timestamp.sectigo.com |
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
| unzip -O shift-jis <filename>.zip |
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 ruby | |
| # Ruby code snippets to determine host OS and currently running ruby version | |
| ############################################################## | |
| # RbConfig to determine host OS and exit if not mac or linux # | |
| ############################################################## | |
| require 'rbconfig' | |
| @os = RbConfig::CONFIG['host_os'] |