They just move,if they find a 'friend' they get bigger
A Pen by A Non Ymous on CodePen.
/* | |
12306 Auto Query => A javascript snippet to help you book tickets online. | |
Copyright (C) 2011 Jingqin Lynn | |
Includes jQuery | |
Copyright 2011, John Resig | |
Dual licensed under the MIT or GPL Version 2 licenses. | |
http://jquery.org/license | |
Includes Sizzle.js |
NSArray * strings = [text componentsSeparatedByString:@"@"]; | |
if([strings count] == 2) { | |
NSString * string = [strings objectAtIndex:0]; | |
NSCharacterSet * set = [NSCharacterSet characterSetWithCharactersInString:@"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890.-"]; | |
set = [set invertedSet]; | |
if ([string length]) { //@之前不是空字串 | |
range = [string rangeOfCharacterFromSet:set]; | |
if (NSNotFound == range.location) { //只包含合法字符 | |
string = [strings objectAtIndex:1]; | |
if ([string length]) { //@之后不是空字串 |
They just move,if they find a 'friend' they get bigger
A Pen by A Non Ymous on CodePen.
<canvas id="canvas" style="position:absolute; top:0; left:0;"></canvas> | |
<div id="buffer" style="display:none;"> |
A Pen by Secret Sam on CodePen.
cmake_minimum_required(VERSION 2.8.11) | |
project(VtkFboInQtQuick) | |
set(CMAKE_INCLUDE_CURRENT_DIR ON) | |
set(CMAKE_AUTOMOC ON) | |
find_package(VTK REQUIRED) | |
include(${VTK_USE_FILE}) |