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
| s=1 | |
| while (( $s >= 1 )) | |
| do | |
| ping -c 1 $1 >/dev/null 2>&1 | |
| s=$? | |
| sleep 1; | |
| done; | |
| echo $1 >> ping.log |
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
| def isprime(n): | |
| if n < 2: | |
| return False | |
| for i in range(2, n): | |
| if n % i == 0: | |
| return False | |
| return True | |
| nums = input("input: ") |
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 openpyxl import load_workbook | |
| from datetime import datetime, date, time | |
| import json | |
| wb = load_workbook('/mnt/d/clockin.xlsx') | |
| for ws in wb: | |
| #ws = wb["3月"] | |
| data = {} | |
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
| # -*- coding: utf-8 -*- | |
| from multiprocessing import Process | |
| index1 = set() | |
| index2 = set() | |
| print "reading index1" | |
| with open("index1.txt") as f: | |
| for line in f: |
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
| package com.example; | |
| import org.elasticsearch.action.search.SearchRequest; | |
| import org.elasticsearch.action.search.SearchResponse; | |
| import org.elasticsearch.client.RequestOptions; | |
| import org.elasticsearch.client.RestClient; | |
| import org.elasticsearch.client.RestClientBuilder; | |
| import org.elasticsearch.client.RestHighLevelClient; | |
| import java.util.ArrayList; |
OlderNewer