I hereby claim:
- I am ds84182 on github.
- I am ds84182 (https://keybase.io/ds84182) on keybase.
- I have a public key ASCR_7TmPyMkmLhSFYVLnn5rx9T_MwVdB6Vjg7xBhJXNBwo
To claim this, I am signing this object:
import 'dart:async'; | |
import 'dart:typed_data'; | |
import 'package:flutter/material.dart'; | |
import 'dart:ui' as ui; | |
void main() => runApp(MyApp()); | |
int xorshift32(int x) { | |
x ^= x << 13; |
extern crate libwhp; | |
extern crate memmap; | |
use libwhp::*; | |
use memmap::*; | |
fn main() { | |
println!("?"); | |
let p = Partition::new().unwrap(); |
#include <3ds.h> | |
#include <stdio.h> | |
#include <cstdint> | |
#include <string> | |
#include <string_view> | |
#include <utility> | |
#include <vector> | |
static s64 base_tick; |
/* | |
Hello World example made by Aurelio Mannara for ctrulib | |
This code was modified for the last time on: 12/12/2014 21:00 UTC+1 | |
*/ | |
#include <3ds.h> | |
#include <stdio.h> | |
#include <cstdint> | |
#include <string> |
#include <3ds.h> | |
#include <stdio.h> | |
#include <cstdint> | |
#include <string> | |
#include <string_view> | |
#include <utility> | |
#include <vector> | |
static LightEvent test_event; |
pkga:pkga_ | |
pkgb:pkgb_ |
import 'dart:io'; | |
import 'raja.dart' deferred as rajascript; | |
void main() { | |
final raja = new File(".raja_was_here"); | |
if (raja.existsSync()) { | |
// Raja Was Here, load another script! | |
raja.deleteSync(); | |
rajascript.loadLibrary().then((_) => rajascript.run()); | |
} else { |
I hereby claim:
To claim this, I am signing this object:
import "package:sfml/sfml.dart" as sf; | |
import 'dart:typed_data'; | |
const sf.Attribute attrPosition = const sf.Attribute("attrPosition", 0); | |
const List<sf.Attribute> attributes = const [ | |
attrPosition | |
]; | |
const sf.AttributeFormat attrFmtPos2D = const sf.AttributeFormat(sf.AttributeType.Float, 2); | |
main() async { |
do | |
local info = debug.getinfo(1) | |
local startingLine, endingLine = info.currentline | |
local oursource = info.source | |
-- This GC stuff should probably work when it should except for things that can't get collected | |
local bubbles = setmetatable({}, {__gc="kv"}) | |
local bubbleContent = setmetatable({}, {__gc="kv"}) | |
local bubbleExists = setmetatable({}, {__gc="k"}) |