Skip to content

Instantly share code, notes, and snippets.

@liubo404
liubo404 / spacemacs-cheatsheet.txt
Created September 18, 2016 07:14 — forked from 526avijitgupta/spacemacs-cheatsheet.md
Spacemacs cheatsheet
`emacs --daemon` to run in the background.
`emacsclient.emacs24 <filename/dirname>` to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
* Undo - `C-/`
* Redo - `C-?`
* Change case: 1. Camel Case : `M-c`
2. Upper Case : `M-u`
3. Lower Case : `M-l`
@liubo404
liubo404 / spacemacs-cheatsheet.md
Last active September 18, 2016 07:19 — forked from davoclavo/spacemacs-cheatsheet.md
Spacemacs cheatsheet

emacs --daemon to run in the background. emacsclient.emacs24 <filename/dirname> to open in terminal

NOTE: "M-m and SPC can be used interchangeably".

  • Undo - C-/
  • Redo - C-?
  • Change case: 1. Camel Case : M-c 2. Upper Case : M-u
  1. Lower Case : M-l
@liubo404
liubo404 / a-modern-frontend-dev.md
Created July 4, 2016 08:08 — forked from dwayne/a-modern-frontend-dev.md
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource

@liubo404
liubo404 / app.js
Created June 15, 2016 03:39 — forked from datchley/app.js
"Getting Functional with Javascript" Blog post source files
/**
* Primary application logic for our Functional Programming blog example
* See related blog series at: http://www.datchley.name/tag/functional-programming/
* Version: 2.0
*/
// A simple, resuable comparison for '>='
function greaterThanOrEqual(a, b) {
return a >= b
}
@liubo404
liubo404 / XLS2HTML.java
Created December 19, 2015 04:03 — forked from chandu-io/XLS2HTML.java
java :: program to convert excel files to html tables (xls, xlsx)
package com.chandu;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
@liubo404
liubo404 / SassMeister-input.scss
Created October 19, 2015 05:25
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$color:orange;
.body {
background-color: $color;
}
@liubo404
liubo404 / frontendDevlopmentBookmarks.md
Last active August 29, 2015 14:26 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.