原创 How to install YCM on Ubuntu16.04 LTS

文章目錄1 Steps1.1 Setup Vundle1.2 Install Vundle1.3 Install YCM core1.3.1 setup languages u want1.3.2 main work2 Referen

原创 How to setup vimrc and YouCompleteMe on Ubuntu 16.04 LTS

文章目錄1 Main command lines2 Reference 1 Main command lines # setup vimrc git clone --depth=1 https://github.com/amix/vi

原创 jdk8 is not installed error

1. jdk-8-is-not-installed-error-404-not-found jdk-8-is-not-installed-error-404-not-found 2. Checksum https://www.orac

原创 在Golang中如何用scrypt對敏感信息加密

0 依賴庫 mkdir -p $GOPATH/src/golang.org/x/ cd $GOPATH/src/golang.org/x/ git clone https://github.com/golang/crypto.git

原创 How to install Postman native app in Ubuntu 16.04

1 安裝 1.1 創建命令行啓動postman. wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz sudo tar -xzf postman.tar

原创 Golang常量iota的使用實例

今天小編就爲大家分享一篇關於Golang常量iota的使用實例,小編覺得內容挺不錯的,現在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧 Codes package main import

原创 Linux 系統中,查看指定文件夾內各個子文件夾內的文件數量

count腳本 #!/bin/sh numOfArgs=$# if [ $numOfArgs -ne 1 ]; then echo -e "Usage: \nbash $0 dirForCount" exit -1

原创 Use rc.local to add run on startup in Ubuntu 16.04 LTS

1 Step by step Put all your executing code in a separate text file with an arbitrary name such as foo.sh and save i

原创 UseOpenCVByCpp

Use OpenCV by cpp in android This repo introduce how to use opencv cpp file in android. 1 Requires Android Studio 3.1.

原创 import debian.deb822 ImportError: No module named 'debian'

Solution sudo apt-get remove update-notifier-common flashplugin-installer Reference apt-get broken: No module named de

原创 Ubuntu 16.04 TensorFlow Servering

Prerequisites Bazel Using Bazel custom APT repository (recommended) Install JDK 8 $ sudo apt-get install openjdk-8-

原创 Linux刪除帶空格的文件

$ find . -name " (2).jpg" -print0 | xargs -0 rm

原创 TensorFlow--MNIST

1 Requirement Python 3.5 TensorFlow 1.4.0 2 Source code 2.1 layers.py import tensorflow as tf def weight_variable(s

原创 Ubuntu 16.04 “Kernel panic – not syncing: VFS: Unable to mount root fs on unknown-block(0,0)”

轉自:https://thomasmodeneis.wordpress.com/2017/05/12/how-to-restore-ubuntu-16-04-kernel-panic-not-syncing-vfs-unable-to-m

原创 Golang iota

Codes package main import "fmt" type color byte const ( black color = iota red blue ) func test(c color