This file contains 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
folder = "/Users/harley/Documents" | |
files_path = os.path.join(folder, '*') | |
onlyfiles = [join(folder, f) | |
for f in listdir(folder) if not f.startswith(".") and isfile(join(folder, f))] | |
files = sorted( | |
onlyfiles, key=os.path.getctime, reverse=True) | |
print(files[0]) |
This file contains 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 org.compile.demo; | |
import java.io.*; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.security.PrivateKey; | |
import org.slf4j.*; | |
import org.jose4j.jwa.*; | |
import org.jose4j.jwk.*; | |
import org.jose4j.jwt.*; |
This file contains 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 base64 | |
s = 'some text' | |
#转成bytes string | |
bytesString = s.encode(encoding="utf-8") | |
print(bytesString) | |
#base64 编码 | |
encodestr = base64.b64encode(bytesString) |
This file contains 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 { OnInit, Component } from '@angular/core'; | |
import { Router, ActivatedRoute, Params } from '@angular/router'; | |
@Component({ | |
selector: 'app', | |
templateUrl: 'app.html' | |
}) | |
export class AppComponent implements OnInit { | |
constructor( |
This file contains 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
$("tr:has(td)").remove(); |
This file contains 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 = File.open(filename, 'rb') { |f| f.read } |
This file contains 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
require 'stringio' | |
picArrayStr = <<HMPS | |
arrayOfInteger2[131] = 20056; | |
arrayOfInteger2[132] = 20057; | |
arrayOfInteger2[133] = 20058; | |
arrayOfInteger2[134] = 20059; | |
arrayOfInteger2[135] = 20060; | |
arrayOfInteger2[136] = 20061; | |
arrayOfInteger2[137] = 20062; |