Giter Site home page Giter Site logo

xxiivv / oscean Goto Github PK

View Code? Open in Web Editor NEW
479.0 11.0 81.0 717.69 MB

Static wiki engine written in Uxntal

Home Page: http://wiki.xxiivv.com

License: MIT License

HTML 98.76% Shell 0.01% C 0.15% CSS 0.06% JavaScript 1.00% Makefile 0.02%
memex wiki exocortex uxn assembly

oscean's People

Contributors

bellinitte avatar chasecolburn avatar ckipp01 avatar clayton-grey avatar coreygirard avatar gingerbeardman avatar la-ninpre avatar lejeunerenard avatar makoconstruct avatar maxdeviant avatar metasyn avatar michaelowens avatar milofultz avatar mrshll avatar nathanwentworth avatar neauoire avatar nevfy-y avatar nickyboy89 avatar noelleleigh avatar nomand avatar ozkxr avatar pkolios avatar pschwede avatar rekkabell avatar rosano avatar soberao avatar tangentfoxy avatar wint3rmute avatar wwaites avatar xavierpinho avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

oscean's Issues

New to linux, having issues installing the program

Sorry to bother you but this is not a bug. I just have a question on how to install orca after I have downloaded the zip from the ich.io site. I am on a raspberry pi and am very new to this world.
Thank you in advance

Question about Arvelie and Neralie

I'm fascinated and intrigued by arvelie and neralie, because they force you to look at time in a different way and I love that ... But I don't understand why these libraries exist for the creator of these libraries?

Are they purely artistic experiments?
Do they try to solve a problem that the current year-month-day calendar has?

In case of Arvelie I can see the date in format 2002-01-26 or maybe 20020126 can be compressed to 02B12 so that's handy.
But why "26 months of 14 days"? Is that time interval arbitrary?

Maybe writing just a bit more on the wiki.xxiivv.com page might also help other curious people like me :)

Thank you for making them open source 👍 !

broken link on lain to Nataniev

lain attempts to link to nataniev, after i flipped the polarity i discovered the link on the page contains a capital unlike the actual nataniev page causing a broken link. we all make mistakes :p

Time undefined on #horaire

Uncaught TypeError: Cannot read property 'time' of undefined
at Status.toString (status.js:9)
at status (heol.js:191)
at interpretList (lisp.js:48)
at interpret (lisp.js:55)
at interpret (lisp.js:53)
at Heol.Lisp.toString (lisp.js:103)
at Object.heol [as fn] (runic.js:73)
at stash.a.reduce (runic.js:38)
at Array.reduce ()
at _html (runic.js:36)

on

https://wiki.xxiivv.com/#horaire

Chrome 71, macOS 10.14.2

image

How does lexicon syntax work?

In the lexicon file "~/src/database/lexicon" there are suffixes to the numbers i.e: 2;alicef 3,azolla. I've been reading the resources and comparing the differences between the compiled results, but didn't find any. Are they being used for marking a dead-end or orphan? Thanks.

Varvara - File Device typo?

The table describing the fields of the file device describes the length as:
addr(length)*
However, the length field contains a value, not an address, so it should probably be
length*

Broken link

This page reads Recording from Montreal's Piknik Electronic 2009 stage. wiki.xxiivv.com/Live which leads to 404

Orca-Toy V Operator Reads Incorectly

V operator seems to only read correctly from a 'source'/writter that is on a lower line number, that the source +1.

For example this .orca:

Va...
?....
Va...aV5
?.....
Va....
5.....

places clear boxes, at the ? positions and not under all Va's 5 each frame as expected.

Bug Demo .orca

bad-V.orca.txt

Version Info:

orca-toy (via git log -n 1)

commit 520726a6ad0383eec21499d891caaa364cfa6637 (HEAD -> main, origin/main, origin/HEAD)
Author: neauoire
Date: Mon Jan 31 17:06:32 2022 -0800

uxn:

commit 5abb885eb57e91e3fa63c27a617b127bb76d12f1 (HEAD -> main, origin/main, origin/HEAD)
Author: neauoire
Date: Tue Feb 8 20:04:18 2022 -0800

os:

MacOS (12.1 & 10.13.4)

Initial #home hash change blocks back functionality in Firefox

Steps to reproduce

  1. Load https://wiki.xxiivv.com/ in Firefox 61 (page redirects to https://wiki.xxiivv.com/#home)
  2. Press the browser back button
  3. Page goes back to https://wiki.xxiivv.com/ and then redirects to https://wiki.xxiivv.com/#home again

Suggested fix

In scripts/nodes/query.js, replace:

window.location.hash = target.to_url()

with

if (target === 'home') {
  history.replaceState(undefined, undefined, '#' + target)
} else {
  window.location.hash = target.to_url()
}

(tested and functional in Firefox 61 and Chrome 67)

How can I use this?

I'm trying to figure out how run my own website like https://wiki.xxiivv.com/ using that Rivan graph and everything... Are there any instructions on how to get this whole thing to work?

Build warnings

Hi there! After cloning the project, entering the src directory, and running ./build.sh I get the following build warnings (I'm on Linux - Pop!_OS 19.10 - Ubuntu Derivative):

▲ (trapbook) Oscean [master] cd src 
▲ (trapbook) src [master] ./build.sh
cleanup..
building..
main.c: In function ‘build_page’:
main.c:677:44: warning: ‘%s’ directive output may be truncated writing up to 63 bytes into a region of size 56 [-Wformat-truncation=]
  677 |   snprintf(filepath, STR_BUF_LEN, "../site/%s.html", filename);
      |                                            ^~        ~~~~~~~~
In file included from /usr/include/stdio.h:867,
                 from main.c:4:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 14 and 77 bytes into a destination of size 64
   67 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   68 |        __bos (__s), __fmt, __va_arg_pack ());
      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
running..
Could not parent: home
========
Time is: Sat Apr  4 11:16:28 2020
Date is: 20G12
Next id: #658
Lexicon: 304 entries
Horaire: 3301 entries
finish..

Please excuse my ignorance of C and buidling projects written in it 😄 , I think Oscean is fascinating and am aiming to take this project as a fun way to learn more about C and more fundamental tooling.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.