git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
MIT License | |
Copyright (c) 2012 endolith | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
exampleWithNumber: x | |
"A method that illustrates every part of Smalltalk method syntax | |
except primitives. It has unary, binary, and keyword messages, | |
declares arguments and temporaries, accesses a global variable | |
(but not and instance variable), uses literals (array, character, | |
symbol, string, integer, float), uses the pseudo variables | |
true false, nil, self, and super, and has sequence, assignment, | |
return and cascade. It has both zero argument and one argument blocks." |
13:15 <xQuasar> | HASKELL IS FOR FUCKIN FAGGOTS. YOU'RE ALL A BUNCH OF | |
| FUCKIN PUSSIES | |
13:15 <xQuasar> | JAVASCRIPT FOR LIFE FAGS | |
13:16 <luite> | hello | |
13:16 <ChongLi> | somebody has a mental illness! | |
13:16 <merijn> | Wow...I suddenly see the error of my ways and feel | |
| compelled to write Node.js! | |
13:16 <genisage> | hi | |
13:16 <luite> | you might be pleased to learn that you can compile | |
| haskell to javascript now |
const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = | |
{ | |
.Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, | |
.USBSpecification = VERSION_BCD(01.10), | |
.Class = USB_CSCP_NoDeviceClass, | |
.SubClass = USB_CSCP_NoDeviceSubclass, | |
.Protocol = USB_CSCP_NoDeviceProtocol, | |
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE, |
Screen resolutions | |
------------------ | |
PICO-8 supports different undocumented videomodes that can be activated at runtime, | |
using poke(0x5F2C, X) where X is one of the following mode numbers: | |
0: 128x128, 0 pages | |
1: 64x128, 1 page | |
2: 128x64, 1 page | |
3: 64x64, 3 pages |
;;; as | |
;;; | |
;;; an assembler for the DCPU-16 assembly language | |
;;; | |
;;; accepts a file of no more than 512 words indicating the sectors on disk that hold a particular file. | |
;;; then reads those sectors in the order given, treating them as assembler source | |
;;; then assembles said source to produce a DCPU-16 binary. | |
;;; the supported binary format is an image that can be loaded directly from a disk by a bootloader: | |
;;; it contains an 'initial sector' which is written to the first part of the disk and that loads the rest | |
;;; of the binary. |
/* | |
* SEP firmware split tool | |
* | |
* Copyright (c) 2017 xerub | |
*/ | |
#include <fcntl.h> | |
#include <stddef.h> | |
#include <stdio.h> | |
#include <stdlib.h> |