- http://fedoraproject.org/ja/
- http://fedoraproject.org/ja/get-fedora-options
- ftp://ftp.jaist.ac.jp/pub/Linux/Fedora/releases/17/
- http://fedoraproject.org/ja/get-fedora-options
ALT + F2
| var typeTargets = new Array(//問題配列 | |
| "STRAWBERRY", "ORANGE","CHERRY","BANANA" | |
| ); | |
| function next() { | |
| var index = Math.round(Math.random() * (typeTargets.length - 1));//問題数分の乱数生成 | |
| return typeTargets[index]; //問題配列[乱数] | |
| } | |
| // ↑ここまでは |
| var http = require('http'), | |
| url = require('url'), | |
| path = require('path'), | |
| fs = require('fs'), | |
| var port_local = 8080; | |
| var load_static_file = function(uri, response) { | |
| // 相対パスで静的リソースを配信する。 | |
| var tmp = uri.split('.'); |
| var http = require('http'); | |
| var fs = require('fs'); | |
| var index = fs.readFileSync('index.html'); | |
| http.createServer(function (req, res) { | |
| res.writeHead(200, {'Content-Type': 'text/plain'}); | |
| res.end(index); | |
| }).listen(9615); |
| var http = require("http"); | |
| var fs = require("fs"); | |
| var path = require("path"); | |
| http.createServer | |
| ( function(request, response) | |
| { var filename = request.url.substr(1); | |
| if (path.existsSync(filename)) | |
| { response.writeHead | |
| ( 200 |
| <!DOCTYPE html> | |
| <script src="test.js"></script> |
| Array.prototype.shuffle = function() { | |
| var i = this.length; | |
| while(i){ | |
| var j = Math.floor(Math.random()*i); | |
| var t = this[--i]; | |
| this[i] = this[j]; | |
| this[j] = t; | |
| } | |
| return this; | |
| } |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <script> | |
| var mybutton=function(name_,x_,y_){ | |
| this.name = name_; | |
| this.x = x_; | |
| this.y = y_; | |
| this.radius = 10; | |
| this.time = 0; |
| ??=include <iostream> | |
| int main()??< | |
| unsigned a??(??)=??<1,2,3??>; | |
| std::cout<<??-((a??(0??)??!a??(1??))-a??(2??)); | |
| ??> |
| #include <boost/multi_array.hpp> | |
| #include <algorithm> | |
| #include <random> | |
| #include <iostream> | |
| int main(){ | |
| using value_type = size_t; | |
| const size_t dimension = 3; | |
| using c = boost::multi_array<value_type, dimension>; |
ALT + F2