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
<?xml version='1.0' encoding='UTF-8'?> | |
<partial-response><changes><update id="realtimeSimulationGrowl"><![CDATA[<span id="realtimeSimulationGrowl"></span><script id="realtimeSimulationGrowl_s" type="text/javascript">widget_realtimeSimulationGrowl.show([]);</script>]]></update><update id="realtimeSimulation:plotSpeciesMessage"><![CDATA[<span id="realtimeSimulation:plotSpeciesMessage"><span style="font-size: 16px; font-weight: bold; color: red;"></span></span>]]></update><update id="javax.faces.ViewState"><![CDATA[e2s2]]></update><eval><![CDATA[var levels = [{"name":"A20","level":53},{"name":"AKT","level":0},{"name":"Apaf1","level":100},{"name":"APC","level":93},{"name":"BAD","level":100},{"name":"BclX","level":0},{"name":"BID","level":92},{"name":"Cas12","level":100},{"name":"Cas3","level":100},{"name":"Cas3_dummy","level":100},{"name":"Cas6","level":100},{"name":"Cas7","level":100},{"name":"Cas8","level":92},{"name":"Cas9","level":100},{"name":"cFLIP","level":7},{"name":"DNADamageEvent","level":100},{"name":" |
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 fs = require("fs"); | |
function main() { | |
fs.readdir("./node_modules", function (err, dirs) { | |
if (err) { | |
console.log(err); | |
return; | |
} | |
dirs.forEach(function(dir){ | |
if (dir.indexOf(".") !== 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#include <string.h> | |
typedef struct node | |
{ | |
char data[16]; | |
struct node *link; | |
} NODE; |
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
# LCD.rb | |
# Execution : ruby LCD.rb -s 2 12345 | |
### option parsing ### | |
s = $*.size > 1 ? $*.slice!(0..1)[1] : '2' | |
num = $*[0] | |
unless s =~ /^[1-9]\d*$/ and num =~ /^\d+$/ | |
puts "Usage: #$0 [-s SIZE] 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <string.h> | |
int nLines; | |
int nColumns; | |
char lcdNumber[23][12]; | |
char lcdNumbers[8][23][12]; |
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
Keyboards.te = { | |
label: 'Telugu', | |
shortLabel: 'te', | |
imEngine: 'india', | |
menuLabel: 'తెలుగు', | |
secondLayout: true, | |
alternateLayoutKey: '?౧౨౩', | |
basicLayoutKey: 'అఆఇ', | |
types: ['text', 'url', 'email'], | |
width: 11, |
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
2147942487JavaScript error: http://system.gaiamobile.org:8080/shared/js/dump.js, line 24: settings is null | |
JavaScript error: http://system.gaiamobile.org:8080/js/applications.js, line 85: apps.mgmt is null | |
JavaScript error: http://system.gaiamobile.org:8080/shared/js/settings_listener.js, line 28: settings is null | |
JavaScript error: http://system.gaiamobile.org:8080/shared/js/idletimer.js, line 101: navigator.addIdleObserver is not a function | |
JavaScript error: http://system.gaiamobile.org:8080/shared/js/settings_listener.js, line 28: settings is null | |
JavaScript error: http://system.gaiamobile.org:8080/js/icc.js, line 112: window.navigator.mozSettings is null | |
JavaScript error: http://system.gaiamobile.org:8080/js/airplane_mode.js, line 17: window.navigator.mozSettings is null | |
JavaScript error: http://system.gaiamobile.org:8080/js/cell_broadcast_system.js, line 15: settings is null | |
JavaScript error: http://system.gaiamobile.org:8080/js/value_selector/value_selector.js, line 82: navigator.mozSettings is null | |
Java |
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
#include <iostream> | |
#include <string> | |
#include <stdio.h> | |
using namespace std; | |
int isPalindrome(char* str) | |
{ | |
static int length = strlen(str); | |
if (length<1) |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Event Portal | Mozilla Vibe</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var dateToday = new Date(); |