Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

Sauron

Making web development faster and more ergonomic
Collective - Host: opensource - https://opencollective.com/sauron - Website: https://ivanceras.github.io - Code: https://github.com/ivanceras

DO NOT use opt-level='z' since it removes a lot of stuff in the wasm, causing it to trigger panic in the runtime

github.com/ivanceras/sauron - b66696807294ab93562ae8f8c22b7789a8de0d4b authored almost 6 years ago
Make diff_patch test just a regular test instead of wasm_bindgen_test

Add test for truncate children

github.com/ivanceras/sauron - 25968d5d404bf0ad69b25e97cebe455cf252b28b authored almost 6 years ago
Trying out small code size optimization

github.com/ivanceras/sauron - 0220b9c6961867e9e9f1dd242d895816d4aa46df authored almost 6 years ago
Remove unused modules in isomorphic

github.com/ivanceras/sauron - 92c312b91b18be61402dd5ae6d88704e9b51a1d4 authored almost 6 years ago
Remove unused module app, Simplify the handling in the html side

github.com/ivanceras/sauron - b2cabf18be136e793b256c68095e1b019ba4e50e authored almost 6 years ago
Add a todomvc example

github.com/ivanceras/sauron - b30b2fe7e2ff979db55327a9f7144fcc46da1d49 authored almost 6 years ago
Make update method in component receive an owned Msg instead of &Msg

Add performance debugging in Program

Add create method to component

github.com/ivanceras/sauron - f1e6e39dc2d47ad9f02044c6461d53b12090c70c authored almost 6 years ago
Move the dispatching logic from the closure event listener to the Program.dispatch function

github.com/ivanceras/sauron - 264ca58d7e10af3f15c558f61d9bcf354cbcd750 authored almost 6 years ago
Tag FIXME comment for fixing a runtime error

github.com/ivanceras/sauron - ac23e3166414717abdffa68c95e49dbdbe09789b authored almost 6 years ago
Remove simple_app example since it is redundant to interactive example

Simplify the code in initialization

Fix test replacing the body which causes wasm_bindgen test ...

github.com/ivanceras/sauron - 1d5bbedcca7851158a6b30e7b413596e7e6ccca6 authored almost 6 years ago
Move implementation of program initialization to its own program module

github.com/ivanceras/sauron - c30c64236007174e49a9141a5f8b62b892d72a6f authored almost 6 years ago
Remove unncessary cloning of Program

github.com/ivanceras/sauron - e9b685bf7abb4bfdc65eafb66c07772c75a86008 authored almost 6 years ago
Refactor Renderer into Program into its own module program

github.com/ivanceras/sauron - b50d6ee3232341ead870e602d2188257b6b646c9 authored almost 6 years ago
Merge conflicts from already pushed commit

github.com/ivanceras/sauron - d0d101b42e37cdfb3cee343aac95578adcb30521 authored almost 6 years ago
IT WORKED, This now works with the use of Rc, RefCell, wrapped in a struct and pass around into the several functions that touched the DOM

github.com/ivanceras/sauron - c81c5fe0048fbbf3c3edcefc299ec525913e384f authored almost 6 years ago
get back to clean code, wrapped closure isn't possible without the code getting messy

github.com/ivanceras/sauron - fc66969bbff500264ad9480e32fe570923f9607e authored almost 6 years ago
Simplify the example initialization calls

github.com/ivanceras/sauron - 6ba965282c8d36337023bfdac8a0a5bf86bdf0fc authored almost 6 years ago
Refactor to pass Component for dom update and call the component's update method right after the callback is emitted. The result of the callback emit will then be fed into the component update method. This allows the user to deal with the behavior of the app in one place

github.com/ivanceras/sauron - bbf03e267352be0326355788331aae2df710c2d5 authored almost 6 years ago
Refactor the if else arms to return a converted vdom event then emit at the end which then returns an MSG that will be dispatch to the Component

github.com/ivanceras/sauron - d99dd08f68d2c01e02a0de9bf4d7afc69e0bd03e authored almost 6 years ago
Make the callback return a generic MSG

The MSG will be the return type for callback events in the html view, example: Msg::Click

github.com/ivanceras/sauron - 6a4abb5b31dee232c4e555dbdf59f9c76c1f018d authored almost 6 years ago
Make vdom Node use generic Callback, so the library can decide what the Callback function signature would be like

github.com/ivanceras/sauron - 7d47f3e2333dd6a88ec75c705ef56f0d7498f4ff authored almost 6 years ago
Fix double title

github.com/ivanceras/sauron - 39d52e96cb9cde8905c433373d1445256ef96b55 authored almost 6 years ago
organize port usage

github.com/ivanceras/sauron - da09cda2c5e673b2770c022853ec09d3ad069489 authored almost 6 years ago
A more concise example in README

github.com/ivanceras/sauron - 67388ac28f2e139442f11e745cb95b0231f10fbe authored almost 6 years ago
Update documentation

github.com/ivanceras/sauron - 31f1f7926f00f8e32266851c524b53adc4c583a4 authored almost 6 years ago
Publishing crate 0.1.2

github.com/ivanceras/sauron - 170d6b40346e6e99707f3c855b875a6d7f1f7249 authored almost 6 years ago
Fix bug, correctly remove the closure from dom_updater.active_closure, but using the correct index which is the vdom_id from the node element, instead of the curr_node_idex

github.com/ivanceras/sauron - a70e0fd51e0e952e8ea82263e418c509fceb9d55 authored almost 6 years ago
enable deny(warnings) on tests

github.com/ivanceras/sauron - 2772da4f0ec01d10e7a343567563ad384ad40928 authored almost 6 years ago
Fix warnings

github.com/ivanceras/sauron - f1803c4592b61ad419530d3df49b6504c1b3a21e authored almost 6 years ago
Publishing version 0.1.1

github.com/ivanceras/sauron - fafab19deb2730d9551595a19f9059a7175ebdb9 authored almost 6 years ago
Also remove the closures held in memory

github.com/ivanceras/sauron - d5c6375a9f077570a033fc6a4ef6a227a3eafae0 authored almost 6 years ago
Add implementation for removing event listener that has been removed when a new DOM is updated

github.com/ivanceras/sauron - 1d0b8266b7c4b2ae32e633a6ba53e93e3ab14451 authored almost 6 years ago
depend to sauron_vdom

github.com/ivanceras/sauron - 121575c07c37cf30801c97502dde7c9c19363098 authored almost 6 years ago
Add README for sauron_vdom

github.com/ivanceras/sauron - 6a55284d8b850e857e6c213b213b143324d55421 authored almost 6 years ago
Add more details into the package for crates.io publishing

github.com/ivanceras/sauron - 71687e42d10ef1c470efa9a3c86ba42a0cb7a59c authored almost 6 years ago
Move isomorphic example to here

github.com/ivanceras/sauron - 6245e41143270283d892a5ae856368915110de77 authored almost 6 years ago
Add bootstraping script when dependencies are not installed

github.com/ivanceras/sauron - b77249939aa3d9660006326b0d0cef2eba2ac5b4 authored almost 6 years ago
Add an interactive example

github.com/ivanceras/sauron - 4a799b1eafd50d3198f05f0bd05e556ff41e652d authored almost 6 years ago
Remove unncessary _ binding

github.com/ivanceras/sauron - 02b5adecb2fa56c471b7b0ee2652a0412bc441e9 authored almost 6 years ago
Remove unused dependency

github.com/ivanceras/sauron - 01246f298184f607067fbe341eefd6bb0ea9586b authored almost 6 years ago
Make a correction on the path for sauron and sauron_vdom

github.com/ivanceras/sauron - 6716fbe0619f36783bf1012b25d8737be34493ec authored almost 6 years ago
Initial commit

github.com/ivanceras/sauron - dcb788e6776eba7d1445ca2eb1213a1d5db66b32 authored almost 6 years ago
Merge conflict

github.com/ivanceras/comic - 25735da7b1936d7dc71d3299395743bd2ba26f5b authored over 6 years ago
Remove unused functions

github.com/ivanceras/comic - ad96cc12240d1f18d74656837888454f68d87770 authored over 6 years ago
Using include_dir to serve the directory, and embedded into the binary

github.com/ivanceras/diwata_cli - 84d44c5f7b3a177145b260040fe8eadcee1f2171 authored over 6 years ago
Remove dependence on font style icons

github.com/ivanceras/diwata_cli - d32977a68dd608b6abd82909bbedee6e0d75f8ed authored over 6 years ago
build first before running

github.com/ivanceras/diwata_cli - dea43e039cec3a777a8ea1681c4770226a58c4cf authored over 6 years ago
Regenerated, modified run script default port

github.com/ivanceras/diwata_cli - 055b150cbe15057c243c0d99af0fbed3c7e89626 authored over 6 years ago
Publishing version update

github.com/ivanceras/diwata_cli - fb998bb2306d1df9ca47d41081ec628cd1215009 authored over 6 years ago
publishing 0.1.4

github.com/ivanceras/diwata_cli - 35ed6c835a607012265bcf6a02ca55c43c0a2c8d authored over 6 years ago
Add more on readme, use the published library as dependency

github.com/ivanceras/diwata_cli - 7aa0638a3dc79a5e7ca9c107f875b25029dd087e authored over 6 years ago
recompilation from elm-webclient updates

github.com/ivanceras/diwata_cli - 1a893037dbf5ecfecdd040d5f95e86e8a92cf766 authored over 6 years ago
simplify cli to reuse the code in diwata_server handler code and only override the handle_index part

github.com/ivanceras/diwata_cli - 73d41e33a953ba93d10724a0061bc5c96a8f9680 authored over 6 years ago
rebuild elm client and publish version 0.1.3

github.com/ivanceras/diwata_cli - 09b67eec0d5ce60c2a808aaba259426b461162fe authored almost 7 years ago
Add a quickstart guide for diwata_cli

github.com/ivanceras/diwata_cli - e85602f51cbe100987f2582c1d6b0d8a0b6755fa authored almost 7 years ago
use open-rs crate for openning the browser

make a nicer url for 0.0.0.0

github.com/ivanceras/diwata_cli - 8f35babdc9d6554d1ad237e0a112d6a75c090bbb authored almost 7 years ago
make an owned version of Opt

have an option to open a browser

github.com/ivanceras/diwata_cli - 24ad7da020f9db1cc08657fb856c0eb1369e1c1e authored almost 7 years ago
Remove warnings

github.com/ivanceras/diwata_cli - 62333907e595653ec696fc60310c16c1d18290e1 authored almost 7 years ago
Add static and precompiled static html files

github.com/ivanceras/diwata_cli - 0950cc6bf22fb27e27627055302c3ce4f17463c4 authored almost 7 years ago
Images for showing publicly

github.com/ivanceras/images - 99116aed6fcbc16d1d8893092a38e6bcc6d8b8ca authored almost 7 years ago
Merge pull request #1 from amilajack/patch-1

Fixed syntax highlighting

github.com/ivanceras/rust-node-ffi-string - 6cb7e061c73600e7961cfdd8e78000ae574813c9 authored about 7 years ago
Fixed syntax highlighting

github.com/ivanceras/rust-node-ffi-string - 790b5aecba44ae7086401e860ca3101f4357a533 authored about 7 years ago
Publishing 0.1.1

github.com/ivanceras/comic - 5f75b624170ff148ee9aee4f6f0788a080683633 authored over 7 years ago
Fix usage of svgbob::Grid

github.com/ivanceras/comic - e77cb5df351266081f8fad9d32004932f5decc05 authored over 7 years ago
job registration page

github.com/ivanceras/quotation-ui - cc6144ff9794d613ec6196888bc231328a0aa0bd authored almost 8 years ago
reorder chapters

github.com/ivanceras/Books - 6941f11afa16663b5b0cf26f7a723acb066492a0 authored almost 8 years ago
Adding link to project

github.com/ivanceras/Books - d4751210219659bd64bd4e2d4e9cd97528186a01 authored almost 8 years ago
add comment on what the script does

github.com/ivanceras/Books - a321a54aff09104b66a8a16195dac399b2a3a551 authored almost 8 years ago
put the book's code link at the bottom

github.com/ivanceras/Books - 81594b56ec06cf6320997be378a0d0e4f61a26d7 authored almost 8 years ago
Correct link to the book, remove book.conf for nginx

github.com/ivanceras/Books - 77c06fea6087bf53f95fa77af0598a922a2a01a7 authored almost 8 years ago
better script placement

github.com/ivanceras/Books - 0fd67abae49eec60020da74c16b2bd77fefb9d92 authored almost 8 years ago
Initial commit

github.com/ivanceras/Books - ebbf3e95ce338333bfe0d3dadebd1bf90dff1558 authored almost 8 years ago
only 5 keywords allowed

github.com/ivanceras/comic - 60046f861716e36d4ba8225857a4efcd772cc0cc authored almost 8 years ago
fix keyword

github.com/ivanceras/comic - 2fe1b35c7cbd74cd5797f46090f197157c4e47d7 authored almost 8 years ago
Preparing for crates publish

github.com/ivanceras/comic - 27e67121418844897c220c02a8e668d2e10a6bf1 authored almost 8 years ago
Added a function with default args

github.com/ivanceras/comic - e54cb3ad4a2920e5913b638d040e2dba90938582 authored almost 8 years ago
fixed favicon href

github.com/ivanceras/quotation-ui - b51bb496311f14a227b98c7e103803f9e5624e32 authored almost 8 years ago
adding header, logo, register & login buttons and font

github.com/ivanceras/quotation-ui - 5219a33738683ca4e6e140b54b9da309065edf95 authored almost 8 years ago
no optimization on the generated svg

github.com/ivanceras/comic - 8004ec8f3798a91083ffc2801adeae1bd5063fae authored almost 8 years ago
Add build instruction

github.com/ivanceras/comic - 837440a0e37f07a749cf3cc9b00d3ad528c18fbd authored almost 8 years ago
Call svg convert in front-end web

github.com/ivanceras/comic - 910181b762f6cdc26b25e5d7fe5215182a43614a authored almost 8 years ago
Initial commit

github.com/ivanceras/comic - afe85185485d37b41b35e2cc223c493ea585547c authored almost 8 years ago
voxel grids

github.com/ivanceras/voxel - a01f580c919addeebef28beef50a50248253d1f6 authored about 8 years ago
Restarting research and experiments with voxel based rendering

github.com/ivanceras/voxel - d500ebaafc2170b4cc148e64adec8b40da8949cf authored about 8 years ago
some issues with grouping but useful already

github.com/ivanceras/rust-examples - 83b8eb079eeff8f691dd5a50abad94054bc57be6 authored about 8 years ago