Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by halcy​:icosahedron: (halcy@icosahedron.website), page 103

  1. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 14:27:42 EST halcy​:icosahedron: halcy​:icosahedron:
    • josef

    @jk *to read

    In conversation Tuesday, 12-Dec-2017 14:27:42 EST from icosahedron.website permalink
  2. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 14:27:18 EST halcy​:icosahedron: halcy​:icosahedron:
    • josef

    @jk like for "colour" as a whole it's possible to not only tell colours apart but also you can see "these colours are farther apart than these others" and "these colours, in order, are A then B then C" unless you're using a shit colourmap like jet. but hue alone is super hard to real except for pure categories and even then colourblind people exist so using hue alone to distinguish stuff is Discouraged anyways

    In conversation Tuesday, 12-Dec-2017 14:27:18 EST from icosahedron.website permalink
  3. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 14:23:30 EST halcy​:icosahedron: halcy​:icosahedron:
    • josef

    @jk idk hue is only _kind of_ a separate channel

    In conversation Tuesday, 12-Dec-2017 14:23:30 EST from icosahedron.website permalink
  4. revenant (revenant@mastodon.social)'s status on Tuesday, 12-Dec-2017 10:10:58 EST revenant revenant

    reminder to just slurp the .wav off youtube homie https://mastodon.social/media/wqpYIqSI6fRHufXW2Gs

    In conversation Tuesday, 12-Dec-2017 10:10:58 EST from mastodon.social permalink Repeated by halcy
  5. Ex (xkeeper@icosahedron.website)'s status on Tuesday, 12-Dec-2017 13:15:15 EST Ex Ex
    in reply to
    • halcy​:icosahedron:

    @halcy https://www.youtube.com/watch?v=u4uq0p2YAdk also this

    In conversation Tuesday, 12-Dec-2017 13:15:15 EST from icosahedron.website permalink Repeated by halcy

    Attachments

    1. Invalid filename.
      who.is DNS XSS exploit
      By Mark Harwood from YouTube
  6. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 13:12:30 EST halcy​:icosahedron: halcy​:icosahedron:
    • Ex

    @Xkeeper what if: browser extension that adds Rocket sync tracks to whatever DOM elements properties you select so you can make websites dance

    In conversation Tuesday, 12-Dec-2017 13:12:30 EST from icosahedron.website permalink
  7. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 13:08:53 EST halcy​:icosahedron: halcy​:icosahedron:
    • Ex

    @Xkeeper thanks!

    In conversation Tuesday, 12-Dec-2017 13:08:53 EST from icosahedron.website permalink
  8. josef (jk@mastodon.social)'s status on Monday, 11-Dec-2017 22:23:25 EST josef josef

    my job title, and where i live

    https://mastodon.social/media/V6PnaaIAXvnrNO0EuHY

    In conversation Monday, 11-Dec-2017 22:23:25 EST from mastodon.social permalink Repeated by halcy
  9. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:52:41 EST halcy​:icosahedron: halcy​:icosahedron:
    • æon :icosahedron:
    • Toot Sweet Solon

    @aeonofdiscord @Solon Also, for editing, you usually hook rockets "set position" command to your audio players seek function so you can essentially seek your program. As I mentioned, if you want to play with it, you can prob just download the html and js (and the .rocket file if you want the current tracks) and get the editor from https://github.com/rocket/rocket/releases and then make it connect to that

    In conversation Tuesday, 12-Dec-2017 12:52:41 EST from icosahedron.website permalink

    Attachments

    1. Invalid filename.
      rocket/rocket
      from GitHub
      rocket - Rocket
  10. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:51:33 EST halcy​:icosahedron: halcy​:icosahedron:
    • æon :icosahedron:
    • Toot Sweet Solon

    @aeonofdiscord @Solon it does not do any beat matching. It essentially just gives you a bunch of "tracks", made of "rows", in which you can set paramter keyframes and interpolate between them (linear, ramp or smoothstep). In your code, you then just tell rocket "hey, I am in row 38, what's the value for parameter "head_rot" here?". Usually you set it up so that you have a beat every 4 or 8 rows.

    In conversation Tuesday, 12-Dec-2017 12:51:33 EST from icosahedron.website permalink
  11. skelmton (lm@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:24:10 EST skelmton skelmton

    Icosahedron math: the golden ratio, symmetry groups, the E8 lattice!

    https://johncarlosbaez.wordpress.com/2017/12/10/from-the-icosahedron-to-e8/

    In conversation Tuesday, 12-Dec-2017 12:24:10 EST from icosahedron.website permalink Repeated by halcy
  12. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:43:34 EST halcy​:icosahedron: halcy​:icosahedron:
    • Toot Sweet Solon

    @Solon The sync is done, as you commonly do with demos if you at all can, using the music players (in this case, the youtube videos) time elapsed, i.e. the code is something like time = player.getCurrentTime(); head_rotation = rocket.getParameter('head_rot', time * SYNC_ROWS_PER_SECOND); (not exactly like that, but you get the idea).

    Conveniently, since the song is exactly 120bpm, sync rows per second is easy to set to a good-to-work-with value here >>

    In conversation Tuesday, 12-Dec-2017 12:43:34 EST from icosahedron.website permalink
  13. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:35:48 EST halcy​:icosahedron: halcy​:icosahedron:
    • Toot Sweet Solon

    @Solon Much more fun than that! The youtube video is just for music, the actual animation is css parameters animated via javascript, using the js version of a sync tracker called "rocket". During development, it connects to the tracker and lets you seek and edit parameter tracks, looks like so: https://icosahedron.website/media/TYivRohzcOGxdCYAKVA The code for that is just commented out, so if you want you can download the html/js/sync tracks and the rocket editor (from github) and play around with it yourself!

    In conversation Tuesday, 12-Dec-2017 12:35:48 EST from icosahedron.website permalink Repeated by halcy
  14. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:35:48 EST halcy​:icosahedron: halcy​:icosahedron:
    • Toot Sweet Solon

    @Solon Much more fun than that! The youtube video is just for music, the actual animation is css parameters animated via javascript, using the js version of a sync tracker called "rocket". During development, it connects to the tracker and lets you seek and edit parameter tracks, looks like so: https://icosahedron.website/media/TYivRohzcOGxdCYAKVA The code for that is just commented out, so if you want you can download the html/js/sync tracks and the rocket editor (from github) and play around with it yourself!

    In conversation Tuesday, 12-Dec-2017 12:35:48 EST from icosahedron.website permalink
  15. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 12:26:35 EST halcy​:icosahedron: halcy​:icosahedron:
    • snackolantern 🎃

    @er1n that googles TF thing?

    In conversation Tuesday, 12-Dec-2017 12:26:35 EST from icosahedron.website permalink
  16. noiob whomst shork (noiob@awoo.space)'s status on Tuesday, 12-Dec-2017 12:20:56 EST noiob whomst shork noiob whomst shork

    ↪ The AI "experts" warn us of is some kind of far-off hypothetical god-AI while the already existing narrow AI already has the power to screw us royally, but I guess that wouldn't be a cool futuristic science fiction scenario, would it

    In conversation Tuesday, 12-Dec-2017 12:20:56 EST from awoo.space permalink Repeated by halcy
  17. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 11:58:59 EST halcy​:icosahedron: halcy​:icosahedron:

    Repost now that people are actually awake: http://halcy.de/heck/ good evening here's something dumb that I made, please enjoy on a desktop browser with a sufficiently wide window and also it should be able to play youtube videos or probably it won't work :hecker: :hacker: (warning: music, animation)

    In conversation Tuesday, 12-Dec-2017 11:58:59 EST from icosahedron.website permalink
  18. Gadfly (-booq-) (gaditb@icosahedron.website)'s status on Tuesday, 12-Dec-2017 11:31:17 EST Gadfly (-booq-) Gadfly (-booq-)
    in reply to
    • halcy​:icosahedron:

    @halcy

    Oh my god:
    """
    [Cisco ACE] devices don't support any other cipher suites, therefore disabling RSA is not an option. To our knowledge it is not possible to use these devices for TLS connections in a secure way.

    However, if you use these products you're in good company: As far as we can tell Cisco is using them to serve the cisco.com domain.
    """

    In conversation Tuesday, 12-Dec-2017 11:31:17 EST from icosahedron.website permalink Repeated by halcy
  19. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 11:31:15 EST halcy​:icosahedron: halcy​:icosahedron:

    dying here
    https://icosahedron.website/media/ucn3-E4BLy2RFtO2pBQ

    In conversation Tuesday, 12-Dec-2017 11:31:15 EST from icosahedron.website permalink
  20. halcy​:icosahedron: (halcy@icosahedron.website)'s status on Tuesday, 12-Dec-2017 11:30:33 EST halcy​:icosahedron: halcy​:icosahedron:
    • I̴̅ͣȌ̴ͥ ̈́͐ͬ̀̚C̴̀͊̓ͧor̡r̋̒̄̽̊u̡p̷ͥ̅̓ͪ̊ţ͛io̓̍ͩ̾̎҉ṅͨ ‮✨💻☕
    • Crom, Kobold King

    @wxcafe @vahnj the part about bitcoin is killing me help

    In conversation Tuesday, 12-Dec-2017 11:30:33 EST from icosahedron.website permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.