Skip to content

Instantly share code, notes, and snippets.

@psvensson
psvensson / client-data.lisp
Created January 28, 2023 16:07
For some reason, I got 'require argument is not a symbol: (DATA CLIENT-DATA) in set-status
(in-package :dungeon-game)
(defclass client-data ()
((map :accessor :map
:initform (make-array '(10 10) :initial-element 0))
(entities :accessor :entities
:initform (make-hash-table))
(participants :accessor :participants
:initform ())
(status :accessor :status)
@psvensson
psvensson / ViralityEngine_ideas.md
Last active November 23, 2022 13:24
Some thought on how to improve the epxerience for newcomers to Virality Engine

Notes from a newbie getting started on Virality Engine.

Github page(s)

https://github.com/bufferswap/ViralityEngine

Very good README. Overview, Install and Usage understandable and works to get a newcomer up and running (I use Linux).

Nice to haves

@psvensson
psvensson / pharoGameDevelopment.md
Last active November 28, 2020 11:51
Game related stuff for Pharo Smalltalk
@psvensson
psvensson / designer.html
Last active August 29, 2015 14:09
designer
<link href="../paper-tabs/paper-tabs.html" rel="import">
<link href="../paper-tabs/paper-tab.html" rel="import">
<link href="../core-pages/core-pages.html" rel="import">
<polymer-element name="my-element">
<template>
<style>
#design_host {
position: absolute;