Skip to content

Instantly share code, notes, and snippets.

View vikbert's full-sized avatar

Xun Zhou vikbert

View GitHub Profile
@vikbert
vikbert / How_to_readme.MD
Last active April 29, 2019 15:57
[readme] a guideline for writing a good readme #readme, #markdonw

GitHub build icons

<div align="center">
	[![Build Status][travis-image]][travis-url]
	[![Appveyor Build Status][appveyor-image]][appveyor-url]
	[![Dependency Status][david_img]][david_site]
	[![DevDependency Status][david_img_dev]][david_site_dev]
	[![Github Tag][github-tag-image]][github-tag-url]
@vikbert
vikbert / awesome_presentation.md
Last active May 2, 2024 02:28
[awesome presentation] presentation tools #presentation #slides
@vikbert
vikbert / awesome_font.md
Last active September 27, 2022 03:09
[awesome font] font used for programming #font

Visual Code

in visual code, search for font, then enter this font name in controls the font family

Font_family: Fira Code
Font_Size: 14
Font_Weight: 400

search for editor.letterSpacing, and set the value

@vikbert
vikbert / awesome_resource.md
Last active March 23, 2019 06:07
[awesome resource] awesome resources for development
@vikbert
vikbert / awesome_people.md
Last active May 2, 2024 02:28
[awesome people] awesome people I like

Awesome People

Frontend Devs

ecmadao

from Beijing, focus on Javascript, ReactJS.

Backend Devs

@vikbert
vikbert / awesome_tools.md
Last active May 2, 2024 02:28
[awesome tools] all awesome tools I used for daily work

Awesome Tools

This is a collection of awesome tools, that I use for daily work.

PHPStorm Plugins

carbon-now-sh

convert code snippets to image: png, jpg

@vikbert
vikbert / react.MD
Last active March 29, 2019 20:24
[react] react
@vikbert
vikbert / vue.MD
Last active May 2, 2024 02:28
[vue] everything about vue

Beginning with Vue.js in 03.2019

open question

  • Vuex
  • Typescript
  • unit Testing
  • E2E test
  • Progresive Web App Support
@vikbert
vikbert / scripting.md
Last active May 2, 2024 02:28
[scripting] small scripting snippets #php #scripting

Rename files with preg_match and preg_replace

<?php

declare(strict_types = 1);

const PATTERN = '/(-m\d-[a-zA-Z]*-[0-9][0-9])/';

if (empty($argv[1])) {
 throw new Exception('Usage: php rename.php ');
@vikbert
vikbert / golden-rules.MD
Last active May 2, 2024 02:28
[golden rules] golden rules for programmers

Golden Rules

  • slow and steady wins the race
  • not working overtime, but working flexibly
  • knowing what need to be done, not waiting to be told what to do
  • understand the context around you
  • focus on 2-3x MIT Tasks(Most Important task)