pkg> add IJulia
using IJulia
notebook()
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | for /r /d %i in (*) do ren %i\*.jpeg *.jpg | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import numpy as np | |
| import scipy.cluster.vq as vq | |
| from sklearn.datasets import load_digits | |
| from sklearn.cross_validation import train_test_split | |
| def main(): | |
| digits = load_digits() | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | def genColorCode(r, g, b): | |
| return '#' + format(r, 'x') + format(g, 'x') + format(b, 'x') | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.
      
    
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | :: Open Colabolatory with Google Chrome App Mode | |
| "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=https://colab.research.google.com/ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @echo off | |
| : 複数の動画ファイルをドラッグ&ドロップしてSD画質の動画像に変換する | |
| if not exist low mkdir SD | |
| for %%f in (%*) do ( | |
| ffmpeg -y -i %%f -vf scale=320:-1 SD/%%~nf.mp4 | |
| ) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <stdio.h> | |
| #include <conio.h> | |
| #define MAX_NODES 1024 /* 最大ノード数 */ | |
| #define INFINITY 1000000000 /* 無限大 */ | |
| // ノードを設定する。 | |
| #define TOKYO 0 /* 東京 */ | |
| #define YURAKUCHO 1 /* 有楽町 */ | |
| #define SHINBASHI 2 /* 新橋 */ | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.
      
    NewerOlder