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(var i=1;i<=100;i++)console.log((i%3?"":"Fizz")+(i%5?"":"Buzz")||i) | |
| i=0;while(++i<=100)console.log((i%3?"":"Fizz")+(i%5?"":"Buzz")||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
    
  
  
    
  | var aachan = new Bvh(); | |
| var nocchi = new Bvh(); | |
| var kashiyuka = new Bvh(); | |
| aachan.load({ | |
| src: "./bvh/aachan.bvh", | |
| complete: function(xhr) { | |
| console.log("あーちゃんの BVH データ読み込み完了"); | |
| nocchi.load({ | |
| src: "./bvh/nocchi.bvh", | 
  
    
      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
    
  
  
    
  | var LINE = require('./line.js'); | |
| var line = new LINE(); | |
| var email = 'your email'; | |
| var password = 'your password'; | |
| line.login(email, password, function(error, result) { | |
| if (error) { | |
| return; | |
| } | |
  
    
      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
    
  
  
    
  | location = /favicon.ico { | |
| log_not_found off; | |
| access_log off; | |
| } | |
| location = /robots.txt { | |
| allow all; | |
| log_not_found off; | |
| access_log off; | |
| } | |
| location ~ /\. { | 
  
    
      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
    
  
  
    
  | try_files $uri $uri/ /index.php$uri; | |
| location ~ ".+\.php($|/.*)" { | |
| if ( -f /home/dotcloud/current/maintenance) { | |
| return 503; | |
| } | |
| fastcgi_pass unix:/var/dotcloud/php5-fpm.sock; | |
| include fastcgi_params; | |
| include /home/dotcloud/current/*fastcgi.conf; | 
  
    
      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
    
  
  
    
  | package com.wakuworks.test; | |
| import android.app.Activity; | |
| import android.content.res.Resources; | |
| import android.os.Bundle; | |
| import android.view.LayoutInflater; | |
| import android.widget.LinearLayout; | |
| // 例)QuickSearchBox の表示 | |
| // 参考:http://mpigulski.blogspot.com/2011/03/accessing-comandroidinternalr-resources.html | 
  
    
      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
    
  
  
    
  | <?php | |
| $c = 5.0 * ($deg - 32.0) / 9.0; // 摂氏 | |
| $f = 9.0 / (5.0 * $deg) + 32.0; // 華氏 | |
| printf('%.1f', $c); | |
| printf('%.1f', $f); | 
  
    
      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
    
  
  
    
  | trace(" hogehoge ".replace(/^[\s\t\r\n\0\0xB ]*|[\s\t\r\n\0\0xB ]*$/sg, "")); | 
  
    
      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
    
  
  
    
  | <?php | |
| /** @see TwitterAOauth */ | |
| require_once 'twitteroauth/twitteroauth.php'; | |
| $consumer_key = 'xxx'; | |
| $consumer_secret = 'xxx'; | |
| $oauth_token = 'xxx'; | |
| $oauth_token_secret = 'xxx'; | 
  
    
      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
    
  
  
    
  | <?php | |
| class Variables extends ArrayObject | |
| { | |
| /** | |
| * 取得候補の文字コード | |
| * | |
| * @var string | |
| */ | |
| const DETECT_ORDER_ENCODING = 'UTF-8, SJIS-win, eucJP-win'; |