使用JAV金鸡儿奖官网附带的工具JAV SQL 查询器,可查询各种类别的JavDB TOP250影片:
及分年数据(存在部分重复影片,原始数据的问题):
使用JAV金鸡儿奖官网附带的工具JAV SQL 查询器,可查询各种类别的JavDB TOP250影片:
及分年数据(存在部分重复影片,原始数据的问题):
I liked the way Grokking the coding interview organized problems into learnable patterns. However, the course is expensive and the majority of the time the problems are copy-pasted from leetcode. As the explanations on leetcode are usually just as good, the course really boils down to being a glorified curated list of leetcode problems.
So below I made a list of leetcode problems that are as close to grokking problems as possible.
As quixel is being removed, all items are free to aquire. This script is to automate the process to add items to your account (As of writing, a total of 18874
items)
Note: This script only tested in the latest version of Chrome.
run.js
)国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。
Dockerized 实践 https://github.com/y0ngb1n/dockerized
<?php | |
/** | |
* Value should be an IBAN number | |
* | |
* | |
* @param string | |
* @return bool | |
*/ | |
function iban($str) | |
{ |
<?php | |
//Tiny Cache system | |
function file_cache_contents($url, $cache_time=360000) { // 60*60*5 | |
$cache_dir = __DIR__.'/cache/'; | |
$cache_file = $cache_dir.md5($url).'.cache'; | |
@mkdir($cache_dir, 0775, true); | |
// return data from cached file if file exists and not expired | |
if(file_exists($cache_file) && filemtime($cache_file)+$cache_time >= time()) { | |
return(unserialize(file_get_contents($cache_file))); | |
} |
--> Builder pattern class to spawn, manage and kill child processes | |
local process = require("@lune/process") | |
local task = require("@lune/task") | |
local option = require("./option") | |
local Option = option.Option | |
type Option<T> = option.Option<T> | |
local CommandBuilder = {} |
<?php | |
// script startup time and memory usage | |
$mem_usage = memory_get_usage(); | |
$time_usage = microtime(true); | |
$return = 'FALSE'; | |
$password = '070162'; | |
// get password list file from https://github.com/danielmiessler/SecLists/tree/master/Passwords | |
/* don't touch the above lines */ | |
/* ------------------------------------------------------------------- */ |
function divide2(a,b,mid) { | |
let num = 0; | |
let middle = mid || a >> 1; | |
if (middle * b == a) { | |
return middle; | |
} else { | |
if (middle == 1) { | |
return 0; | |
} |
<?php | |
function imageHash($image_file) { | |
// check if the file is existed and is readable | |
if(file_exists($image_file) && is_readable($image_file)) { | |
return false; | |
} | |
// get image dimensions | |
list($width, $height) = getimagesize($image_file); |