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
| # tutorial: https://www.pascallandau.com/blog/php-php-fpm-and-nginx-on-docker-in-windows-10/ | |
| version: '3' | |
| services: | |
| php-fpm: | |
| image: php:7.4-fpm-alpine | |
| container_name: php-fpm | |
| volumes: | |
| - type: bind | |
| source: $HOME/dev/soap | |
| target: /var/www |
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
| AJRouter | |
| ALG | |
| AppMgmt | |
| BthHFSrv | |
| bthserv | |
| PeerDistSvc | |
| CertPropSvc | |
| NfsClnt | |
| MapsBroker | |
| lfsvc |
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
| // #pragma newdecls required | |
| #include <sourcemod> | |
| #include <sdktools> | |
| #include <smlib> | |
| #define PLUGIN_VERSION "0.1.3" | |
| public Plugin myinfo={ | |
| name="[L4D] Dissolve Ragdolls", | |
| author="hjhee", | |
| description="Dissolve Common Infected Ragdolls.", |
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 <sourcemod> | |
| #define PLUGIN_VERSION "0.0.1" | |
| public Plugin myinfo={ | |
| name="L4D2 force_max_intensity", | |
| author="hjhee", | |
| description="Allow changing sb_force_max_intensity without cheat", | |
| version=PLUGIN_VERSION, | |
| url="None" | |
| } |
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
| // IP Camera supports motion detection, which can be configured to send | |
| // emails upon alarm is fired | |
| // This go programme serve as a minimal smtp server, listening login requests | |
| // from IP Camera, and triggers zmtrigger.pl through unix socket. | |
| package main | |
| import ( | |
| "github.com/op/go-logging" | |
| "net" |