I hereby claim:
- I am Jiezhi on github.
- I am jiezhi (https://keybase.io/jiezhi) on keybase.
- I have a public key whose fingerprint is 53D5 D5B2 B4F7 9EC3 A1A4 16E1 78D1 1C64 FCC1 A359
To claim this, I am signing this object:
| #!/usr/bin/python | |
| """ | |
| color transfer ui | |
| """ | |
| import os | |
| import sys | |
| import cv2 | |
| import tempfile |
| # Setting the prefix from C-b to C-a | |
| set -g prefix C-a | |
| # Free the original Ctrl-b prefix keybinding | |
| unbind C-b | |
| #setting the delay between prefix and command | |
| set -sg escape-time 1 | |
| # Ensure that we can send Ctrl-A to other apps |
I hereby claim:
To claim this, I am signing this object:
| // Reference: https://www.codecademy.com/courses/web-beginner-en-seyrq/0/12?content_from=make-an-interactive-website%3Ajquery-effects | |
| var main = function(){ | |
| $('.dropdown-toggle').click(function(){ | |
| $('.dropdown-menu').toggle(); | |
| }); | |
| $('.arrow-next').click(function(){ | |
| var currentSlide = $('.active-slide'); | |
| var nextSlide = currentSlide.next(); | |
| if (nextSlide.length == 0){ |
| /** | |
| * Copyright (C) 2009-2010 Yichuan, Fuchun All rights reserved. | |
| * Licensed to the Apache Software Foundation (ASF) under one or more | |
| * contributor license agreements. See the NOTICE file distributed with | |
| * this work for additional information regarding copyright ownership. | |
| * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| * (the "License"); you may not use this file except in compliance with | |
| * the License. You may obtain a copy of the License at | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * Unless required by applicable law or agreed to in writing, software |
| package com.nongfenqi.android.demacia.tool; | |
| /** | |
| * Function | |
| * <p> | |
| * Reference: http://www.bkjia.com/ASPjc/1037143.html | |
| * | |
| * @author jiezhi | |
| * @version 1.0, 9/18/16 | |
| * @see [相关类/方法] |
| import uuid | |
| import socket | |
| import requests | |
| def get_mac_address(): | |
| mac = uuid.UUID(int = uuid.getnode()).hex[-12:] | |
| return ":".join([mac[e:e+2] for e in range(0, 11, 2)]) | |
| from pymouse import PyMouse | |
| import time | |
| m = PyMouse() | |
| while True: | |
| m.click(528, 800-196, 1) | |
| time.sleep(3) | |
| for (( i=1; i>0; i++ )) | |
| do | |
| curl 'https://www.google.com/voice/b/0/service/post' -H 'origin: https://www.google.com' -H 'dnt: 1' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: zh-CN,zh;q=0.8,en;q=0.6' -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36' -H 'content-type: application/x-www-form-urlencoded;charset=UTF-8' -H 'accept: */*' -H 'referer: https://www.google.com/voice/b/0' -H 'authority: www.google.com' -H 'cookie: gv=.........; GV_NR=1;-eVupmL6qR...........ncdG7vO' --data 'sid=...' --compressed | |
| sleep 3s | |
| done |
| syntax on | |
| set nu! | |
| set cindent | |
| set background=dark | |
| set ruler | |
| set expandtab | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set hlsearch | |
| set relativenumber |