find command with exclude
find -name "*.js" -not -path "./directory/*" -not -path "*thrift_gen/*"
remove duplicate column:
awk '!seen[$0]++' filename
find command with exclude
find -name "*.js" -not -path "./directory/*" -not -path "*thrift_gen/*"
remove duplicate column:
awk '!seen[$0]++' filename
import time
from datetime import datetime
import pytz
In [14]: t = datetime.fromtimestamp(1546751128, pytz.timezone('Asia/Shanghai')).strftime('%Y-%m-%d %H:%M:%S')
In [15]: t
Out[15]: '2019-01-06 13:05:28'| from http.server import HTTPServer, BaseHTTPRequestHandler | |
| from socketserver import ThreadingMixIn | |
| class Handler(BaseHTTPRequestHandler): | |
| protocol_version = 'HTTP/1.1' | |
| def do_GET(self): | |
| rsp = b'GET' | |
| self.send_response(200) | |
| self.send_header('Content-Length', len(rsp)) |
| #include <iostream> | |
| #include "curl/curl.h" | |
| int main() { | |
| curl_version_info_data* ver = curl_version_info(CURLVERSION_NOW); | |
| std::cout << ver->ssl_version << std::endl; | |
| return 0; | |
| } |
| #!/bin/bash | |
| setxkbmap -option caps:none | |
| xmodmap -e "keycode 66 = End NoSymbol End NoSymbol End" | |
| xmodmap -e "keycode 112 = BackSpace BackSpace BackSpace BackSpace" | |