Skip to content

Commit

Permalink
Merge pull request #26 from orbitmines/2024-02-orbitmines-as-a-game-p…
Browse files Browse the repository at this point in the history
…roject

Writing: OrbitMines as a Game Project: A comprehensive guide on how to be frustrated with pixels. An open call for funding, collaboration or anyone curious to learn more.
  • Loading branch information
FadiShawki authored Feb 22, 2024
2 parents 231bedb + 33f87d2 commit 511a043
Show file tree
Hide file tree
Showing 7 changed files with 318 additions and 6 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions orbitmines.com/src/routes/Archive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ import React from 'react';
import {useParams} from "react-router-dom";
import Error from "./Error";
import _2024_02_NGI_GrantProposal from "./archive/2024.02.NGI.GrantProposal";
import _2024_02_OrbitMines_as_a_Game_Project from "./archive/2024.02.OrbitMines_as_a_Game_Project";

const ITEMS: { [key: string]: any } = {
'2024-02-ngi-grant-proposal': _2024_02_NGI_GrantProposal,
'2024-02-orbitmines-as-a-game-project': _2024_02_OrbitMines_as_a_Game_Project
}

const Archive = () => {
Expand Down
10 changes: 5 additions & 5 deletions orbitmines.com/src/routes/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ import React from 'react';
import {Layer, pageStyles} from "../profiles/FadiShawki/FadiShawki2";
import {Col, Row} from "../lib/layout/flexbox";
import logo from "../lib/organizations/orbitmines/logo/orbitmines.logo.3000x1000.png";
import {Divider, H3, Icon, Tag} from "@blueprintjs/core";
import {H3, Tag} from "@blueprintjs/core";
import CustomIcon from "../lib/layout/icons/CustomIcon";
import ORGANIZATIONS from "../lib/organizations/ORGANIZATIONS";
import Author from "../lib/paper/layout/Author";
import {PROFILES} from "../profiles/profiles";
import {Helmet} from "react-helmet";
import {ON_INTELLIGIBILITY} from "./papers/2022.OnIntelligibility";
import {Rendered} from "../lib/typescript/React";
import {ON_ORBITS} from "./papers/2023.OnOrbits";
import Reference from "../lib/paper/layout/Reference";
import {CanvasContainer} from "../@orbitmines/Visualization";
import {_2024_02_ORBITMINES_AS_A_GAME_PROJECT} from "./archive/2024.02.OrbitMines_as_a_Game_Project";

const Root = () => {
const papers = [ON_ORBITS, ON_INTELLIGIBILITY];
const papers = [_2024_02_ORBITMINES_AS_A_GAME_PROJECT, ON_ORBITS, ON_INTELLIGIBILITY];

const profile = ORGANIZATIONS.orbitmines_research.profile;

Expand Down Expand Up @@ -101,11 +101,11 @@ const Root = () => {
</CanvasContainer>

<Row center="xs">
<H3 className="m-0">Papers</H3>
<H3 className="m-0">Paperable Text</H3>
</Row>

<div className="child-px-2">
{papers.map(paper => (<Row center="xs">
{papers.map(paper => (<Row center="xs" className="pb-3">
<Col xs={12} sm={10} md={8} lg={6} xl={5}>
<Reference index={0} reference={{...paper.reference, notes: undefined}} center="xs"
style={{fontSize: '0.8rem'}} target="_self"/>
Expand Down

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion orbitmines.com/src/routes/papers/2023.FadiShawki.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {ON_INTELLIGIBILITY} from "./2022.OnIntelligibility";
import {Category, ContentFocus} from '../../profiles/FadiShawki/FadiShawki2';
import {ON_ORBITS} from "./2023.OnOrbits";
import {CanvasContainer} from "../../@orbitmines/Visualization";
import {_2024_02_ORBITMINES_AS_A_GAME_PROJECT} from "../archive/2024.02.OrbitMines_as_a_Game_Project";

const FadiShawki = () => {
const profile = PROFILES.fadi_shawki;
Expand Down Expand Up @@ -75,7 +76,7 @@ const FadiShawki = () => {

<Arc head="Writings" buffer={false}>
<Section head="Theoretics">
{[ON_ORBITS, ON_INTELLIGIBILITY].map((paper, i) => (
{[_2024_02_ORBITMINES_AS_A_GAME_PROJECT, ON_ORBITS, ON_INTELLIGIBILITY].map((paper, i) => (
<Reference index={i} reference={{...paper.reference}} start="xs" style={{fontSize: '0.8rem'}} />
))}
</Section>
Expand Down

0 comments on commit 511a043

Please sign in to comment.