2017-01-01から1ヶ月間の記事一覧

Try WiMAXレンタル

www.uqwimax.jp 440Mbps対応エリアではないので220Mbps対応のSpeed Wi-Fi NEXT W02をレンタル www.uqwimax.jp 窓際において調子がいいときは2本、基本0~2本を行ったり来たり、 いつの間にかつながらないと思ったら圏外やリングだったりとかなり電波が不…

Dell ゲーミングノートパソコン Inspiron 7567

Dell ゲーミングノートパソコン Inspiron 7567 ブラック 17Q41/Windows10/15.6インチFHD非光沢/8GB/1TB+8GB/GTX1050Ti出版社/メーカー: Dell Computers発売日: 2017/02/03メディア: Personal Computersこの商品を含むブログを見る CFD販売 ノートPC用メモリ …

新しいパソコン

実家のパソコンが壊れて動かないというので自分のデスクトップを売ったのだが 今手元にあるパソコンがASUSの1001PXでWindows7 starterが入っていたのを Windows10にアップデートしたものなのですがメモリが1GBのHDDなのであまりにも遅い Eee PC 1001PX (Seas…

Golangで順列

package main import "fmt" func perm(head []int, rest []int) { if len(rest) == 0 { fmt.Println(head) } else { for i, v := range rest { restx := make([]int, len(rest)) copy(restx, rest) restx = append(restx[:i], restx[i+1:]...) headx := appe…

GO言語のCSVの読み書き

imabari.hateblo.jp imabari.hateblo.jp これをGO言語で作成したいけど難しい photo_name.csvで保存 ,A1,A2,A3,A4,A5 1,あいうえお,かきくけこ,なにぬねの,あいうえお,かきくけこ 2,かきくけこ,たちつてと,,さしすせそ,さしすせそ 3,さしすせそ,,,,たちつて…

Ubuntu16.04にGolangをインストール

Go言語のインストール - golang.jp sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make sudo apt update && sudo apt install ubuntu-make sudo apt install git umake go go-lang # 再起動 # 環境設定確認 go env mkdir go cd go mkdir bin # GOPATH…

Ubuntu16.04にasciidoctorをインストール

# Rubyをインストール sudo apt-add-repository ppa:brightbox/ruby-ng sudo apt-get update && sudo apt-get install ruby2.3 ruby2.3-dev # asciidoctorをインストール sudo gem install asciidoctor # HTMLに変換 asciidoctor test.adoc # PDFに変換 sudo…

Ubuntu16.04にATOMをインストール

atom.io ATOMインストール # sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make # sudo apt-get update && sudo apt-get install ubuntu-make # umake ide atom # umakeでインストールするとapmコマンドが使えないのでPPA経由でインストール sudo add…

Dockerインストール・Splashインストール

qiita.com https://docs.docker.com/engine/installation/linux/ubuntulinux/docs.docker.com sudo apt-get update sudo apt-get install apt-transport-https ca-certificates sudo apt-key adv \ --keyserver hkp://ha.pool.sks-keyservers.net:80 \ --rec…

Pycharmをインストール

インストール sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make sudo apt-get update && sudo apt-get install ubuntu-make umake ide pycharm アップデート umake ide pycharm -r && umake ide pycharm umakeはアップデートないので消してからイン…