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> | |
| int main(void) { | |
| printf("Hello C world"); | |
| return 0; | |
| } | 
  
    
      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
    
  
  
    
  | # https://abicky.net/2016/05/16/033103/ より | |
| LANG=C LC_ALL=C sed -i '' s'|/Registry (Adobe) /Ordering (Japan1) /Supplement [0-9]|/Registry(Adobe) /Ordering(Identity) /Supplement 0|g' /path/to/pdf | 
  
    
      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
    
  
  
    
  | let activityController = UIActivityViewController(activityItems: sharingItems, applicationActivities: nil) | |
| activityController.excludedActivityTypes = [ | |
| UIActivityType.assignToContact, | |
| UIActivityType.print, | |
| UIActivityType.addToReadingList, | |
| UIActivityType.saveToCameraRoll, | |
| UIActivityType.openInIBooks, | |
| UIActivityType(rawValue: "com.apple.reminders.RemindersEditorExtension"), | |
| UIActivityType(rawValue: "com.apple.mobilenotes.SharingExtension"), | |
| ] | 
  
    
      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
    
  
  
    
  | require 'xcodeproj' | |
| project_path = '~/hoge.xcodeproj' | |
| project = Xcodeproj::Project.open(project_path) | |
| puts project | |
| target = project.targets.first | |
| files = target.source_build_phase.files.to_a.map do |pbx_build_file| | |
| pbx_build_file.file_ref.real_path.to_s | |
| end | 
  
    
      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
    
  
  
    
  | { | |
| "latex-workshop.latex.tools": [ | |
| { | |
| "command": "platex", | |
| "args": [ | |
| "-synctex=1", | |
| "-jobname=\"%DOCFILE%\"", | |
| "-kanji=utf8", | |
| "-guess-input-enc", | |
| "%DOCFILE%.tex" | 
  
    
      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
    
  
  
    
  | fr = File.open("./booklist.txt", "r") | |
| text = fr.read | |
| a = text.scan(/注文の詳細注文日: (\d+)年(\d+)月(\d+)日.+\n(.+?)\n(.+?)\n販売: (.+?)\n/) | |
| a.each{|e| | |
| title = e[3].gsub("(Kindle 書籍 Kindle Books)", "") | |
| year = e[0].to_i | |
| month = e[1].to_i | |
| day = e[2].to_i | 
  
    
      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
    
  
  
    
  | pragma solidity ^0.4.13; | |
| contract Onigiri { | |
| // contructのオーナー? | |
| address owner; | |
| // おにぎりの残数 | |
| uint public remains; | |
| // おにぎりの単価 | |
| uint constant price = 10; | |
| // 購入する顧客 | 
  
    
      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 getHTML(url) | |
| begin | |
| uri = URI.parse(url) | |
| response = Net::HTTP.start(uri.host, uri.port) do |http| | |
| http.open_timeout = 15 | |
| http.read_timeout = 15 | |
| http.get(uri.request_uri) | |
| end | |
| return response.body | |
| rescue => e | 
  
    
      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
    
  
  
    
  | gpg --list-secret-keys --keyid-format LONG | |
| gpg --armor --export <ID> | 
  
    
      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
    
  
  
    
  | do { | |
| // You have to add the file whose name is changed from KerasMNIST.mlmodel to KerasMNIST.bin to app target. | |
| // In order to avoid that Xcode compiles a mlmodel file automatcally. | |
| guard let url = Bundle.main.url(forResource: "KerasMNIST", withExtension: "bin") else { return } | |
| let compiledURL = try MLModel.compileModel(at: url) | |
| print(compiledURL) | |
| let model = try MLModel(contentsOf: compiledURL) | |
| print(model) | |
| } catch { | |
| print(error) |