Skip to content

Instantly share code, notes, and snippets.

View JerryBian's full-sized avatar
🀄
Focusing

Jerry Bian JerryBian

🀄
Focusing
View GitHub Profile
@JerryBian
JerryBian / gist:3205340
Created July 30, 2012 06:32
C# code,Regular Expression,obatin special url from html string
//gdfgfdg<a href="/excel/dsfsf-).xls">/excel/dsfsf-).xls</a>dsfdsfdsf....
internal class Program
{
public static string source = @"C:\Users\JBian\Documents\visual studio 2010\Projects\ConsoleApplication23\ConsoleApplication23\Files\source.txt";
public static string result = @"C:\Users\JBian\Documents\visual studio 2010\Projects\ConsoleApplication23\ConsoleApplication23\Files\result.txt";
private static void Main(string[] args)
{
StreamReader sd = new StreamReader(source);
string pattern1 = "(<a href=\"\\/excel\\/[\\w|\\-|\\(|\\)]+\\.(xls|html)\">[\\w|\\-|\\(|\\)]+\\.(xls|html)</a>)";
@andelf
andelf / smtp_login_auth.go
Created March 8, 2013 18:40
golang net/smtp SMTP AUTH LOGIN Auth Handler
// MIT license (c) andelf 2013
import (
"net/smtp"
"errors"
)
type loginAuth struct {
username, password string
@Chaser324
Chaser324 / GitHub-Forking.md
Last active July 22, 2024 14:45
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j

@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active July 20, 2024 16:44
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@kottenator
kottenator / simple-pagination.js
Created July 13, 2015 20:44
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;