Skip to content

Commit

Permalink
Rename to "A Universal Language"
Browse files Browse the repository at this point in the history
  • Loading branch information
FadiShawki committed Mar 30, 2024
1 parent b548916 commit 0a1d85b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
16 changes: 14 additions & 2 deletions orbitmines.com/src/routes/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {_2024_02_ORBITMINES_AS_A_GAME_PROJECT} from "./archive/2024.02.OrbitMine
import {A_UNIVERSAL_LANGUAGE} from "./papers/2024.AUniversalLanguage";

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

const profile = ORGANIZATIONS.orbitmines_research.profile;

Expand Down Expand Up @@ -89,6 +89,18 @@ const Root = () => {
</Row></Col>
</Row>

<div className="child-px-2">
{[_2024_02_ORBITMINES_AS_A_GAME_PROJECT].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"/>
{/*<a href={paper.reference.link?.replace("https://orbitmines.com/papers", "")}>*/}
{/* <Icon icon="link" /> {paper.reference.year}. <Rendered renderable={paper.reference.title} />*/}
{/*</a>*/}
</Col>
</Row>))}
</div>

<CanvasContainer style={{height: '120px'}}>
<canvas
style={{
Expand All @@ -102,7 +114,7 @@ const Root = () => {
</CanvasContainer>

<Row center="xs">
<H3 className="m-0">Paperable Text</H3>
<H3 className="m-0">Could be printed on paper</H3>
</Row>

<div className="child-px-2">
Expand Down
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 @@ -19,6 +19,7 @@ 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";
import {A_UNIVERSAL_LANGUAGE} from "./2024.AUniversalLanguage";

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

<Arc head="Writings" buffer={false}>
<Section head="Theoretics">
{[_2024_02_ORBITMINES_AS_A_GAME_PROJECT, ON_ORBITS, ON_INTELLIGIBILITY].map((paper, i) => (
{[A_UNIVERSAL_LANGUAGE, _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
5 changes: 3 additions & 2 deletions orbitmines.com/src/routes/papers/2024.AUniversalLanguage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import Reference, {useCounter} from "../../lib/paper/layout/Reference";
import {PROFILES} from "../../profiles/profiles";
import {renderable} from "../../lib/typescript/React";
import {ON_ORBITS} from "./2023.OnOrbits";
import BR from '../../lib/paper/layout/BR';

export const A_UNIVERSAL_LANGUAGE: Content = {
reference: {
title: "A Universal Language",
subtitle: "",
subtitle: "One Ray to rule them all, One Ray to find them, One Ray to bring them all, and in the darkness bind them: Explore a technical deep dive into Rays. Accompanied by a simple implementation of Aleks Kissinger's Chyp (Cospans of HYPergraphs).",
draft: true,
link: 'https://orbitmines.com/papers/a-universal-language',
year: "2024",
Expand Down Expand Up @@ -41,7 +42,7 @@ const AUniversalLanguage = () => {
const paper: Omit<PaperProps, 'children'> = {
...A_UNIVERSAL_LANGUAGE.reference,
subtitle: renderable<string>("", (value: any) => <>
A technical deep dive into Rays {<Reference is="footnote" index={referenceCounter()} reference={{...ON_ORBITS.reference}}/>} <Reference is="footnote" index={referenceCounter()} reference={{title: 'github.com/orbitmines/ray', link: 'https://github.com/orbitmines/ray', authors: [{
One Ray to rule them all, One Ray to find them,<BR/> One Ray to bring them all, and in the darkness bind them.<BR/><div className="pt-15"/> Explore a technical deep dive into Rays {<Reference is="footnote" index={referenceCounter()} reference={{...ON_ORBITS.reference}}/>} <Reference is="footnote" index={referenceCounter()} reference={{title: 'github.com/orbitmines/ray', link: 'https://github.com/orbitmines/ray', authors: [{
...PROFILES.fadi_shawki}], organizations: [ORGANIZATIONS.github]}}/>. Accompanied by a simple implementation of <Reference is="reference" simple inline index={referenceCounter()} reference={{title: 'Aleks Kissinger\'s Chyp (Cospans of HYPergraphs)', link: 'https://github.com/akissinger/chyp', authors: [{name: 'Aleks Kissinger'}]}} />.
</>),
pdf: {
Expand Down

0 comments on commit 0a1d85b

Please sign in to comment.