Skip to content

Instantly share code, notes, and snippets.

View dalv0911's full-sized avatar
🎯
Focusing

Da Le Van dalv0911

🎯
Focusing
  • Suge Team
  • Tokyo, Japan
View GitHub Profile
@dalv0911
dalv0911 / regex-japanese.txt
Created February 1, 2018 02:24 — forked from terrancesnyder/regex-japanese.txt
Regex for Japanese
Regex for matching ALL Japanese common & uncommon Kanji (4e00 – 9fcf) ~ The Big Kahuna!
([一-龯])
Regex for matching Hirgana or Katakana
([ぁ-んァ-ン])
Regex for matching Non-Hirgana or Non-Katakana
([^ぁ-んァ-ン])
Regex for matching Hirgana or Katakana or basic punctuation (、。’)
@dalv0911
dalv0911 / SVGPath.swift
Created May 12, 2018 16:12 — forked from jasorod/SVGPath.swift
SVG path to CGPath converter
//
// SVGPath.swift
// SVGPath
//
// Created by Tim Wood on 1/21/15.
// Updated by Vitaly Domnikov 10/6/2015
// Updated by Jason Rodriguez 08/29/2017
// Copyright (c) 2015 Tim Wood, Vitaly Domnikov, Jason Rodriguez. All rights reserved.
import Foundation
@dalv0911
dalv0911 / redis_cheatsheet.bash
Created December 4, 2018 13:08 — forked from LeCoupa/redis_cheatsheet.bash
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.