gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <arpa/inet.h> | |
#include <netinet/in.h> | |
#include <sys/socket.h> | |
#include <openssl/ssl.h> | |
#include <openssl/err.h> |
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
def fib(n): | |
if n == 0: return 0 | |
if n == 1: return 1 | |
if n >=2 and n % 2 == 0: | |
k = int(n / 2) | |
fbk = fib(k) | |
return (2 * fib(k - 1) + fbk) * fbk | |
if n >= 2: | |
k = int((n + 1) / 2) | |
fbk1 = fib(k - 1) |
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
// | |
// ViewController.swift | |
// hrender | |
// | |
// Created by Rockford Wei on 2021-08-25. | |
// | |
import UIKit | |
import WebKit | |
class ViewController: UIViewController { |
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
#!/bin/bash | |
# brew install imagemagick | |
if [ -z "$1" ] | |
then | |
echo "drawable generator for android" | |
echo "usage: $0 [highest resolution image] [parent path of drawables]" | |
exit | |
else | |
img=$1 | |
fi |
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
// | |
// EasyGIF.swift | |
// | |
// Created by Rocky Wei on 2019-06-06. | |
// Copyright © 2019 Treefrog. All rights reserved. | |
// | |
import UIKit | |
/// An Easy GIF animation class |
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
// | |
// ClientConnection.swift | |
// | |
// Created by Rocky Wei on 2018-12-27. | |
// Copyright © 2018 Rocky Wei. All rights reserved. | |
// | |
import Foundation | |
public class ClientConnection: NSObject, StreamDelegate { |
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 PackageDescription | |
let package = Package( | |
name: "atest", | |
targets: [], | |
dependencies: [ | |
.Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion:3), | |
] | |
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 numpy as np | |
import pandas as pd | |
import random | |
import math | |
class EncodedScaler: | |
milestones = [0,0,0] | |
unit = 0 | |
count= 0 | |
size = 0 |
NewerOlder