удалил лишнее
This commit is contained in:
parent
d43ad8168e
commit
7080f92d9f
|
|
@ -1 +1,2 @@
|
|||
/config.json
|
||||
/.idea/
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PublishConfigData" autoUpload="Always" serverName="1" remoteFilesAllowedToDisappearOnAutoupload="false" confirmBeforeUploading="false">
|
||||
<option name="confirmBeforeUploading" value="false" />
|
||||
<serverData>
|
||||
<paths name="1">
|
||||
<serverdata>
|
||||
<mappings>
|
||||
<mapping deploy="/" local="$PROJECT_DIR$" web="/" />
|
||||
</mappings>
|
||||
</serverdata>
|
||||
</paths>
|
||||
</serverData>
|
||||
<option name="myAutoUpload" value="ALWAYS" />
|
||||
</component>
|
||||
</project>
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectInspectionProfilesVisibleTreeState">
|
||||
<entry key="Project Default">
|
||||
<profile-state>
|
||||
<expanded-state>
|
||||
<State>
|
||||
<id>Error handlingJava</id>
|
||||
</State>
|
||||
<State>
|
||||
<id>Java</id>
|
||||
</State>
|
||||
<State>
|
||||
<id>Probable bugsJava</id>
|
||||
</State>
|
||||
<State>
|
||||
<id>RESTful Web Service (JAX-RS)</id>
|
||||
</State>
|
||||
<State>
|
||||
<id>Spring</id>
|
||||
</State>
|
||||
<State>
|
||||
<id>Spring BootSpring</id>
|
||||
</State>
|
||||
</expanded-state>
|
||||
<selected-state>
|
||||
<State>
|
||||
<id>User defined</id>
|
||||
</State>
|
||||
</selected-state>
|
||||
</profile-state>
|
||||
</entry>
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/protected-resources-list.iml" filepath="$PROJECT_DIR$/.idea/protected-resources-list.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="PhpProjectSharedConfiguration" php_language_level="8.0" />
|
||||
</project>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="SshConfigs">
|
||||
<configs>
|
||||
<sshConfig authType="PASSWORD" host="172.16.100.40" id="1f4a1f9f-da20-402f-aacd-0cb94b211004" port="22" nameFormat="DESCRIPTIVE" username="root" useOpenSSHConfig="false" />
|
||||
</configs>
|
||||
</component>
|
||||
</project>
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="WebServers">
|
||||
<option name="servers">
|
||||
<webServer id="a4ede633-44cd-40df-a8db-a1d5f363083d" name="1">
|
||||
<fileTransfer rootFolder="/opt/protected-resources-list" accessType="SFTP" host="172.16.100.40" port="22" sshConfigId="1f4a1f9f-da20-402f-aacd-0cb94b211004" sshConfig="root@172.16.100.40:22 password">
|
||||
<advancedOptions>
|
||||
<advancedOptions dataProtectionLevel="Private" keepAliveTimeout="0" passiveMode="true" shareSSLContext="true" />
|
||||
</advancedOptions>
|
||||
</fileTransfer>
|
||||
</webServer>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
12
sort.php
12
sort.php
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
const FILE = "test.txt";
|
||||
|
||||
|
||||
$data = file_get_contents(FILE);
|
||||
|
||||
$data = explode("\n", $data);
|
||||
|
||||
sort($data);
|
||||
|
||||
file_put_contents(FILE, implode("\n", $data));
|
||||
|
||||
69
test.txt
69
test.txt
|
|
@ -1,69 +0,0 @@
|
|||
"108.138.0.0/15",
|
||||
"108.156.0.0/14",
|
||||
"111.13.0.0/8",
|
||||
|
||||
"116.129.226.0/24",
|
||||
|
||||
"118.193.97.0/24",
|
||||
|
||||
"119.147.182.0/24",
|
||||
|
||||
"120.232.0.0/16",
|
||||
|
||||
"120.52.0.0/16",
|
||||
|
||||
"13.0.0.0/8",
|
||||
|
||||
"130.176.0.0/16",
|
||||
|
||||
"143.204.0.0/16",
|
||||
"144.220.0.0/16",
|
||||
|
||||
"15.128.0.0/9",
|
||||
|
||||
"18.0.0.0/8",
|
||||
|
||||
"180.163.57.0/24",
|
||||
|
||||
"204.246.0.0/16",
|
||||
|
||||
|
||||
"205.251.0.0/16",
|
||||
|
||||
"216.137.32.0/19",
|
||||
|
||||
"3.0.0.0/8",
|
||||
|
||||
"34.128.0.0/9",
|
||||
"35.0.0.0/8",
|
||||
|
||||
|
||||
|
||||
|
||||
"36.103.232.0/24",
|
||||
|
||||
"43.218.56.0/24",
|
||||
|
||||
"44.0.0.0/8",
|
||||
|
||||
|
||||
|
||||
"47.129.0.0/16",
|
||||
|
||||
|
||||
"52.0.0.0/8",
|
||||
|
||||
|
||||
"54.0.0.0/8",
|
||||
|
||||
"58.254.138.0/24",
|
||||
|
||||
"64.252.0.0/16",
|
||||
|
||||
"65.8.0.0/16",
|
||||
"65.9.0.0/16",
|
||||
|
||||
"70.132.0.0/18",
|
||||
"71.152.0.0/17",
|
||||
|
||||
"99.0.0.0/8",
|
||||
Loading…
Reference in New Issue