-
Open a “Command Prompt”
-
Click on “Start” (Windows Logo) in the taskbar.
-
Click on “Run” a&b alternative. Hold “Windows Logo” key and press
R
. -
Type cmd and press
Enter
-
-
In the “Command Prompt” go to the figshare uploader directory.
---- cd "%APPDATA%\figshare uploader"
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
SECTION "High Ram", HRAM | |
RSSET $FF80 | |
state RB 1 | |
speed RB 1 | |
score RW 1 | |
height RW 1 | |
SECTION "Code", ROM0 | |
ResetInitial: | |
xor a |
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
In [15]: def dec1(func): | |
...: @wraps(func) | |
...: def wrapper(*args, **kwargs): | |
...: largs = list(args) | |
...: largs.append('dec1') | |
...: args = tuple(largs) | |
...: return func(*args, **kwargs) | |
...: return wrapper | |
In [16]: def dec2(func): |
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"?><gephiFile version="0.8"><!--File saved from Gephi 0.8.1--><core tasks="0"><lastModifiedDate>2013-09-17 16:18:08<!--yyyy-MM-dd HH:mm:ss--></lastModifiedDate></core><project name="Project 0"><metadata><title></title><keywords></keywords><description></description><author>adrian</author></metadata><workspaces><workspace name="Workspace 0" status="open"><!--Persistence from org.gephi.data.attributes.serialization.AttributeModelPersistenceProvider--><attributemodel><table name="Nodes" version="2" nodetable="true" edgetable="false" graphtable="false"><column><index>0</index><id>id</id><title>Id</title><type>STRING</type><origin>PROPERTY</origin><default></default></column><column><index>1</index><id>label</id><title>Label</title><type>STRING</type><origin>PROPERTY</origin><default></default></column></table><table name="Graph" version="2" nodetable="false" edgetable="false" graphtable="true"><column><index>0</index><id>name</id><title>Name</title><type>STRING</type><origin>PRO |
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
#!/usr/bin/env python | |
"""Scrap module. | |
Just tiny bits & bolts. | |
.. author: Adrian Castravete | |
""" |