This file contains 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
use std::time::Duration; | |
use crate::error_template::{AppError, ErrorTemplate}; | |
use leptos::ev::{keypress, KeyboardEvent}; | |
use leptos::*; | |
use leptos_meta::*; | |
use leptos_router::*; | |
use leptos_use::storage::{use_local_storage, StringCodec}; | |
use leptos_use::{ |
This file contains 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
local score = 0 | |
local function load_menu(score_in) | |
msg.post("loader#mainmenu", "load") | |
if not (score_in == nil) then | |
score = score_in | |
end | |
end | |
local function unload_menu() |
This file contains 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
go.property("spawn_interval", 2) | |
go.property("max_speed", 100) | |
function init(self) | |
msg.post(".", "acquire_input_focus") | |
self.moving = false | |
self.firing = false | |
self.input = vmath.vector3() | |
self.dir = vmath.vector3(0, 1, 0) |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<div class="second-row"> | |
I am an IFrame | |
</div> |
This file contains 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 | |
/** | |
* The code from Internet | |
* | |
* @package PhpFiddle | |
* @link http://phpfiddle.org | |
* @since 2012 | |
**/ |
This file contains 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
<!doctype html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<form onsubmit="return formSubmitted()"> | |
<label for="pin">Pin code</label> | |
<input id="pin" type="password" onkeypress="return inputChange()"/> | |
<input type="submit"/> | |
</form> |
This file contains 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
{"id":708083,"data":[[800,"0001","0100000000",1995,1,"","","","","40","S","","","","S","","","","","6.14","12.00","0.00","6.14","EUR","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","","","",0,"","0.00","0.00000","0.00","0.00","0.00","19950606","19950606","","","","","","RFBU","","","0.00","",0,"","","","","","",0,0,"","","","",0,"","","X","","","","","","","","","","","","","","","","","0000100000","","","","X","","","","",0,0,0,"0.000","0.000","0.00","0.00","0.00","","","","","","0.00","","0.00","0.00","","0.00","0.00","","0.00","0.00","",0,0,"","","","","","",0,0,"","","",0,0,"","",0,"","","0.00","","0.00","","","",0,"","","","","0.00","","0.00","0.00","0.00","0.00","","","0.000","","0.000","","0.000","","",0,0,"","",0,"","","","0.00","0.00","0.00","0.00","","0.00","","","","","","","","","","","","",0,"0.00","0.00","","","","","","","","","","","","","","0.000000","","","","0",0,"0","0",0,"","","","","",0,"","6.14","7.37","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00","0.00" |
This file contains 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
<!doctype html> | |
<html ng-app="optimizationTest"> | |
<head> | |
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"> | |
<script src="bower_components/angular/angular.js"></script> | |
<script src="angular.js"></script> | |
</head> | |
<body ng-controller='TableCtrl'> | |
<div class="container"> | |
<div class="row"> |
This file contains 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 DataProvider = require("virtdb-provider"); | |
var virtdb = new DataProvider('github-repository-provider', 'tcp://192.168.221.11:12345'); | |
var https = require('https'); | |
virtdb.onMetaDataRequest( function(request) { | |
var table = virtdb.createTable('repositories'); | |
table.addField('html_url', 'STRING'); | |
table.addField('name', 'STRING'); | |
table.addField('size', 'UINT32'); | |
table.addField('watchers_count', 'UINT32'); |
This file contains 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 is_number(char c) | |
{ | |
return c >= '0' && c <= '9'; | |
} | |
int difference() | |
{ | |
return 'A' - 'a'; |