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
| debug: true | |
| hisilicon: | |
| enabled: true | |
| port: 15002 | |
| ftp: | |
| enabled: true | |
| port: 21 | |
| password: "test" |
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
| { | |
| "kind": "IngressList", | |
| "apiVersion": "extensions/v1beta1", | |
| "metadata": { | |
| "selfLink": "/apis/extensions/v1beta1/ingresses", | |
| "resourceVersion": "27593873" | |
| }, | |
| "items": [ | |
| { | |
| "metadata": { |
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
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.Inet4Address; | |
| import org.apache.commons.net.util.SubnetUtils; | |
| import java.util.HashMap; | |
| import java.util.HashSet; | |
| import java.util.Map; |
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
| /sbin/fsck -fy | |
| mount -uw / | |
| launchctl load /System/Library/LaunchDaemons/com.apple.notifyd.plist | |
| launchctl load /System/Library/LaunchDaemons/com.apple.configd.plist | |
| launchctl load /System/Library/LaunchDaemons/com.apple.diskmanagementd.plist | |
| launchctl load /System/Library/LaunchDaemons/com.apple.securityd.plist | |
| launchctl load /System/Library/LaunchDaemons/com.apple.diskarbitrationd.plist | |
| diskutil rename Macintosh_HD Macintosh\ HD |
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
| SELECT * FROM `authme` WHERE `ip` IN (SELECT `ip` FROM `authme` GROUP BY `ip` HAVING (COUNT(`ip`) > 1)) ORDER BY `ip` ASC; |
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
| <? | |
| /* Скрипт умеет слать на почту данные из веб-формы и вставлять в письмо приложенное изображение. | |
| Картинки складываются в папку mailpictures, так что не забудьте создать ее. | |
| */ | |
| // В какой кодировке приходят данные. | |
| $incoming_encoding = 'Windows-1251'; | |
| // Почта куда слать сообщения. | |
| $address = "houi.peesda@jeegourda.com"; | |
| // Максимальная разрешенная ширина загружаемого изображения |