murphytalk's digitized memo
  • Computer
  • Archives

Mattermost: a promising alternative to Slack ?

Date Tue January 15 2019 Tags devops

Matured and self hosting - meaning I own my data.

more ...

Add line number in Jupyter Notebook code cell by default

Date Thu August 04 2016 Tags python

Select a code cell, open browser’s JavaScript console, type and execute the following lines:

var cell = Jupyter.notebook.get_selected_cell();
var config = cell.config;
var patch = {
    CodeCell:{
        cm_config:{lineNumbers:true}
    }
}
config.update(patch)

Then reload the page. These changes will be saved in .jupyter/nbconfig. See Configuring the notebook frontend …

more ...

Pandas 101

Date Wed July 13 2016 Tags Python / Jupyter / Pandas

Test Installation¶

more ...

A piece of old software of mine

Date Thu June 30 2016 Tags DayDream

Twelve years old to be specific.

It’s a Chinese input method for Zaurus , first released on Hi-PDA , now hosted on GitHub .

more ...

ChatOps with Hubot - Anki automation

Date Wed June 22 2016 Tags ChatOps / anki / bot / CoffeeScript

Well, the very topic of ChatOps has already been discussed at length by many people, so I am gonna jump to my very first ChatOps with Hubot right away.

First : the motivation.

I discovered Anki quite a while ago, it has been helping me to expand and improve my English …

more ...

Learning Scheme - atom, list and S-expression

Date Sun March 29 2015 Tags scheme / lisp

It looks it would be easier to go through The Little Schemer first before pick up SICP, so here we go.

atom is the most basic building block, it could be a letter, a string of digits, a string of characters. Examples:

a
1492
atom
*abc$

list is one or …

more ...

Learning Scheme - setup the environment

Date Sat March 28 2015 Tags scheme / lisp / SICP

So I finally decided to read through SICP, which is something maybe I should have done like 20 years earlier. The language scheme used in the book is a dialect of Lisp.

It is quite often that Lisp is described as the Latin in the world of programming languages: very …

more ...

Solved : Windows cannot sleep on a Windows/Linux dual boot PC

Date Sun June 29 2014 Tags Windows / Linux / English

My PC has been set up as Windows/Linux dual boot since the beginning, I use grub to manage the booting, and because I use Clonzilla to backup my Windows partition (so I can easily restore to the original perfect state whenever I messed up my Windows), I install grub …

more ...

Tags

  • devops 1
  • python 2
  • Jupyter 1
  • Pandas 1
  • DayDream 1
  • ChatOps 1
  • anki 1
  • bot 1
  • CoffeeScript 1
  • scheme 2
  • lisp 2
  • SICP 1
  • Windows 1
  • Linux 1
  • English 1

Links

    •    My Knowledge Base
    •    My Private Diary
    •    My Online Portal
  • Recent Posts

    • 2019-01-15   Mattermost: a promising alternative to Slack ?
    • 2016-08-04   Add line number in Jupyter Notebook code cell by default
    • 2016-07-13   Pandas 101
    • 2016-06-30   A piece of old software of mine
    • 2016-06-22   ChatOps with Hubot - Anki automation
    • 2015-03-29   Learning Scheme - atom, list and S-expression
    • 2015-03-28   Learning Scheme - setup the environment
    • 2014-06-29   Solved : Windows cannot sleep on a Windows/Linux dual boot PC
    • Archives

    © 2019 Mu Lu · Powered by pelican-bootstrap3, Pelican, Bootstrap

    Creative Commons License Content licensed under a Creative Commons Attribution-NonCommercial 4.0 International License, except where indicated otherwise.

    Back to top