Update as of 8.08.2021:
- Hid the bookmarks bar and fine-tuned some header styles.
If you want to add your own style to Slack, here's how.
I dunno what happened. I just wanted to try something sporty/future-y, I guess. Code for this is directly below.
| // 2024 | |
| { | |
| "workbench.startupEditor": "none", | |
| "workbench.iconTheme": "moxer-icons", | |
| "workbench.colorTheme": "Vesper", | |
| // Theme often switched...Try Kanagawa Black or Aura Theme Dark | |
| "workbench.settings.editor": "json", | |
| "breadcrumbs.enabled": false, | |
| "explorer.compactFolders": false, | |
| "editor.wordWrap": "on", |
Update as of 8.08.2021:
If you want to add your own style to Slack, here's how.
I dunno what happened. I just wanted to try something sporty/future-y, I guess. Code for this is directly below.
Update as of 8.08.2021:
If you want to add your own style to Slack, here's how.
I dunno what happened. I just wanted to try something sporty/future-y, I guess. Code for this is directly below.
Based upon this GIST which was great!
This is my build documentation for an ASUS PRIME Z270-AR setup with an MSI 1080 Gaming X 8GB, EVGA 1080 8GB and the Intel i5 7600, most of this came from the person I forked this guide from. This build also doesn't have NVRAM. Nearest I can tell everything is running as expected, including all USB and audio ports. Make sure you get MacOS 10.12.6 as it has native support for Kaby Lake processors, and you won't need to fake the CPUID.
This is my build documentation for an ASUS Z170-A setup with an NVIDIA GTX960 and the Intel i5 6500, most of this came from Storks asus rog maximus build, his audio instructions didn't work for me so it differs substantially there. This build also doesn't have NVRAM. Nearest I can tell everything is running as expected, including all USB and audio ports.
| # vim: set ft=python: | |
| # see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
| # source: https://github.com/mpv-player/mpv/issues/2149 | |
| # source: https://github.com/mpv-player/mpv/issues/566 | |
| # source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
| import vapoursynth | |
| core = vapoursynth.get_core() |
Using WebSockets, React and Reflux together can be a beautiful thing, but the intial setup can be a bit of a pain. The below examples attempt to offer one (arguably enjoyable) way to use these tools together.
This trifect works well if you think of things like so:
this.state in react should instead live within stores. Stores can listen to other stores as well as to events being fired.| # rack_sse.ru | |
| # | |
| # An example of basic real-time, single-room broadcast chat using Server Sent | |
| # Events in plain old Rack. This example does NOT use hijack, or the async | |
| # hacks, it just relies on a well implemented threaded Rack server (at time of | |
| # writing this will therefore only work with puma!). Other servers should be | |
| # fixed to support this, as it is pretty critical to how Rack *should* work on | |
| # most servers. The only spec-acceptable failure in this case is not flushing | |
| # the content stream on each yield (for which the rack spec has no workaround | |
| # today). |