One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/usr/bin/env python | |
| """ | |
| # Version | |
| 2021-08-31 | |
| # Tested on | |
| Python 3.9 |
| #!/bin/bash | |
| iterations=10 | |
| # ----------------------------------------------------------------------------- | |
| # Create array of results | |
| declare -a results | |
| for i in $(seq 1 $iterations); |
| operator infix => { associativity left } | |
| func => <K : Hashable, V>(key: K, value: V) -> (K, V) { | |
| return (key, value) | |
| } | |
| let pairs: (String, Int)[] = [ | |
| "e" => 10, | |
| "t" => 7, | |
| "i" => 2 | |
| ] |
| #!/usr/bin/env python | |
| # coding=utf8 | |
| # author=evi1m0 | |
| # website=linux.im | |
| ''' | |
| 12306 Captcha Picture: | |
| author: Evi1m0@20150316 | |
| 1. Download Captcha | |
| 2. Pic Conver Text |
| class Pipe(object): | |
| def __init__(self, func): | |
| self.func = func | |
| def __ror__(self, other): | |
| def generator(): | |
| for obj in other: | |
| if obj is not None: | |
| yield self.func(obj) | |
| return generator() |
| func showNotification() -> Void { | |
| var notification = NSUserNotification() | |
| notification.title = "Test from Swift" | |
| notification.informativeText = "The body of this Swift notification" | |
| notification.soundName = NSUserNotificationDefaultSoundName | |
| NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification(notification) | |
| } | |
| //showNotification() |
| /** | |
| * 格式化时间戳为人性化的时间 | |
| * @param {String} publishTime 时间戳 | |
| * @return {String} 人性化时间 | |
| */ | |
| function formatTime(publishTime) { | |
| var d_minutes, d_hours, d_days; | |
| var timeNow = parseInt(new Date().getTime() / 1000, 10); | |
| var d; |
The following gist is an extract of the article Flask-SQLAlchemy Caching. It allows automated simple cache query and invalidation of cache relations through event among other features.
# pulling one User object
user = User.query.get(1)
| // | |
| // RBResizer.swift | |
| // Locker | |
| // | |
| // Created by Hampton Catlin on 6/20/14. | |
| // Copyright (c) 2014 rarebit. All rights reserved. | |
| // | |
| import UIKit |