Coder Social home page Coder Social logo

thi-ng / blog Goto Github PK

View Code? Open in Web Editor NEW
23.0 9.0 0.0 51.74 MB

Current blog posts and consolidated historical articles from various other blog platforms used previously

Home Page: https://thi.ng/blog

License: Creative Commons Attribution Share Alike 4.0 International

TypeScript 100.00%
blog clojure clojurescript typescript zig webgl

blog's Introduction

blog.thi.ng

Due to a current lack of a proper blog setup, this is a temporary place to host & publish new blog posts (restarted in Dec 2022). My existing blogs with various long form articles originally published at Medium (2015-2020), the defunct toxiclibs.org site (2006-2011) and the ancient toxi.co.uk (2003-2008) are all in the process of being migrated to here as well...

Blog posts

Date Title
2023-01-03 A simple nod of acknowledgment
2022-12-04 Personal considerations for creating generative art
2022-09-03 Zig projects I'm working on...
2022-08-31 Zig pointer types cheatsheet
2019-03-14 Of umbrellas, transducers, reactive streams & mushrooms (Pt. 4)
2019-03-10 Of umbrellas, transducers, reactive streams & mushrooms (Pt. 3)
2019-03-07 Of umbrellas, transducers, reactive streams & mushrooms (Pt. 2)
2019-03-04 Of umbrellas, transducers, reactive streams & mushrooms (Pt.1)
2018-02-04 How to UI in 2018
2016-07-03 ClojureScript, WebWorkers & WebGL
2016-06-26 Workshop report: Generative design with Clojure
2016-05-02 Workshop report: Hi-perf Clojurescript with WebGL, asm.js and Emscripten
2016-01-05 Evolutionary failures (Part 1)
2015-12-15 The Jacob's Ladder of Coding
2015-11-16 Workshop report: Building Linked Data heatmaps with Clojurescript & thi.ng
2007-07-18 Adobe says: The picture is now complete
2005-09-26 1st Ave Machine
2005-07-06 648 ney, 14 hey, 18 couldn't care less
2005-03-04 1st public release of the macronaut hub
2004-01-27 Progress bar for applet loading
2004-01-16 New demos
2004-01-09 Java tutorials
2004-01-07 PostScript output from Processing
2004-01-06 Sonia 2.5
2004-01-05 Automatic keyboard focus
2004-01-05 Floats vs. fixed point math
2003-12-30 Processing in Eclipse

License

© 2003 - 2023 Karsten Schmidt // CC-BY-NC-SA-4.0

blog's People

Stargazers

 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

blog's Issues

2019 transducers Part 2

Hi,
I've been meaning to read this article, finally did, and it was full of insights.
I discovered a few minor issues.

the resulting array as a comment:

// Replicate Array.map()
transduce(mul10, push(), null, [1, 2, 3, 4]);
// [10, 20, 30, 40]

same here:

// overlaps can be achieved via optional step size
tx.transduce(tx.partition(3, 1), tx.push(), tx.range(10));
// [
//   [0, 1, 2],
//   [1, 2, 3],
//   [2, 3, 4],
//   [3, 4, 5],
//   [4, 5, 6],
//   [5, 6, 7],
//   [6, 7, 8],
//   [7, 8, 9],
// ]

update converge condition from 1e-3 to 1:

// leaky integrator which stops when difference between
// prev/curr goes below 1
[
    ...tx.converge(
        (a, b) => Math.abs(a - b) < 1,
        tx.iterate((x) => x + (100 - x) * 0.5, 0)
    ),
];

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.