The two most basic operations are api-get and api-send, which are named simply based on their interaction with the node mesh. Simply put, api-get can only search and retrieve entries from the mesh, while api-send can modify the mesh in any way.
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
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: GenuineIntel | |
| CPU Brand: Intel(R) Xeon(R) CPU E3-1275 v3 @ 3.50GHz | |
| CPU Family: 0x6 |
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
| <name></name> | |
| <species></name> | |
| <type></type> | |
| <flags></flags> | |
| <vars></vars> | |
| <icon></icon> | |
| <body> | |
| </body> |
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
| [TALK] | |
| DESIRES_CONVERSATION_WITH:IS_SAME_RACE | |
| CAN_TALK_TO:IS_SAME_RACE | |
| [JUDGE] | |
| TRUST:IS_SAME_RACE{TARGET.TRUST+5},IS_FAMILY{TARGET.TRUST+10},HAS_ATTACKED_TRUSTED{TARGET.DANGER+5} | |
| FACTORS:IS_SAME_RACE | |
| BREAK_TRUST:HAS_ATTACKED_TRUSTED{TARGET.DANGER+5} | |
| [GROUP] |
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
| <race>Human</race> | |
| <flags>HUMAN|INTELLIGENT|USES_FIREARMS|LEGS[lthigh,rthigh]|HANDS[lhand,rhand]|ARMS[lshouder,rshoulder]|CAN_GROUP_WITH[HUMAN]|CAN_SEE|HUNGER|THIRST|MELEE[rfoot,lfoot,lhand,rhand]|RANGED[lhand,rhand]</flags> | |
| <vars>vision_max=21|hunger_max=20000|thirst_max=10000|hunger=hunger_max|thirst=thirst_max</vars> | |
| <icon>@</icon> | |
| <body> | |
| <head> | |
| <flags>SKIN|BONE|CRUCIAL|AFFECTS[sight,smell,hearing]</flags> | |
| <damage_mod>2</damage_mod> |
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
| #Register use: | |
| # $t1 = a | |
| # $t2 = b | |
| # $t3 = temp | |
| #data segment begins here | |
| .data | |
| intro: .asciiz "CS230 Assignment#7. Written by:\n" | |
| enter: .asciiz "Enter an integer (>= 2): " | |
| astr: .asciiz "*" |
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
| import subprocess | |
| import pygame | |
| import time | |
| pygame.joystick.init() | |
| pygame.display.init() | |
| for stick in [pygame.joystick.Joystick(x) for x in range(pygame.joystick.get_count())]: | |
| stick.init() |
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
| import java.sql.*; | |
| import java.util.*; | |
| import java.io.*; | |
| public class Database{ | |
| public static void main (String args []) throws SQLException, IOException { | |
| // Load the Oracle JDBC driver | |
| DriverManager.registerDriver(new oracle.jdbc.OracleDriver()); | |
| String serverName = "csor6.bsu.edu"; |
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
| if (x >= y) #A label | |
| x=x-y; | |
| else | |
| y=y-x | |
| .data | |
| x: word; | |
| y: word; | |
| //Machine Code |
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
| #flags - 2012 | |
| #wtfplv2 | |
| import sys | |
| if not len(sys.argv)==2: | |
| print 'Usage: brainfuck.py <file>' | |
| sys.exit(1) | |
| PROGRAM = bytearray(9999) | |
| CELL = 0 |
NewerOlder