Name | Description |
---|---|
itch.io | Free & paid assets |
OpenGameArt.org | Free assets |
Kenney | CC0 assets |
/r/gameassets | Free assets |
| Name | Type | Description | License |
Name | Description |
---|---|
itch.io | Free & paid assets |
OpenGameArt.org | Free assets |
Kenney | CC0 assets |
/r/gameassets | Free assets |
| Name | Type | Description | License |
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.// Classic arcade game style 8x8 bitmap font | |
// | |
// Copyright (C) 2020, Takayuki Matsuoka. | |
// SPDX-License-Identifier: CC0-1.0 | |
// https://spdx.org/licenses/CC0-1.0.html | |
static const unsigned char my_8x8_bitmap_chars[][8] = { | |
{ // 32 (0x20) : ' ' | |
0b00000000, | |
0b00000000, | |
0b00000000, |
Putting cryptographic primitives together is a lot like putting a jigsaw puzzle together, where all the pieces are cut exactly the same way, but there is only one correct solution. Thankfully, there are some projects out there that are working hard to make sure developers are getting it right.
The following advice comes from years of research from leading security researchers, developers, and cryptographers. This Gist was [forked from Thomas Ptacek's Gist][1] to be more readable. Additions have been added from
This specification is inspired by and supersedes the [AngularJS commit message format][commit-message-format].
We have very precise rules over how our Git commit messages must be formatted. This format leads to easier to read commit history.
Each commit message consists of a header, a body, and a footer.
This is a guide on how to email securely.
There are many guides on how to install and use PGP to encrypt email. This is not one of them. This is a guide on secure communication using email with PGP encryption. If you are not familiar with PGP, please read another guide first. If you are comfortable using PGP to encrypt and decrypt emails, this guide will raise your security to the next level.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Here's a few things I tried to write output to a python subprocess pipe.
from subprocess import Popen, PIPE
p = Popen('less', stdin=PIPE)
for x in xrange(100):
p.communicate('Line number %d.\n' % x)
Setup GitHub Pages "gh-pages" branch as a subfolder within the "master" project on your local checkout.
If you plan on switching between different branches (e.g. git checkout master-experiment
then revert back with git checkout master
) you will loose your child
folder from this tutorial (because it's in your
.gitignore and is not part of your master
branch).