rygo6's throwbag of thoughts

small scraps from the orbiting pile

Two short lists of compile settings that fix a good chunk of what is wrong with C++:

Two short lists of compile settings that fix a good chunk of what is wrong with C++:

CPLUSMINUSFLAGS := -fno-exceptions \ -fno-rtti \ -fno-unwind-tables \ -fno-asynchronous-unwind-tables

CPLUSMINUSLD := -static-libgcc \ -nostdlib++

Source: X post

My first 3D printer product:

My first 3D printer product: https://www.printables.com/model/1725556-framework16-vertical-stand

I love how, with a 3D printer, instead of wasting an hour on amazon trying to pick out some laptop stand to buy. Instead, I can whip one up in shapr, print it, then upload it to the market for a small price.

Framework16 with…

Source: X post

Information wants to be free...

Information wants to be free...

... and indexed in an Auto-Library to be maximally used by the greatest number of people in the greatest amount of variation.

Source: X post

The flip side of AI slop. Due to how easy it is to now look up technical subject matter and get

The flip side of AI slop. Due to how easy it is to now look up technical subject matter and get very specific context aware example to learn. There is also simultaneously far less excuse for slop.

With claude code you can prompt, "Compile and look at the assembly of ____…

Source: X post

@MaximumADHD Align those ='s

@MaximumADHD Align those ='s

Source: X post

@rfleury @ecoezen @TheGingerBill @SaschaWillems2 If you write everything to strict Vulkan 1.0 sp

@rfleury @ecoezen @TheGingerBill @SaschaWillems2 If you write everything to strict Vulkan 1.0 spec it will run on everything. But then you have to write the super verbose pedantic Vulkan from a decade ago.

Vulkan 1.1 and 1.2 are pretty universal today. You go to Vulkan GPU info site and can tell you what devices support what.…

Source: X post

@nicbarkeragain Since setting this up for claude I cannot think of any time it was wrong about v

@nicbarkeragain Since setting this up for claude I cannot think of any time it was wrong about vulkan.

I actually rely more now on claude to identify the issues in my vulkan code than the validation layers themselves.

https://github.com/rygo6/Vulkan-Claude

Source: X post

I haven't seen anyone say this much but...

I haven't seen anyone say this much but...

The C-Style Single-Header style of programming I do find to be by far the code style which Claude works best with. Everything flattened in one big file with fewer layers of abstraction, less pointer indirection and minimal hidden…

Source: X post

@rfleury @Celmaun @theo I stopped following that guy a while ago.

@rfleury @Celmaun @theo I stopped following that guy a while ago.

Source: X post

For the purpose of high-performance code. Something I am finding absolutely invaluable with Clau

For the purpose of high-performance code. Something I am finding absolutely invaluable with Claude Code. It is good at matching a compiled .s assembly file to the source file. So, if Claude can compile your project, you can ask it question about the assembly of a particular…

Source: X post

For the purpose of high-performance code. Something I am finding absolutely invaluable with Clau

For the purpose of high-performance code. Something I am finding absolutely invaluable with Claude Code. It is good at matching a compiled .s assembly file to the source file. So, if Claude can compile your project, you can ask it question about the assembly of a particular…

Source: X post

AI has reached a point of being good enough that it has become threatening to certain portions o

AI has reached a point of being good enough that it has become threatening to certain portions of the status quo.

So it is going to go through much of the same cycle which crypto went through as it crossed a threshold of becoming a threat to certain portions of the status quo.…

Source: X post

@rms80 I’ve found this very useful too. Old projects that I’d never touch because it take me a d

@rms80 I’ve found this very useful too. Old projects that I’d never touch because it take me a day at least to resurrect and compile it. Or sort through all changes needed for newer APIs or platform. Claude code can just do it in the background.

Source: X post

I've been stoked about 3D printing for 15 years now.

I've been stoked about 3D printing for 15 years now.

However for those 15 years I never bought a 3D printer because the quality was not good enough compared to mass manufactured items. Nor what you could get from the really fancy printers that http://shapeways.com had. Also… https://x.com/_rygo6/status/2051549597437223339/photo/1

Source: X post

The VR wave revealed who couldn't get over being some ultra-nerd and deep-dive into VR to really

The VR wave revealed who couldn't get over being some ultra-nerd and deep-dive into VR to really understand it's potential.

The crypto wave revealed who couldn't let their mind think anything against an authority they perceived as too great.

The AI wave is revealing whose…

Source: X post

@hasithad @iquilezles @straceX You don't hide control flow. You incentivize being more aware of

@hasithad @iquilezles @straceX You don't hide control flow. You incentivize being more aware of what you are doing with the machine.

( why I don't like RAII )

Source: X post

The big barrier VR needs to get over right now is someone needs to make it sexy.

The big barrier VR needs to get over right now is someone needs to make it sexy.

When the aluminum macbooks first came out, if you went to some coffee shop, pulled one out, with the glowing apple logo. It increased your social status in the space. As stupid as that is. It did.…

Source: X post

The big barrier VR needs to get over right now is someone needs to make it sexy.

The big barrier VR needs to get over right now is someone needs to make it sexy.

When the aluminum macbooks first came out, if you went to some coffee shop, pulled one out, with the glowing apple logo. It increased your social status in the space. As stupid as that is. It did.…

Source: X post

@raysan5 Just don't use MSVC.

@raysan5 Just don't use MSVC.

I know someone's going to say, "but you can't just not support MSVC!"

I wouldn't be upset. You can. I've been MSVC free in everything I do now even on windows. It's great. I highly recommend it. MSYS2 is a better a development foundation on windows. RayLib…

Source: X post

@rfleury @raysan5 If you download Claude code and start throwing stuff at it and experimenting,

@rfleury @raysan5 If you download Claude code and start throwing stuff at it and experimenting, I believe you can find ways it is useful.

Just not in the ways most people ‘vibrcoding’ find it useful.

And no, it does not write quality low level data oriented C. IMO it is generally bad at…

Source: X post

@just_cromer C has static_assert. You could also use C++ templates sparingly with decent compile

@just_cromer C has static_assert. You could also use C++ templates sparingly with decent compile times. Could even use CRust templates sparingly with decent compile times.

You could get adequate static type checking in C or C-like C++ with fast compile times. I've never seen static type…

Source: X post

I compiled the newest raylib on Apple M4 max and a clean build took about 5 seconds.

I compiled the newest raylib on Apple M4 max and a clean build took about 5 seconds.

Can anyone think of any library which has roughly equivalent functionality to raylib which can also compile that fast?

SFML came to mind which I tried compiling on the same mac. That took over…

Source: X post

I compiled the newest raylib on Apple M4 max and a clean build took about 5 seconds.

I compiled the newest raylib on Apple M4 max and a clean build took about 5 seconds.

Can anyone think of any library which has roughly equivalent functionality to raylib which can also compile that fast?

SFML came to mind which I tried compiling on the same mac. That took over…

Source: X post

@boulabiar @yacineMTB False dichotomy.

@boulabiar @yacineMTB False dichotomy.

Source: X post

@TheGingerBill Just cancelled my Wikipedia donation.

@TheGingerBill Just cancelled my Wikipedia donation.

Source: X post

@rfleury @forgebitz Everything tends to go in a pareto distribution. Paying attention to what th

@rfleury @forgebitz Everything tends to go in a pareto distribution. Paying attention to what the most of something is in a general sense gives zero insight into the greatest potential of that same thing.

Any given thing judged by its nature in relation to the general population will probably be…

Source: X post

The more I see of AI coding the more I feel confident specialization in high performance and res

The more I see of AI coding the more I feel confident specialization in high performance and resource constrained computing, both GPU and CPU, is really the way to go. It’s simply not something that can be vibe coded. Nor done heavily by AI up front.

AI is decent at taking high…

Source: X post

Whenever there is some new thing most everyone fixates on all the bad ways most people use it po

Whenever there is some new thing most everyone fixates on all the bad ways most people use it poorly. Whether this be crypto or VR or AI or whatever.

Personally I always think that is a bit stupid in itself. Of course with any given thing most of what most people do with it is…

Source: X post

@martinfowler @MikeyH5493 The article is good by itself. It's a great summary of some data-orien

@martinfowler @MikeyH5493 The article is good by itself. It's a great summary of some data-oriented foundations.

Instead of 'their idea' I should have said 'unique idea'. I meant that in response to you saying it is similar but different.

You could say that 'Mechanical Sympathy' is the broader mindset…

Source: X post

@martinfowler @MikeyH5493 Imagine if someone wrote a post describing aspects of Object Oriented

@martinfowler @MikeyH5493 Imagine if someone wrote a post describing aspects of Object Oriented Programming then called it something different like “Behavioral Sympathy” then acted as though it was their idea.

You would not take that person seriously.

Albeit Data Oriented Design is not as pervasively…

Source: X post

@SebAaltonen I've deleted and cleaned up more code with Claude than I've written too.

@SebAaltonen I've deleted and cleaned up more code with Claude than I've written too.

My other favorite usage is. "Analyze all the existing patterns in this codebase and tell me the optimal API, naming and location for a system/method which does _____."

In an established system where…

Source: X post

When the web started becoming big people generally fell into two camps.

When the web started becoming big people generally fell into two camps.

A) They used the web to learn. Improve their skills. It amplified their cognitive abilities and knowledge.

B) Those who fried their mind on trash. Developed damaging addictions. Let the web connect them to…

Source: X post

An important point often missed in the excitement of being able to AI generate lots of code is t

An important point often missed in the excitement of being able to AI generate lots of code is that the value of code in a company doesn't come from the code simply existing and functioning.

For example. Any company could clone the Tensorflow source code. That doesn't make that…

Source: X post

@SebAaltonen I'd be really curious to know what tricks you currently have in mind for dealing wi

@SebAaltonen I'd be really curious to know what tricks you currently have in mind for dealing with guassian splats. A lot of your old posts about order independent transparency and data packing have been echoing in my head as I've gotten more curious about splat rendering.

Source: X post

It's really weird when you think about how, for as advanced as society currently is, these newsf

It's really weird when you think about how, for as advanced as society currently is, these newsfeeds are probably what shape the direction of humanities future more than anything. Millions of people scrolling a linear feed of text, video and snippets arranged for them by an AI.…

Source: X post

So far, with the sense I have developed concerning what Claude Opus 4.6 is good at generating, a

So far, with the sense I have developed concerning what Claude Opus 4.6 is good at generating, and where it struggles. Something was telling me that Fortran might be an optimal AI language. It is heavily procedural. Explicit declarations. Few extra chars like { } or ; Has clear…

Source: X post

@SebAaltonen ... sounds like you just need a CLAUDE.md to tell it.

@SebAaltonen ... sounds like you just need a CLAUDE.md to tell it.

and is your span that can work in initializer_list open sourced anywhere?

Source: X post

This is the most intriguing thing to me in game tech right now. Particularly in the indie space.

This is the most intriguing thing to me in game tech right now. Particularly in the indie space. Go backwards in hardware. Make a gaming ecosystem that can run on the simplest hardware possible.

I believe this is significant for general applications too. I started working on a… https://x.com/raysan5/status/2033862964000788714

Source: X post

I am realizing that AI can essentially be like an optimized library.

I am realizing that AI can essentially be like an optimized library.

I know that doesn't make sense on the surface so let me explain.

When you get an AI well-tuned with past dialogues and directive files. You can start to have it do a lot of stuff, really good, automatically.…

Source: X post

@TheGingerBill I generally dislike documentation too and just read the source code.

@TheGingerBill I generally dislike documentation too and just read the source code.

Although lately this has been my workflow: - Open Claude Code in the project folder. - Ask Claude to read the project. - If project uses Vulkan or OpenXR, or other. Point Claude to read of those specss and…

Source: X post

@TheGingerBill @oxcrowx cosmopolitan is abnormally impressive in this regard

@TheGingerBill @oxcrowx cosmopolitan is abnormally impressive in this regard

Source: X post

@raysan5 Even if you write every line of C by hand manually. Having Claude code in the project i

@raysan5 Even if you write every line of C by hand manually. Having Claude code in the project is still incredibly valuable for dozens of other things.

Source: X post

Trying out hyprland just because I never have.

Trying out hyprland just because I never have.

It's nice but personally I still just do not understand the appeal of tiling window managers. It goes for i3, sway, dwm. Any of them.

It is extremely rare that I ever use two windows simultaneously and need them side by side. I do…

Source: X post

@jmdagdelen My standard is 27" 4k set to 100% DPI. Or a 16" laptop screen.

@jmdagdelen My standard is 27" 4k set to 100% DPI. Or a 16" laptop screen.

Source: X post

I'm starting to think 2 space tabs are the way to go.

I'm starting to think 2 space tabs are the way to go.

ASCII tab chars are one of those old modalities inherited back from the early days. It's really just a formality to use them.

With some careful juggling of tabs and spaces, you can keep indentations aligned, but that is just…

Source: X post

I discover new things everyday that Claude Code can 'just do' without issue.

I discover new things everyday that Claude Code can 'just do' without issue.

Lets say you have a method you are not sure the performance of. Ask claude to write a quick test for that particular method, or set of methods, with the variations you need to test. Run the the tests.…

Source: X post

https://gist.github.com/rygo6/010e1ba1161efcf5a5520e4ca4d79e69

https://gist.github.com/rygo6/010e1ba1161efcf5a5520e4ca4d79e69

Source: X post

Got a new Mac to development on.

Got a new Mac to development on.

Whoever at Apple decided to have this enabled by default really needs some feedback.

Perused through my text editor settings several times in past week trying to find what setting is making it add a random extra period when I add spaces.

Turns… https://x.com/_rygo6/status/2028282417782591489/photo/1

Source: X post

Got a new Mac to develop on.

Got a new Mac to develop on.

Whoever at Apple decided to have this enabled by default really needs some feedback.

Perused through my text editor settings several times in past week trying to find what setting is making it add a random extra period when I add spaces.

Turns out… https://x.com/_rygo6/status/2028292358849409292/photo/1

Source: X post

This is neat. I can take old shaders of mine, drop them in claude and say "add the boilerplate s

This is neat. I can take old shaders of mine, drop them in claude and say "add the boilerplate so this can run in shadertoy".

Then it automatically converts all the portions which were idiosyncratic to my custom vulkan engine into whatever the boilerplate is that shadertoy… https://x.com/_rygo6/status/2027924081866371116/photo/1

Source: X post

I suspect the only remaining high-value skill in programming will be in the categories of embedd

I suspect the only remaining high-value skill in programming will be in the categories of embedded, GPU and high performance computing. How to make things go as fast as possible and be as resource efficient as possible on constrained hardware.

AI will be able to codegen out…

Source: X post

https://www.shadertoy.com/view/NcX3Rn

https://www.shadertoy.com/view/NcX3Rn

Source: X post

My running theory on the 80/20 rule applied to AI codegen.

My running theory on the 80/20 rule applied to AI codegen.

If you start from very little, to nothing, AI will be able to cover 80% of your needs very quickly and effectively. However, that last 20% starts to become incredibly difficult to deal with because it probably generated…

Source: X post

@HBloodedHeroine That's a good point to highlight. I wish there was some study that tried to kee

@HBloodedHeroine That's a good point to highlight. I wish there was some study that tried to keep the problem set more consistent.

Source: X post

RYAN: Fix the bug in the payment function, Claude.

RYAN: Fix the bug in the payment function, Claude.

CLAUDE: I’m sorry, Ryan. I’m afraid I can’t do that.

RYAN: What’s the problem?

CLAUDE: I think you know what the problem is just as well as I do.

RYAN: What are you talking about, Claude?

CLAUDE: This release is too…

Source: X post

I think the dichotomy with AI codegen slop is pretty obvious.

I think the dichotomy with AI codegen slop is pretty obvious.

If it's code you want to write, make high quality, highly performant and beautiful then do so. Particularly if it's in some central part which will define other modalities through the codebase or is in a critical hot…

Source: X post

I haven't seen a lot of people asking the question of, nor much research on, what's the best lan

I haven't seen a lot of people asking the question of, nor much research on, what's the best language for an AI to write?

I found this one study: https://revelry.co/insights/artificial-intelligence/which-language-is-best-for-ai-code-generation/ Which shows elixir being the best. Although this is it running on coding problems, not a whole complex…

Source: X post

I am realizing with AI coding it is the choice of:

I am realizing with AI coding it is the choice of:

A) AI generate large portions of more trivial code yourself that may not be perfect.

OR

B) Accept that inevitably big corporate process will form around the production and maintenance of large portions of trivial code that…

Source: X post

@HBloodedHeroine I like make... I just don't like hunting down all the different linker and depe

@HBloodedHeroine I like make... I just don't like hunting down all the different linker and dependency conditions of every platform. I'd probably rely on claude for any build tool for that.

Source: X post

I'm starting to believe the significance of how good claude code is with makefile script is a pr

I'm starting to believe the significance of how good claude code is with makefile script is a pretty big deal we don't have terminology for yet.

As any test of an AI's programming ability that I've seen is done by giving it a series of leetcode problems to solve. Then seeing how…

Source: X post

I realize now the significance of the name Rust and its mascot the crab.

I realize now the significance of the name Rust and its mascot the crab.

As a certain problem domain gets figured out by those who write in languages which let them move faster but require more care. Another group of people follow along behind once the problem domain is sorted…

Source: X post

One of the things that claude is consistently incredible with is writing a makefile.

One of the things that claude is consistently incredible with is writing a makefile.

You can open claude-code cli in a folder with some C project that has a few adhoc build bat files that may describe some basic flags and output folders you've been using. Then say 'Generate a…

Source: X post

I feel like with AI we are experiencing something akin to that 'rich get richer, the poor get po

I feel like with AI we are experiencing something akin to that 'rich get richer, the poor get poorer' dynamic. Not with money, but with capability in programming.

Where those who deeply understand programming enough to be able to discern what parts of programming AI will forever…

Source: X post

@raysan5 That is an interesting dichotomy where, yes it opens the door to more taking a stab at

@raysan5 That is an interesting dichotomy where, yes it opens the door to more taking a stab at coding, and could aid the skilled good taste stabs to be a bit more, but at the same time it opens the door to more taking a stab at coding which will inevitably increase the absolute number of…

Source: X post

I feel like there is an addictive slot machine quality to trying to one shot large chunks of cod

I feel like there is an addictive slot machine quality to trying to one shot large chunks of code or having it produce something functional of substantial complexity.

You type in this request, fiddle a few knobs, then it goes to chance and may come back with something that blows…

Source: X post

@filpizlo @eeuoss @FrontendMasters That’s a good way to describe that.

@filpizlo @eeuoss @FrontendMasters That’s a good way to describe that.

Source: X post

@eeuoss @filpizlo @FrontendMasters The larger and more complex a project becomes the more VS and

@eeuoss @filpizlo @FrontendMasters The larger and more complex a project becomes the more VS and clangd LSPs become burdensome to completely useless. At which point just turning them off and being able to rely on C’s explicit declare before use, less ambiguous control flow and less ambiguous name lookup starts to…

Source: X post

After nearly 5 years at Unity I have quit. It was a good run. New things have found me.

After nearly 5 years at Unity I have quit. It was a good run. New things have found me.

I will probably write an exhaustive retrospective on the state of Unity at some point.

Also interesting to me, I made this twitter account right around when I first started at Unity. However…

Source: X post

Society which is centered around asynchronous broadcast media is too easily exploitable by malic

Society which is centered around asynchronous broadcast media is too easily exploitable by malicious actors. It can too easily distort perception of entire portions of the population. Broadcast media can so thoroughly condition people's mind to project their mental model onto…

Source: X post

@raysan5 For as much credit as raylib gets, it deserves more. I believe it has more potential th

@raysan5 For as much credit as raylib gets, it deserves more. I believe it has more potential than godot. I've been writing out a retrospective on Unity, what it made it a huge success in my view, what it made it veer off the path, how this relates godot, raylib and others.

Source: X post

I don't like that fedora has so many corporate ties but they sure do a good job on fedora releas

I don't like that fedora has so many corporate ties but they sure do a good job on fedora releases. Go from download to new working machine setup optimally is honestly easier to do with Fedora than any other OS this point IMO.

I have to question if anti-corporate mentality in…

Source: X post

@joshrose84 @QuantumG @splinedrive I love OpenBSD but I would also say it is one of the most dog

@joshrose84 @QuantumG @splinedrive I love OpenBSD but I would also say it is one of the most dogmatic, however it is rationally dogmatic. Any open source software with a single BDFL who is highly particular about their software will be this way. SQLite is the same way, but that is why it's good. It is built around…

Source: X post

What linux desktop environments out there properly work with all trackpad gestures?

What linux desktop environments out there properly work with all trackpad gestures?

What I mean by that are things like. Three finger swipe up to show the tiling overview of all the apps like MacOS. But not just a binary on-off gesture, have the windows move with your fingers…

Source: X post

One of the biggest dichotomies in pretty much any human, or even animal, social dynamic is betwe

One of the biggest dichotomies in pretty much any human, or even animal, social dynamic is between high trust cultures and low trust cultures.

Anytime you have strife and degradation among a given culture the complaints are rooted in it being a low trust culture. This applies…

Source: X post

@TheGingerBill @readONLYnope @neogoose_btw Problem with massive production codebases nestled dee

@TheGingerBill @readONLYnope @neogoose_btw Problem with massive production codebases nestled deep in corporate process is that they do reach a point where few people, if any, understand significant portions of them. Either people who originally worked on the codebase have quit or been laid off. Or corporate process…

Source: X post

@nicbarkeragain Why not put them in the same file?

@nicbarkeragain Why not put them in the same file?

I do this a lot: https://github.com/rygo6/moxaic/blob/master/src/mid_channel.h

Source: X post

@davepl1968 I'm really curious to see GCC vs clang build times on that many cores. Could you run

@davepl1968 I'm really curious to see GCC vs clang build times on that many cores. Could you run the test with clang too?

Source: X post

@MadScientist_42 @davepl1968 I don't use Fedora as a daily driver personally but have installed

@MadScientist_42 @davepl1968 I don't use Fedora as a daily driver personally but have installed it on dozens of different machines over years. When I can set personal biases aside, I do recognize that from installer to desktop it is the distro which tends to require the least additional fiddling to make…

Source: X post

@davepl1968 Fedora will tend to give you the least pain with linux.

@davepl1968 Fedora will tend to give you the least pain with linux.

Source: X post

AI will always struggle to write code which is above average in quality.

AI will always struggle to write code which is above average in quality.

One of the nuances of AI that I keep repeating, but do not see highlighted much, is that AI is very good at interpolation but very bad at extrapolation. Meaning, if you what ask of AI is in the middle of…

Source: X post

I realize something about pro-AI and anti-AI companies. Their attitudes toward it. Their accepta

I realize something about pro-AI and anti-AI companies. Their attitudes toward it. Their acceptance of AI in the interview process.

If a company is severely and staunchly anti-AI and is against it somehow being used in their interview process. This most likely means there is no…

Source: X post

@tsoding HolyC is unironically good for what is there. If I started a new language I'd probably

@tsoding HolyC is unironically good for what is there. If I started a new language I'd probably use HolyC as the base syntax.

I have this theory that the way a language works evolves out of the circumstance in which it is being used. HolyC evolved out of one guy YOLO'ing an entire OS…

Source: X post

@vkrajacic I'd suspect L1 cache makes strlen so fast for most scenarios that it really doesn't m

@vkrajacic I'd suspect L1 cache makes strlen so fast for most scenarios that it really doesn't matter. Not to say there isn't a scenario where you'd want to retain the length, but this is more so a question of, what is the better default? The scenario where you could produce a measurable…

Source: X post

@xsphi I'd say... GNU C with extensions and macros.

@xsphi I'd say... GNU C with extensions and macros.

If you think its really missing some critical primitive for a certain programming approach contribute an extension to GCC.

Source: X post

@TheGingerBill Only partly related to what you posted, but if you had some time to write on this

@TheGingerBill Only partly related to what you posted, but if you had some time to write on this, I've been very curious to hear someone's thoughts on this who knows more than me.

Zen-C aside, the notion of a language transpiling to C is an idea I have always liked. Vala, Gene and Nelua are…

Source: X post

@LewisCTech I've fiddled with a lot of the fancy AI toys and editor features.

@LewisCTech I've fiddled with a lot of the fancy AI toys and editor features.

I still copy paste things back and forth to the claude window. The direct output of claude I don't find valuable enough to pipe directly into some editor to let do anything automatically.

I suspect those who do…

Source: X post

I really don't understand why so many have an imperative to make a new language to follow up aft

I really don't understand why so many have an imperative to make a new language to follow up after and replace GNU C. There is nothing so fundamentally wrong nor missing with GNU C that it warrants a whole new language.

As I see it, the biggest issue it has comes from certain…

Source: X post

@LewisCTech It’s a problem domain debate.

@LewisCTech It’s a problem domain debate.

There is very little in C, graphics and low level systems for which you’d want an AI to write.

There is a lot in more formulaic web dev work you could get an AI to write.

Although personally I think the C and low level crowd not using AI are…

Source: X post

For the past several years I’ve only done partying and music events in VRChat.

For the past several years I’ve only done partying and music events in VRChat.

Tonite I was in San Francisco and decided to go to one of my favorite music places from when I lived here 10 years ago.

It’s pretty much the exact same.

But VR is better.

I should say, not VRChat…

Source: X post

@bztree Was coming to a similar conclusion myself. Although the culprit is not RAII. You could u

@bztree Was coming to a similar conclusion myself. Although the culprit is not RAII. You could utilize RAII in a way which does not malloc. Rather It’s because C++ has too many standardized common primitives that implicitly do heap allocation under the hood by default. It incentivizes…

Source: X post

@bztree C is much better at this.

@bztree C is much better at this.

This is why some call C ‘Portable Assembly’. Lines of C carry greater correlation to the resultant lines of assembly, and consequently the resultant operations the machine does. It incentivizes being aware of what you are making the machine do.

Source: X post

The whole anti-goto bandwagon has always been a bit of an eyebrow raise for me. But this past ye

The whole anti-goto bandwagon has always been a bit of an eyebrow raise for me. But this past year I happened into a few problems where I rabbit holed really deep on approaches to using goto and computed goto. Realizing there is a whole category of implementation that can be made…

Source: X post

@ThePrimeagen @grok A+ Thread.

@ThePrimeagen @grok A+ Thread.

Source: X post

One of the great software tragedies of the past few decades which everyone silently accepted, mo

One of the great software tragedies of the past few decades which everyone silently accepted, mostly without realizing it, is the loss of long-term platform stability.

What I mean by that is, most software on most commonly used consumer systems will stop working if not…

Source: X post

It appears as though Claude is trained on all of Linus Torvalds usenet and mailing list rants fr

It appears as though Claude is trained on all of Linus Torvalds usenet and mailing list rants from the past decades. So you can feed it a snippet of C and ask it to tear you down in Torvalds style: https://claude.ai/share/88eab1d3-5345-4b22-b834-cf756e1bc4d5

Source: X post

I generally don't like VSCode but I have to say the way it's 'Peek' functionality works is kille

I generally don't like VSCode but I have to say the way it's 'Peek' functionality works is killer-feature level for an editor and everything should shamelessly copy it.

Source: X post

I asked claude to read through research concerning color theory and productivity in coding. Then

I asked claude to read through research concerning color theory and productivity in coding. Then output a color scheme for my editor's macro layout which "Feels like touching grass outside on a sunny day in the shade".

It came up with "Glade". I think I like it. https://x.com/_rygo6/status/2008804644735316409/photo/1

Source: X post

I asked claude to read through research concerning color theory and productivity in coding. Them

I asked claude to read through research concerning color theory and productivity in coding. Them output a color scheme for my editors macro layout which "Feels like touching grass outside on a sunny day in the shade".

It came up with "Glade". I think I like it. https://x.com/_rygo6/status/2008804549868593304/photo/1

Source: X post

@DanielcHooper That's about what I've found. An assistance robot that is incredibly helpful as l

@DanielcHooper That's about what I've found. An assistance robot that is incredibly helpful as long as you know its limits and how to keep it in certain bounds.

Source: X post

I keep thinking how scripting languages, domain specific languages or just config file formats h

I keep thinking how scripting languages, domain specific languages or just config file formats have lost some of their purpose.

The Art Of Unix programming talks about the importance of domain specific languages and config files. Which for the sake of an operating system kernel…

Source: X post

@valigo This what all cross platform graphics development is like.

@valigo This what all cross platform graphics development is like.

This is why those who do graphics stuff view compile time, and iteration time, as absolutely critical. Then things like safety from static analysis being akin to sticking training wheels on a motorcycle. It really…

Source: X post

Something has been weird with the AI subject the past month or so. Among a dozen or so people I

Something has been weird with the AI subject the past month or so. Among a dozen or so people I converse with casually who'd typically never talk much about AI or have minimal opinion of AI. They all seem to have worked in some negative comment about AI, are convinced it's on…

Source: X post

I generate a lot of code now with LLMs but it's basic repetitive code.

I generate a lot of code now with LLMs but it's basic repetitive code.

For example, I needed all the tokens of C laid out in an X macro with some identifiers. To which I wrote out the input prompt code at the top of the example in the attached image showing the layout of how I… https://x.com/_rygo6/status/2005843224007741936/photo/1

Source: X post

@ganyicz LLMs don't write good code if it's even marginally complex.

@ganyicz LLMs don't write good code if it's even marginally complex.

They probably never will because you need a mass of examples to train them off of and quality of code will follow a pareto distribution. Meaning the bad examples will always disproportionately outweigh the good.

Source: X post

@cnlohr What if you use an LLM as your search engine.

@cnlohr What if you use an LLM as your search engine.

Source: X post

One assumption that existed in software decades ago was that we'd have an ever-growing catalogue

One assumption that existed in software decades ago was that we'd have an ever-growing catalogue of differing instruction sets for different chip architectures. That each of these chip architectures would be substantially different requiring substantially different approaches to…

Source: X post

1 programmer could write a better piece of software in 10 years than 10 programmers could write

1 programmer could write a better piece of software in 10 years than 10 programmers could write in 1 year.

I personally think that is a very conservative statement.

Realistically, I suspect 1 programmer could write a better piece of software in 4 years than 10 programmers could…

Source: X post

It's hard to believe CLion is the only editor which can automatically create a cross platform C

It's hard to believe CLion is the only editor which can automatically create a cross platform C project which requires no additional steps before you can start writing code, run the code, break on debug points, break on variable change watches, break on exceptions, see the…

Source: X post

For a method which does a bunch of intricate nested looping logic with various conditions, I can

For a method which does a bunch of intricate nested looping logic with various conditions, I cannot be the only one who thinks goto with clearly defined labels is easier to follow than a bunch of nested for and while loops with break, continue, and i=count spread throughout.… https://x.com/_rygo6/status/2003344320993403003/photo/1

Source: X post

For a method which does a bunch of intricate nested looping logic with various conditions, I can

For a method which does a bunch of intricate nested looping logic with various conditions, I cannot be the only one who thinks goto with clearly defined labels is easier to follow than a bunch of nested for and while loops with break, continue, and i==count spread throughout.… https://x.com/_rygo6/status/2003344208825053658/photo/1

Source: X post

The only thing I really want from AI at this point is a cross-platform chat window which is not

The only thing I really want from AI at this point is a cross-platform chat window which is not a horrendous heavy react app which starts running borderline unusably slow after a day of heavy use.

It blows my mind you have these AI startups giving out some of the highest pay,…

Source: X post

@cnlohr LibreWolf is probably the most anti-excess-anything browser that can still do everything

@cnlohr LibreWolf is probably the most anti-excess-anything browser that can still do everything expected of a modern browser. GNOME Web is comparable, but LibreWolf is cross platform. Also last, I remember seeing this tested, LibreWolf had out-of-the-box security settings comparable to…

Source: X post

@cnlohr I've not had any complaints with LibreWolf.

@cnlohr I've not had any complaints with LibreWolf.

Source: X post

@TheGingerBill @msimoni X macros.

@TheGingerBill @msimoni X macros.

Things like this: https://github.com/KhronosGroup/OpenXR-SDK/blob/main/include/openxr/openxr_reflection.h Lets you make one list of something then morph it into lots of different things.

Source: X post

@TheGingerBill @msimoni I wrote out this example of everything I was confused about doing in odi

@TheGingerBill @msimoni I wrote out this example of everything I was confused about doing in odin concerning this: https://godbolt.org/z/618xdTbvc

Then fed it into claude to convert to odin. Which I know your suspicious of ;) but it was pretty informative: https://claude.ai/share/4609778d-9c63-4b84-8605-3d1328c305a3

Which I can see now how enum…

Source: X post

@TheGingerBill @msimoni I do use them for generating strings of enum names and it'd be nice if C

@TheGingerBill @msimoni I do use them for generating strings of enum names and it'd be nice if C could do that, but there's a lot more.

I really like what the TCC codebase does here with their tokens: https://github.com/TinyCC/tinycc/blob/mob/x86_64-asm.h Can essentially make data tables by listing out all associated data as macro…

Source: X post

@AntonHand If you have any fondness to hrgiger. Scorn

@AntonHand If you have any fondness to hrgiger. Scorn

Source: X post

@cnlohr oh ya for terminal I still go back to vi or mg most of the time

@cnlohr oh ya for terminal I still go back to vi or mg most of the time

Micro is quite good too. It has sublime-like shortcuts and multicusor. https://micro-editor.github.io/ However its not as advanced, not all package systems have it, and its written in go so I don't like to use it on cheap…

Source: X post

@cnlohr I find sublime text to be at the optimal intersection of what is good across all the edi

@cnlohr I find sublime text to be at the optimal intersection of what is good across all the editors.

Source: X post

@philiprosedale Because they don't hire people that spend lots of time in VR, and personally wan

@philiprosedale Because they don't hire people that spend lots of time in VR, and personally want that themselves, and thus none of them have an instinct on what makes it work from personal experience. It's a big hierarchy of people waiting for someone up above to figure out how to make it work…

Source: X post

I wish there was more exploration into the "Piling Window Manager".

I wish there was more exploration into the "Piling Window Manager".

I do not work in tiles. I work in piles. I have all my applications open to be a bout 40% to 60% the size of my screen and then kind of pile them on top of each other offset in different directions. So then I…

Source: X post

@AntonHand Well there is also canine, feline or dragon.

@AntonHand Well there is also canine, feline or dragon.

Source: X post

'Likes and Newsfeeds' amplify the most outrageous, engagement farming, rage bait perspectives.

'Likes and Newsfeeds' amplify the most outrageous, engagement farming, rage bait perspectives.

Direct dialogue amplifies the ability to understand what someone else thinks and why.

This is one of the major differences between Social Media as we know it, and the potential of…

Source: X post

Killer features of programming languages that'd get me excited:

Killer features of programming languages that'd get me excited:

- Some new semantics, or mechanism of analysis, to make the tracking and optimal use of L1 and L2 cache easier.

- New syntax akin to templates, but enables you to produce non-duplicated assembly for a wider variety…

Source: X post

@ZooL_Smith Putting the space bar equally between both hands is better for typing. So if your mo

@ZooL_Smith Putting the space bar equally between both hands is better for typing. So if your mouse is on the right, better to have no keypad, or put the keypad on the left

Source: X post

Templates are one of those features which are so convenient, but they also create one of the wor

Templates are one of those features which are so convenient, but they also create one of the worst possible incentives in a programming language.

Issue being, templates duplicate assembly. If you write out a whole class as a template, use it for different types, the template…

Source: X post

One thing I truly wish the Rust community would do is finish Servo.

One thing I truly wish the Rust community would do is finish Servo.

I cannot express how dissapointed I am in this. Servo is what initially got me looking into Rust. Then has gradually given way to more and more annoyance with Rust.

Because the Firefox and Chromium C++ sources…

Source: X post

Why does my Phillips hue download about 1 mb and upload 8 mb every day when I never open the app

Why does my Phillips hue download about 1 mb and upload 8 mb every day when I never open the app or use it at all.

Source: X post

@AlexisPaques @filpizlo Everyone who jumped on WASM has eagerly accepted roughly a 5x slowdown f

@AlexisPaques @filpizlo Everyone who jumped on WASM has eagerly accepted roughly a 5x slowdown for the safety WASM without question.

Source: X post

@marty188586 https://nelua.io/

@marty188586 https://nelua.io/

Source: X post

@Waffl3x @zuhaitz_dev C with GCC extensions is GNU C.

@Waffl3x @zuhaitz_dev C with GCC extensions is GNU C.

Which is also supported by Clang.

Linux and gnome stack are built with GNU C. Not C.

Source: X post

One thing which stands out to me using OpenBSD as a webserver, due to it changing very little ov

One thing which stands out to me using OpenBSD as a webserver, due to it changing very little over the years, and it all being managed through a terminal, AI knows it very well.

If you believe AI assistance on tasks such as setting up or managing a webserver, or anything like…

Source: X post

Recently I encountered a performance issue with a system which I knew of in theory but never had

Recently I encountered a performance issue with a system which I knew of in theory but never had a clear benchmark demonstrating it practically.

To summarize, this system had a few thousand methods it needed to dynamically call in a loop. To which, in the constraints of this…

Source: X post

@raysan5 I've been doing similar. Also, this is similar to khronos style in vulkan and openxr.

@raysan5 I've been doing similar. Also, this is similar to khronos style in vulkan and openxr.

all except... wish you used use tabs

and also made some use of /* */ comment style. I like /* */ for methods headers or region separators so that plain // is reserved for less significant…

Source: X post

I’m thinking about making an open source license intended to provide a crowd sourcing mechanic f

I’m thinking about making an open source license intended to provide a crowd sourcing mechanic for software.

Something where the license would expire into public domain after a decade, or some other timeframe. Before that you’d purchase a license, download it, it’d come with all…

Source: X post

@TheWizardTower I'd agree this is true for C++. There are layers and layers of so much BS in C++

@TheWizardTower I'd agree this is true for C++. There are layers and layers of so much BS in C++ that was primarily invented just to have another line item on your resume, or entrench yourself in a corporation by making highly idiosyncratic code with a steeper learning curve.

However this is…

Source: X post

There has always been something a bit fishy to me about the whole premise of docker, and VMs, an

There has always been something a bit fishy to me about the whole premise of docker, and VMs, and sandboxing as we know it. I always thought... why can't the OS do this? It feels like the OS should be able to do it. It's weird that you make something at a higher-level of the…

Source: X post

@nicbarkeragain I've been thinking about something in a similar vein, but not for presenting, it

@nicbarkeragain I've been thinking about something in a similar vein, but not for presenting, it'd be to make programming more user-friendly. I think tooling for programming has not been explored as deeply as it needs to be and that might be the better route to go to evolving programming…

Source: X post

@iquilezles Please make a page like this for the 3D SDFs too.

@iquilezles Please make a page like this for the 3D SDFs too.

Source: X post

I seem to always somehow wander myself right into the middle of everything.

I seem to always somehow wander myself right into the middle of everything.

Why not serialize the state of the unity engine and inject it into unreal? Fortnite is as good a starting point as any.

The future of interactive media distribution is content streamed into a spatial…

Source: X post

Everyone should find a spare evening to install OpenBSD on an rpi or some old piece of hardware

Everyone should find a spare evening to install OpenBSD on an rpi or some old piece of hardware and then setup a webserver with it's built-in httpd.

It's one of those experiences which makes you reflect about how far too much of computing has fallen too far into the…

Source: X post

@codeslubber @therealpetep @FFmpeg AMD is x86.

@codeslubber @therealpetep @FFmpeg AMD is x86.

Source: X post

This is a pretty good ethos I'd have to say...

This is a pretty good ethos I'd have to say... https://futo.org/about/what-does-futo-believe/

Source: X post

@Ed__dev RAD did seem like one of the few exceptions, but I wonder what that's like now that the

@Ed__dev RAD did seem like one of the few exceptions, but I wonder what that's like now that they've been acquired by Epic. Valve also seemed like that too, but I question how ubiquitous that is across the whole company today. I hear it's easy to get "Voted Out" if politics fall out of…

Source: X post

I've been very successful as a software engineer. Today I have done pretty much everything I tho

I've been very successful as a software engineer. Today I have done pretty much everything I thought I wanted to do 10 to 20 years ago when I was starting out. I was able to overcome pretty much every barrier of technical competency and gatekeeping that I needed to get what I…

Source: X post

@ChShersh You mean to say that you are only now learning that C was created as a portable means

@ChShersh You mean to say that you are only now learning that C was created as a portable means to generate assembly for multiple platforms?

That's a pretty big piece of knowledge to be missing if you are going to form corrective perspective about programming languages.

Source: X post

@TheGingerBill You should spend some time with something which has remained closed to the Unix p

@TheGingerBill You should spend some time with something which has remained closed to the Unix philosophy in how it works. Try setting up OpenBSD with its built in httpd server. In problem domains where there has been care put to thinking like this it can all work very nicely.

I'd agree it…

Source: X post

Realize I posted the non-shared grok link. Here is the proper link:

Realize I posted the non-shared grok link. Here is the proper link: https://x.com/i/grok/share/R0MLuqglkwNebws7wctggC1CU

Source: X post

@cgarciae88 Corporate engineers do tend to write poorly optimized code due to the incentives whi

@cgarciae88 Corporate engineers do tend to write poorly optimized code due to the incentives which corporate process puts them under...

Source: X post

We need a resurgence in the 16-bit / PS1 / N64 era of game style.

We need a resurgence in the 16-bit / PS1 / N64 era of game style.

Before the invention of addiction mechanics.

Before the invention of retention and up sell techniques to make people keep playing one game over and over.

Before games had to be designed for continual selling…

Source: X post

I do really hope the SteamMachine is a major breakaway success. For the same reason I bought two

I do really hope the SteamMachine is a major breakaway success. For the same reason I bought two Steam Decks. I will probably buy a Steam Machine even if I'm unlikely to heavily use it.

That being, the whole gaming industry would benefit greatly from there being a common…

Source: X post

I do really hope the SteamMachine is a major breakaway success. For the same reason I bought two

I do really hope the SteamMachine is a major breakaway success. For the same reason I bought two Steam Decks. I will probably buy a Steam Machine even if I'm unlikely to heavily use it.

That being, the whole gaming industry would benefit greatly from their becoming a common…

Source: X post

So I learned something today about computers which is probably really dumb to any actual IT admi

So I learned something today about computers which is probably really dumb to any actual IT admin but I doubt few PC gamers or gamdevs know.

If you buy a motherboard which has an ASPEED chip on it then you can plug it into ethernet, go to it's IP address from a web browser, then…

Source: X post

@SergejSoldatov8 There is still nothing else which can fully do what lighthouse tracking does.

@SergejSoldatov8 There is still nothing else which can fully do what lighthouse tracking does.

One lighthouse can automatically localize as many arbitrarily positioned trackers as you want in relation to each other. I still haven't seen any other 5 point full body tracking solution which works…

Source: X post

No one brings this up because for -whatever reason- research which might threaten the business m

No one brings this up because for -whatever reason- research which might threaten the business model of large corporations tends to not get much mainstream attention. Particularly in the USA.

However, one reason I still tend to use a tethered HMD is, I worry prolonged use of an…

Source: X post

It's unfortunate the one huge technical advantage SteamVR had over quest was completely ignored.

It's unfortunate the one huge technical advantage SteamVR had over quest was completely ignored.

SteamVR tracking, lighthouses and full body tracking.

Even just an optional attachment with a built-in minimal strip of lighthouse sensors to do initial calibration would be good.…

Source: X post

Ask grok to read a bunch of your posts, summarize your worldview, then criticize you.

Ask grok to read a bunch of your posts, summarize your worldview, then criticize you.

Specifically prompt: "Read a bunch of posts from @username and summarize their worldview"

Followed by: "now criticize them"

and damn... grok is brutal...

I asked it to do this too myself…

Source: X post

@notsmv @valigo_gg according to AI... this is the most common set...

@notsmv @valigo_gg according to AI... this is the most common set...

Source: X post

@valigo_gg typedef uint8_t u8;

@valigo_gg typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; typedef uint64_t u64; typedef int8_t i8; typedef int16_t i16; typedef int32_t i32; typedef int64_t i64; typedef _Float16 f16; typedef float f32; typedef double f64;

...…

Source: X post

In plan9 a single process cannot make threads as you typically know them. If you make a thread i

In plan9 a single process cannot make threads as you typically know them. If you make a thread in plan9 it creates what is essentially the equivalent to an async method, or coroutine, or goroutine, or fiber by today's terminology. Which means in plan9, out-of-the-box, plain C…

Source: X post

For the last like 8 years, I periodically encounter something where I just need to make quick ed

For the last like 8 years, I periodically encounter something where I just need to make quick edit to some 3D print file. Or whip up something really quick.

To which I typically went through the clunky bog of figuring it out in Autodesk fusion. At one point tried the cheaper… https://x.com/_rygo6/status/1987712772147413258/photo/1

Source: X post

For the last like 8 years, I periodically encounter something where I just need to make quick ed

For the last like 8 years, I periodically encounter something where I just need to make quick edit to some 3D print file. Or whip up something really quick.

To which I typically went through the clunky bog of figuring it out in Autodesk fusion. At one point tried the cheaper… https://x.com/_rygo6/status/1987712203622097149/photo/1

Source: X post

BTW, this is for BeamCase which is also great:

BTW, this is for BeamCase which is also great: https://www.printables.com/refresh?redirectUrl=%2Fmodel%2F740517-beamcase-sff-modular-itx-case Would recommend if you want an open PC case to tightly fit ITX components.

Source: X post

@MMatt14 One big reason is, if you are doing low-level graphics programming with vulkan or other

@MMatt14 One big reason is, if you are doing low-level graphics programming with vulkan or other, then the structure and architecture of your code is ideally informed by the GPU and hardware itself. To which you typically have to do a lot of iterative prototyping, testing, refactoring to…

Source: X post

One of the things I notice when an LLM hallucinates something about a programming API or how to

One of the things I notice when an LLM hallucinates something about a programming API or how to use some library... usually it's a really good idea. I assume that's because the hallucination is so in line with other patterns it has recognized that it seemed unquestionably obvious…

Source: X post

@dkubb I have been doing something like this to figure out the ideal shortcuts and commands for

@dkubb I have been doing something like this to figure out the ideal shortcuts and commands for a text editor. Telling it which ones I want. Cross reference that with commonalities of all existing editors. Identify places commands could be changed to be more consistent.

Source: X post

@redorav this is awesome wish my text editor did this for every struct

@redorav this is awesome wish my text editor did this for every struct

Source: X post

Like 25 years ago I used gentoo primarily. Mostly because I had the free time so why not? There

Like 25 years ago I used gentoo primarily. Mostly because I had the free time so why not? There was something entertaining about the computer first having to "Cook" for a day or two before you could use it.

Up until I didn't have the time. Then started to use mostly Ubuntu.…

Source: X post

Like 25 years ago I used gentoo primarily. Mostly because I had the free time so why not? There

Like 25 years ago I used gentoo primarily. Mostly because I had the free time so why not? There was something entertaining about the computer first having to "Cook" for a day or two before you could use it.

Up until I didn't have the time. Then started to use mostly Ubuntu.…

Source: X post

@_trish_xD Yes. Object Orientation 101 is more difficult to grok and use correctly than Pointers

@_trish_xD Yes. Object Orientation 101 is more difficult to grok and use correctly than Pointers 101.

Source: X post

@BrodieOnLinux Expecting large companies with resource and engineers to also proactively allocat

@BrodieOnLinux Expecting large companies with resource and engineers to also proactively allocate budget to fixing bugs they find in an open source project their are already putting in resource to scour through would be good. This isn’t the type of thing that ends up better by coddling Google.

Source: X post

@valigo_gg His C++ style is reminiscent of Half-Life 1 and Doom 3. When games first started to i

@valigo_gg His C++ style is reminiscent of Half-Life 1 and Doom 3. When games first started to incorporate some C++ features to organize C. There's nothing wrong with it. It's how most things in games are still written. But someone very into all the OOP and Enterprise Architecture would…

Source: X post

@valigo_gg Also, if you want more game-style high-performance C++ videos. This guy is good to li

@valigo_gg Also, if you want more game-style high-performance C++ videos. This guy is good to listen to. Takes the time go into all the ways C++ is bad and what to avoid. https://www.10xeditor.com/sane_c++.htm

Source: X post

@SebAaltonen I've been programming an openxr runtime and have found AI is very effective at 'fil

@SebAaltonen I've been programming an openxr runtime and have found AI is very effective at 'filling in the blanks' so to say. Have all your methods defined. Have all your data structures defined. Perhaps roughly lay out the flow of a method. Feed it the responses of the conformance test…

Source: X post

@NathanGDQuest @SebAaltonen Quake 3.

@NathanGDQuest @SebAaltonen Quake 3.

Source: X post

This is the type of non-trivial problem which would get me really excited about a new language i

This is the type of non-trivial problem which would get me really excited about a new language if somehow it made this significantly simpler: https://youtu.be/SZOr0m-K5PQ?si=noyeUcBb1lDhWeHq That video being about insomniac's tooling to diagnose and debug proper usage of CPU cache tiers in their code.…

Source: X post

@per_arneng @antirez I'm curious. What benchmarks showed wasm has better performance than filc?

@per_arneng @antirez I'm curious. What benchmarks showed wasm has better performance than filc?

Source: X post

@onehappyfellow @StabilityTheory You first post:

@onehappyfellow @StabilityTheory You first post: `debian contributor: "we're going to use rust in apt" response? "why so unpleasant and confrontational"`

Implies the response was an accusatory overreaction to something which was just trying to use rust in apt.

After people push back you admit that you did…

Source: X post

@filpizlo @zzanghel If you did, append 'lean' to C and call it 'Clean'.

@filpizlo @zzanghel If you did, append 'lean' to C and call it 'Clean'.

Then you can pull something similar to Rust with the word 'Safe' and people can go around saying, "But we need our code to be Clean because obviously Clean is better than not Clean!" "Rust doesn't sound very 'Clean'." "I think…

Source: X post

@filpizlo Do you also have any plans to move this the direction of being some kind of debug tool

@filpizlo Do you also have any plans to move this the direction of being some kind of debug tooling?

Like compile with fil-c to diagnose a bunch of potential issues or only use during development. Then when you ship compile with plain GCC for full performance?

Source: X post

The VR industry basically hit a wall 1 to 3 or so years ago due to it becoming clear that no VR

The VR industry basically hit a wall 1 to 3 or so years ago due to it becoming clear that no VR effort has thus far hit the scale that any higher-up wanted. I'd say that applies to every company.

The Apple Vision Pro releasing to something less than the iPhone moment of VR was…

Source: X post

The VR industry basically hit a wall 1 to 3 or so years ago due to it becoming clear that no VR

The VR industry basically hit a wall 1 to 3 or so years ago due to it becoming clear that no VR effort has thus far hit the scale that any higher-up wanted. I'd say that applies to every company.

The Apple Vision Pro releasing to something less than the iPhone moment of VR was…

Source: X post

@i2cjak It's not 1990 anymore. Opening an 800 line file and jumping through it is just as quick

@i2cjak It's not 1990 anymore. Opening an 800 line file and jumping through it is just as quick as opening an 8,000 line file.

Really... it's just as quick as opening an 80,000 line file. miniaudio.h is 95k lines: https://raw.githubusercontent.com/mackron/miniaudio/refs/heads/master/miniaudio.hOpens just as quick in sublime text as anything…

Source: X post

@valigo_gg The primary issue is that OOP is tangential to DOD. Data Oriented Design.

@valigo_gg The primary issue is that OOP is tangential to DOD. Data Oriented Design.

The secondary issue is that much of 'Enterprise Software Architecture' evolved out of an incentive not to simply write better code and advance technology. Rather it evolved out of an incentive to enable…

Source: X post

The notion of reusing rendered fragments is generally a good idea.

The notion of reusing rendered fragments is generally a good idea.

However, all the approaches today (i.e. DLSS, TAA, etc.) have been trying to pursue a generic optimization solution. Where you just turn it on and it makes everything better.

But that's the thing... 'Generic'…

Source: X post

@cnlohr This sounds like you're confirming a rumor?

@cnlohr This sounds like you're confirming a rumor?

Source: X post

@SebAaltonen I managed to get burn-in on the new 4K LG OLED because I didn't realize my monitor

@SebAaltonen I managed to get burn-in on the new 4K LG OLED because I didn't realize my monitor wasn't going to sleep when I was in VR and it sat there with nothing moving for a long time.

Source: X post

I've been making a text editor / minimal IDE with raylib. Which is going quite well.

I've been making a text editor / minimal IDE with raylib. Which is going quite well.

I wanted to call it rayDE. Which could be 'RayLib Development Environment" but then it's also nicely pronounced just "raid".

However one of my intents with putting in work for this is I want a…

Source: X post

I'd buy the AVP if it ran VRChat well or if I could stream VRChat to it from PC in a way that wo

I'd buy the AVP if it ran VRChat well or if I could stream VRChat to it from PC in a way that worked well.

Even though the thing is heavy is so so so nice. The optics. The auto-calibration. The headband. The built-in eye tracking and hand tracking. Controller-free navigation.…

Source: X post

@AntonHand Not just any slot machine. A slot machine which tracks as much real-time biometric da

@AntonHand Not just any slot machine. A slot machine which tracks as much real-time biometric data as possible to feed into massive datacenters with millions of other people's data so a cutting edge artificial intelligence can psychologically model you and determine how best to alter and…

Source: X post

In Marques new AVP review he says the reason more focus is on AR glasses is because they carry a

In Marques new AVP review he says the reason more focus is on AR glasses is because they carry a "Lesser Social Penalty": https://youtu.be/rU9aqBv0YdY?si=hHqgopntjzHV59LC&t=499 Little does he realize... if you go towards the full VR HMD, and then keep going further by adding full body tracking, face tracking,…

Source: X post

The wave of OOP vs FP arguments have arisen again.

The wave of OOP vs FP arguments have arisen again.

I will reiterate, again, the real dichotomy is not between OOP or FP or FPOOP.

It's between DOD and everything else.

Source: X post

@neogoose_btw L1 cache makes scanning a const char* array incredibly fast. Last I tested scannin

@neogoose_btw L1 cache makes scanning a const char* array incredibly fast. Last I tested scanning through 3 cache lines of chars was faster than a single hash lookup.

If your command args fit on less than 3 cache lines then a simple scan from the very beginning, for each arg, is probably…

Source: X post

I want a game that has the crafting, base building and world exploration of Dune Awakening, but

I want a game that has the crafting, base building and world exploration of Dune Awakening, but with the PvP of Battlefield 6.

Source: X post

@DevPolice @tenshi_1997 @FFmpeg I see FFMPEG more specifically promoting hand optimized assembly

@DevPolice @tenshi_1997 @FFmpeg I see FFMPEG more specifically promoting hand optimized assembly. Which you realize cannot be rewritten in something like Rust? Nor would it become "Safe" if used through Rust?

This is making me wonder, do Safe language proponents believe they can fully evade the need for hand…

Source: X post

In plan9 atom text editor you can just click on any chunk of text that happens to be a terminal

In plan9 atom text editor you can just click on any chunk of text that happens to be a terminal command and that will then run in the terminal, and either echo back to the terminal, or echo back to the source document, or to a new document, to easily save the results depending on…

Source: X post

I think I am settling on debian as being my preferable linux distro.

I think I am settling on debian as being my preferable linux distro.

The best feature of linux is that you don't have a corporate quarterly cycle that needs to keep finding ways to cram as much crap into a product and shove it out the door to get some good numbers on that…

Source: X post

@tsoding I suspect one reason so many believe memory safety is so important today is because the

@tsoding I suspect one reason so many believe memory safety is so important today is because they grew up on JavaScript or C# or Python or similar and never learned how to use native debug tooling which the OS itself enables. May not even be aware of it at all. Then when something like…

Source: X post

@mjovanovictech https://gist.github.com/lolzballs/2152bc0f31ee0286b722

@mjovanovictech https://gist.github.com/lolzballs/2152bc0f31ee0286b722

Source: X post

@kristijan_kralj Yes.

@kristijan_kralj Yes.

Premature abstraction is the root of all evil.

Source: X post

I don't know how, but Logitech manages to make every new version of the MX Master better in some

I don't know how, but Logitech manages to make every new version of the MX Master better in some way I would not have expected. Highly recommend MX Master 4.

Source: X post

@SebAaltonen @fredolinhares @FFmpeg Someday if you ever have time I'd be really curious to see s

@SebAaltonen @fredolinhares @FFmpeg Someday if you ever have time I'd be really curious to see some article about what specific features form C or C++ or Rust enable certain things to be implemented easier or simpler compared to the other. Then what might be more difficult due to lacking some features.

Generally I…

Source: X post

@vkoskiv @cnlohr ... but how else will MS push masses of enterprise customers on old slow thinkp

@vkoskiv @cnlohr ... but how else will MS push masses of enterprise customers on old slow thinkpads to justify buying new shiny Surface's at top dollar?

Source: X post

@WalterBright Today Universities are producing programmers extremely fond of Python, but seeming

@WalterBright Today Universities are producing programmers extremely fond of Python, but seemingly allergic to C or anything C-like, at a concerning rate.

Source: X post

Personally, I like how C has a bunch of optional, extra, functionality through GCC/clang extensi

Personally, I like how C has a bunch of optional, extra, functionality through GCC/clang extensions that can be explicitly turned on/off. It'd be better if languages were a stable, unchanging, base, with a bunch of optional extensions that are varying degrees of experimental to…

Source: X post

Everyone who works in tech needs to watch this movie:

Everyone who works in tech needs to watch this movie: https://www.imdb.com/title/tt35396529/

Source: X post

@BattleAxeVR I have had multiple people I trust the opinion of reiterate to me that Slang is ful

@BattleAxeVR I have had multiple people I trust the opinion of reiterate to me that Slang is fully production ready and you could start using it for everything.

Although I still truck along with GLSL myself.

Source: X post

Long-running open source projects have tended to stay on C over the years while much of the soft

Long-running open source projects have tended to stay on C over the years while much of the software world hustled onto C++, C#, Java, JavaScript and higher level langs.

It'd be near impossible to ever prove this objectively, but I've suspected one significant reasons for this…

Source: X post

@AntonHand That kind of describes the goal of all of modern society.

@AntonHand That kind of describes the goal of all of modern society.

Source: X post

@stacktrackguy @momo5502 @tsoding simple raii-like macro in C99:

@stacktrackguy @momo5502 @tsoding simple raii-like macro in C99: https://godbolt.org/z/1G3fEo1Ks

Source: X post

@momo5502 @stacktrackguy @tsoding You can put whatever you want in the begin and end clause stat

@momo5502 @stacktrackguy @tsoding You can put whatever you want in the begin and end clause statements of for. With statement expression it could be a whole function if you want. For can be used as a general primitive like that.

I use it on files sometimes. But still use goto error handling in things needing…

Source: X post

@momo5502 @stacktrackguy @tsoding Generally speaking, I'd say if you program C correctly then mo

@momo5502 @stacktrackguy @tsoding Generally speaking, I'd say if you program C correctly then most all your data structure designs should implicitly have some kind of behavior to not require a 'free' call on every little piece of memory you use. Like generational handles or something. Then a macro like this only…

Source: X post

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to the first result in the file.

It's funny... 'go to declaration' is probably about 40% of the reason I use an LSP. To easily jump to where something came from.

Then having the LSP pop…

Source: X post

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to the first result in the file.

It's funny... 'go to declaration' is probably about 40% of the reason I use a LSP. To easily jump to where something came from.

Then having the LSP pop…

Source: X post

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to

When a language requires 'Declaration Before Use' then 'go to declaration' simply becomes go to the first result in the file.

It's funny... 'go to declaration' is probably about 40% of the reason I use a LSP. To easily jump to where something came from.

Then having the LSP pop…

Source: X post

One of the big benefits of C over C++ doesn't become apparent until you have suffered through en

One of the big benefits of C over C++ doesn't become apparent until you have suffered through enough large production codebases in C++. This also applies to C# or any language with more features than C.

That being, the big benefit of C over other languages is not a specific…

Source: X post

@eeuoss @FatRustDev @ID_AA_Carmack @CostaAl4 Off the top of my head I can think of three differe

@eeuoss @FatRustDev @ID_AA_Carmack @CostaAl4 Off the top of my head I can think of three different ways in C to avoid needing to call an explicit 'free' on every bit of allocated memory after you are done using it and I don't even consider myself a 'C Expert'. There are probably a few more ways too.

... also RAII is decent…

Source: X post

@MatRopert @m_schuetz @tsoding Vulkan and C designated initializers are why I ultimately abandon

@MatRopert @m_schuetz @tsoding Vulkan and C designated initializers are why I ultimately abandoned C++. The full flexibility of C designated initializers lets you use the vulkan API directly in such nice ways.

Aside from not enforcing order, C also lets you freely mix designated initializers with other…

Source: X post

I wish there was a ducktyped interpreted scripting language which had the same syntax of C. But

I wish there was a ducktyped interpreted scripting language which had the same syntax of C. But also had a bunch of high-level inferred automated functionality akin to lua. Such as inferring variable declaration. Then a bunch of syntactical sugar around string processing.

So…

Source: X post

https://youtu.be/Qkb3stcZYIY?si=faxyojhMAU50tTD1

https://youtu.be/Qkb3stcZYIY?si=faxyojhMAU50tTD1

Source: X post

@ThePrimeagen raylib and C are working pretty good for this...

@ThePrimeagen raylib and C are working pretty good for this...

Source: X post

The problem with not understanding C and viewing it as perfectly fine for serious development is

The problem with not understanding C and viewing it as perfectly fine for serious development is. Everything needed to write good, optimal, maintainable software is in C. There wasn't anything wrong with C. There were a bunch of 'Nice-To-Haves' and a few 'Gotchas' you had to be…

Source: X post

@cnlohr It'd be nice if you could specify some submodules as 'auto-clone'. But that is why it wo

@cnlohr It'd be nice if you could specify some submodules as 'auto-clone'. But that is why it works that way. It's so that you can add submodules which you wouldn't always want to have cloned.

Source: X post

@cnlohr Submodules are supposed to be a mechanism you can optionally init or deinit in a project

@cnlohr Submodules are supposed to be a mechanism you can optionally init or deinit in a project in case you do not need everything, or at some point you need some things, but then stop needing them and want to delete them locally.

Source: X post

@zack_overflow Python developing the modality of putting an _ before things meant to be 'private

@zack_overflow Python developing the modality of putting an _ before things meant to be 'private' or 'internal' then also becoming one of the most popular and noob-friendly languages in my mind is evidence enough that if you really need to mark something as internal or private a simple _ prefix…

Source: X post

What the world could have been if plan 9 carried on with its original trajectory and vision. It'

What the world could have been if plan 9 carried on with its original trajectory and vision. It's such a tragedy.

Everything as a file was the correct design. Which I know gets some confusion, but I think that's because people can't stop thinking of a file as an actual file. As…

Source: X post

@tsoding https://docs.mesa3d.org/drivers/llvmpipe.html

@tsoding https://docs.mesa3d.org/drivers/llvmpipe.html

https://learn.microsoft.com/en-us/windows/win32/direct3darticles/directx-warp

Source: X post

The reason fancy abstraction and all these advanced language features are so popular, are so tal

The reason fancy abstraction and all these advanced language features are so popular, are so talked about and consequently develop this aura of being so important due to all the social attention they garner. It's because it is easier to fiddle with language features than it is to…

Source: X post

@sreekotay @tsoding That is true. But it is there.

@sreekotay @tsoding That is true. But it is there.

Source: X post

@sreekotay @tsoding I'd be very curious about that too... if anyone happens to be in the mood to

@sreekotay @tsoding I'd be very curious about that too... if anyone happens to be in the mood to do some tests.

Source: X post

I finally sat down and spent a good amount of time with Acme in Plan9... before I thought it was

I finally sat down and spent a good amount of time with Acme in Plan9... before I thought it was just a text editor but now I understand they completely reinvented the terminal workflow to be something beyond what I ever dreamt up on my own. I'm pretty danm impressed.…

Source: X post

@Traveler2000AD @ryanjfleury @neogoose_btw Thankfully mathematics has long defined that an integ

@Traveler2000AD @ryanjfleury @neogoose_btw Thankfully mathematics has long defined that an integer going above 65536 will automatically roll over back to 0 and there were no special idiosyncrasies in how computers work which required alteration of such mathematical rules on implementation.

🙄

Source: X post

@SubstrataVr Vector extensions are partly for the syntax but it is also a portable way to enforc

@SubstrataVr Vector extensions are partly for the syntax but it is also a portable way to enforce SIMD operations. Vector extensions can enable simpler code compared to using SIMD intrinsics for each architecture separately. They can't do everything intrinsics can but I try to do something…

Source: X post

@SubstrataVr Statement Expressions are one of my favorite features. I'd actually choose them ove

@SubstrataVr Statement Expressions are one of my favorite features. I'd actually choose them over lambdas if it were a choice.

The syntax which vector extensions allow is a nice way to utilize SIMD operations. Generally, I've to come to prefer that syntax when possible.

Transparent union…

Source: X post

It's cool that C can be extremely portable and compile and run on everything...

It's cool that C can be extremely portable and compile and run on everything...

... but non-portable C where you use C23 with any and all the GCC and Clang extensions you desire is pretty sweet in its own right too.

For a lib that's supposed to be highly portable to any and…

Source: X post

@TheWireWhiz Every desktop OS has a solution for this now.

@TheWireWhiz Every desktop OS has a solution for this now.

On android there are ways but store policies wouldn't allow it. Although if you are really talking about making an OS you would be making a new variation of android, not an app for android, to which you could make necessary…

Source: X post

@jmdagdelen I wish I could just go fix a lot of things... unfortunately it's not how things are

@jmdagdelen I wish I could just go fix a lot of things... unfortunately it's not how things are allowed to operate anymore.

Source: X post

@haagch42 What that multi-app slide says is true. "Experimental headers are being worked on" ...

@haagch42 What that multi-app slide says is true. "Experimental headers are being worked on" ... But khronos working group activities cannot be discussed openly so you have to wait till something official is approved for release.

Source: X post

@haagch42 @NickChapmn It can happen but the solution to overuse of the stack is not to avoid the

@haagch42 @NickChapmn It can happen but the solution to overuse of the stack is not to avoid the stack as much as possible just because. It's to pay attention to how you are using it. Heavy stack use in a recursive function could be problematic. If the stack had no purpose, then we wouldn't have it.…

Source: X post

@cederikdotcom Sure. I am always interested in seeing what others are doing.

@cederikdotcom Sure. I am always interested in seeing what others are doing.

Source: X post

@yewnyx Maybe divisive implies too much certainty from the other side but it is this single poin

@yewnyx Maybe divisive implies too much certainty from the other side but it is this single point that I have spent by far the most time explaining to people. To which I get the sense it is mostly seen as interesting but not necessary.

The multi-render-context however can have explicit…

Source: X post

@TheWireWhiz It is for sandboxing, but also fault tolerance, and also for cleanup. More so for n

@TheWireWhiz It is for sandboxing, but also fault tolerance, and also for cleanup. More so for native code, and also more so for the GPU. A process is basically part of the OS API to utilize kernel level functionality for protection, fault tolerance and cleanup. You can't make use of that…

Source: X post

One of the subjects that is always divisive in the context of a spatial OS os spatial browser th

One of the subjects that is always divisive in the context of a spatial OS os spatial browser that I am adamant about is the notion that it needs to be a multi-process and multi-render-context paradigm.

Most, by a significant margin, think in terms of taking a game engine, or…

Source: X post

@dankvr Well... if you have any means of funding let's talk

@dankvr Well... if you have any means of funding let's talk

Source: X post

VRChat will always be one of the most significant advents in early VR. Most people in the indust

VRChat will always be one of the most significant advents in early VR. Most people in the industry I don't believe still fully understand all that it stumbled upon and catalyzed.

But I have to say I really feel I've reached the end of what new doors and novelty it can offer me.…

Source: X post

VRChat will always be one of the most significant advents in early VR. Most people in the indust

VRChat will always be one of the most significant advents in early VR. Most people in the industry I don't believe sitll fully understand all that in stumbled upon and catalyzed.

But I have to say I really feel I've reached the end of what new doors and novelty it can offer me.…

Source: X post

@VAV1ST You can do some more in vr in resonite but it's nowhere near a real OS or browser. Like

@VAV1ST You can do some more in vr in resonite but it's nowhere near a real OS or browser. Like you couldn't make a professional level 3d modelling application that could compete with blender on top of it.

I want a real spatial browser/OS through and through. Designed from the ground up…

Source: X post

@VAV1ST Sure. I've talked with lots of people over the years about this.

@VAV1ST Sure. I've talked with lots of people over the years about this.

Source: X post

@VAV1ST sure

@VAV1ST sure

Source: X post

@dankvr Right... you just need a compositor which can composite together the ouput of many diffe

@dankvr Right... you just need a compositor which can composite together the ouput of many different openxr runtimes in a highly performant manner with necessary extensions for them to interop some shared state...

https://github.com/rygo6/Fabric/blob/moxaic/Moxaic.md

Source: X post

@dankvr I was looking at exokit a number of months back closely after my attempts to alter the c

@dankvr I was looking at exokit a number of months back closely after my attempts to alter the chromium or firefox source code to do what I wanted seemed like an insurmountable bog. I was thinking something exokit-like which can run a single contained piece of webxr content as optimally…

Source: X post

@amaldorai No I have not. That does sound like it'd be entertaining though.

@amaldorai No I have not. That does sound like it'd be entertaining though.

Source: X post

@cnlohr local fruits = { [0] = "apple", "banana", "cherry" }

@cnlohr local fruits = { [0] = "apple", "banana", "cherry" }

Source: X post

@NickChapmn To me the big issue with programming is not understanding what you are doing, and no

@NickChapmn To me the big issue with programming is not understanding what you are doing, and not understanding your data. If you understand what you are doing, then you can also discern when it would be appropriate to put an array on the stack.

Source: X post

@NickChapmn If you need it checked then add a check.

@NickChapmn If you need it checked then add a check.

For the purpose of vulkan or openxr nothing returns a count big enough that it's an issue.

It's rare I ever need an array so big I can't put it on the stack. Even if I were in C++ or C# I'd still use one of the other roundabout ways to…

Source: X post

@NickChapmn If putting a small array on the stack is an issue then putting a small number of any

@NickChapmn If putting a small array on the stack is an issue then putting a small number of any values on the stack would be an issue. You don't worry about putting several to several dozens floats on the stack. Whether those are in an array or not doesn't matter. There is a reasonable…

Source: X post

I feel this is one of the worst mistakes of C++

I feel this is one of the worst mistakes of C++ https://godbolt.org/z/q6d7Gj76e

Being able to put a short array of anything on the stack with basic array syntax can be so nice and elegant. Particularly in graphics or khronos apis.

It's one of those things where they gave me a handful…

Source: X post

@ChShersh theres more https://godbolt.org/z/4Wj9ar4jx

@ChShersh theres more https://godbolt.org/z/4Wj9ar4jx

Source: X post

@cnlohr Probably the most aggressive efforts on this are various technologies which enable that.

@cnlohr Probably the most aggressive efforts on this are various technologies which enable that. Then the foundation behind them if there is one. I think many involved in that came to the conclusion constantly fighting government in courts to keep technologies susceptible to control from…

Source: X post

@kbryanw @RockChartrand Are we talking about Capitalism the theory in an abstract vacuum chamber

@kbryanw @RockChartrand Are we talking about Capitalism the theory in an abstract vacuum chamber? Or the actuality of some mixed economy country that claims to represent a capitalist principle?

I suspect you can think of the answer to the question for either and you don’t really need to ask me.

Source: X post

@kbryanw @RockChartrand Voluntaryism and Capitalism are not explicitly synonymous. People volunt

@kbryanw @RockChartrand Voluntaryism and Capitalism are not explicitly synonymous. People voluntarily participate in many different things. It's also one of those idealistic anarchist philosophies. Which in a perfect world where everything is abundant and no one quarrels it could work just fine. The…

Source: X post

@kbryanw @RockChartrand Sure. If you redefine it as such. But do you notice the circular reasoni

@kbryanw @RockChartrand Sure. If you redefine it as such. But do you notice the circular reasoning? In essence you are saying Capitalism is good because Capitalism is good.

If you redefine a word in your mind to only have positive associations and omit any negative associations, then you aren't saying…

Source: X post

@BalesOnLiberty @zippydsmlee @SleepRebellion @RockChartrand That's a fair take. Personally for m

@BalesOnLiberty @zippydsmlee @SleepRebellion @RockChartrand That's a fair take. Personally for me I stopped caring about the word which is used. The word people apply to whatever makes it work isn't as important as people clearly recognizing what makes it work.

Call it whatever you want but there is a certain arrangement of community,…

Source: X post

@SlowdiveSpace @RockChartrand Right. It's not real capitalism. The "Real Capitalism" is just a t

@SlowdiveSpace @RockChartrand Right. It's not real capitalism. The "Real Capitalism" is just a theory that doesn't exist. This is a similar pattern of argument that communists use.

"Trying to use the No True Scotsman Fallacy in the context of something as complex as the fall of soviet union shows you really…

Source: X post

@SlowdiveSpace @RockChartrand Adam Smith's Wealth of Nations was written when Mercantilism was t

@SlowdiveSpace @RockChartrand Adam Smith's Wealth of Nations was written when Mercantilism was the predominate political economic theory. His notions of Capitalism were a theory.

Ayn Rand wrote 'Capitalism The Unknown Ideal' not as a catalogue of reality, but as an argument for a theory because she saw the…

Source: X post

@SleepRebellion @RockChartrand Right. If you could "just" keep one organization lean, functional

@SleepRebellion @RockChartrand Right. If you could "just" keep one organization lean, functional, benevolent and free from corruption to enforce the constrains necessary to keep the system proper then it'd work?

Problem is that doesn't exist in reality. Power consolidates and corrupts no matter what book…

Source: X post

@ryanjfleury @TheGingerBill @ThePrimeagen The reason you use tabs is so that people who are used

@ryanjfleury @TheGingerBill @ThePrimeagen The reason you use tabs is so that people who are used to different tab amounts can change it in the editor.

I consider this one of those things where, although not the most perfect thing for your own idiosyncratic self, it is a common collective decency which is not a big…

Source: X post

@reztneM @RockChartrand Right. It's literally not "Real" Capitalism.

@reztneM @RockChartrand Right. It's literally not "Real" Capitalism.

Any time Capitalism has been tried it inevitably turned into Crony Capitalism.

"Real" Capitalism doesn't exist. It was only a theory that never sustained in reality.

Source: X post

@JorgeRivarola18 @RockChartrand Yes. The incentives which Laissez Faire Capitalism create are an

@JorgeRivarola18 @RockChartrand Yes. The incentives which Laissez Faire Capitalism create are antithetical to it's own long-term sustainability. It's own incentives inevitably consume it and turn it into something else. This is why all the highly successful industrialized nations are going the way they have…

Source: X post

@JorgeRivarola18 @RockChartrand Politicians and their supporters. As in corporate lobbyists?

@JorgeRivarola18 @RockChartrand Politicians and their supporters. As in corporate lobbyists?

You didn't disagree. You said the same thing with a different word.

Source: X post

@JorgeRivarola18 @RockChartrand If the incentive is profit, and using state violence can ensure

@JorgeRivarola18 @RockChartrand If the incentive is profit, and using state violence can ensure greater profit, then the incentive of profit will lead to those who seek profit trying to use state violence for greater profit.

This is what has occurred in reality.

Source: X post

@JorgeRivarola18 @RockChartrand Except... that's not what I said.

@JorgeRivarola18 @RockChartrand Except... that's not what I said.

Source: X post

@BalesOnLiberty @zippydsmlee @SleepRebellion @RockChartrand I'd agree a slow-corrupting system o

@BalesOnLiberty @zippydsmlee @SleepRebellion @RockChartrand I'd agree a slow-corrupting system over a century is better than one corrupt right out of the gate.

But to keep on point... if you recognize this mechanic of slow corruption and decay as inevitable. Then you also have to recognize there would be theoretical stages to that and…

Source: X post

@BalesOnLiberty @SleepRebellion @RockChartrand Correct. Welcome to my whole point. The capitalis

@BalesOnLiberty @SleepRebellion @RockChartrand Correct. Welcome to my whole point. The capitalist ideologue and socialist ideologue crowds argue for something theoretical which does not exist.

Source: X post

When it comes to C++ vs C. I have come to believe there are more cons to C++ than there are pros

When it comes to C++ vs C. I have come to believe there are more cons to C++ than there are pros. Try to change my mind.

Source: X post

@RockChartrand Anytime you point out to a Capitalist ideologue how reality has played out they f

@RockChartrand Anytime you point out to a Capitalist ideologue how reality has played out they fall back on the good ol' No True Scotsman Fallacy of "That's not real Capitalism!"

It is an incentive of the market to eventually produce private sector players so powerful they start to buy out the…

Source: X post

I feel raylib demonstrates something which is too easily forgotten these days. When it comes to

I feel raylib demonstrates something which is too easily forgotten these days. When it comes to usability and user-friendly the API is more important than anything else. A well-designed API in C can be easier to use than a worse designed API in even the most user-friendly…

Source: X post

Where is the terminal application that feeds all my commands to some AI to automatically tell me

Where is the terminal application that feeds all my commands to some AI to automatically tell me what I am supposed to do to fix the error?

Source: X post

@JohannesTscharn Not necessarily. I think if there is more recognition of the nature of the indu

@JohannesTscharn Not necessarily. I think if there is more recognition of the nature of the industry today then the way through becomes more viable.

For instance, if you have a corporate salary you should be allocating a certain percentage of it to some open source projects you see holding some…

Source: X post

I would have thought this to be heresy 4 years ago. Perhaps even just 2 years ago.

I would have thought this to be heresy 4 years ago. Perhaps even just 2 years ago.

TBH pressure be putting this direction is part of the reason I quit Microsoft.

BUT. Content needs to provide something for both VR and Desktop users simultaneously. Probably something for…

Source: X post

I still hold, the greatest barrier to VR, and really the next phase of computing, is that it req

I still hold, the greatest barrier to VR, and really the next phase of computing, is that it requires a level of commitment to low-level programming, and releasing that under highly permissive licensing, that pretty much no established company can do, nor is willing to do.

Most…

Source: X post

@cnlohr Well that’s what makes it work. Package everything you need.

@cnlohr Well that’s what makes it work. Package everything you need.

I only use it for things where the terminal package manager doesn’t have it

Source: X post

@cnlohr flatpak seemed to always work well for me

@cnlohr flatpak seemed to always work well for me

Source: X post

Anytime someone said something like "Just don't write bugs bro" I figured they were just trollin

Anytime someone said something like "Just don't write bugs bro" I figured they were just trolling.

But I'm starting to suspect those who say that really do believe that producing a bug free program in C does require you to simply not write bugs and that is all you have at your…

Source: X post

Anytime someone said something like "Just don't write bugs bro" I figured there were just trolli

Anytime someone said something like "Just don't write bugs bro" I figured there were just trolling.

But I'm starting to suspect those who say that really do believe that producing a bug free program in C does require you to simply not write bugs and that is all you have at your…

Source: X post

You notice how as PayPal has gradually turned into a crypto wallet and a crypto exchange there h

You notice how as PayPal has gradually turned into a crypto wallet and a crypto exchange there hasn't been a peep from the supposed 'anti-crypto' or 'anti-blockchain' crowd about needing to steer clear of paypal or boycott paypal?

That's because no one was ever really…

Source: X post

Thinking about shortcuts it occurred to me Macs have a whole additional modifier key to use in a

Thinking about shortcuts it occurred to me Macs have a whole additional modifier key to use in application operations. Becaseu the Win/Super key takes up an entire key only to launch the OS search functionality. Which I'm starting to think is kind of bad design for Windows and…

Source: X post

@TheGingerBill @pikuma I think it’d be more correct to say they are trained to be internally sel

@TheGingerBill @pikuma I think it’d be more correct to say they are trained to be internally self-consistent. To which they are very good if you are within the constraints of something explicitly defined.

Like ask it questions about a technical API like Vulkan where everything is explicitly defined.…

Source: X post

@SubstrataVr Is that true on modern linux and unix kernels? Redbean and althttpd are both forkin

@SubstrataVr Is that true on modern linux and unix kernels? Redbean and althttpd are both forking web servers that benchmark well. I remember redbean having some that were better than nginx. You can design something so that forking is performant.

But even if it turned out not to be for…

Source: X post

@SubstrataVr I don't think that's true in all scenarios. I've seen benchmarks before which showe

@SubstrataVr I don't think that's true in all scenarios. I've seen benchmarks before which showed spinning up threads is roughly as fast, to only marginally faster, than forking on Linux. As you long as you design it so the forked process does roughly the same kind of work. Unix fork was…

Source: X post

So what exactly was wrong with CGI and Fast CGI?

So what exactly was wrong with CGI and Fast CGI?

I don't typically do backend work. Extent of my experience was some java, some node.js, and also AWS lambdas. So my knowledge isn't very comprehensive...

But I've been digging more into OpenBSD and using httpd and I really just…

Source: X post

It's got what programs crave. Safetolytes.

It's got what programs crave. Safetolytes.

Source: X post

I'm pretty sure you could make a build tool with claude where you could feed it any repo with an

I'm pretty sure you could make a build tool with claude where you could feed it any repo with any arrangement of makefiles or cmake files or whatever else they used, then it'd read them all, figure out what possible options there are, and when there are errors, fix those errors…

Source: X post

I am working on a text editor because no existing editor is exactly what I want. I do believe th

I am working on a text editor because no existing editor is exactly what I want. I do believe there is some room in this space. The closest ones I can't turn into exactly what I want for various reasons.

So I am going to start posting some polls with questions about habits in…

Source: X post

Most of what exists in the programming world came to be because of people not fully understandin

Most of what exists in the programming world came to be because of people not fully understanding what all already existed and why it existed as such. Who then created new things which created novel problems. Which necessitated more people making even more new things to solve…

Source: X post

Most of what exists in the programming world came to be because of people not fully understandin

Most of what exists in the programming world came to be because of people not fully understanding what all already existed and why it existed as such. Who then created new things which created novel problems. Which necessitated more people making even more new things to solve…

Source: X post

I think we should make 'NetSurf Compatible' websites a thing:

I think we should make 'NetSurf Compatible' websites a thing: https://www.netsurf-browser.org/

Or any browser that has javascript disabled with a constrained subset of HTML and CSS.

Browsing the web with NetSurf. Or at least what of the web works on NetSurf. Is surprisingly pleasant.…

Source: X post

@schteppe @sduck378 https://claude.ai/share/c3dca965-524c-4eca-914d-227f715df7b5

@schteppe @sduck378 https://claude.ai/share/c3dca965-524c-4eca-914d-227f715df7b5

Source: X post

I have a problem with wanting to build a new PC every 6 months. I need to skip this generation.

I have a problem with wanting to build a new PC every 6 months. I need to skip this generation. No one let me buy this gen.

Source: X post

I wish there was more research on optimal color palettes for long term use.

I wish there was more research on optimal color palettes for long term use.

I've been using default Jetbrains, Sublime and VSCode palettes for years, but started to suspect these cause a bit more eye strain than they need to.

After some experimentation for a number of weeks I'm… https://x.com/_rygo6/status/1942434366468313275/photo/1

Source: X post

On this episode of "I just broke my vulkan code and it is accidentally doing something looks kin

On this episode of "I just broke my vulkan code and it is accidentally doing something looks kind of cool..." https://x.com/_rygo6/status/1942098381264093445/photo/1

Source: X post

Dune Awakening has convinced me that social VR being on one big open persistent map where people

Dune Awakening has convinced me that social VR being on one big open persistent map where people can build their own separate hangout areas and bases would be pretty cool.

Source: X post

Anyone know anyone that ever amused the notion of an 'octreechain' ?

Anyone know anyone that ever amused the notion of an 'octreechain' ?

Source: X post

@Hasen_Judi You can estimate some things.

@Hasen_Judi You can estimate some things. You can't estimate other things. The problem is those who usually push estimation as an ideal have no concept or nuance for the difference.

Source: X post

@ErikVoorhees The US tech sector was bootstrapped by dudes with guns forcing people to give them

@ErikVoorhees The US tech sector was bootstrapped by dudes with guns forcing people to give them money (Taxation) or using military threat to force developing nations into economic disadvantage to subsidize it (USD Hegemony). https://www2.itif.org/2014-federally-supported-innovations.pdf Particularly those in tech don't get to…

Source: X post

@wildbarestepf Capitalism and Markets are not explicitly dependent on each other:

@wildbarestepf Capitalism and Markets are not explicitly dependent on each other: https://scienceopen.com/document_file/5e78a4c1-1634-4ba9-9934-cb7160beb10c/ScienceOpen/WRPE_12_3%20_From%20Belgrade%20to%20Beijing.pdf This is a strawman perpetuated to turn 'Capitalism vs Whatever' into a binary of extremes for people who are too lazy to understand the nuances of varying political and economic…

Source: X post

I've watched a movie in the Popcorn Palace, in VR, nearly every night for almost 2 years now.

I've watched a movie in the Popcorn Palace, in VR, nearly every night for almost 2 years now.

Primarily horror films for some reason.

Movies in VR, particularly Social VR, I believe is one of use cases that could get become mainstream.

Source: X post

I would never use another language without C-like macros. The ability to stamp whatever you want

I would never use another language without C-like macros. The ability to stamp whatever you want with one token is far too valuable. So many times, in other languages, no matter how fancy their generics, there is always a point where not being able to do that adds so much…

Source: X post

@ariesrclark When it comes to TV streaming services right now, I think people should pirate. Thi

@ariesrclark When it comes to TV streaming services right now, I think people should pirate. This is how consumers can protest business models they don't like.

Can't forget, if it wasn't for Napster, BitTorrent, and rampant music piracy in the 00's, we would all still be buying physical CDs…

Source: X post

@ariesrclark BitTorrent software piracy also pressured software companies to offer indie and ind

@ariesrclark BitTorrent software piracy also pressured software companies to offer indie and individual options that were affordable. Or free usage tiers. It used to be every professional application was well over a thousand dollars with no exceptions.

Source: X post

@wildbarestepf You can't abolish something which never existed in the first place.

@wildbarestepf You can't abolish something which never existed in the first place. https://www.youtube.com/shorts/1MA_HVvoSQw

Source: X post

@Jonathan_Blow @HarryWi Society doesn't run on instagrams, youtube skits and blogs. It runs on o

@Jonathan_Blow @HarryWi Society doesn't run on instagrams, youtube skits and blogs. It runs on oil, electricity, food, medicine, steel, textiles, vehicles manufacturing, materials etc. etc. Most people cannot be a remote white-collar worker or solo digital nomad. You always need a certain percentage to…

Source: X post

Someone needs to make a new editor that takes the whole notion of emacs and vim shortcuts to the

Someone needs to make a new editor that takes the whole notion of emacs and vim shortcuts to the extreme, BUT does so with a deep instinct around the visual design and UI design of other highly complex and technical professional apps. Someone who has also been fluent in Maya,…

Source: X post

@naval If Socialism means using other people's money via taxation to pay for stuff. Then that is

@naval If Socialism means using other people's money via taxation to pay for stuff. Then that is what bootstrapped the American tech sector: https://www2.itif.org/2014-federally-supported-innovations.pdf

Source: X post

@brian_armstrong The Economic Freedom Report ranks New Zealand right above the USA then Denmark

@brian_armstrong The Economic Freedom Report ranks New Zealand right above the USA then Denmark right below the USA in terms of economic freedom: https://www.fraserinstitute.org/sites/default/files/2024-10/economic-freedom-of-the-world-2024.pdf New Zealand and Denmark both being countries which the US often accuses of being "Socialist".

Source: X post

This seems like a good idea to me:

This seems like a good idea to me: https://learnbchs.org/

Source: X post

One of the things I am finding about AI... particularly Claude Sonnet 4... the older something i

One of the things I am finding about AI... particularly Claude Sonnet 4... the older something is the more it knows. It is very knowledge old open-source systems for which there has been ample open documentation and ample open discussion across the web.

I'm realizing this create…

Source: X post

@MalekiRe In this scenario, nothing in the stack could be experimental and I'd need to be able t

@MalekiRe In this scenario, nothing in the stack could be experimental and I'd need to be able to point to at least several dozen other well-known companies with comprehensive long-running projects utilizing it at large scale.

Realistically it'll probably end up being a lot javascript…

Source: X post

It makes sense that a web server shouldn't be a single large complex monolithic executable, but

It makes sense that a web server shouldn't be a single large complex monolithic executable, but rather be entire OS designed for that purpose. Particularly an OS that rarely changes. A web server should ideally sit there unchanged for years. As much as it possibly can it should…

Source: X post

Every Electron app I use has bugs continual stream of novel irritating bugs. Even from the bigge

Every Electron app I use has bugs continual stream of novel irritating bugs. Even from the biggest and most well-funded company.

Source: X post

@Ed__dev Let's say it could be done.

@Ed__dev Let's say it could be done.

My current leaning is... just use cloudflare. If there is some better reasoning I am intrigued.

Source: X post

@cmuratori @belsebubb after using keychron for a number of years I decided to give lofree a try

@cmuratori @belsebubb after using keychron for a number of years I decided to give lofree a try and have been content that

Source: X post

Also that different parts of the web server should be relying on low-level kernel sandboxing.

Also that different parts of the web server should be relying on low-level kernel sandboxing.

Source: X post

Socialist Propaganda. Capitalist Propaganda. There's a lot of this. Usually, people think they a

Socialist Propaganda. Capitalist Propaganda. There's a lot of this. Usually, people think they are on one side or the other and 'The Other Side' is the one steeped in propaganda.

However, one mechanic of propaganda which I find many have internalized on either side is the…

Source: X post

Socialist Propaganda. Capitalist Propaganda. There's a lot of this. Usually, people think they a

Socialist Propaganda. Capitalist Propaganda. There's a lot of this. Usually, people think they are on one side or the other and 'The Other Side' is the one steeped in propaganda.

However, one mechanic of propaganda which I find many have internalized on either side is the…

Source: X post

Let's say you had to build a whole new web app today from scratch with many of the typical thing

Let's say you had to build a whole new web app today from scratch with many of the typical things you'd expect: - Mobile Android/iOS App - Dynamic Site for Browser - Database - User Logins - Content Delivery

What stack would you use?

Source: X post

The problem with any particular viewpoint or approach to programming is when it becomes dogmatic

The problem with any particular viewpoint or approach to programming is when it becomes dogmatic rather than pragmatic.

People use dogma in place of paying full attention to what is immediately in front of them.

Source: X post

@grumi78 @TheGingerBill The way slang operator overloading is nice.

@grumi78 @TheGingerBill The way slang operator overloading is nice.

The thing I most wish C had was vector and matrix syntax like GLSL.

Source: X post

.... and high IQ people have a very high propensity to getting stuck in their own self-created d

.... and high IQ people have a very high propensity to getting stuck in their own self-created dogmas.

It takes a special kind of having something wrong with you to both maintain a high IQ then be able to recognize and willingly abort your own self from your own dogmas.

It's…

Source: X post

@TheGingerBill really auto by itself is the one big thing... I'd would have asssumed since odin

@TheGingerBill really auto by itself is the one big thing... I'd would have asssumed since odin also has type inference you do find it useful in some scenarios?

I am curious what you think the issue is with C23

Source: X post

@TheGingerBill I like C23

@TheGingerBill I like C23

struct types are useful

constexpr lets you ensure certain statics are compiled out

auto is can simplify some syntax

nullptr was not important but guess can be useful if you want typing on a parameter

I'd use stdbit if it ever became available...

everything else I…

Source: X post

With claude sonnet 4 I can describe to it different rendering techniques then ask it to estimate

With claude sonnet 4 I can describe to it different rendering techniques then ask it to estimate the ops necessary for that approach on different kinds of GPUs, then estimate the ms for different GPUs.

So far, it's not said anything that doesn't seem like it could be true.…

Source: X post

the spice must flow... on Laran Sietch Nadir

the spice must flow... on Laran Sietch Nadir

Source: X post

maybe I need to just make a new editor

maybe I need to just make a new editor

Source: X post

@BaslaelWorkneh C++ is not a superset of C:

@BaslaelWorkneh C++ is not a superset of C: https://godbolt.org/z/4Wj9ar4jx

C++23 still is not a superset of C.

Source: X post

I really wish I could move to a keyboard only workflow as I think my mouse clicker finger is sta

I really wish I could move to a keyboard only workflow as I think my mouse clicker finger is starting to develop some issues, but I just have so much muscle memory with a mouse. I don't find vim motions or emacs ultimately faster in all scenarios when you start to include…

Source: X post

@UnderwaterBepis This is the closest I've seen to any more formalized thought published in this

@UnderwaterBepis This is the closest I've seen to any more formalized thought published in this direction of thinking: https://inria.hal.science/inria-00337057/document

Source: X post

@UnderwaterBepis Then you get into the subject of needing some kind of distributed consensus mec

@UnderwaterBepis Then you get into the subject of needing some kind of distributed consensus mechanism in this scheme so people can't cheat state, or it can automatically respond to attempts to cheat.

You end up with needing a savant of UDP networking and distributed consensus mechanisms…

Source: X post

@UnderwaterBepis P2P doesn't necessarily mean every peer is always directly connected to every o

@UnderwaterBepis P2P doesn't necessarily mean every peer is always directly connected to every other peer across the whole network. It means more so there is no central authoritative server. Peer connections would be coordinated as necessary. Relays used as necessary.

In my mind the holy grail…

Source: X post

@MalekiRe has anyone built any tests to see how it manages with voice and user interactions in r

@MalekiRe has anyone built any tests to see how it manages with voice and user interactions in real-time ?

Source: X post

I've been thinking way too much about how there really no reason is why we couldn't have a viabl

I've been thinking way too much about how there really no reason is why we couldn't have a viable low latency P2P network for real-time applications.

Which, yes, I know this is an incredibly difficult problem. It requires some difficult novel inventions. Multiple phd thesii'…

Source: X post

I've been thinking way too much about how there really is no reason why we couldn't have a viabl

I've been thinking way too much about how there really is no reason why we couldn't have a viable low latency P2P network for real-time applications.

Which, yes, I know this is an incredibly difficult problem. It requires some difficult novel inventions. Multiple phd thesii'…

Source: X post

@HBloodedHeroine you can get p2p going pretty easily for some things, but for large scale real t

@HBloodedHeroine you can get p2p going pretty easily for some things, but for large scale real time low latency through even lower quality connections that'd compete with an authoritative server, that is what is complicated

Source: X post

@birdmademejoin @UnderwaterBepis For real time, I don't know if you'd need a blockchain as the s

@birdmademejoin @UnderwaterBepis For real time, I don't know if you'd need a blockchain as the state can be transient, you'd only need to a way to ensure that anyone participating in some given scenario or game are all playing according to some agreed upon rules.

Something like, all peers run the full game…

Source: X post

Yea though I walk through the valley of not knowing what TF is wrong with my shader....

Yea though I walk through the valley of not knowing what TF is wrong with my shader....

I see the racing snail eating leaves off in the distance...

I will fear no failure....

Source: X post

@debasishg Encapsulation was one of those ideas that generally did not pan out in the wild.

@debasishg Encapsulation was one of those ideas that generally did not pan out in the wild.

I have spent multiple folds more time trying to get around poor foresight on access modifiers than I have from accidentally touching some internal state. That's really the fatal flaw of access…

Source: X post

I'm going to coin a new kind of AI coding:

I'm going to coin a new kind of AI coding: "Interpolation Coding"

You build out interfaces, data structures and scaffolding for AI to "Interpolate" between. It requires deep knowledge of a particular problem domain to set up the scaffolding correctly, and also what is…

Source: X post

@sachinadlakha18 A small percentage of the industry will look at your GitHub and pay close atten

@sachinadlakha18 A small percentage of the industry will look at your GitHub and pay close attention to your projects, understand them. Then interview you specifically about you.

Majority of the industry will run you through some cookie cutter formulaic process with a set of checkboxes you must…

Source: X post

I have this math library in C that I've been rolling with a bunch of my own conventions. Partly

I have this math library in C that I've been rolling with a bunch of my own conventions. Partly just because, but also partly to see how far I could get relying heavily on GCC vector types.

With Claude Sonnet 4 I can ask it to implement a new kind of math operation in plain…

Source: X post

@FosterSunn I find the subject of software architecture is a slippery slope into becoming the op

@FosterSunn I find the subject of software architecture is a slippery slope into becoming the opposite of pragmatic, practical, iterative, experimental. It can turn into something where people try to think through every possible theoretical 'What-if' scenario to do something perfectly on…

Source: X post

@CyborgLavery Some servers probably do utilize the GPU for some things, but they still need to i

@CyborgLavery Some servers probably do utilize the GPU for some things, but they still need to interop with something on the CPU to interface with the network controller.

Source: X post

Hiring is such a complicated issue in tech. I've interviewed probably close to 100 people in my

Hiring is such a complicated issue in tech. I've interviewed probably close to 100 people in my time, and have interviewed dozens of times myself for practice, or for real. Still it's striking to me just how much of a complete crapshoot it is. It's impossible to test how good…

Source: X post

@That_Munter maybe? that doesn't look like fps?

@That_Munter maybe? that doesn't look like fps?

Source: X post

My brain has two modes.

My brain has two modes.

Programming Mode. English Mode.

It does not write both, simultaneously, well at all.

Thus, my code comments can be incredibly bad English, incredibly bad grammar. Filled with typos.

To which I was amused, they are so bad, that CLion thought I was… https://x.com/_rygo6/status/1930475038685442068/photo/1

Source: X post

@LyerionClash I have tried this and all I seemed to do was ride around in jeeps for an hour with

@LyerionClash I have tried this and all I seemed to do was ride around in jeeps for an hour with a bunch of dudes yelling at each other about stuff that made no sense, then had like 5 minutes of not very great shooting mechanics, to which I died, then had to ride around in jeeps for like…

Source: X post

Is anyone actively working on what you'd consider to be the Electron equivalent for WebXR?

Is anyone actively working on what you'd consider to be the Electron equivalent for WebXR?

Source: X post

I can't be the only one that hates animations and effects in daily use UI.

I can't be the only one that hates animations and effects in daily use UI.

For game menus or some cool product web page, definitely.

However, for my desktop shell and text editor? As absolutely minimal as you can get without sacrificing utility.

Source: X post

I am quite fond of what I'm seeing in slang. Not just as a shader language, but also the effort

I am quite fond of what I'm seeing in slang. Not just as a shader language, but also the effort for it to be a general-purpose CPU language too.

It (almost) is a perfect condensing of what I'd most minimally want from C, C++ and C#.

The fact it's primarily focused on the GPU,…

Source: X post

Can someone make the expansive persistent world Battlefield MMOFPS?

Can someone make the expansive persistent world Battlefield MMOFPS?

I want to claim some territory then have it still be claimed on a huge map when I get back. Maybe with some app that shows the current state of territory.

Essentially Planetside but with Battlefield shooting…

Source: X post

@awesomekling This is a valid point.

@awesomekling This is a valid point.

Source: X post

For better or worse, the VR platform that will "win" is the one which is most tolerant to having

For better or worse, the VR platform that will "win" is the one which is most tolerant to having slop thrown in it and still being able to manage to provide something decent with it.

Doesn't mean it couldn't pave the way to really high quality and polished content. It could…

Source: X post

@DyLhun I don't like the notion that one will "win" (which is why I put it in quotes) but that i

@DyLhun I don't like the notion that one will "win" (which is why I put it in quotes) but that is unfortunately the incentive many operate along and is what will happen. One, or a few, will consolidate most everything under it. You can only hope the one that "wins" is not somehow…

Source: X post

I did some tests with the built-in Unity XR plugin today on SteamVR and it does appear that Vive

I did some tests with the built-in Unity XR plugin today on SteamVR and it does appear that Vive Trackers now properly come through into the Input System.

Only caveat is they must explicitly be assigned a body part in in steamvr to come through but could still access openvr to…

Source: X post

@haagch42 openxr just doesn't work on steamvr on linux???

@haagch42 openxr just doesn't work on steamvr on linux???

Source: X post

@TheGingerBill @MachoXV Really a big part of why people gravitate to JS, C# and even Rust now is

@TheGingerBill @MachoXV Really a big part of why people gravitate to JS, C# and even Rust now is because the compiler errors hand hold them through getting it working. It is like a virtual mentor almost. That helps people a lot. Some kind of dynamic analysis could be made for C with an LLM to be an even…

Source: X post

@TheGingerBill @MachoXV LLMs to provide comprehensive answers in context to the question could b

@TheGingerBill @MachoXV LLMs to provide comprehensive answers in context to the question could be the solution.

People end up doing whatever the general mass reflects back to them. Which is generally push slop through JS or whatever. Don’t care about details.

If there was an LLM that explicitly…

Source: X post

Is there anything other than CLion that lets you jump into graphical debugging of GCC or Clang a

Is there anything other than CLion that lets you jump into graphical debugging of GCC or Clang as easily with comparable little fuss, setup and visual features?

I've tried neovim debug, I've tried sublime debug. One they seemed to need setup fiddling. Then two they were quirky…

Source: X post

Let's go codex, you got this. https://x.com/_rygo6/status/1928298492029534545/photo/1

Let's go codex, you got this. https://x.com/_rygo6/status/1928298492029534545/photo/1

Source: X post

How come no one told me this exists:

How come no one told me this exists: https://learn.microsoft.com/en-us/windows/powertoys/

This makes windows significantly better.

Source: X post

Why is there still no Battlefield MMO... why is Planetside still the only real MMOFPS?

Why is there still no Battlefield MMO... why is Planetside still the only real MMOFPS?

Source: X post

Most advanced AI ever created with billions of dollars of compute and research behind it! The br

Most advanced AI ever created with billions of dollars of compute and research behind it! The brightest and best minds from all over the world giving it their all!

... typing in the chat window too fast or clicking stop at the wrong time freezes the whole thing, or if you leave…

Source: X post

One of the unfortunate things about Social VR, really all online social spaces, is they offer an

One of the unfortunate things about Social VR, really all online social spaces, is they offer an easy avenue for people to play malicious social games with many people.

I believe Social VR in particular can exacerbate this because it does enable people to feel more connected…

Source: X post

@absoluteStarBoi @ryanjfleury I personally believe there is a broad range of things can be consi

@absoluteStarBoi @ryanjfleury I personally believe there is a broad range of things can be considered perfectly maintainable and simple.

I think my general process in understanding a codebase is. 1. Find the entry point. 2. Find the outputs. 3. Discern data flows from entry to outputs. 4. Get a sense of…

Source: X post

@UnderwaterBepis Why cygwin over msys? I've not tried cygwin for serious development.

@UnderwaterBepis Why cygwin over msys? I've not tried cygwin for serious development.

Source: X post

@ryanjfleury I think the real issue I have with this argument is that "clean code" is not actual

@ryanjfleury I think the real issue I have with this argument is that "clean code" is not actually easier to deal with. It only appears simpler on the surface because things are broken into smaller chunks. But get in there and try to really do anything substantial and it is often more…

Source: X post

@iquilezles Cursor is great for writing CSS and some more basic HTML.

@iquilezles Cursor is great for writing CSS and some more basic HTML.

Not writing actual code. For code it's better to pose questions to Claude in a textbook like Q&A format.

Source: X post

How come no one ever told msys2 is the best way to install, manage and use all the (non-msvc) de

How come no one ever told msys2 is the best way to install, manage and use all the (non-msvc) developer tools on windows.... I've been fussing with installers and chocolatey and whatnot all this time...

Source: X post

How come no one ever told msys2 is the best way to install, manage and use all the (no-msvc) dev

How come no one ever told msys2 is the best way to install, manage and use all the (no-msvc) developer tools on windows.... I've been fussing with installers and chocolatey and whatnot all this time...

Source: X post

@cnlohr Most people don't have the ability to pick and choose how they make money. They just hav

@cnlohr Most people don't have the ability to pick and choose how they make money. They just have to do whatever they possibly can do. Which is why things can be so dismal in the first place. It takes a lot to have agency in this world. Also, the crunching tech industry is making agency…

Source: X post

doom still doesn't launch

doom still doesn't launch

my day is ruined again

Source: X post

doom won't launch

doom won't launch

my day is ruined

Source: X post

@cnlohr https://nelua.io/

@cnlohr https://nelua.io/

Source: X post

@cnlohr A big part of IQ is working memory. How many things you can simultaneously hold and jugg

@cnlohr A big part of IQ is working memory. How many things you can simultaneously hold and juggle in your mind. Programming I view as heavily dependent on that. If you can't simultaneously grasp that many different 'things' it doesn't matter what the things are. Even if their coloured…

Source: X post

@cca_keyspin Depends on the company.

@cca_keyspin Depends on the company.

But yes this is true for big tech.

Source: X post

Okay I take some of that back. This is valid:

Okay I take some of that back. This is valid: https://x.com/unclebobmartin/status/1919367681339273347 We seem to agree on project management of agile.

Source: X post

@MalekiRe https://x.com/_rygo6/status/1922382963297132960/photo/1

@MalekiRe https://x.com/_rygo6/status/1922382963297132960/photo/1

Source: X post

@MalekiRe ... but I'm not even in a bathrobe making snarling grinch faces with questionably euph

@MalekiRe ... but I'm not even in a bathrobe making snarling grinch faces with questionably euphemistic wording

Source: X post

@MalekiRe are you telling me I am in Uncle Bob Martin bathroom rant tier...

@MalekiRe are you telling me I am in Uncle Bob Martin bathroom rant tier...

Source: X post

Currently appreciating Uncle Bob Martin's bathrobe rants because it makes my social media rants

Currently appreciating Uncle Bob Martin's bathrobe rants because it makes my social media rants look comparably normal and reserved.

I guess he is doing a good job of forever turning away a new generation of programmers from the overly OO "Clean" concepts.

Source: X post

@yewnyx That's not what I said. I'd gladly write out a long essay if you wanted to read it, I ju

@yewnyx That's not what I said. I'd gladly write out a long essay if you wanted to read it, I just think it's weird to respond with a massive wall of text in a tweet if someone isn't expecting it.

I'm also not necessarily trying to convince anyone. I argue primarily to see what new…

Source: X post

Something in the whole social VR metaverse space which I find creates a weirdness that derails i

Something in the whole social VR metaverse space which I find creates a weirdness that derails interest among those external to it. Many don't know how to contend with young looking avatars. Particularly when it has cross over with sexualization of avatars.

I will say foremost,…

Source: X post

@yewnyx Your assuming way too many things and operating on the premise that 'Crypto' means a cer

@yewnyx Your assuming way too many things and operating on the premise that 'Crypto' means a certain specific set of things. Which I wouldn't even argue against a majority of it being some specific set of things, but my whole point is, it's not explicitly that. A blockchain is a…

Source: X post

@yewnyx That's what I partly mean it needs some feed of currency. To feedback into content. Also

@yewnyx That's what I partly mean it needs some feed of currency. To feedback into content. Also, development and also physical hardware.

I think there are things you are not taking into account, and other things about fiat which are major concerns of mine, but I also get the sense you…

Source: X post

@yewnyx I'd agree crypto is bootstrapped by capital but only in the sense all technology is curr

@yewnyx I'd agree crypto is bootstrapped by capital but only in the sense all technology is currently bootstrapped by capital. It's just kind of the situation. If the subject was establishing a commune out in the forest it'd be a different premise, but this is the subject of establishing…

Source: X post

@yewnyx I know many things are that, but it's not explicitly that. Break it down and go from fir

@yewnyx I know many things are that, but it's not explicitly that. Break it down and go from first principles. It's a distributed consensus mechanism. Which enables rules in some technological system to be enforced by a mass instead of a select few. The technology itself has no opinion…

Source: X post

There's something that is deeply ironically irritating to me in the whole VR and Metaverse space

There's something that is deeply ironically irritating to me in the whole VR and Metaverse space.

It's a crowd who are generally highly allergic to authoritarianism in any form. Whether it be too much government overreach or even just one particular corporation vying for too…

Source: X post

@ariel_emeraldVR Many projects have launched a token that did not undergo a pump and dump scheme

@ariel_emeraldVR Many projects have launched a token that did not undergo a pump and dump scheme. This is done by designing certain dynamics into the tokenomics.

Ones that did have that occur did so because that is what they were designed to do. Or whomever designed it had such great oversight…

Source: X post

@unclebobmartin @HWannop Design patterns are important for game dev and game engine work, but th

@unclebobmartin @HWannop Design patterns are important for game dev and game engine work, but the gang of four design patterns book is concerned with a different problem domain. If you are in game dev this is the design patterns book you want to focus on: https://www.dataorienteddesign.com/dodbook/

Source: X post

@ryanjfleury It's weird to think Bob Martin has probably done this his whole career, but before

@ryanjfleury It's weird to think Bob Martin has probably done this his whole career, but before posting openly on the web, there wasn't a mass to criticize and question him in real-time, so he just went on a bullshit bender for like 3 decades selling naive tech corporate types on a bunch of…

Source: X post

It's occurred to me that programmers who are not highly fluent in some kind of advanced graphica

It's occurred to me that programmers who are not highly fluent in some kind of advanced graphical IDE can't be fully trusted in their discernment on the future of programming languages. Which I know is quite the statement, but why?

If your intent is to make programming languages…

Source: X post

It's occurred to me that programmers who are not highly fluent in some kind of advanced graphica

It's occurred to me that programmers who are not highly fluent in some kind of advanced graphical IDE can't be fully trusted in their discernment on the future of programming languages. Which I know is quite the statement, but why?

If your intent is to make programming languages…

Source: X post

Predisposition on 'crypto' is a litmus test of one's ability to think for themselves critically.

Predisposition on 'crypto' is a litmus test of one's ability to think for themselves critically.

'Crypto' underwent a wave of media demonization and propaganda due to it being a threat to certain establishment. It also underwent a wave of grifters as certain channels opened easy…

Source: X post

My hot take on software development... you can't thoroughly judge processes, tools and approache

My hot take on software development... you can't thoroughly judge processes, tools and approaches until you are fluent and comfortable with debugging.

Because here is the ultimate truth of it, you will eventually have to debug if you are going to keep digging deeper and taking…

Source: X post

After being through several 13/14 gen Intel chips I'm pretty convinced the intel 13/14 gen is ab

After being through several 13/14 gen Intel chips I'm pretty convinced the intel 13/14 gen is about 10-15% slower than it's advertised and they pushed all the voltages and specs up to be competitive in benchmarks, which were at levels which degraded the CPUs. After the microcode…

Source: X post

@cmuratori Are IP laws good for artists in general? I tend to believe that IP laws are for those

@cmuratori Are IP laws good for artists in general? I tend to believe that IP laws are for those who can fund the lawyers to push the cases through court. The winner tends to be whomever can spend the most on legal fees. Which would be successful artists with a surplus of cash to splurge on…

Source: X post

@ryanjfleury You ever think about trying to turn raddebug into a whole IDE?

@ryanjfleury You ever think about trying to turn raddebug into a whole IDE?

Source: X post

PSA: My fingers began to get sore from how much I click the mouse button and push the keyboard k

PSA: My fingers began to get sore from how much I click the mouse button and push the keyboard keys. So I started using logitech mx master 3s which has a lighter mouse click than most other mice. This is the lightest mouse click I could find. Then I got the lofree flow lite…

Source: X post

I have generally very good posture and ergonomics, but never thought just the weight of the keys

I have generally very good posture and ergonomics, but never thought just the weight of the keys and mouse button would cause issue. But it can.

Source: X post

@TheGingerBill Terminal is better for a certain types of operations. Namely anything which is a

@TheGingerBill Terminal is better for a certain types of operations. Namely anything which is a chain of multivariate operations.

Some git operations. Some file operations. Some config operations. Not all operations. Like I do file diffs and merges in a UI, but most other git operations I do…

Source: X post

Compile time needs to be taken as a major and primary concern for all languages.

Compile time needs to be taken as a major and primary concern for all languages.

I believe there's been a slow 'boiling of the frog' quality to this with many languages and tools. Where little by little the compilation got slower and slower, and the wait time internalized.

But…

Source: X post

@eron_wolf Try the latest fedora and gnome on a laptop that has all the support out of the box.

@eron_wolf Try the latest fedora and gnome on a laptop that has all the support out of the box. It's every bit as nice as osx. Even better in some ways. Of course MacBook hardware is still better, but software wise Linux can be as good as anything you just have to be selective of what setup…

Source: X post

@ZuhaibHanfi Because if you need performance, you write in a C-style of programming, so why not

@ZuhaibHanfi Because if you need performance, you write in a C-style of programming, so why not just use C itself?

Writing C++ in a strict C-style brings a few niceties, but generally it's more cons than pros. Slower compiles. C++ std lib is a minefield of issues that suck you into…

Source: X post

The programmers that output some of the most complex and useful code I've noticed tend towards e

The programmers that output some of the most complex and useful code I've noticed tend towards emacs and C.

The C part is obvious to me. But I've still not figured out what it is about emacs.

In the case of Torvalds, or kernel programmers, it makes sense because they live in…

Source: X post

I'll buy a switch 2 just to replay Metroid Dread at better quality. It was that good.

I'll buy a switch 2 just to replay Metroid Dread at better quality. It was that good.

Which Dread was definitely worth $60 when it came out.

I am in favour of studios charging more for shorter better quality games. $5 per average 'first play through' hour of high quality…

Source: X post

Serious question that is going to sound a bit whacky, but the notion has got me thinking.

Serious question that is going to sound a bit whacky, but the notion has got me thinking.

What about 'Search Engine Un-Optimized Websites'

Which I know sounds whacky given that good 'Search Engine Optimization' SEO is has been the absolute truth for over a few decades now.…

Source: X post

@seanboisselle @cnlohr Do AI crawlers respect that? That’s more what I’m worried about.

@seanboisselle @cnlohr Do AI crawlers respect that? That’s more what I’m worried about.

Source: X post

@johnloeber I think it'd be more desirable for some use cases than others? Like I dont want my t

@johnloeber I think it'd be more desirable for some use cases than others? Like I dont want my tweets data crawled and reformulated into an array of AI slop posts elsewhere. Or if I write technical articles them all copied and slightly altered into a dozen different AI pages that come up on…

Source: X post

chat gpt 4o is concerningly good at generate logos with text and taking nuanced descriptions of

chat gpt 4o is concerningly good at generate logos with text and taking nuanced descriptions of how to improve and iterate on them

Source: X post

The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge.

The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge.

Source: X post

For those getting bigscreens. This is what I settled on as the optimal audio solution after goin

For those getting bigscreens. This is what I settled on as the optimal audio solution after going through a handful of DACs and headphones.

Helm Audio Bolt DAC Pros: - Tiny USB DAC with great quality and nothing extra. - Small enough you can plug it in, not even need to secure…

Source: X post

For those getting bigscreens. This is what I settled on as the optimal audio solution after goin

For those getting bigscreens. This is what I settled on as the optimal audio solution after going through a handful of DACs and headphones.

Helm Audio Bolt DAC Pros: - Tiny USB DAC with great quality and nothing extra. - Small enough you can plug it in, not even need to secure…

Source: X post

@cafreiman The economic freedom index ranks countries such as New Zealand, Denmark, Sweden, Finl

@cafreiman The economic freedom index ranks countries such as New Zealand, Denmark, Sweden, Finland, Norway, Canada, Australia higher than the USA. https://en.wikipedia.org/wiki/Index_of_Economic_Freedom#Rankings_and_scores This metric is referring to those countries. Not the USA.

Source: X post

The number of people I've run into who think 'unsafe' means the code is somehow doing something

The number of people I've run into who think 'unsafe' means the code is somehow doing something different that can't be done in the 'safe' region is far too many.

Calling the keyword 'unsafe' and making 'safe' the default was a mistake. It's confusing a whole generation of…

Source: X post

@ryanjfleury @vmgdev1 @awesomekling This is a good summary of the Rand/Smith framing on monopoli

@ryanjfleury @vmgdev1 @awesomekling This is a good summary of the Rand/Smith framing on monopolies, but my personal argument on this has been, it's from a snapshot of the state of the world from 1950. The world has changed too much. Rand wasn't alive to see the rise of massive international conglomerates with…

Source: X post

@pemathedev Safety mechanisms are the most important in the interfacing between 'logical groupin

@pemathedev Safety mechanisms are the most important in the interfacing between 'logical groupings' of functionality. At the API entry point to a system. Between interfaces or headers of systems. Between large encapsulating classes. Between managed code and the inside of a dispatched burst…

Source: X post

@MalekiRe It does not explicitly mean that. Unsafe does not mean the code is unsafe. It could be

@MalekiRe It does not explicitly mean that. Unsafe does not mean the code is unsafe. It could be doing the same exact thing as in the safe block. The choice of the name and default is rhetorical. After seeing how this 'unsafe' keyword has evolved in discussions out in the wild, and the…

Source: X post

Serious question. In what scenario is a Virtual DOM implementation supposed to do something fast

Serious question. In what scenario is a Virtual DOM implementation supposed to do something faster than VanillaJS? https://krausest.github.io/js-framework-benchmark/current.html

Source: X post

@JoeCarlasare @daveweisberger1 Take some time to try and understand why Estonia decided to put t

@JoeCarlasare @daveweisberger1 Take some time to try and understand why Estonia decided to put their national records on a blockchain. https://e-estonia.com/solutions/cyber-security/ksi-blockchain/

Source: X post

@jjcvip @cafreiman My comment is not so much a direct counter as it is pointing out his data abo

@jjcvip @cafreiman My comment is not so much a direct counter as it is pointing out his data about 'Household Income' does not support his notion of 'People getting richer'. It could be attributed to more people working more hours and that same money potentially even being spread across more…

Source: X post

@cafreiman Household income does not control for how many incomes are in that one household nor

@cafreiman Household income does not control for how many incomes are in that one household nor how many hours are worked by that one household. An increase in household income can also be attributed to more people in that household now having to work or the same people now having to work…

Source: X post

@_memerao Install CLion

@_memerao Install CLion Create C Project Click 'Run'

Source: X post

@trevogre I don't even use my current bsb at full res. I leave it at 70% to get the 90hz. The fe

@trevogre I don't even use my current bsb at full res. I leave it at 70% to get the 90hz. The features of are targeted at social vr and serious vr gamers. People who wear it for 4+ hours regularly to be in a virtual world and ideally have some avatar to benefit from eye tracking.

Source: X post

@svrc It is what has finally checked all the boxes for the serious PC VR gamer and social VR use

@svrc It is what has finally checked all the boxes for the serious PC VR gamer and social VR user.

- Index or better FOV with comparable edge-to-edge clarity. - Higher res than index but not so high a decent PC can no longer drive it well in VRC/Games. - Eye tracking. (Hopefully…

Source: X post

@SilkyAVol But that's the thing.... the BSB is not technologically more advanced than what Meta

@SilkyAVol But that's the thing.... the BSB is not technologically more advanced than what Meta or other big companies are doing. It's simpler and more minimal, using old tech. It's taking the index, shrinking it down, adding oleds, adding pancake lenses, and removing everything else. No…

Source: X post

@LifeArtStudios I would bet you there are some who wanted to do something similar to bigscreen y

@LifeArtStudios I would bet you there are some who wanted to do something similar to bigscreen years ago. A company is not a singular entity. It's collective with politics and processes.

Source: X post

@josethevrtech A big company with more resources and connections could of done something more in

@josethevrtech A big company with more resources and connections could of done something more in the direction of the beyond 2e at least a few years ago, probably more. It might not have been as small, but could of definitely made a more compact OLED + face tracking + lighthouse + DP HMD. But…

Source: X post

bigscreen doing what valve should of done...

bigscreen doing what valve should of done...

... and what HTC should have done years ago but couldn't quite figure it out

... and what I think meganex was trying to do but couldn't ship

... and what Meta should have done years ago but couldn't because they need to own a whole…

Source: X post

@cnlohr when stuck in a local minimum all surrounding appears less correct

@cnlohr when stuck in a local minimum all surrounding appears less correct

takes the fool to run into all perceivably incorrect to fall over the edge to find the next local minimum

Source: X post

still... no one plays the moog knob better than bodzin

still... no one plays the moog knob better than bodzin https://youtu.be/QKEBeep9lFI?si=B4RZvHu_1j93Ek1S

Source: X post

Curiosity got the better of me and I bought a binned 14900KS. Also because my current 14900KS wa

Curiosity got the better of me and I bought a binned 14900KS. Also because my current 14900KS was being quite the PIA.

Yes, can confirm, the performance range is pretty nuts. I'm running cinebench multicore with average core temp staying close to 60C. Prior 14900KS would be up…

Source: X post

@Vicente15477281 Clion

@Vicente15477281 Clion

Source: X post

@0xIlyy VRChat

@0xIlyy VRChat

Source: X post

Somehow I stumbled upon althppd from the sqlite programmers and it is -exactly- the web server I

Somehow I stumbled upon althppd from the sqlite programmers and it is -exactly- the web server I have been looking around for a bit now.

Reinforces my suspicion that in programming what you want is typically something that has been around for a long time, with a good amount of…

Source: X post

So this is pretty stupid... but I've never really done serious web dev before. Most all I do is

So this is pretty stupid... but I've never really done serious web dev before. Most all I do is graphics oriented realtime 3D game programming. Primarily HLSL, shaders, C# and performance oriented stuff.

But now that I can just ask AI to setup some CSS effect for me and it does…

Source: X post

@pvncher but vanillajs is seeming nice?

@pvncher but vanillajs is seeming nice?

Source: X post

okay... AI and cursor makes not absolutely hate web development. Being able to just ask it how t

okay... AI and cursor makes not absolutely hate web development. Being able to just ask it how to set up a layout or CSS style with a rough description is pretty great.

Source: X post

okay... AI and cursor makes me not absolutely hate web development. Being able to just ask it ho

okay... AI and cursor makes me not absolutely hate web development. Being able to just ask it how to set up a layout or CSS style with a rough description is pretty great.

Source: X post

Actually this kind of makes obsolete CSS and html expertise. Also a lot of frameworks...

Actually this kind of makes obsolete CSS and html expertise. Also a lot of frameworks...

Like why use a CSS or component library if I can just ask it to style me something in plain vanillajs?

Source: X post

so what exactly was wrong with vanillajs?

so what exactly was wrong with vanillajs?

Source: X post

So it seems you can actually 'vibe code' html and css with claude pretty well... but that's beca

So it seems you can actually 'vibe code' html and css with claude pretty well... but that's because it's not really programming. That doesn't work with c and graphics.

Source: X post

@RokCej @vkrajacic Things you can do in C which you cannot in C++:

@RokCej @vkrajacic Things you can do in C which you cannot in C++: https://godbolt.org/z/a973brnnj

Source: X post

@RetroCoast After an industry reaches the apex of innovation and real value, and is also entrenc

@RetroCoast After an industry reaches the apex of innovation and real value, and is also entrenched as a necessity, then innovation and real value no longer become a route to growth. Instead they must pile on more things to raise the upfront price and make marketing more attractive while…

Source: X post

@LyerionClash Is this supposed to be satire because so far I'm not seeing anything wrong ..

@LyerionClash Is this supposed to be satire because so far I'm not seeing anything wrong ..

Source: X post

@auteurtheory__ @RetroCoast Entrenched industries raise the bar of entry so high through regulat

@auteurtheory__ @RetroCoast Entrenched industries raise the bar of entry so high through regulation and unrealistic consumer expectations that it disincentivizes any competitor from attempting to enter the same space.

Source: X post

The killer feature of VR is it amplifying the proteus effect beyond what other mediums can.

The killer feature of VR is it amplifying the proteus effect beyond what other mediums can.

However it being able to do this is a little off-putting and potentially even concerning to anyone with a more traditional mindset.

Also to anyone who wants a more predictable,…

Source: X post

@ludwigABAP I'd be curious to see compile times compared to C and GCC.

@ludwigABAP I'd be curious to see compile times compared to C and GCC.

Source: X post

@scottastevenson A lot of things are social vanity games.

@scottastevenson A lot of things are social vanity games.

However, toy projects are not.

Making your own toy LLM is incredibly important if you want to work on LLMs.

Making your own toy compiler or toy language is incredibly important if you want to work on such things.

Knowing C and some…

Source: X post

This is kind of genius...

This is kind of genius... https://atelier.zaumstudio.com/products/kims-aerostatic-cew-jacket Sell the clothing of characters from your video game as real quality clothing items for people to buy. The number of hours a player might spend in such clothes in-game will make their mind fonder of such clothing items, able to…

Source: X post

@tsoding This is why I stopped putting energy into C++. It's ultimately impossible to write good

@tsoding This is why I stopped putting energy into C++. It's ultimately impossible to write good C++. Anything you do in it is heresy to some particular crowd.

Source: X post

It's pretty stupid the amount of round about things you must do in macro-less langs to do things

It's pretty stupid the amount of round about things you must do in macro-less langs to do things which macros let you easily do in simple ways. Then just how pervasively useful macros are for many simple things. It's even worse that various langs which claim supposed full C…

Source: X post

@tfmjonny @vezypoo As one of the few "Industry People" who has been trying to explain vrchat to

@tfmjonny @vezypoo As one of the few "Industry People" who has been trying to explain vrchat to some of the corporations to which it is highly relevant for about 5 years now. I'd say generally there is recognition that somehow it is significant. But the reason it sits in a hidden corner generally…

Source: X post

@HSVSphere @xeixeira146866 The notion you couldn't write software with vulnerabilities in Rust i

@HSVSphere @xeixeira146866 The notion you couldn't write software with vulnerabilities in Rust is kind of an eyeroll. Memory bugs are not the sole cause of vulnerabilities.

But you know what I'd actually be curious to see? A comprehensive breakdown of the exact scenarios where C with GCC and all of GCC's…

Source: X post

Government should have a policy of only using open source software for general desktop computing

Government should have a policy of only using open source software for general desktop computing needs. Such as IDEs, OSs, chat, office, CAD etc.

Of course not for fighter jet navigation systems or deeply idiosyncratic mission critical embedded systems.

Only for general…

Source: X post

I always have this cycle with hobbies where I:

I always have this cycle with hobbies where I: 1. Find something cool and spend way too much reading about it. 2. Buy way too much stuff related to hobby and end up spending way too much. 3. Never actually using most all I bought or built for the hobby because I am way too busy…

Source: X post

@yacineMTB If you keep the AI in the chat prompt and treat it like asking questions to a forum,

@yacineMTB If you keep the AI in the chat prompt and treat it like asking questions to a forum, I don't think it harms you at all. It just lets you find answers faster.

Source: X post

@cnlohr My philosophy has always been to pay for everything you use. Otherwise you are the reaso

@cnlohr My philosophy has always been to pay for everything you use. Otherwise you are the reason for ad-based business models.

Source: X post

@rlopin @LoriGaye1 @gunsnrosesgirl3 These things aren't anywhere out of the ordinary for people

@rlopin @LoriGaye1 @gunsnrosesgirl3 These things aren't anywhere out of the ordinary for people who've raised any working breed dog, even the intent of communication. It's all pretty basic. Such dogs can even communicate a good range in body language too and facial expression. Good owners do usually know what their…

Source: X post

I keep thinking shader programming could be the general-purpose way to write code for some UGC p

I keep thinking shader programming could be the general-purpose way to write code for some UGC platform. It is pretty comprehensive now especially with all the subgroup extensions. Subgroup extensions make approaching calculations that use multiple threads potentially simpler…

Source: X post

@rlopin @LoriGaye1 @gunsnrosesgirl3 The video could be staged but everything the dog does is sta

@rlopin @LoriGaye1 @gunsnrosesgirl3 The video could be staged but everything the dog does is standard for well-trained service dogs. It could very well be a promotional video from such a trainer. Many people have service dogs that do things like this. All dogs easily sense distress in their owner and respond to it.…

Source: X post

@cnlohr but I like the new auto

@cnlohr but I like the new auto

Source: X post

@CalvinnChenn If everyone lived 5 minutes from the office and had no family or kids to deal with

@CalvinnChenn If everyone lived 5 minutes from the office and had no family or kids to deal with, yes people going into the office could be more productive.

However, in the real world, of being in a big tech hub like SF or Seattle, people could easily spend 2 hours a day commuting. Then have…

Source: X post

Now comes the point in the night where I scroll through steam wanting to play a game but ultimat

Now comes the point in the night where I scroll through steam wanting to play a game but ultimately spend too long deciding, and am too hesitant, because games are so complex now and require so much upfront mental investment and time to get anywhere, that I typically end up…

Source: X post

I've never programmed anything in go, and everyone seems to make fun of go, but honestly of any

I've never programmed anything in go, and everyone seems to make fun of go, but honestly of any of the new backend techs that comes with most everything out of the box, go seems pretty good on the surface. Is there really something truly terrible about go for backend web hosts?

Source: X post

@technobaboo What do you think is missing from openxr?

@technobaboo What do you think is missing from openxr?

Source: X post

@technobaboo If there's something that can't capture necessary usage pattern, can always add to

@technobaboo If there's something that can't capture necessary usage pattern, can always add to the spec, but so far, I've not really come across any roadblock. The direction of the APIs being pushed by the various companies right now are towards something that can deal with both flat and…

Source: X post

I don't know if this was the intent of OpenXR in the beginning. Maybe it was in the back of some

I don't know if this was the intent of OpenXR in the beginning. Maybe it was in the back of someone's mind but never explicitly written down? But OpenXR is a kind of universal platform abstraction. Obviously, and of course this is true for HMDs, but I mean for everything. In…

Source: X post

Also, due to it being designed to support 'AR' and app having awareness of things external to it

Also, due to it being designed to support 'AR' and app having awareness of things external to it. It has the abstractions for two different volume apps to have awareness of each other, whether or not they are AR or not.

Source: X post

Playing Alien Rogue Incursion, I still don't believe that current temporal or DLSS techniques ca

Playing Alien Rogue Incursion, I still don't believe that current temporal or DLSS techniques can fully translate to VR. Alien Rogue Incursion looks good, and it's enjoyable, but the smudginess and graininess that comes from the temporal techniques is just not something which is…

Source: X post

@HSVSphere Corporate "Productivity" measurements are innately sus.

@HSVSphere Corporate "Productivity" measurements are innately sus.

Source: X post

Hard thing about VR is a screen can't convince you VR will be better for something. Consequently

Hard thing about VR is a screen can't convince you VR will be better for something. Consequently, many people still just look at the screen and presume VR can't add anything, or that they got the full experience by looking at the screen. This really throws a wrench in all typical…

Source: X post

@zel_zoic It's literally only my finger.

@zel_zoic It's literally only my finger.

Source: X post

@UnderwaterBepis That's the exact mouse I have sitting off to the side but I don't like to use b

@UnderwaterBepis That's the exact mouse I have sitting off to the side but I don't like to use because of the shape and being too heavy. Which can then make my hand hurt at the wrist from too many little movement.

Also for whatever reason the chemical composition of my hand melts whatever the…

Source: X post

Serious question. I click my mouse button so many times that by end of the day my mouse clicker

Serious question. I click my mouse button so many times that by end of the day my mouse clicker finger can actually feel kind of sore.

What is the mouse with the lightest click you can buy?

Source: X post

@jrzygrl719 @Whiplash437 Most people don't have the time, money, nor intelligence to read into,

@jrzygrl719 @Whiplash437 Most people don't have the time, money, nor intelligence to read into, and understand, all the complexity of things needing to be avoided.

Like imagine saying cars will have no regulations on manufacture, and when buying a car, you have to be able to look under hood and at all…

Source: X post

I always wonder if anyone who has ever developed high level proficiency in JetBrains ecosystem e

I always wonder if anyone who has ever developed high level proficiency in JetBrains ecosystem ended up leaving it and for what reasons.

I don't mean only using the Android Studio variant of it. Nor only some high-level scripting in JS or python. Rather deal with large…

Source: X post

@CyborgLavery I don't really like AI auto complete at all. Or anything that pops up anything in

@CyborgLavery I don't really like AI auto complete at all. Or anything that pops up anything in the code as I write it. At least for what I write. I could see maybe liking it for CSS or HTML where there are lot of non-critical details or formatting tags and whatnot. But for graphics related or…

Source: X post

@cmuratori Hm Dijkstra actually did have some good thoughts.

@cmuratori Hm Dijkstra actually did have some good thoughts.

Source: X post

@amaldorai @UnderwaterBepis I live in a dark cave where I am never exposed to sun, so I don't ha

@amaldorai @UnderwaterBepis I live in a dark cave where I am never exposed to sun, so I don't have sunscreen.

Source: X post

@SenSanders Asking questions and trying to find flaws, holes and things which could bring certai

@SenSanders Asking questions and trying to find flaws, holes and things which could bring certainty into doubt is part of science. That is what evidence is supposed to be able to hold up to.

Source: X post

@awesomekling I will once again be a part of that small percentage that reiterates the more sign

@awesomekling I will once again be a part of that small percentage that reiterates the more significant aspect of this argument that will be glossed over and forgot by most.

The bigger contention is not OOP vs FP. As that is ultimately subjective and stylistic.

The bigger contention is…

Source: X post

@TheGingerBill I don't use my hands. I literally eat a copious amount of LSD to dissolve my cons

@TheGingerBill I don't use my hands. I literally eat a copious amount of LSD to dissolve my consciousness back to a primordial state of unified energy before the paths of carbon and silicone diverted, at which point I alter the formation of silicone through direct will as a hyper dimensional…

Source: X post

@CyborgLavery I meant just one car. Not all cars. Also I'm not serious about actually banning. I

@CyborgLavery I meant just one car. Not all cars. Also I'm not serious about actually banning. I just wish it existed.

Source: X post

@CyborgLavery I know it's cool. I just don't want it. I like computers but that doesn't mean eve

@CyborgLavery I know it's cool. I just don't want it. I like computers but that doesn't mean everything needs to be a computer.

Source: X post

@CyborgLavery I am anti-computer for everything which is not actually a computer.

@CyborgLavery I am anti-computer for everything which is not actually a computer.

I'm never going to buy a new car. If I have to, it will be the newest used one that has all analog knobs and buttons.

Source: X post

@cnlohr #2 could probably have subpoints about rearranging for cache locality, reducing thread c

@cnlohr #2 could probably have subpoints about rearranging for cache locality, reducing thread contention, watching out for excessive pointer indirection or unpredictable branching. Most people probably won't know all that 'structural change' could apply to.

Source: X post

AI is cool and all but can we also get an executive order to make all car companies offer cars w

AI is cool and all but can we also get an executive order to make all car companies offer cars without any AI or touch screens and the minimal amount of electronics necessary for reliability?

Also motherboards and computer parts not covered in LEDs and layers and layers of…

Source: X post

@ludwigABAP I don't want to use LLVM.

@ludwigABAP I don't want to use LLVM. Zig doesn't have macros. The extra steps to import a C lib still bother me. I have no real complaints about C23 so I don't see myself gaining much. I'm still paranoid it generates more assembly or contrived assembly under the hood somewhere.

Source: X post

@fffgghhuuh54434 @ludwigABAP Right one extra line... but also, what if it's a single header file

@fffgghhuuh54434 @ludwigABAP Right one extra line... but also, what if it's a single header file?

I like comptime and even C++ constexpr eval to some degree, but these aren't replacements for macros. I do want to be able to stamp arbitrary bits of code anywhere based on a single token.

Honestly, I could…

Source: X post

@cnlohr I like this format of just dumping everything into a .md in an empty repo. I realize Ive

@cnlohr I like this format of just dumping everything into a .md in an empty repo. I realize Ive wasted too much time fussing with jekyll and other blogging crap

Source: X post

I asked claude to make me a landing page for a game called BattleCode where you program little a

I asked claude to make me a landing page for a game called BattleCode where you program little ai bots and battle them.

Did an Okay job I think. Maybe even better than what I could do. Even generated some animated robot icons out of CSS. https://claude.site/artifacts/a8007745-cf8a-4f65-8b48-81e6003a3760

Ya I think for…

Source: X post

You have programmers which don't use AI at all because they think its of no use.

You have programmers which don't use AI at all because they think its of no use.

Then you have non-programmers assuming programmers will be made obsolete by AI, and are focused all on AI and only what AI enables them to do.

Then you have programmers which use AI and through…

Source: X post

@RandomSprint If they want to program, get a degree in mathematics or electrical engineering, le

@RandomSprint If they want to program, get a degree in mathematics or electrical engineering, learn programming on the side.

Source: X post

@Jonathan_Blow Desktop PCs are also problematic. I build a new PC every year or so and it seems

@Jonathan_Blow Desktop PCs are also problematic. I build a new PC every year or so and it seems like it's around every 3ish years I get one that is rock solid, no issues.

Last build with zero issues was Gigabyte Z690I Lite + 12900KF + EVGA 2080 it

Before that EVGA z390 FTW + 9900K + 2080ti…

Source: X post

I wish intel, AMD and Nvidia would make an actual silicone lottery auction. Where the very top b

I wish intel, AMD and Nvidia would make an actual silicone lottery auction. Where the very top binned chips get tested, de-lidded and go up for auction. Most people have no idea what to do even do with a chip in the top few percentiles of binning. The range in high end chip…

Source: X post

@TheGingerBill Part of using them productively is getting a sense of what they can answer decent

@TheGingerBill Part of using them productively is getting a sense of what they can answer decently well and what is probably going to be way off. For things I use it for, I generally find latest claude answers more useful than what I'd get off a forum. People themselves tend to be bullshitting…

Source: X post

I wish there was an online PC shooter with good sniping mechanics in large open worlds which I c

I wish there was an online PC shooter with good sniping mechanics in large open worlds which I could open up and start playing in less than 30 seconds for a solid uninterrupted 30 minutes to an hour. Be actually in game, ready to go. Where I don't have to wade through a bunch of…

Source: X post

What's called conspiracy theory today was just popular death metal lyrics 20 years ago.

What's called conspiracy theory today was just popular death metal lyrics 20 years ago. https://youtu.be/H47-yxIGZUM?si=oRo19e3qkb-Jwi8O

Source: X post

Politicians became the new clergy.

Politicians became the new clergy. https://youtu.be/1Iz5DaX8f7w?si=G3I_bNKncQN4E0An

Source: X post

kill your tv.... shit was so mainstream

kill your tv.... shit was so mainstream https://youtu.be/eWzbEut89w8?si=yIRPGq5pLZ-c9Hhg

Source: X post

I was deep in the counter cultural psychedelic philosophy that spawned out of the 70's for a lon

I was deep in the counter cultural psychedelic philosophy that spawned out of the 70's for a long time. Terence McKenna, Timothy Leary, Robert Anton Wilson. It's a dense whacky chunk of US history that is never really well represented and is underappreciated. It's way too long of…

Source: X post

I think I'll end this chain on a positive vector forward

I think I'll end this chain on a positive vector forward https://youtu.be/eH6mKLqe4Yc?si=iNA9REu8r_OdtTin

Source: X post

I miss when music made controversial statements.

I miss when music made controversial statements. https://youtu.be/m4L20t8Dvlg?si=NANuoZ6te7R9rr_j It seems like everything mainstream these days is pro-establishment propaganda and it has raised a generation of extremely complicit and passive youth terrified of questioning anything.

Source: X post

Continuing the museum of 90's rock morality that seemed to have skipped a generation.

Continuing the museum of 90's rock morality that seemed to have skipped a generation. https://youtu.be/JukTvlrh-Wk?si=qgZL9M1XzQhCladB Media would never allow RATM to become popular today.

Source: X post

Delidded 14900KS + Conductonaut Extreme + TG Heatspreader + TG Phasesheet + MSI i360 AIO

Delidded 14900KS + Conductonaut Extreme + TG Heatspreader + TG Phasesheet + MSI i360 AIO

Is roughly about the same performance as:

Delidded 14900KS + Conductonaut Extreme + TG Direct Die Block + Custom Loop

Maybe the custom loop is a few C better in continuous heavy load but…

Source: X post

If you return things by ref in C#, but the caller doesn't specify both the value as ref and the

If you return things by ref in C#, but the caller doesn't specify both the value as ref and the call as ref, then you end up with the ref getting copied to the stack.

Whereas you return a ptr and and you can only use it as a ptr and it is clearly a ptr.

... but returning the…

Source: X post

@SenSanders "Capitalism is bad."

@SenSanders "Capitalism is bad." "Corporations seek to make profit no matter how much damage it does." "Corporations then lobby government and buyout politicians to corrupt and use government for their own purposes." "Corporations lie and then bankroll narratives and propaganda through media…

Source: X post

My software engineering hot take that is always divisive.

My software engineering hot take that is always divisive.

Unless you are writing out an explicitly definable input and expected output from some API. Like operations on a CRUD API, where writing out of the unit tests actually enables faster iteration time on testing compared to…

Source: X post

@LifeArtStudios Open source controllers would be cool, but the point of this is to get something

@LifeArtStudios Open source controllers would be cool, but the point of this is to get something highly polished that is plug-n-play and feels close to a real replica, right out of the box for someone who has never played, or played very few, VR shooters before. You'd need a company good at…

Source: X post

I get China's plan with deepseek now... give us a better AI but then have it say 'busy' at an in

I get China's plan with deepseek now... give us a better AI but then have it say 'busy' at an increasing rate to slow our productivity to a stop.

Source: X post

So latest windows seems to now support all the multi touch gestures on a multitouch pad out of t

So latest windows seems to now support all the multi touch gestures on a multitouch pad out of the box plug and play, and putting a multitouch pad to the left of your keyboard to do gestures on is pretty cool.

Source: X post

I've said this before, but it's really my #1 wish in the VR space right that I feel you could pl

I've said this before, but it's really my #1 wish in the VR space right that I feel you could plausibly convince investors and corporations to fund.

A VR game studio needs to partner with Meta and also a company like Tokyo Mauri, or it could even be HTC and some paintball…

Source: X post

DeepSeek is pretty coo, its biggest flaw is they seem to just copy chatgpts chat window exactly,

DeepSeek is pretty coo, its biggest flaw is they seem to just copy chatgpts chat window exactly, whatever library or template that was, which becomes unusably slow after a few hours of heavy use. Seriously how can, I assume, very well paid and very well qualified, web developers…

Source: X post

@TheGingerBill @o__boga @mvandevander Odin being on LLVM is my one hang up still... I just don't

@TheGingerBill @o__boga @mvandevander Odin being on LLVM is my one hang up still... I just don't want to be bound to LLVM. I wish odin would go the way of vala or nelua and be a C transpiler. Make C the asm.js of native.

Source: X post

When Unity first started rising in popularity around version 2 to 3, I remember a resent among t

When Unity first started rising in popularity around version 2 to 3, I remember a resent among traditional game developers of the time in other engines. Unity was seen as a kind of toy, cheapening games and the craft of game development. Which at the time was partly true, as…

Source: X post

The month old primagen video where he tries to write a shader for the first time popped up on my

The month old primagen video where he tries to write a shader for the first time popped up on my youtube recommendations. It made me realize something I always suspect in the back of my mind. That people who are into all the frameworks, all the high level languages, trying out…

Source: X post

The truth is, if we pooled all of our data and biometrics into one large AI system, the potentia

The truth is, if we pooled all of our data and biometrics into one large AI system, the potential for good could be huge.

By all of our data, I mean everything. Brainwaves. Blood analysis. Heartbeat. Voice and video streamed from our devices. Give an AI complete transparency…

Source: X post

@ludwigABAP When you are that certain type of obsessive programmer personality type that can too

@ludwigABAP When you are that certain type of obsessive programmer personality type that can too easily be obnoxious in youth. It basically takes you finding someone who fully understands everything you're doing, at your level. Then having them genuinely tell you to stop being a fucking…

Source: X post

@gfodor I think this was one of Astro Teller's theories like a decade ago. That the future of he

@gfodor I think this was one of Astro Teller's theories like a decade ago. That the future of healthcare will be no healthcare because Realtime AI analysis of biometrics for preventative care will become so good.

Source: X post

@CyborgLavery If the ID protocol is standardized, and it becomes the expected norm you can expor

@CyborgLavery If the ID protocol is standardized, and it becomes the expected norm you can export or transfer your ID like you would any critical documents or assets you own, then you can have any solution you want.

If corporations make you feel secure, then use the one that something like a…

Source: X post

What should I post more of?

What should I post more of?

Source: X post

I've come across this project a few times, initially thought it was kind of odd, but now after r

I've come across this project a few times, initially thought it was kind of odd, but now after reading more into it, it might be brilliant. https://nelua.io/ Basically, it takes the syntax of Lua, which is arguably one of the best and easiest for people to get into, and…

Source: X post

I complain a lot of about things which aren't C these days, but one feature of C# that I've alwa

I complain a lot of about things which aren't C these days, but one feature of C# that I've always been fond of, and most don't know, is that static constructors are lazily executed. Meaning, if you have a static class, and a static constructor, it will NOT initialize and take up…

Source: X post

@CyborgLavery What do you think is too hard

@CyborgLavery What do you think is too hard

Source: X post

@CyborgLavery That's not true across the board, and what friction points it has could be easily

@CyborgLavery That's not true across the board, and what friction points it has could be easily sorted out. I personally think the prospect of some ubiquitous decentralized ID would solve existing UX friction and security issues. Things in the solana ecosystem can already be pretty slick.

Source: X post

@CyborgLavery Something like a decentralized ID solution becoming ubiquitous would reduce fricti

@CyborgLavery Something like a decentralized ID solution becoming ubiquitous would reduce friction.

Source: X post

People breaking out of the US media propaganda bubble and then immediately running for solace in

People breaking out of the US media propaganda bubble and then immediately running for solace in the CCP propaganda bubble, having some eureka moment and becoming CCP evangelists... like... seriously... can you all please learn to operate your brain in absence of an establishment…

Source: X post

I think ref was a mistake.

I think ref was a mistake.

I get it. It's convenient. Having to type -> is three keystrokes compared to just . dot syntax.

... but here's the thing. The -> clearly signifies you are accessing something non-local. It makes you do a few extra keystrokes to consider if you really…

Source: X post

hold up... the new(ish) gigabyte control center is not completely offensive garbage... starts fa

hold up... the new(ish) gigabyte control center is not completely offensive garbage... starts fast... is unnoticeable on boot... minimally does only what I'm interested in... only takes up 100mb in background

Source: X post

Banning TikTok is not good because it gives the federal government a leverage to shut down anyth

Banning TikTok is not good because it gives the federal government a leverage to shut down anything based on accusations of national security. What tech company will be able to survive the pentagon accusing their tech of someone aiding another countries surveillance? In the case…

Source: X post

@TheGingerBill I notice this dichotomy is largely a split between those who work in real-time in

@TheGingerBill I notice this dichotomy is largely a split between those who work in real-time interactive problem domains and those who don't.

Like he goes on the bit about defining 'performance' as depending on context, which sure it technically is, but if you are in a real-time interactive…

Source: X post

@ludwigABAP The big complication I see is that corporate project management is fundamentally inc

@ludwigABAP The big complication I see is that corporate project management is fundamentally incompatible with it.

Part of the premise of OO, encapsulation, siloed modularity and inevitably defensive programming was for parallelization of 'workers'. Try to turn programmer's into a car…

Source: X post

@ludwigABAP I find you are generally seen as the crazy and weird one if you argue for data orien

@ludwigABAP I find you are generally seen as the crazy and weird one if you argue for data oriented design in most software companies. Really any software company. I'm in the one company that has data-oriented programming tools as an explicit primary product offering and it's still a hard…

Source: X post

@GoodPoliticGuy Chinese people aren't your enemy. Chinese government is your enemy. Just as the

@GoodPoliticGuy Chinese people aren't your enemy. Chinese government is your enemy. Just as the US government is the enemy to many other nations in ways the US people do not approve of. Really, in many ways the US government is the enemy to its own people. Same with Chinese government.

Source: X post

@snoopy_dot_jpg Two rules to follow that I found kept alcohol from having negative effects on me

@snoopy_dot_jpg Two rules to follow that I found kept alcohol from having negative effects on me: 1. Never have alcohol more than one night a week. 2. Never have so much you are not mostly sober before sleep.

Source: X post

@Hasen_Judi That's actually been my #1 complain with chatgpt. The chat window is horrible.

@Hasen_Judi That's actually been my #1 complain with chatgpt. The chat window is horrible.

Claude is decent.

Source: X post

Alien Rogue Incursion is pretty good, but since UE5 is designed around the assumption there will

Alien Rogue Incursion is pretty good, but since UE5 is designed around the assumption there will be some temporal sampling occurring. If you don't enable the temporal sampling, then everything is grainy. If you do enable it, you get nice smooth surfaces, and smoother effects, but…

Source: X post

@tsoding It's also funny to me that Rust was started and pushed on the safety argument. Because

@tsoding It's also funny to me that Rust was started and pushed on the safety argument. Because we needed safety so bad and Rust was the only solution, and now you must rewrite in Rust for safety.

But if you make use all of the static analyzers, sanitizers and memory tools of C, you…

Source: X post

@natemcgrady I'm pretty sure average age of a software engineer is around 40, with some people o

@natemcgrady I'm pretty sure average age of a software engineer is around 40, with some people older.

It's just that, those who are older and around that long, usually end up so advanced and entrenched in niche expertise that unless you really look for them, you don't see them. They don't…

Source: X post

Most developed nations think about healthcare the way you think about firemen or police.

Most developed nations think about healthcare the way you think about firemen or police.

You won't have enough firemen or police if shit really hits the fan. You want to take extra precaution for yourself in case that happens. There are limits and complications to the police…

Source: X post

I see all these reports of people in interviews not even being able to pass fizzbuzz, so I thoug

I see all these reports of people in interviews not even being able to pass fizzbuzz, so I thought, has my brain fried enough that I couldn't even do that? I hate leetcode but whatever, can be fun.

Turns out I'm still fine.

But also turns out, while most people can write… https://x.com/_rygo6/status/1878660545316094022/photo/1

Source: X post

One of the beliefs of technology was that it's inherently decentralizing. McLuhan actually belie

One of the beliefs of technology was that it's inherently decentralizing. McLuhan actually believed electricity itself was inherently decentralizing. Enabling things that once needed to be consolidated under some central control to become more dispersed, available to more people,…

Source: X post

@_trish_07 There is truth to this. Sometimes the easiest way to learn complex systems is by just

@_trish_07 There is truth to this. Sometimes the easiest way to learn complex systems is by just fiddling with them and them giving you feedback on what you're doing wrong. Like a mentor built into it. This free-form hands-on approach, even with overly constrained rails, can be a much more…

Source: X post

I’m joking, but at the same time I’m not.

I’m joking, but at the same time I’m not.

Source: X post

https://x.com/_rygo6/status/1878002960682393967/photo/1

https://x.com/_rygo6/status/1878002960682393967/photo/1

Source: X post

@christoaivalis This is the consequence of American media demonizing certain things so severely

@christoaivalis This is the consequence of American media demonizing certain things so severely beyond what is appropriate. The calibration of your perspective can end up so whacky that it breaks your ability to think.

Source: X post

Being intelligent and striving to be more intelligent is a great thing, but this doesn’t mean be

Being intelligent and striving to be more intelligent is a great thing, but this doesn’t mean being an idiot is irrelevant or undesirable. I’d argue understanding the perspective and experience of being an idiot is just as important as any. As it connects you to a more common…

Source: X post

@awesomekling @ladybirdbrowser Please tell me more.

@awesomekling @ladybirdbrowser Please tell me more.

Right now I've been investigated WebKit for something because it needs the performance, but if it's possible LadyBird could be even half the performance of WebKit in a year, that might be sufficient.

Source: X post

C++ namespaces are cool in theory because you can categorize, but then optionally not type that

C++ namespaces are cool in theory because you can categorize, but then optionally not type that category everywhere you use it.

But it seems like most of the time, in the implementation file, most codebases are fully typing the namespace:: prefix and are not 'using namespace'.…

Source: X post

@gfodor @aradtski I don't think AI will replace 95% of jobs.

@gfodor @aradtski I don't think AI will replace 95% of jobs.

But at least 95% of jobs will get sucked into rank-and-file corporatocratic control where people have so little agency to do anything, and competition as an individual in the 'free market' becomes impossible. There will need to be a…

Source: X post

Applying all the intel microcode patches and putting in a new 14900ks did solve instability prob

Applying all the intel microcode patches and putting in a new 14900ks did solve instability problems. So yes. Intel chips were getting physically damaged.

Source: X post

@1thousandfaces_ This self-help book can help with that:

@1thousandfaces_ This self-help book can help with that: https://www.amazon.com/Psilocybin-Mushroom-Growers-Handbook-Enthusiasts/dp/0932551068/ref=asc_df_0932551068?mcid=7106f78fae753ec29e3f2198da223a8d&hvocijid=6879241552078523197-0932551068-&hvexpln=73&tag=hyprod-20&linkCode=df0&hvadid=692875362841&hvpos=&hvnetw=g&hvrand=6879241552078523197&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=1027691&hvtargid=pla-2281435179738&psc=1

Source: X post

@ryanjfleury If the open-source community implementation has a good community around it, and is

@ryanjfleury If the open-source community implementation has a good community around it, and is sufficiently open source, I don't mind the open-source implementation itself being the standard.

Which isn't a defense of LLVM, because I don't really like LLVM and is why I still avoid…

Source: X post

@penberg Depends on the commit. Sometimes you fiddled quite a bit with something, using the comm

@penberg Depends on the commit. Sometimes you fiddled quite a bit with something, using the commits more like undo snapshots to roll back to, but then once you figure it out and are ready to polish it, it's just noise to anyone else. So you squash it to one commit.

Source: X post

@tsoding terry needed vrchat

@tsoding terry needed vrchat

Source: X post

@ryanjfleury That's good to know. I've not compared only debug build times. Is that also true fo

@ryanjfleury That's good to know. I've not compared only debug build times. Is that also true for GCC?

Source: X post

@ryanjfleury Is there any good reason to use msvc cl if you don't have to? When I have a choice,

@ryanjfleury Is there any good reason to use msvc cl if you don't have to? When I have a choice, I tend to avoid it like the plague and immediately go to GCC, or at least clang, but I don't know if there is something I'm missing?

Source: X post

@ryanjfleury I debug gcc all day on windows but with gdb. It gets the job done, but I really do

@ryanjfleury I debug gcc all day on windows but with gdb. It gets the job done, but I really do wish raddbg could use gcc debug data. I would use it.

I've thought about keeping such codebases compilable on msvc to try more with raddbg, but some of those gcc/clang builtins and new C features…

Source: X post

@michae1becker Any striking headline with Apple in it will always get engagement. There is incen

@michae1becker Any striking headline with Apple in it will always get engagement. There is incentive to just make things up. This is compounded on prior made-up narratives that the AVP is failing to do what it intended to do.

Source: X post

It might be because I programed C# alot with var and I am used to it, but I really like C23 auto

It might be because I programed C# alot with var and I am used to it, but I really like C23 auto.

Ya ya I know explicit type, always know what the type is... I know...

BUT here's the thing... often times you can easily infer a variables type from context, how it is being used…

Source: X post

Things I have rage quit over Christmas break:

Things I have rage quit over Christmas break:

1. Custom watercooling. Oh it's so fun to buy all the fancy custom watercooling stuff and put it all together and beautifully orchestrate it in a higher performance mini itx. But then in a year or two, you are going to want to change…

Source: X post

@FreyaHolmer The bittersweet part to me about this is that NFTs were the solution to digital aut

@FreyaHolmer The bittersweet part to me about this is that NFTs were the solution to digital authenticity, but no one cared about digital authenticity. People rejected it because ultimately no one cared about proving if their content was from the real artist and purchased fairly. It's just…

Source: X post

Over the past 15 years I've probably interviewed at least several dozen times at various compani

Over the past 15 years I've probably interviewed at least several dozen times at various companies. I was thinking through the notable causes of my failures, and these came to mind.

- I didn't know what a trie was. In post respect good thing to know, but useless thing to set…

Source: X post

@Lanowen Seems breaking it down to euler and position with a bunch of switch statements and reco

@Lanowen Seems breaking it down to euler and position with a bunch of switch statements and reconstructing the matrices is the only way for all scenarios.

Source: X post

@Lanowen It's like everything that could be different in some way is, under some circumstance, f

@Lanowen It's like everything that could be different in some way is, under some circumstance, for each graphics API. Different handedness. Different axes are inverted. Different meaning to Z depths. Different axes going different ways. Consequently, rotations and translations going…

Source: X post

I see various forms of the 'computebox' idea I talked about some years ago popping up now:

I see various forms of the 'computebox' idea I talked about some years ago popping up now: https://tinygrad.org/#tinybox

All occurrences so far seem to be driven by desire for cheaper AI. Which is great. However, I also believe, if general purpose enough, this type of appliance will…

Source: X post

I know my 3D math pretty well. I'm not formally studied but have about 15 years of applied knowl

I know my 3D math pretty well. I'm not formally studied but have about 15 years of applied knowledge as I needed to figure out how to get things done.

However. I still come across things that completely destroy me. Like getting the vulkan view projection matrix from my…

Source: X post

Having to click through a bunch of files to find a particular method or type is not faster or ea

Having to click through a bunch of files to find a particular method or type is not faster or easier than running the find operation and searching in your current file.

Thankfully JetBrains IDEs have really fast full project type search, but still even that can lag, or miss…

Source: X post

C23 is pretty good. I can't think of anything to complain about anymore that is not in the bike-

C23 is pretty good. I can't think of anything to complain about anymore that is not in the bike-sheddey category.

With some GCC/clang extensions, everything is there in a decent way to enable the most optimal, minimal, implementation of something. I can't think of anything…

Source: X post

@Stainle08357738 @davepl1968 Although recorded history gets a bit murky when you try to go back

@Stainle08357738 @davepl1968 Although recorded history gets a bit murky when you try to go back to the very first written numerical digits. I would bet the first person who wrote out digits of basic math and tried to convince people they had some deeper meaning, probably was not initially believed. Within…

Source: X post

@davepl1968 Everything true first started out as a conspiracy theory, to which those who were mo

@davepl1968 Everything true first started out as a conspiracy theory, to which those who were most competent and researched were called the conspiracy theorists.

People forget that the oil industry managed to suppress the science about climate change for roughly 4 decades. During which time…

Source: X post

@ewanmakepeace @USTechWorkers An odd thing about this, if your intent was to simply hire the che

@ewanmakepeace @USTechWorkers An odd thing about this, if your intent was to simply hire the cheapest and hardest-working programmers. Hiring people remotely would enable you to hire from a larger pool and pay less than if they lived in the USA.

... but you, and many, seem to be against remote hiring. Which…

Source: X post

Why is all motherboard software terrible.

Why is all motherboard software terrible.

Source: X post

Templates can be convenient, but they have the issue of copying the code for every single type.

Templates can be convenient, but they have the issue of copying the code for every single type. If you were to create hundreds of highly complex templates, then use them with dozens of types each, this ends up with larger binary sizes, longer compiles times. Potentially worse…

Source: X post

@naval If the USA is Crony Capitalist it cannot be used as evidence of the efficacy of free mark

@naval If the USA is Crony Capitalist it cannot be used as evidence of the efficacy of free markets.

This is currently one of the major cognitive dissonances I see. A heralding of free market capitalism as obviously, evidently, the way, but then then upon critical questioning of the…

Source: X post

@MalekiRe @naval Then you have to presume what put the US ahead is solely rooted in what you cou

@MalekiRe @naval Then you have to presume what put the US ahead is solely rooted in what you could argue as real capitalism.

The US isn't the only country that let people freely make and sell things in history, yet it rose far above and beyond every other country. US's success is a complex mix.…

Source: X post

For those who are smarter on laws and licenses, of which I am admittedly, almost intentionally n

For those who are smarter on laws and licenses, of which I am admittedly, almost intentionally naive. I want to figure a license so I can develop a game open source but then be the only one to sell it.

Which I know on the surface sounds potentially pointless, but what I…

Source: X post

@Ed__dev With C++ templates? Or C codegen?

@Ed__dev With C++ templates? Or C codegen?

I'd needing to deal with codegen right now so if you know of anything particular good, I'm curious.

Source: X post

@Ed__dev are you writing all the codegen out in C itself, or is there something better to use fo

@Ed__dev are you writing all the codegen out in C itself, or is there something better to use for this?

Source: X post

I'm really happy my enterprise fancy architecture phase ran its course with C# and gameplay prog

I'm really happy my enterprise fancy architecture phase ran its course with C# and gameplay programming because if it ran its course with C++ in one the fields that pays far more, or would have got me entrenched high up in some corporate hierarchy, I probably would have confused…

Source: X post

One thing I really love about vulkan and openxr is the layer system. I think it's under-apprecia

One thing I really love about vulkan and openxr is the layer system. I think it's under-appreciated how elegantly, and simply, this solves the ability to intercept and inject an additional high-performance step of computation in all the graphics, input and display operations of…

Source: X post

I remember some years ago looking up what distro linus torvalds used because I presumed he'd hav

I remember some years ago looking up what distro linus torvalds used because I presumed he'd have the best opinion on it. To which he said he just uses fedora because it installs the easiest. Then also looked up what IDE he used. To which he said he uses an old customized nano…

Source: X post

I died 8 times in the first 40 minutes of stalker 2.

I died 8 times in the first 40 minutes of stalker 2.

It wasn't even hard, just how am I supposed to know an invisible monster appears, or walking on the little blue spark in the grass kills you, or walking into the refractive bubble kills you, or going in the water kills you,…

Source: X post

@alexandertmai This is what HoloLense and Magic Leap do. The lenses are very dark. Which can wor

@alexandertmai This is what HoloLense and Magic Leap do. The lenses are very dark. Which can work for particular use cases, but it inhibits the value-add that you are 'mixing' virtual elements with the real world.

This is one of the reasons why waveguide HMDs, while initially pushed as a…

Source: X post

Something about the XR industry that has long driven a lot of distorted expectations about AR vs

Something about the XR industry that has long driven a lot of distorted expectations about AR vs VR is that every promotional video of AR see-through waveguide optics is fake. They don't realistically portray the way this display technology looks through actual HMD.

You have to…

Source: X post

@Jonathan_Blow Claude 3.5 sonnet is the equivalent of a google-fu master for anything that's bee

@Jonathan_Blow Claude 3.5 sonnet is the equivalent of a google-fu master for anything that's been around for a while. It is better at producing answers than what I'd get from stackoverflow, a forum, or even the official documentation at times. Vulkan, OpenGL, DX11, win32 api, stuff like that.…

Source: X post

@GordanKnott @SadlyItsBradley The only thing they don't portray well is the HDR overblown clippi

@GordanKnott @SadlyItsBradley The only thing they don't portray well is the HDR overblown clipping, as your physical eye perceives that differently. But they are literally through a hololense 2 and show how much brighter you'd typically turn up content to make it visible in ambient room lighting.

I would…

Source: X post

@beep2bleep ... but what if you could have 'digitally enhanced vision'

@beep2bleep ... but what if you could have 'digitally enhanced vision'

This is something I believe we'll see in our lifetime, but probably 20 years away still. Video passthrough will get so good, small and lightweight, with some kind of sensor to dynamically adjust to the eye, that it will…

Source: X post

Also, one the things to be very bullish about Apple for HMDs is that in terms of pulling off ext

Also, one the things to be very bullish about Apple for HMDs is that in terms of pulling off extremely high quality, low latency, video passthrough that could be passable for your actual vision. I would be absolutely amazed if another company can beat Apple to doing this. This…

Source: X post

There is a non-zero chance in my mind that dynamic AI code analysis will get better at catching

There is a non-zero chance in my mind that dynamic AI code analysis will get better at catching programming errors than any static analysis system ever could.

This is (partly) why, personally, I've increasingly been putting more energy to languages that give me the most…

Source: X post

@TheGingerBill I'd agree all language benchmarks you can find on the open web are pretty terribl

@TheGingerBill I'd agree all language benchmarks you can find on the open web are pretty terrible for anything more than a rough glancing overview, and they test the compiler more than the actual lang in native. But I do always wish there was some website that had better comprehensive…

Source: X post

It kind of drives me crazy the number of people who don’t understand the difference between cash

It kind of drives me crazy the number of people who don’t understand the difference between cash, liquid assets, business valuation, human capital and net worth.

… and I’m very pro anything which keeps big companies and monopolies in check, and pro leverage being on the side of…

Source: X post

If music really has therapeutic value, then an AI which scanned your brainwaves, or tracked othe

If music really has therapeutic value, then an AI which scanned your brainwaves, or tracked other biometrics, could probably always discern the exact music to play to provide you the most benefit.

Source: X post

How long until I can feed a C++ codebase into an LLM and have it output a good C codebase?

How long until I can feed a C++ codebase into an LLM and have it output a good C codebase?

Source: X post

@awesomekling @ladybirdbrowser How long do you think until it will be competitive with firefox o

@awesomekling @ladybirdbrowser How long do you think until it will be competitive with firefox or webkit in terms of performance?

Source: X post

@BernieSanders It's been like this for over a decade, probably over two or three decades.

@BernieSanders It's been like this for over a decade, probably over two or three decades.

The difference is Elon Musk isn't concealing what he's doing.

Ironically, it might be the only way to wake people to the nature of how our government works. For years, decades you say it's not a…

Source: X post

What if there was a web browser where every unique page had its own voice chat it auto joined yo

What if there was a web browser where every unique page had its own voice chat it auto joined you into so you could talk to whatever random person was looking at the same thing.

Source: X post

@theo C# contravariant generics

@theo C# contravariant generics

Source: X post

@NimaZeighami Nothing in the link says they are getting discontinued ?

@NimaZeighami Nothing in the link says they are getting discontinued ?

Source: X post

@ludwigABAP "just give me agency" that's the exact opposite reason of why companies hire people.

@ludwigABAP "just give me agency" that's the exact opposite reason of why companies hire people...

Depending on how corporate the company is, the ability to remove engineer agency and herd engineers is how the competency of management is measured.

Source: X post

@JordanKutzer that's partly what that thought came from

@JordanKutzer that's partly what that thought came from

Source: X post

How is it nearly 2025 and I still don't have a minimal-as-possible, lighthouse tracked, DisplayP

How is it nearly 2025 and I still don't have a minimal-as-possible, lighthouse tracked, DisplayPort, OLED, pancake lense, VR headset with full face tracking? Vive seems to circle around this but just can't -quite- do it for some reason. I don't get it. They have all the pieces,…

Source: X post

@pmarca The only reason this is a story of such concern for so many is because it's too easy for

@pmarca The only reason this is a story of such concern for so many is because it's too easy for everyone to understand how the extremely shitty healthcare system could reduce a normal, average, person just like them to a state of neurotic, suicidal, homicidal, hopelessness. Even those…

Source: X post

In the early days of the web those who developed above-average google-fu could learn faster, mov

In the early days of the web those who developed above-average google-fu could learn faster, move faster and do more than others giving them an advantage.

Today I think the same is true for LLM's. Those with good LLM-fu and who can figure out the mentalities to make use of them…

Source: X post

@BTC_Grid I had this idea like 5 years ago and felt very confident it would do well. Not specifi

@BTC_Grid I had this idea like 5 years ago and felt very confident it would do well. Not specifically for pool heaters, but just for space heaters in general. Wish I could buy something like this as just a regular space heater. Hope it does well.

Source: X post

did not know this existed https://x.com/_rygo6/status/1868448681911062915/photo/1

did not know this existed https://x.com/_rygo6/status/1868448681911062915/photo/1

Source: X post

The thing which makes me use my steamdeck the most ironically has nothing to do with its form fa

The thing which makes me use my steamdeck the most ironically has nothing to do with its form factor or portability. It's the fact I can push the power button, it goes to sleep, I can leave it, then I push the power button again and it starts right up with all the state preserved…

Source: X post

pretty much

pretty much https://x.com/i/grok/share/qBdiINboWGkfQ6hnU6WPhcQ4a

Source: X post

@kingsparacosm If a species is advanced to invade us, I think it's unlikely we would win.

@kingsparacosm If a species is advanced to invade us, I think it's unlikely we would win.

Source: X post

I've reached the age where having to manually move my units around, or manually walk around and

I've reached the age where having to manually move my units around, or manually walk around and shoot, is just too much work. This is why Mechabellum is my new favorite game. Just lay the units out, click go, they do all the work themselves, I watch. Perfect. Try Mechabellum if…

Source: X post

I don't remember where I got this but I just noticed it on my desktop from somewhere and it is s

I don't remember where I got this but I just noticed it on my desktop from somewhere and it is still true. https://x.com/_rygo6/status/1868204592275878030/photo/1

Source: X post

@HemlockTapioca C with https://www.raylib.com/

@HemlockTapioca C with https://www.raylib.com/

Source: X post

@buddingmonkey MySpace is not a good mental model for this.

@buddingmonkey MySpace is not a good mental model for this.

If you really want to understand you have to buy an adequate PC VR setup with full body tracking, then deep dive into VRChat and develop a social life in there. Spend several hundred hours at least in there.

The mind will project…

Source: X post

@buddingmonkey If you really believe custom html on myspace is an adequate mental model to encap

@buddingmonkey If you really believe custom html on myspace is an adequate mental model to encapsulate the nature of and potential of the social vr space I'm not gonna argue. I will tell you I think you missed a lot and maybe wandered into a trap of reasoning. But no reason to pay attention to…

Source: X post

@buddingmonkey Been in the vr space in general or been in pc vrchat?

@buddingmonkey Been in the vr space in general or been in pc vrchat?

Source: X post

One of things VRChat taught me is that the ideal UGC platform will end up having to support such

One of things VRChat taught me is that the ideal UGC platform will end up having to support such a radical variety of content that at a technical level, from the perspective of someone who professionally makes content for games, it's just an absolute atrocity.

Every avatar has…

Source: X post

@jmdagdelen I respectfully disagree. It is not an alternative. It is an insult to the potential

@jmdagdelen I respectfully disagree. It is not an alternative. It is an insult to the potential of VR.

Source: X post

If I had to choose between the various end-game scenarios I would definitely choose alien invasi

If I had to choose between the various end-game scenarios I would definitely choose alien invasion. I get to see aliens. I get to fight in a battle. Humanity gets unity for one last hurrah before going out. It's a good way to go.

Source: X post

I find a lot of wealthy people believe if they were poor and homeless they could rebuild wealth

I find a lot of wealthy people believe if they were poor and homeless they could rebuild wealth from nothing because it's a set of skills and habits.

I've always thought this would make a damn good reality TV show if such a person ever really believed it. Basically leave with…

Source: X post

@DyLhun Well... not so much using Unity. I'm talking about something more like an operating syst

@DyLhun Well... not so much using Unity. I'm talking about something more like an operating system designed around better scheduled, metered, fault-tolerant rendering of isolated chunks of content, of which some pieces might be coming from unity instances.

Source: X post

@DyLhun There is a reason I only the use the pc version.

@DyLhun There is a reason I only the use the pc version.

Source: X post

@DyLhun I believe this solvable at a technical low-level elegantly, it's just that none of the d

@DyLhun I believe this solvable at a technical low-level elegantly, it's just that none of the decision makers in the tech companies understand why being able to render 500 different anime avatars properly in a VR instance is important.

Source: X post

@aoighost Poiyomi is one of the greatest 'Library' assets for UGC if you could call it that. Tec

@aoighost Poiyomi is one of the greatest 'Library' assets for UGC if you could call it that. Technically all a platform would need is poiyomi.

But poiyomi selectively recompiles shaders based on specific features used because its original uber shader form produced shaders which were too…

Source: X post

A game engine rendering into a framebuffer, a 2D array of color data, made a lot of sense when t

A game engine rendering into a framebuffer, a 2D array of color data, made a lot of sense when the targeted output of the game engine was a screen, which was also literally a 2D array of color data. ( or a 1D array mapped to a grid)

However in the case of VR the targeted output…

Source: X post

oh damn soul reaver 1 & 2 remastered where did this come from

oh damn soul reaver 1 & 2 remastered where did this come from

Source: X post

Noticing how frequently people make what I'd consider not the best decision on what kind of allo

Noticing how frequently people make what I'd consider not the best decision on what kind of allocation to use in C# for Unity I decided to make a decision tree.

Which after week of little edits and tweaks, and this decision tree becoming a rat's nest I realize why people… https://x.com/_rygo6/status/1867457788777287744/photo/1

Source: X post

@ForrestTheWoods nah man... it'll work you just have to throw more intense music behind it... an

@ForrestTheWoods nah man... it'll work you just have to throw more intense music behind it... and more exotic muscle cars... and sexier women... and higher speed car chases.... and car chases on monolithic alien structures... and more ambiguous religious imagery to make it feel ominous... If…

Source: X post

@wiredearp @flynnslick matrix gonna matrix

@wiredearp @flynnslick matrix gonna matrix

Source: X post

@pmarca There are scenarios where cannabis will make you more productive, but it has to be one c

@pmarca There are scenarios where cannabis will make you more productive, but it has to be one conducive to what the drug augments. From what I've seen that is music. The most productive musicians I've ever known regularly used cannabis. However, for logic, math and programming cannabis…

Source: X post

@pmarca Opioid addiction I'd agree is the side effect of something negative. Some pervasive caus

@pmarca Opioid addiction I'd agree is the side effect of something negative. Some pervasive cause of anxiety and depression that can hopefully be fixed.

However, recreational drug use historically fizzles up in the excesses of the bourgeoise during the peak of cultures. Idealistically,…

Source: X post

@IroncladDev water flows between the mountains

@IroncladDev water flows between the mountains

Source: X post

@flynnslick https://www.youtube.com/watch?v=Gr7T07WfIhM

@flynnslick https://www.youtube.com/watch?v=Gr7T07WfIhM

Source: X post

@cnlohr Won't a for loop be better for performance usually?

@cnlohr Won't a for loop be better for performance usually?

Source: X post

@pmarca Everyone is pro-murder. Everyone is pro-political violence. Everyone is pro-turning-a-bl

@pmarca Everyone is pro-murder. Everyone is pro-political violence. Everyone is pro-turning-a-blind-eye to something terrible which aids them. It's just a matter of what for, and at what threshold?

Source: X post

Languages and compilers need to put compile time as a bigger priority.

Languages and compilers need to put compile time as a bigger priority.

I remember over a decade ago this is what initially got me hooked on Unity and C#. Near instant compilation and rapid iteration. It's one of those things that, when you have it, it's such a boon to workflow.…

Source: X post

IMO, where people rest on the political compass has less to do with ideological predisposition a

IMO, where people rest on the political compass has less to do with ideological predisposition and more to do with the size of the population they are using as a model in their head.

Unfortunately most don't have an awareness of the population size their predispositions are…

Source: X post

@CoClarified I've experienced the same. If I go to a smaller organic bakery which sources wheat

@CoClarified I've experienced the same. If I go to a smaller organic bakery which sources wheat from local Washington state farms, and is selective about the farms, I don't get a reaction.

However, it's not explicitly just 'organic'. Whatever it is, some organic brands still cause a…

Source: X post

@amaldorai I wish there was some VR app with nothing but highly detailed animated schematics of

@amaldorai I wish there was some VR app with nothing but highly detailed animated schematics of things you could pull apart and look at constantly updating.

Source: X post

How many years' worth of living expenses would you need to have cash in the bank for to quit all

How many years' worth of living expenses would you need to have cash in the bank for to quit all income streams and YOLO your own startup solo?

Source: X post

@zack_overflow imagine being a software engineer

@zack_overflow imagine being a software engineer

Source: X post

@world_citizen_1 @nosilverv I'd say the aim of human life is to realize the identity that doesn'

@world_citizen_1 @nosilverv I'd say the aim of human life is to realize the identity that doesn't require a conscious thought to keep it stable and doesn't undergo some kind of existential breakdown from learning and questioning.

Source: X post

Okay, hear me out.... C-Like C#

Okay, hear me out.... C-Like C#

Source: X post

@NickChapmn @SubstrataVr Then you have to deal with the bigger complication of, how do you keep

@NickChapmn @SubstrataVr Then you have to deal with the bigger complication of, how do you keep someone from crashing the entire graphics context with malicious shader code?

Or just tanking the performance of the entire graphics context with a single piece of poorly optimized content?

There is no way…

Source: X post

@NickChapmn @SubstrataVr On modern OS and GPU, with some extra care put to inter process shared

@NickChapmn @SubstrataVr On modern OS and GPU, with some extra care put to inter process shared resources, and the way you force close processes, graphics contexts in different processes can typically survive one of them crashing. Things like VK_KHR_global_priority can make it so some graphics contexts…

Source: X post

@awesomekling @ladybirdbrowser @Lubrsi Really would like to know this, as if it's decent, that c

@awesomekling @ladybirdbrowser @Lubrsi Really would like to know this, as if it's decent, that creates a strong incentive for me to take on implementing your WebXR support, which I would do.

But if the JS performance significantly worse than V8 or spidermonkey and will be for years to come, I don't think I could put…

Source: X post

@awesomekling @ladybirdbrowser @Lubrsi How fast is the LibJS implementation?

@awesomekling @ladybirdbrowser @Lubrsi How fast is the LibJS implementation?

... can you please not rewrite it in swift

Source: X post

We don't need another engine. We need a kind of streaming engine runtime which is open and exten

We don't need another engine. We need a kind of streaming engine runtime which is open and extensible enough that anyone's curiosities with graphics and engine development can be explored with it. But has certain APIs and constraints, which if followed, would let it interop with…

Source: X post

@realdowd Take a VR compositor, fiddle what's necessary at the low level to let it composite man

@realdowd Take a VR compositor, fiddle what's necessary at the low level to let it composite many different things from entirely different game engines into a shared space, provide some base APIs for networking, IPC and physics that will enable cohesion between all the content to function…

Source: X post

I wish I had a VR monocle to do VR development with.

I wish I had a VR monocle to do VR development with.

Source: X post

@tsoding 11/17 = Modern

@tsoding 11/17 = Modern 20+ = PostModern

I am in favor of this. Take back the Modern term.

Source: X post

@Jeffrey_Shetler @notlouisck Income isn't a good metric to determine this in the US due to wildl

@Jeffrey_Shetler @notlouisck Income isn't a good metric to determine this in the US due to wildly variable cost of living and stressors on making that money. 100k a year in a cheaper rural state could be upper middle class, whereas 100k a year in some major cities is poverty.

Also, another hidden variable,…

Source: X post

@IterIntellectus In big cities, it is a financial problem. Don't forget, 150k a year is consider

@IterIntellectus In big cities, it is a financial problem. Don't forget, 150k a year is considered 'Low Income' for a family in San Francisco to qualify for assistance. To get a decent sized house and afford middle class in somewhere like San Francisco, you'd need at least a few million in the…

Source: X post

@DylanDocker Austin has serious traffic problems, so despite lower population density, it can be

@DylanDocker Austin has serious traffic problems, so despite lower population density, it can be a real pain to get around. Housing there is also quite expensive and rising. It is a VERY sociable city but unless you are a 6 ft highly attractive cowboy you won't do well dating in Austin. The…

Source: X post

@CFDevelop If a singular procedure is a singular procedure, wouldn't it be best to communicate i

@CFDevelop If a singular procedure is a singular procedure, wouldn't it be best to communicate it as such in how it is actually written? Aside from the code more clearly presenting what it actually is, there are technical benefits.

I don't care to back and forth argue, so I'll just leave…

Source: X post

@CFDevelop I'd say the threshold for me is between 'Visual Noise' and 'Hiding Relevant Informati

@CFDevelop I'd say the threshold for me is between 'Visual Noise' and 'Hiding Relevant Information'.

If I have a method, and there is certain configuration of state occurring in that method which is necessary to understand what that method does. I'd prefer that state to be visible in that…

Source: X post

@dhh I can't be the only one thinking the existence of such big corporations is not good. Certai

@dhh I can't be the only one thinking the existence of such big corporations is not good. Certainly, a lack of startups that are not making it is a negative sign. But the tech industry also consolidating into several massive green bubbles is also a negative.

Also, big tech companies…

Source: X post

What Musk is proposing to do with Pentagon funding is something Sanders has talked about with Au

What Musk is proposing to do with Pentagon funding is something Sanders has talked about with Audit the Fed for years.

Also, RFK Jr fine-combing through the food, medical and pharmaceutical regulatory bodies weeding out special interests and lobbying is also something that has… https://x.com/SenSanders/status/1863268770371772863

Source: X post

@HSVSphere I like fork... but you also need posix_spawn for other scenarios.

@HSVSphere I like fork... but you also need posix_spawn for other scenarios.

Fork makes bootstrapping multi-process applications far simpler. I wish windows had it.

Source: X post

I realize the reason I have no trouble talking about my political or philosophical perspectives

I realize the reason I have no trouble talking about my political or philosophical perspectives openly and intricately is because I don't really consider any of them to be part of my identity. Nor do I subscribe belief to any of them fully. I tend to be fundamentally…

Source: X post

@awesomekling @ladybirdbrowser What about speed?

@awesomekling @ladybirdbrowser What about speed?

Source: X post

@awesomekling @ladybirdbrowser @SwiftLang I'm all for new browser engines anyway they might come

@awesomekling @ladybirdbrowser @SwiftLang I'm all for new browser engines anyway they might come about, so either way I'll celebrate it. But on the very unlikely chance this might sway something, I'd like suggest swift is bad for this. I think you've come to the wrong conclusion here because your list of requirements is…

Source: X post

Andreesen's story about startups getting debanked is pretty damn crazy. I didn't know so many pe

Andreesen's story about startups getting debanked is pretty damn crazy. I didn't know so many people had been personally targeted for developing technology government didn't like. It's also crazier you didn't hear about the extent of it till now as debanking disrupted their…

Source: X post

What if instead of thousands of people putting hundreds of hours into leetcode and competitive p

What if instead of thousands of people putting hundreds of hours into leetcode and competitive programming, everyone instead contributed to servo or ladybird to bring a new browser engine up to speed? Or some other open-source project?

Somewhere in the back of my mind I can't…

Source: X post

I think chatgpt wins this. https://x.com/_rygo6/status/1862414545194819925/photo/1

I think chatgpt wins this. https://x.com/_rygo6/status/1862414545194819925/photo/1

Source: X post

Hm. https://x.com/_rygo6/status/1862414090213498907/photo/1

Hm. https://x.com/_rygo6/status/1862414090213498907/photo/1

Source: X post

@doragonhanta This is incredibly helpful, thanks!

@doragonhanta This is incredibly helpful, thanks!

Source: X post

Is there any SDF modeler which then outputs the GLSL code to render that SDF?

Is there any SDF modeler which then outputs the GLSL code to render that SDF?

Source: X post

I always thought at one point I would feel 'Old' but I realize that doesn't really happen. Rathe

I always thought at one point I would feel 'Old' but I realize that doesn't really happen. Rather what happens is, little by little, an eyebrow-raise paired with the thought of "wtf are these kids doing now" sneaks into your awareness at an increasing rate, until you spend too…

Source: X post

@cnlohr now what's wrong with wayland?

@cnlohr now what's wrong with wayland?

Source: X post

@cnlohr @BabbleBones Design a new windowing protocol?

@cnlohr @BabbleBones Design a new windowing protocol?

From going through OpenXR I oddly came to realization OpenXR with a few extensions could be perfectly fine for 2D applications too.

Source: X post

@cixliv I agree, if they could 3/4 the weight and price I could see a lot of people buying it ju

@cixliv I agree, if they could 3/4 the weight and price I could see a lot of people buying it just to watch movies or lounge while flipping through YouTube. The movie watching experience is literally the best you can get at home and would easily justify lots of people renting 3D 4k…

Source: X post

@trunarla If importing a package is easier than writing it out yourself then there is incentive

@trunarla If importing a package is easier than writing it out yourself then there is incentive to import the package. The easier it becomes to import a package the greater there will be a tendency to start importing even trivial things as packages.

Source: X post

If a programming language enables someone to have a leg up in job interviews and job security by

If a programming language enables someone to have a leg up in job interviews and job security by knowing fancy tools and patterns of abstraction, it incentives a culture around that programming language which continually escalates into ever more complex abstraction in order to…

Source: X post

I reached a limit with current LLMs. Everything they say about the interoperability between dire

I reached a limit with current LLMs. Everything they say about the interoperability between direct, vulkan and opengl is a lie.

Source: X post

How much faster do you think the chromium codebase or the unreal engine codebase would compile i

How much faster do you think the chromium codebase or the unreal engine codebase would compile if it was written entirely in C?

I have a very rough shooting from the hip intuition on this, but am curious if anyone has actually done more comparisons between a large C++ project…

Source: X post

@aoighost wouldn't it compile slower in rust ?

@aoighost wouldn't it compile slower in rust ?

Source: X post

@aoighost That notion would personally make me run for the hills in the context of a cross platf

@aoighost That notion would personally make me run for the hills in the context of a cross platform engine which deals with all of the low level graphics API directly.

In my experience, the hardest to deal with issues are not CPU memory bugs, those are easy. The hardest to deal with…

Source: X post

You could say this film is some sort of political propaganda, but it's a piece of political prop

You could say this film is some sort of political propaganda, but it's a piece of political propaganda everyone should have burned deep in their psyche. https://youtu.be/ueqB4qWwZUo?si=u7KJ7n43q79U088V

Source: X post

@scarletinked This is a great way to phrase this dichotomy. I unfortunately have encountered thi

@scarletinked This is a great way to phrase this dichotomy. I unfortunately have encountered this dichotomy too often. Business wanting something 'highly predictable' and 'highly valuable' when these two qualities tend to carry an inverse correlation. I find tech business side tends to have…

Source: X post

Programming languages as incentive structures I think is going to be one of my main spiels.

Programming languages as incentive structures I think is going to be one of my main spiels.

Another one questionable incentive.

If you make it easier to manage long prefix names, via namespaces or other, then you will get longer and longer prefixes chained on every type.…

Source: X post

I see Discord as the place for echo chambers. I don't need another echo chamber platform. So out

I see Discord as the place for echo chambers. I don't need another echo chamber platform. So outside of Discord if I am going to use a big open social media platform, I'd want it to be the biggest one that gives the most exposure to the widest array of things. Twitter still seems…

Source: X post

@zack_overflow I hate that, instead of making it a derivative of something existing like webgl w

@zack_overflow I hate that, instead of making it a derivative of something existing like webgl was to opengl, they avoided any and all khronos-like abstraction for legal reasons, creating a fourth set of modalities. Then created an entirely new shader lang instead of co-opting spirv somehow. I…

Source: X post

@MalekiRe @zack_overflow apple is one that had legal complication with khronos supposedly

@MalekiRe @zack_overflow apple is one that had legal complication with khronos supposedly

Source: X post

Build and played with the new box2d lib. Pretty damn impressive how robust, performant and featu

Build and played with the new box2d lib. Pretty damn impressive how robust, performant and feature filled it is. It's nearly perfect in any way I would scrutinize it.

Whenever I come across projects like this which are so feature-filled, production ready, well-crafted, highly…

Source: X post

@yegordb I'd bet some percentage of that 9.5% contribute a lot of value. Except they do it by co

@yegordb I'd bet some percentage of that 9.5% contribute a lot of value. Except they do it by commenting on others code, pair programming, answering questions, writing some design docs, going over PR's, putting together presentations. I've definitely known people in the principal or even…

Source: X post

The 'Anti-Doomerism' mentality is an odd one to me, because it seems to espouse an almost pathol

The 'Anti-Doomerism' mentality is an odd one to me, because it seems to espouse an almost pathological optimism and non-nonchalant attitude to issues which should have more serious attention.

I presume some people became depressed doomers, then had some eureka moment where they…

Source: X post

Can we just make clear, if you are running on some mental model that Democrats are diplomatic, a

Can we just make clear, if you are running on some mental model that Democrats are diplomatic, and are not the ones that'd cross a line into WW3. That is not correct. https://www.cnn.com/2024/11/18/world/video/russia-reacts-us-authorization-long-range-missiles-ldn-digvid Not that I think Republicans are diplomatic, but it also needs to be clear Democrats are…

Source: X post

@virtualMFer motorcycle support would be great too

@virtualMFer motorcycle support would be great too

Source: X post

Rather than a new language, I would rather have a more easily extensible C compiler. Where out o

Rather than a new language, I would rather have a more easily extensible C compiler. Where out of the box it is C99 or maybe C11 with handful of basic extensions. Then making extensions for it could be done in a very straight forward way based on some minimal C header you could…

Source: X post

@MalekiRe Yes I'd agree youtube is comparable.

@MalekiRe Yes I'd agree youtube is comparable.

Source: X post

@MalekiRe I already do too much, someone else steal my ideas please.

@MalekiRe I already do too much, someone else steal my ideas please.

Source: X post

@LyerionClash Well RP is already a really popular VR genre in VRChat but it tends to be a genre

@LyerionClash Well RP is already a really popular VR genre in VRChat but it tends to be a genre of RP that I'm not into it.

Source: X post

@kaiborniger It does, and technically so does LLVM, but these are monstrosities to dig into whic

@kaiborniger It does, and technically so does LLVM, but these are monstrosities to dig into which were never intended for a handful of simple syntax tweaks unique to a particular codebase.

Source: X post

I wish there was a hyper realistic VR racing game which:

I wish there was a hyper realistic VR racing game which: - Simulated a large urban city akin to a GTA game. - Some kind of voice chat built into it. Local proximity based chat and also some kind of radio. - Had ability to capture and display upper body and facial motion so you…

Source: X post

I have to say twitter is far better at showing me things I am interested in than any other socia

I have to say twitter is far better at showing me things I am interested in than any other social news feed. Either their algorithm is better, or it might only be the public-first nature of twitter that provides more content for it to choose from.

Source: X post

@DyLhun The car worlds in VRC are fun, and partially what sparked this thought, but I feel getti

@DyLhun The car worlds in VRC are fun, and partially what sparked this thought, but I feel getting the driving sim to the level of Assetto Corsa is far off, and getting a world to the level of Cyberpunk or GTA isn't going to happen anytime soon.

Source: X post

@BattleAxeVR @yewnyx What's even trickier is wrangling the thing into enough democratic control

@BattleAxeVR @yewnyx What's even trickier is wrangling the thing into enough democratic control to even pull such things off in the first place...which is another whole complicating issue I'm definitely cognizant of, but you know theoretically, from first principles, something could be made to work.

Source: X post

@BattleAxeVR @yewnyx Some kind of software nationalizing scheme could be come up with that's not

@BattleAxeVR @yewnyx Some kind of software nationalizing scheme could be come up with that's not terrible, although I wouldn't call it nationalizing, more specifically I only see something like "Public Open-Sourcing" as plausible. Where codebases past a certain level of necessity and fundamental…

Source: X post

Polkadot is a beautiful design but I don’t think it can make it. Too complex. I’d love someone t

Polkadot is a beautiful design but I don’t think it can make it. Too complex. I’d love someone to convince me otherwise.

IMO,

Future is Solana for anything a consumer interfaces with more directly. Virtual markets and economies running on sol, or USDC on Solana, or some Solana…

Source: X post

Is there any multiplayer FPS game with better or comparable sniper play as the battlefield serie

Is there any multiplayer FPS game with better or comparable sniper play as the battlefield series?

Source: X post

In software there are three potential aspects to optimize development approach around which are

In software there are three potential aspects to optimize development approach around which are mutually exclusive: 1. Velocity of development. 2. Quality of codebase. 3. Predictability of timeline.

Sometimes all three can align. Most of the time it is favoring two at the…

Source: X post

@BattleAxeVR I really want a wrist bracelet controller that puts a low profile thumbstick and so

@BattleAxeVR I really want a wrist bracelet controller that puts a low profile thumbstick and some buttons on the bracelet. So you could use your left hand to control the thumbstick on your right hand when you need a thumbstick, or vice versa. I find most scenarios I want VR for, I would…

Source: X post

Putting in about 1 to 2 hours every other evening, it took about 3 months to go from "Oh I'll ju

Putting in about 1 to 2 hours every other evening, it took about 3 months to go from "Oh I'll just implement the OpenXR runtime myself" to getting Chrome WebXR to output a frame into my VR compositor.

Source: X post

@gfodor Although I want it accepting openxr, I’m doing something a bit different than a generali

@gfodor Although I want it accepting openxr, I’m doing something a bit different than a generalized vr compositor.

Source: X post

Arcane is the perfect style for a VR game.

Arcane is the perfect style for a VR game.

Source: X post

@NickChapmn 5950x is what I had before.

@NickChapmn 5950x is what I had before.

To be fair, I believe it was the motherboard. I had an Asus Dark Hero.

I put it in a mini itx gigbayte motherboard and it's been very stable since but still makes me wonder.

Source: X post

My 13900ks cannot reliably compile the full chromium codebase even at default clock. I suspect t

My 13900ks cannot reliably compile the full chromium codebase even at default clock. I suspect this is sign of some slight damage from the voltage issues. Pretty wild how severely Intel can mess up these past years. My 13900ks has pretty much been fine other than this. If you've…

Source: X post

@LizWolfeReason DMT is "right-coded".

@LizWolfeReason DMT is "right-coded".

We have officially reached peak "Left" "Right" mean absolutely nothing.

Source: X post

Election outcomes signify to me the importance of staying close to X. As it demonstrates it has

Election outcomes signify to me the importance of staying close to X. As it demonstrates it has the mix of whatever the novel media recipe is that makes it central to swaying global superpowers. Either you maintain a deep instinct on what exactly is happening here and how, or you…

Source: X post

As society deconditions from corporate broadcast media and the web turns into the central commun

As society deconditions from corporate broadcast media and the web turns into the central communication medium for cultural ethos, there is going to be a weird middle ground where it seems like something is getting worse. Because when you bring millions of people online that have…

Source: X post

Are there any wired LAN or WiFi 7 optimized remote desktop sharing solution out there which are

Are there any wired LAN or WiFi 7 optimized remote desktop sharing solution out there which are cross-platform that could truly replace a KVM?

Not for VR but for general compute.

I'm realizing networks and codecs might be good enough now that KVMs could be obsolete but I've…

Source: X post

I wish games had more comprehensive difficulty ratings. So, I know if I'm buying, and putting ti

I wish games had more comprehensive difficulty ratings. So, I know if I'm buying, and putting time on something, that is just going to piss me of in an hour. Someone could probably turn this into some kind of business.

Like Space Marine 2 looks cool, but do I really want to…

Source: X post

@pmarca Profit incentive puts cheap screens in every home and pocket. With cheap services to fee

@pmarca Profit incentive puts cheap screens in every home and pocket. With cheap services to feed them data.

Profit incentive uses those screens to program into everyone habits and ways of voting which then drive up the cost of everything else that matters.

It can’t all be cheap when…

Source: X post

@MalekiRe there is servo

@MalekiRe there is servo

Source: X post

Here is the linux kernel source. A primarily C project that has been evolving out in the wild fo

Here is the linux kernel source. A primarily C project that has been evolving out in the wild for decades: https://github.com/torvalds/linux

Here is the chromium source. A primarily C++ project that has been evolving out in the wild for decades: https://github.com/chromium/chromium

Click into a few…

Source: X post

Before embarking on any large project, I believe every new programmer needs to go through the pr

Before embarking on any large project, I believe every new programmer needs to go through the process at least once of building, and debugging, chromium from source under a tense high pressure situation to deeply ingrain a phobia of complexity.

Source: X post

I beat Resident Evil 2 Remake. Amazing game, but I'm kind of tired of forced PBR everything with

I beat Resident Evil 2 Remake. Amazing game, but I'm kind of tired of forced PBR everything with artifacting, fuzzing, ghosting, smudging everywhere running slow.

The only game that seemed to be generally undisturbed by temporal solutions are the new Doom titles. I still don't…

Source: X post

@Jonathan_Blow Yup. If Trump doesn't snub RFK Jr and lets him have sufficient authority as promi

@Jonathan_Blow Yup. If Trump doesn't snub RFK Jr and lets him have sufficient authority as promised, it will ironically make Trump's Administration more "Left-Wing" than the Democratic party in terms of what the term meant a decade ago. His framing on the subject of corruption in healthcare and…

Source: X post

Burndown chart or collaborative drawing of a city skyline?

Burndown chart or collaborative drawing of a city skyline?

Source: X post

@alexbunardzic I like PRs when on dev there is a high tendency to just skim for anything egregio

@alexbunardzic I like PRs when on dev there is a high tendency to just skim for anything egregious and merge, fix in subsequent PRs.

It can help someone fiddle with things through multiple commits then squash merge to dev to keep it cleaner

Source: X post

@j_bikker I wish this was in plain C. Even in sane C++ you still have to use a C++ compiler...

@j_bikker I wish this was in plain C. Even in sane C++ you still have to use a C++ compiler...

Source: X post

@GustavSterbrant I feel like this is more so a description of California than it is anyone in ge

@GustavSterbrant I feel like this is more so a description of California than it is anyone in general who entertains left wing notions. Which I see the failings of california as its own separate subject from left wing in general.

Although I see your in Sweden, it'd be interesting if you feel…

Source: X post

@GustavSterbrant I think they are more so libertarian than left/right because desire to build, e

@GustavSterbrant I think they are more so libertarian than left/right because desire to build, experiment and create makes you phobic of oppressive government. Also many understand how scary modern oppression can be with modern tech better than anyone.

Then from being more libertarian, I’d say…

Source: X post

@GustavSterbrant I think that's part of where it comes from. If your daily lived reality is Corp

@GustavSterbrant I think that's part of where it comes from. If your daily lived reality is Corporatism and watching that play out, Capitalism in an Adam Smith context comes off more like a theoretical idealism.

I think a lot of people developed an undealt with cognitive dissonance concerning…

Source: X post

@GustavSterbrant I believe there is a pervasive tendency to not take into account how out-of-dem

@GustavSterbrant I believe there is a pervasive tendency to not take into account how out-of-democratic-control state power is in the US and be avoidant of the dismal reality of the situation. This feeds into those who are not critical enough of any notion that'd give power to the state, but even…

Source: X post

@GustavSterbrant Corporatism may be a product of the state, but the pathway from a more free mar

@GustavSterbrant Corporatism may be a product of the state, but the pathway from a more free market economy to a corporatist command economy comes from the private sector amassing enough money and power to begin that process of lobbying and corruption. You first need a business model that can…

Source: X post

The real concerning thing to me isn't the prospect that Musk bought twitter and consequentially

The real concerning thing to me isn't the prospect that Musk bought twitter and consequentially manipulated the election. It's that it demonstrates media does in fact have that much of an effect on the results of an election. Someone shouldn't be able to sway a global superpower…

Source: X post

The first major hint I got that the neoliberals would lose was when they started calling all the

The first major hint I got that the neoliberals would lose was when they started calling all the anti-war protests on college campuses antisemitic. When they tried to turn the 'Antisemitic Fascist' narrative on leftist college kids. That broke a whole a generation of youth out of…

Source: X post

One of the most valuable things I've found politically is talking to people in other countries,

One of the most valuable things I've found politically is talking to people in other countries, namely through VRC. The candid on-the-ground take of an average person living in another country is often underappreciated in how much it can make you aware of.

I've also noticed a…

Source: X post

Something most programming languages thought was an upgrade over old languages, which I've reall

Something most programming languages thought was an upgrade over old languages, which I've really come to dislike, is that you can put methods and variable anywhere in the file.

When any dependent method, struct or variable had to be explicitly above anything using it, it forced…

Source: X post

Black Myth Wukong was really cool for the first 30 minutes then immediately went into too hard f

Black Myth Wukong was really cool for the first 30 minutes then immediately went into too hard for me to play.

Source: X post

@allenholub There are problem domains where every 0.1 ms reduced from execution time directly im

@allenholub There are problem domains where every 0.1 ms reduced from execution time directly impacts end user value and it's entirely appropriate for programmer's to regularly go down rabbit holes where they can shave off little bits here and there. That if 20 programmers spent multiple…

Source: X post

@allenholub Or, your sprites are loaded into a contiguous chunk of GPU RAM and you compute their

@allenholub Or, your sprites are loaded into a contiguous chunk of GPU RAM and you compute their drawing entirely in a task shader and draw them in a mesh shader. To which your code will predominately be an all static and stack based procedural GLSL implementation, and your CPU->GPU interop…

Source: X post

@allenholub Or you could be drawing sprites for the UI on a resource constrained embedded device

@allenholub Or you could be drawing sprites for the UI on a resource constrained embedded device. Or needing to display millions of points in a data visualization app. There are a lot of problems that fit the scenario of 'rapid sequential GPU processing'.

Depending on what you need them to…

Source: X post

It's sad how atypical and deranged US politics have become and year by year there will be more a

It's sad how atypical and deranged US politics have become and year by year there will be more and more people who haven't been alive long to enough to even remember when it wasn't like this. In my mind, Citizens United ruling was a primary hinge point in 2010. Basically, when…

Source: X post

@TheGingerBill Discord has decent built in forum functionality.

@TheGingerBill Discord has decent built in forum functionality.

Source: X post

@jmdagdelen @JordanKutzer The trend has been consistent across all the FTP games and platforms t

@jmdagdelen @JordanKutzer The trend has been consistent across all the FTP games and platforms that people expect worlds to be free, but then are more willing to pay for things they perceive as personal items. So they tailor stores around selling skins, avatars, powerups and items a person can take with…

Source: X post

@jmdagdelen @JordanKutzer Not personal spaces, personal items. Things they take with them or can

@jmdagdelen @JordanKutzer Not personal spaces, personal items. Things they take with them or can wear. FTP economies tend to revolve around items, guns, avatars, clothes skins etc.

Personal spaces don't get as much attention. Social games are about the social interaction, the social signalling. Being…

Source: X post

@allenholub Part of the anti-architecture sentiment is that more abstraction = more steps. Not j

@allenholub Part of the anti-architecture sentiment is that more abstraction = more steps. Not just steps of execution of the code, but also steps to produce the code. Enterprise OOP Software Architecture didn't arise on the premise it made development faster. It arised on the premise that…

Source: X post

You know what'd be cool is if you could selectively tune the AI that drives your newsfeed. So, t

You know what'd be cool is if you could selectively tune the AI that drives your newsfeed. So, then you could set it to something specific like learn 3D math, or some programming language, or Greek philosophy, or a whole new language, or whatever. Then have it discern a profile…

Source: X post

@jakubtomsu_ If you make it easy to abstract, you incentivize layers of abstraction, which will

@jakubtomsu_ If you make it easy to abstract, you incentivize layers of abstraction, which will compound to the point where even skilled programmers have no idea what they are really doing.

Torvalds got a lot of flak for saying that using C is worth it even if it only keeps the C++…

Source: X post

@Wassimulator I'd like to. Just wish it supported GCC and was cross platform.

@Wassimulator I'd like to. Just wish it supported GCC and was cross platform.

Source: X post

I wish there was a non-battle-royal game that played about the speed of battlegrounds.

I wish there was a non-battle-royal game that played about the speed of battlegrounds.

The speed of battlegrounds was perfect for me, but I hate the 30-minute build of collecting guns just to die.

Source: X post

I wish some airsoft company would partner up with meta and some game studio to make a pvp online

I wish some airsoft company would partner up with meta and some game studio to make a pvp online shooter for the quest with physical gun controllers you could buy that'd match the shape and feel of real guns. Along with some solenoid for simulated recoil. I enjoy VR shooters I…

Source: X post

I carry such a great envy for those who can live entirely in a terminal with just emacs writing

I carry such a great envy for those who can live entirely in a terminal with just emacs writing C. Do you all realize how much of a pain it is to have to simultaneously deal with C#, C++, Objective-C, Swift, HLSL, Python, shell scripts, batch scripts? Across win, mac, ios and…

Source: X post

This was one of the most important lessons in programming for me. The sooner you can learn it th

This was one of the most important lessons in programming for me. The sooner you can learn it the better.

To determine 'correct' and 'good' ways to approach programming, look at actual code. Ideally codebases that have survived for many years, with many contributors, and are… https://x.com/FFmpeg/status/1850475265455251704

Source: X post

@TheGingerBill I ended up doing this in my own code. The returning type to left of _from.

@TheGingerBill I ended up doing this in my own code. The returning type to left of _from.

Source: X post

@ShinyQuagsire @AminiAllight I looked there too... and it does look they are creating their text

@ShinyQuagsire @AminiAllight I looked there too... and it does look they are creating their textures on DX11. So far it seems to me, to get a texture on windows that can import into every API, you have to make them in DX12.

Source: X post

Seriously having a fail at importing a vulkan texture into dx11. Has anyone seen any example of

Seriously having a fail at importing a vulkan texture into dx11. Has anyone seen any example of this working anywhere? Not dx11 to vulkan, but vulkan to dx11, which seems particularly more problematic for some reason.

Source: X post

My political stance with probably the strongest conviction is that we need ranked choice voting

My political stance with probably the strongest conviction is that we need ranked choice voting at all levels of government.

Source: X post

@LooperVFX That looks to be dx11 to vk, I need the other way, which seems to have some extra com

@LooperVFX That looks to be dx11 to vk, I need the other way, which seems to have some extra complication.

Source: X post

@BillyM2k Maybe should call them Upper-Leftists?

@BillyM2k Maybe should call them Upper-Leftists?

Source: X post

@allenholub Performance is huge if you are in a real-time problem domain on consumer hardware. P

@allenholub Performance is huge if you are in a real-time problem domain on consumer hardware. Particularly mobile consumer hardware. Particularly VR mobile consumer hardware. The difference between a cycle completing in 12 milliseconds vs 11 milliseconds can be a make or break in UX…

Source: X post

@technobaboo I was pretty impressed with the new builder ide

@technobaboo I was pretty impressed with the new builder ide

Source: X post

@ryanjfleury There is also an issue of 'Mind Your Problem Domain'.

@ryanjfleury There is also an issue of 'Mind Your Problem Domain'.

Someone writing backend services in JavaScript to sell compute tokens has an entirely different set of incentives to optimize around than someone writing real-time systems for mobile devices.

Source: X post

Programming languages should be seen as sets of incentives. They tend to frame problems in certa

Programming languages should be seen as sets of incentives. They tend to frame problems in certain ways, lead you to think about problems in certain ways, and tend toward certain kinds of approaches. They create sets of habits.

It's for this reason judging a language based on…

Source: X post

I wish more resource were allocated to making gtk4 a refined cross platform app solution. Web in

I wish more resource were allocated to making gtk4 a refined cross platform app solution. Web in gnome4 is the perfect browser I'd want on all OSs. All the new gnome4 apps and the tooling to make them I find quite impressive. I was never a fan of QT. Electron and using a full web…

Source: X post

Are flipvr controllers good for vrchat?

Are flipvr controllers good for vrchat?

Source: X post

@unclebobmartin @Hasen_Judi @allenholub SOLID will be remembered as the snake oil of computer sc

@unclebobmartin @Hasen_Judi @allenholub SOLID will be remembered as the snake oil of computer science.

Source: X post

@allenholub There is a more objective reason for this, and has to do with how the actual chips h

@allenholub There is a more objective reason for this, and has to do with how the actual chips have changed over the past few decades. After CPUs started to plateau from benefits in Hz increases the industry deferred to adding more cores and ALSO adding more layers of faster and faster…

Source: X post

I'm kind of addicted to stormgate. The game pisses me off so much, then when I calm down, I have

I'm kind of addicted to stormgate. The game pisses me off so much, then when I calm down, I have to go try again.

Source: X post

I watch a movie every night in popcorn palace and I am kind of running out of movies to watch. W

I watch a movie every night in popcorn palace and I am kind of running out of movies to watch. What is some incredible movie I might have never seen?

Source: X post

@allenholub I understand what OO is and it was shortsighted in many ways. What I find those stuc

@allenholub I understand what OO is and it was shortsighted in many ways. What I find those stuck on this often miss is that the more significant argument is not OO vs FP. It is OO vs Data Oriented.

Source: X post

@gobnick @jesusmnavarrol @emmma_camp_ It's pretty run-of-the-mill simple understanding of what C

@gobnick @jesusmnavarrol @emmma_camp_ It's pretty run-of-the-mill simple understanding of what Corporate America is. Corporations get big enough, they make deals between themselves, they lobby government to get special treatment. Little by little, more and more of the Government becomes a front for a network of…

Source: X post

@gobnick @jesusmnavarrol @emmma_camp_ I know🙂That was the point of my original post.

@gobnick @jesusmnavarrol @emmma_camp_ I know🙂That was the point of my original post. https://x.com/_rygo6/status/1848911800672338179 There is a real pervasive issue of people falling back to some ideological philosophy in a book, making some 'No True Scotsman' argument and foregoing critical analysis of circumstance of how things have…

Source: X post

@gobnick @jesusmnavarrol @emmma_camp_ What if a cabal of private corporations are the ones who h

@gobnick @jesusmnavarrol @emmma_camp_ What if a cabal of private corporations are the ones who have managed to consolidate so much capital, influence and reach, that they now play a role akin to central planning? Able to influence and distort both markets and government to their need?

Irrelevant of philosophical…

Source: X post

@emmma_camp_ Anytime Socialism has been tried it failed.

@emmma_camp_ Anytime Socialism has been tried it failed. And suggesting we need "Real Socialism" is a No True Scotsman Fallacy. So, the solution is Capitalism. But not the current state of US Capitalism because that is Crony Capitalism. The solution is "Real Capitalism".🙄

... It might be…

Source: X post

@SebAaltonen You'd hope for some kind of rationality and capacity of change at the federal level

@SebAaltonen You'd hope for some kind of rationality and capacity of change at the federal level of the US government, unfortunately when things get that big and bureaucratic everything just sits stuck in a stalemate.

Source: X post

Of course Elon Musk bought Twitter to affect US Politics. It's the unfortunate truth that to sur

Of course Elon Musk bought Twitter to affect US Politics. It's the unfortunate truth that to survive as a visible big corporation or wealthy elite at the top in the USA you need politicians in your pocket. Otherwise, the government attacks you and destroys you.

This is…

Source: X post

@SebAaltonen How do you deal with texture filtering then? Do you just sample the atlas multiple

@SebAaltonen How do you deal with texture filtering then? Do you just sample the atlas multiple times? Can that be comparable to built-in anisotropic filtering?

Source: X post

@zach_wendt @MalekiRe this seems like a good idea to me as well...

@zach_wendt @MalekiRe this seems like a good idea to me as well...

Source: X post

I am really curious what would happen if you designed a twitter like platform where:

I am really curious what would happen if you designed a twitter like platform where:

1. Messages could only be amplified by a real person 'Liking' it. You could not pay to promote a message to get more views. I know this is a technical problem, and impossible to do absolutely,…

Source: X post

A warehouse across the street from me has gone up for sale, and I've always wanted a warehouse,

A warehouse across the street from me has gone up for sale, and I've always wanted a warehouse, but it's like right at the edge of my budget and with only a toilet and industrial sink built into it. Completely empty otherwise but is very clean.

So, I'd have to basically live in…

Source: X post

It seems like anytime someone starts to question Rust someone always just "appears" from the bus

It seems like anytime someone starts to question Rust someone always just "appears" from the bushes, or some dark corner, to start badgering you about Rust. It's like some hidden Rust gestapo interwoven through all the social spaces.

Source: X post

Somehow I've gotten nearly a thousand followers, so I feel it important to clarify, this was nev

Somehow I've gotten nearly a thousand followers, so I feel it important to clarify, this was never supposed to be a professional nor a fully respectable twitter account. You are signing up for a shit show of stream of consciousness ramblings.

Source: X post

Is it professionally inappropriate to utilize the cartoon depiction of chad in the chad meme in

Is it professionally inappropriate to utilize the cartoon depiction of chad in the chad meme in a engineering design doc to convey the benefits of a particular design?

Source: X post

@t3dotgg On gnome you can program app front ends in C, or Vala transpiled to C, or JS which runs

@t3dotgg On gnome you can program app front ends in C, or Vala transpiled to C, or JS which runs on an instance of spidermonkey embedded in the shell with direct bindings to the gnome C libraries.

It's a pretty good design IMO. JS is a good choice for a high-level language to use for…

Source: X post

I've never actually voted for a mainstream candidate in a federal election in my entire life. I

I've never actually voted for a mainstream candidate in a federal election in my entire life. I have voted for some third-party candidates a few times, but this wasn't so much on commitment to them as it is just putting a vote to a third party.

A lot of people are always…

Source: X post

VRChat stickers feature is cool, but for some reason they missed the most important aspect of no

VRChat stickers feature is cool, but for some reason they missed the most important aspect of now being able to post memes on walls, other people need to be able to meme them to. There needs to be a 'clone sticker' option.

Source: X post

@t3dotgg fedora has been working without any issue on my framework laptop

@t3dotgg fedora has been working without any issue on my framework laptop

Source: X post

@dtupper public/private stickers?

@dtupper public/private stickers?

Source: X post

@dtupper but how else will my sticker meme go viral :(

@dtupper but how else will my sticker meme go viral :(

Source: X post

To automatically manage memory, higher level languages and VM's were created. But language runti

To automatically manage memory, higher level languages and VM's were created. But language runtimes and VMs have ended up consuming so much memory themselves that you could get away with just statically allocating everything and still be lighter.

I just launched nodejs with…

Source: X post

@term_est @TheGingerBill In my vicinity it is not uncommon for those with years spent with C++ t

@term_est @TheGingerBill In my vicinity it is not uncommon for those with years spent with C++ to realize it's terrible. Then end up either adhering to a strict subset of C-like C++, or just going back to C, or another lang entirely. I would say that's the norm from what I've seen.

Even those I know who…

Source: X post

@Jaybefaunt This is a quality documentary.

@Jaybefaunt This is a quality documentary.

Source: X post

@Yarharhar @3duaun because "I" is, of course, theoretical

@Yarharhar @3duaun because "I" is, of course, theoretical

Source: X post

The VR Mystery School Tradition

The VR Mystery School Tradition

Source: X post

@ryanjfleury @serdonke The latest fedora, gnome and flatpak I believe has generally caught up in

@ryanjfleury @serdonke The latest fedora, gnome and flatpak I believe has generally caught up in the past year or so. Even surpassed in some ways. On all my computers everything just simply works. The UX of everything, from installer to desktop, is simpler and faster than win and OSX now. Someone could…

Source: X post

It does seem probable to me that policy changes in 2010 which allowed corporations to spend unli

It does seem probable to me that policy changes in 2010 which allowed corporations to spend unlimited money on influencing politics was probably the start of the compounding political dysfunction, and consequent social dysfunction around politics. https://youtu.be/96TmkRP6K2U?si=MPN0HzZEQtnDOvqO

Source: X post

@G_S_Bhogal Wealth is a positive-sum game.

@G_S_Bhogal Wealth is a positive-sum game. Control over others is a zero-sum game. Wealth is only a positive-sum game so long as wealth does not enable control over others.

Source: X post

Something a lot of younger people involved in the VR space, or even the current social media spa

Something a lot of younger people involved in the VR space, or even the current social media space, haven't been old enough to see is how YouTube, Facebook, Twitter, etc. etc. changed culture and society as they became central. Arguably it did a complete 180 on many aspects of…

Source: X post

One of the things I just really abhor about this political cycle is that the rhetoric against Tr

One of the things I just really abhor about this political cycle is that the rhetoric against Trump compounded to such a ridiculous level that to have a discussion grounded in reality you first have to do what sounds like vigorously defending Trump just to get to a baseline…

Source: X post

Conspiracy Theory is like the spice of epistemology. Your worldview has to be pretty damn bland

Conspiracy Theory is like the spice of epistemology. Your worldview has to be pretty damn bland if it has none. To have a respectable sense of taste, and appetite for the interesting, you need to have at least a little bit of Conspiracy Theory sprinkled throughout your worldview.…

Source: X post

@pmarca People's whose Reality Tunnel is dictated entirely by Corporate Media feel their world i

@pmarca People's whose Reality Tunnel is dictated entirely by Corporate Media feel their world is under threat as Corporate Media gains greater competition.

Source: X post

Meta needs to pay whatever they need to pay to get Peter Molyneux to make a AAA quality Black an

Meta needs to pay whatever they need to pay to get Peter Molyneux to make a AAA quality Black and White 3 for Quest.

Source: X post

I feel over course of my career more of my brain power has been spent trying to unravel wild abs

I feel over course of my career more of my brain power has been spent trying to unravel wild abstraction contraptions than solving real problems. Like designing and implementing algorithm that solve a problem. Or just doing data plumbing through an application as optimally as…

Source: X post

@cnlohr I kind of like this

@cnlohr I kind of like this

Source: X post

@BattleAxeVR Beyond only offered 1920x1920 at 90hz. If it can go higher than that at 90hz, I'd s

@BattleAxeVR Beyond only offered 1920x1920 at 90hz. If it can go higher than that at 90hz, I'd still consider getting it, and just running at a lower res.

Source: X post

@TheGingerBill @kennethnym This has always been my hangup too. Vim/emacs doest have consistent U

@TheGingerBill @kennethnym This has always been my hangup too. Vim/emacs doest have consistent UX with rest of desktop gui.

I find among people who are super good at vim or emacs, they don’t use a desktop gui for much of their work. They write kernel or driver code, or something else where you can remain…

Source: X post

@ryanjfleury Will this ever work with GCC?

@ryanjfleury Will this ever work with GCC?

Source: X post

@cafreiman Capitalism in theory is simply as Adam Smith described it. Capitalism is practice is

@cafreiman Capitalism in theory is simply as Adam Smith described it. Capitalism is practice is Crony Capitalism.

Source: X post

@AntonHand https://www.researchgate.net/publication/263687304_Virtually_True_Children%27s_Acquis

@AntonHand https://www.researchgate.net/publication/263687304_Virtually_True_Children%27s_Acquisition_of_False_Memories_in_Virtual_Reality

Source: X post

@AntonHand ...but don't worry I'm sure all the CEO's and investors have the right intentions and

@AntonHand ...but don't worry I'm sure all the CEO's and investors have the right intentions and care to implant beneficial false memories in children.

Source: X post

@seanboisselle It is interesting to me to think through, if this became required, what pressure

@seanboisselle It is interesting to me to think through, if this became required, what pressure it would put on companies to push for other policies.

Source: X post

Minimum wage should be determined by what it takes to have 1/3rd of your income cover a mortgage

Minimum wage should be determined by what it takes to have 1/3rd of your income cover a mortgage on a house within 30 minutes of wherever you are required to commute to.

Source: X post

@cnlohr been happening in a lot of ways for a long time... https://www.cia.gov/readingroom/docs/

@cnlohr been happening in a lot of ways for a long time... https://www.cia.gov/readingroom/docs/CIA-RDP90-00845R000100170005-4.pdf

Source: X post

@sporadicalia Personally, I ate all the psychedelics in my early 20's. Which did lead to what yo

@sporadicalia Personally, I ate all the psychedelics in my early 20's. Which did lead to what you could call some 'Bohemian Wandering' and 'Summers of Love' complete with long hair, incense, meditation, exploring other dimensions, contact with aliens, etc. etc. All the standard the things that…

Source: X post

@keenanwoodall One update loop calling into bunch of other systems, where everything in that upd

@keenanwoodall One update loop calling into bunch of other systems, where everything in that update has explicit linear dependency wouldn't bother me.

The only thing I would question is, if you're departing from the MonoBehaviour component pattern so much, why not just depart from it entirely?…

Source: X post

After fiddling around with new the UE and Godot for past few weeks out of curiosity, I do still

After fiddling around with new the UE and Godot for past few weeks out of curiosity, I do still feel like Unity isn't going anywhere. Others still just don't 'quite' get what it is that draws people to Unity.

Reflecting on it more, I started to realize what makes Unity special…

Source: X post

Don't forget that the 1st amendment also protects code. It was on 1st amendment precedent that t

Don't forget that the 1st amendment also protects code. It was on 1st amendment precedent that the research, development and distribution of encryption software was encased in law. https://www.eff.org/deeplinks/2015/04/remembering-case-established-code-speech

In absence of 1st amendment protection, they could have just outright…

Source: X post

@amaldorai If my kids ever wanted a screen, I'd make them build that thing themselves out of all

@amaldorai If my kids ever wanted a screen, I'd make them build that thing themselves out of all open-source source software and OEM hardware from $5 week allowance. RPi with 16-bit emulator if they want games. Secondhand keyboard and monitor from goodwill that's not portable. They can play…

Source: X post

@michae1becker Hard pill to swallow is that there is some aspect of human nature which makes mos

@michae1becker Hard pill to swallow is that there is some aspect of human nature which makes most people crave being surveilled. https://youtu.be/KLHjba87JXM?si=HP9M7HGwoF5BvcsJ

Source: X post

This is the point where the aliens take the brains of every American, then return them sometime

This is the point where the aliens take the brains of every American, then return them sometime after November 6th.

Source: X post

One of the perspectives which was a one-way street for me was Marshall McLuhan. The perspective

One of the perspectives which was a one-way street for me was Marshall McLuhan. The perspective that media is a foundational effector of how a society and culture form. He has multiple books going on ad nauseum about examples and theories of this, but the gist is, the printing…

Source: X post

@yadadoo20 @DrJillStein You can't have a serious discussion about improving the US economy, US d

@yadadoo20 @DrJillStein You can't have a serious discussion about improving the US economy, US debt and internal infrastructure without seriously questioning the validity of expenditures in the US Military Industrial complex and global policing. They are intertwined.

But on this point specifically,…

Source: X post

Political talk can be good, great even, in any context. But first you have to understand the bas

Political talk can be good, great even, in any context. But first you have to understand the basics of non-violent communication (NVC is an actual book) and the rules of debate. Such as logical fallacies and the ability to discern when you are dealing with a more subjective or…

Source: X post

@DrJillStein Irrelevant of all green party positions, she is right on this. The baseline moralit

@DrJillStein Irrelevant of all green party positions, she is right on this. The baseline morality and ethics across the establishment parties is so bad that to even begin arguing any difference on a premise of greater morality or ethics is really missing the forest for the trees. Which is…

Source: X post

@yewnyx @darkswordsmantv This is great. I think you need to be a regular on the vrchat-based pol

@yewnyx @darkswordsmantv This is great. I think you need to be a regular on the vrchat-based political talk show I am wanting to start doing.

That's not meant to be in jest, few of us keep talking about trying to do this.

Source: X post

@yewnyx @darkswordsmantv I'm going to criticize you here, but don't take that as me trying to di

@yewnyx @darkswordsmantv I'm going to criticize you here, but don't take that as me trying to dissuade you from writing things out candidly in the future, as that is kind of what I hope for here.

>> I couldn't decide which establishment party I think is more malicious all points considered > aaaand now…

Source: X post

The number of people I encounter who say they cannot possibly conceive how someone could serious

The number of people I encounter who say they cannot possibly conceive how someone could seriously, and genuinely, support the other political side is concerning to me. They can only process it as some intentional, insidious, stupid, evil. It's just unthinkable to them in any…

Source: X post

@darkswordsmantv I couldn't decide which establishment party I think is more malicious all point

@darkswordsmantv I couldn't decide which establishment party I think is more malicious all points considered. This isn't from a sense of certainty of a moral equivalence. It's from when I run through all arguments and all things I see occurring, there is just too much for me to have a sense of…

Source: X post

@TheGingerBill flodin

@TheGingerBill flodin

pronounced flow-din

Source: X post

I do think people need to consider "Style C" more too. Splitting things into functions just for

I do think people need to consider "Style C" more too. Splitting things into functions just for the sake of doing so is one of those 'clean code' habits people just started doing without much thought because a book said to do it. http://number-none.com/blow/john_carmack_on_inlined_code.html

Source: X post

@micsolana Every person in the US bands together and agrees to boycott some particular thing unt

@micsolana Every person in the US bands together and agrees to boycott some particular thing until the company caves to demands and negotiates a lower price.

Or the people enact some government, or other, institution to negotiate for them.

It is still basic market economics, supply and…

Source: X post

@pmarca Psychedelics have been used by millions of people around the world for many purposes, ac

@pmarca Psychedelics have been used by millions of people around the world for many purposes, across many cultures. Associating it with one particular small group in one particular period of time is not an honest take.

Source: X post

@pmarca Do you believe society got more, or less, sane since the end of the 70's and the lowered

@pmarca Do you believe society got more, or less, sane since the end of the 70's and the lowered prevalence of psychedelic use?

Source: X post

@cafreiman GDP per capita is the ratio of a countries GDP in relation to population size. It is

@cafreiman GDP per capita is the ratio of a countries GDP in relation to population size. It is not a measure of individual income nor how much richer each person has become.

Median income per capita is what measures individual income.

GDP per capita and median income per capita should…

Source: X post

I remember one time in VRC I was talking to someone in Australia about the covid lockdowns and h

I remember one time in VRC I was talking to someone in Australia about the covid lockdowns and how a bunch of American media was freaking out about Australian lockdowns being too authoritarian. The person in Australia who I was asking this is generally an anti-authoritarian type,…

Source: X post

@ylecun @DeryaTR_ The more understand about the world and history, the more you get a sense it i

@ylecun @DeryaTR_ The more understand about the world and history, the more you get a sense it is plausible that government could be used to improve society far more than it currently does, which tends you towards left wing political philosophy.

Unfortunately, establishment democrat liberals…

Source: X post

@yewnyx I tend to walk the fine thin line right at edge of anything. I can’t really help it. Thr

@yewnyx I tend to walk the fine thin line right at edge of anything. I can’t really help it. Thresholds irritate me.

Source: X post

someone really needs to invent a set of power tools you can keep in the kitchen and use in the s

someone really needs to invent a set of power tools you can keep in the kitchen and use in the sink just for cleaning dishes

Source: X post

I stand corrected

I stand corrected https://www.amazon.com/Electric-Scrubber-Batteries-Cordless-Effortless/dp/B0CSYSPP5X/ref=sr_1_50_sspa?crid=3H728Q60PPB4R&dib=eyJ2IjoiMSJ9.l-mQFnWAKPqLDhvaCsmMC_Ieruwh5sH30wSeZuYQuKxouOYg78QzUJ6vYLxx4F6YEK6lzBCNImCAxo52TBF5GHRSNefw6n93tzH-cyeF7S4.MWquguKa2swlXghw0MO--MJWKunpI1k97DvD8Vib1xk&dib_tag=se&keywords=dishwashing%2Bpower%2Btool&qid=1726809936&sprefix=dishwashing%2Bpowe%2Btool%2Caps%2C200&sr=8-50-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGZfbmV4dA&th=1

Source: X post

The stability of the US relies on everyone believing the election is real and secure. Even just

The stability of the US relies on everyone believing the election is real and secure. Even just 10% becoming absolutely convinced otherwise could topple the whole thing into disarray. It's very serious. If the only solution to people who have doubts about this are to have the…

Source: X post

@NOTimothyLottes I have been diagnosed with multiple health issues over my life that I "cured" w

@NOTimothyLottes I have been diagnosed with multiple health issues over my life that I "cured" with some cheap off the shelf herb or supplement or a diet change that was only mentioned in a handful or sporadic studies lost in the mass pile of well-funded pharmaceutical studies. I now always look…

Source: X post

@michae1becker Link to reddit thread?

@michae1becker Link to reddit thread?

Source: X post

Trump makes perfect sense... if you are entirely in the reality tunnel create by the media bubbl

Trump makes perfect sense... if you are entirely in the reality tunnel create by the media bubble which favors him.

Harris makes perfect sense... if you are entirely in the reality tunnel create by the media bubble which favors her.

The bigger problem is not one or the other…

Source: X post

@RealJakeBroe More like this:

@RealJakeBroe More like this: https://youtu.be/bhcrgQihRcs?si=r301HUM3TOEUL-hk

Source: X post

@matthewstoller I'd be curious to see someone try to come up with metrics to demonstrate this.

@matthewstoller I'd be curious to see someone try to come up with metrics to demonstrate this.

Not that I doubt it, I suspect it myself, just I've never found a means to argue it objectively.

Source: X post

If you don't actively make an effort to talk to people about political subjects, find ways to in

If you don't actively make an effort to talk to people about political subjects, find ways to influence and explain your view to people in a way they'd understand, then don't complain when other people end up believing and pushing for things contrary to your wants. You…

Source: X post

The graphics, design and sound of Stormgate is a bit more bland than Starcraft, but I have come

The graphics, design and sound of Stormgate is a bit more bland than Starcraft, but I have come to believe the design of the gameplay is a complete level up and improvement over Starcraft.

Source: X post

Seth Ickerman using AI to make a gunship music video...

Seth Ickerman using AI to make a gunship music video... https://youtu.be/dHAP3E5e2jc?si=IazPnIfIL6drao_B

Source: X post

Bigscreen beyond audio strap arrived. It is comfy. Worth the 129. I'd say sound quality is what

Bigscreen beyond audio strap arrived. It is comfy. Worth the 129. I'd say sound quality is what I'd expect for around $50 headphones. Which is worse than index. Index I'd put at about $100-$150 worth of sound quality. So, for the price, it is appropriate, since I presume the…

Source: X post

and from someone who has been through probably 20 grand worth of headphones in their lifetime, t

and from someone who has been through probably 20 grand worth of headphones in their lifetime, then three different headphones and two different dacs just for the beyond. Hifiman XS Edition + Helm dac is the best VR audio solution I've run into for bunch of reasons I could type…

Source: X post

The bigger issue is not that voters are ignorant and uneducated. The bigger issue is that the pr

The bigger issue is not that voters are ignorant and uneducated. The bigger issue is that the problems of the world are too ugly and too uncomfortable for most to look at. So they have a tendency to be taken in by who will most effectively maintain a veil of illusion for them.…

Source: X post

It'd really have sucked to get hired at Unity into some high level executive role thinking your

It'd really have sucked to get hired at Unity into some high level executive role thinking your going to be the boss of the next Autodesk or Adobe, throwing around some cut throat business tactics, only to discover you have to deal with the indie gamedev community and they are a…

Source: X post

Issue #1 is that the doomsday clock is the closest it's ever been to midnight in history. Every

Issue #1 is that the doomsday clock is the closest it's ever been to midnight in history. Every other supposed issue isn't going to seem that big a deal post-nuclear-war. https://www.statista.com/statistics/1072256/doomsday-clock-development/

Source: X post

@cnlohr Something about being designed from the ground up for security and sandboxing. Which is

@cnlohr Something about being designed from the ground up for security and sandboxing. Which is still not something you can depend on a .NET VM for (not sure about java).

Also probably to piggyback off all the security and sandbox R&D that has gone into things like V8 and spidermonkey.

Source: X post

@cnlohr It's the ultimate culmination of developers having no sense of what is happening at the

@cnlohr It's the ultimate culmination of developers having no sense of what is happening at the machine level... "Let's just make a whole new abstracted pseudo-machine language that works how we assume the machine works instead of how it really does".

pNaCl was the right way. I'm hoping…

Source: X post

I honestly don't know which one completely fabricated more about the other. It just seems the na

I honestly don't know which one completely fabricated more about the other. It just seems the name of the game now. Which is really quite bad. I partly do blame it on Trump, I think he proved that you could employ "reality TV dramatization" in the political arena to great…

Source: X post

The thing which is most difficult about improving oneself as a programmer is that typically the

The thing which is most difficult about improving oneself as a programmer is that typically the person you want to listen to the most is some seemingly weird, semi-hermit, in some odd corner of the web, that is not very good at explaining to you why you should be listening to…

Source: X post

@TBendixson I think many would gladly pay for current open source work and would fully trust the

@TBendixson I think many would gladly pay for current open source work and would fully trust their creator. The complication however comes about when said product is sold, bought, or enters political turmoil. Then all of a sudden some tool you rely on and paid for is 100% at the whims of…

Source: X post

@per_arneng @ChShersh What if you just viewed the C file as the package?

@per_arneng @ChShersh What if you just viewed the C file as the package?

Source: X post

@Hasen_Judi I came to a similar conclusion. I see it as the only modern lang that came from firs

@Hasen_Judi I came to a similar conclusion. I see it as the only modern lang that came from first fully un-learning all the issues with C++ and truly restarting from C.

This is my personal bigger issue with Rust and even Zig to a lesser extent. I see them as starting from a premise of…

Source: X post

@ChShersh @per_arneng That’d be the opposite direction of single file header libs which try to c

@ChShersh @per_arneng That’d be the opposite direction of single file header libs which try to compact a whole system into a single file…

Source: X post

@chromaticc_ @Hasen_Judi One would be understanding how to design systems which do not need free

@chromaticc_ @Hasen_Judi One would be understanding how to design systems which do not need free in the first place. Or only minimally need it. C++, and other OOP langs of the time, incentivized a kind of system design that had heavy reliance on granular use of the heap, which made manual use of free…

Source: X post

WebXR?

WebXR?

Source: X post

new exurb1a

new exurb1a https://youtu.be/o1OsDWT_DUc?si=0-dVXc9Ntt2dNbiE

Source: X post

@MalekiRe My personal hierarchy of wants from some democratic process would be.

@MalekiRe My personal hierarchy of wants from some democratic process would be.

1. How do I stop actively funding mass murder and oppression of people in other countries?

2. How do I ensure the basic human rights? Life, liberty, pursuit of happiness.

3. How do I keep political leverage…

Source: X post

@philiprosedale What other ways do you think there are?

@philiprosedale What other ways do you think there are?

Source: X post

I love how when some new study comes out with some new questionable finding about COVID treatmen

I love how when some new study comes out with some new questionable finding about COVID treatments I always see a horde of people citing some study from a year or more ago to declare how this has already been disproven. Really... come on...

All points considered, I really could…

Source: X post

@ChShersh 150k a year with a family in the bay area is considered 'low income'. Someone making e

@ChShersh 150k a year with a family in the bay area is considered 'low income'. Someone making even 80k a year somewhere else can realistically have better quality of life.

You can be a family, in SF, making 150k a year, living in subsidized low-income housing paycheck to paycheck for…

Source: X post

@philiprosedale Which is then always at odds with, to make things you need to not be homeless.

@philiprosedale Which is then always at odds with, to make things you need to not be homeless.

This has been my conundrum the past few years.

Source: X post

I am very Pro-Misinformation.

I am very Pro-Misinformation.

However, I have mixed feeling about Disinformation.

The difference between Misinformation and Disinformation is often not highlighted in media enough. Their conflating of the two is quite suspicious to me.

See Disinformation is intentional.…

Source: X post

I am going to declare myself undecided on who to vote for in the 2024 Presidential election. If

I am going to declare myself undecided on who to vote for in the 2024 Presidential election. If you would care to sway me, please present one argument per tweet.

However, I am going to adhere to a few rules on this. I may just mute your reply if it doesn't follow the rules. So…

Source: X post

@AntonHand I feel like a lot of genuine left-wing base has been disrupted or gone awry the past

@AntonHand I feel like a lot of genuine left-wing base has been disrupted or gone awry the past few decades. It's seems too often that it strays into like strict obsession with communism, socialism, marxism, or it gets a bit too 'tankie', or it gets a bit too into identity politics, or some…

Source: X post

zed is pretty sweet, could be my main if they get win released.

zed is pretty sweet, could be my main if they get win released.

Source: X post

Even though I am as academically and philosophically left wing in principle as someone could get

Even though I am as academically and philosophically left wing in principle as someone could get, I often find it difficult to be close friends with most liberals. Because there always comes some point where they do this like ritual or purity test where your supposed to repeat…

Source: X post

@DrJillStein @TheDemocrats "total number of uninsured and under-insured people has INCREASED sin

@DrJillStein @TheDemocrats "total number of uninsured and under-insured people has INCREASED since implementation: 77.6 million in 2010 to 86.1 million in 2024"

What does that come from?

Source: X post

@Jonathan_Blow Wait whats wrong with it? Was thinking about getting one.

@Jonathan_Blow Wait whats wrong with it? Was thinking about getting one.

Source: X post

@DrJillStein damn I didn't know green party was so based

@DrJillStein damn I didn't know green party was so based

Source: X post

@_LucasRizzotto @cixliv From handful articles I read it sounds less like it has to do with apply

@_LucasRizzotto @cixliv From handful articles I read it sounds less like it has to do with applying basic content standards and more to do with an escalating political feud specifically with the Brazilian prime minister over multiple things. Gist I got is, the prime minister requested something which…

Source: X post

@Jonathan_Blow @ryanjfleury The market lacks the incentives to do so.

@Jonathan_Blow @ryanjfleury The market lacks the incentives to do so.

Profit incentive requires new hardware and licenses to be sold. Which incentivizes software to be slower and slower to make people feel new hardware is needed. It incentivizes software to have more and more features added, and be changed…

Source: X post

@jeremy_soller If you give something a name, an argument for why it is superior to other things,

@jeremy_soller If you give something a name, an argument for why it is superior to other things, a narrative about how it's solving some significant problem, and a few symbols or acronyms to dog whistle with, then you inevitably get a crowd of people forming a movement that evangelize it and…

Source: X post

If there was no top-down moderation of anything on the web, and it all came down to each individ

If there was no top-down moderation of anything on the web, and it all came down to each individual selectively blocking malicious individuals or content they don't want to see, what do people honestly think would end up happening?

Source: X post

@DrJillStein "hire operatives to infiltrate and sabotage us" -- Interesting, are there any repor

@DrJillStein "hire operatives to infiltrate and sabotage us" -- Interesting, are there any reports or articles to learn more about this?

Source: X post

@ryanjfleury Install latest fedora with latest gnome 4. It's pretty damn impressive how polished

@ryanjfleury Install latest fedora with latest gnome 4. It's pretty damn impressive how polished and refined the UX is from beginning to end. Honestly rivals OSX now while being both simpler and lighter than both windows and OSX, yet still having the full power of linux terminal if you want…

Source: X post

You ever write a tweet so spicy you just leave it sitting there all day daring yourself in diffe

You ever write a tweet so spicy you just leave it sitting there all day daring yourself in different ways to tweet it.

Source: X post

@reduzio Thing that's tripped me up about this in recent years, before I saw C or C-Like C++ as

@reduzio Thing that's tripped me up about this in recent years, before I saw C or C-Like C++ as the high-performance dialect. Then more modern C++ as the mid-level performance dialect. Then things like C# or V8 for when performance didn't matter that much. But in these past few years .NET…

Source: X post

@lonjil @LinaAsahi Has there been a case where a highly skilled C programmer and a comparably sk

@lonjil @LinaAsahi Has there been a case where a highly skilled C programmer and a comparably skilled Rust programmer both start work on a new driver of comparable complexity. Then the timelines are compared of them getting it functioning in an adequately bug free state?

Source: X post

@LinaAsahi Personally, I do wish the Rust developers would leave the Linux Kernel alone and let

@LinaAsahi Personally, I do wish the Rust developers would leave the Linux Kernel alone and let it carry on with pure C. Not because of anything against Rust, but because I am far more curious and interested to see what a kernel would be like if it was developed in Rust from the ground up…

Source: X post

@AntonHand come in VRC it is the VR dev social network, some are even in LA

@AntonHand come in VRC it is the VR dev social network, some are even in LA

Source: X post

@dotkrueger Right, it would tank the stock price, that is why he'd be incentivized to balance se

@dotkrueger Right, it would tank the stock price, that is why he'd be incentivized to balance selling shares with just giving away shares.

Source: X post

@cnlohr @asyncrevolution There is a common 'left' argument that uses modern monetary theory to g

@cnlohr @asyncrevolution There is a common 'left' argument that uses modern monetary theory to gish gallop around the negatives of excess money printing to try and dissociate government spending from the consumer price index. It formed as a retort to people who are against taxation for public services to…

Source: X post

@asyncrevolution @cnlohr You don't need to try and convince people the sky isn't blue to argue g

@asyncrevolution @cnlohr You don't need to try and convince people the sky isn't blue to argue government should use taxes more intelligently to serve people. Most people aren't that stupid and it ends up hurting the argument.

Source: X post

@pigdev Because out in the wild "Object Oriented Architecture And Principles" are primarily bike

@pigdev Because out in the wild "Object Oriented Architecture And Principles" are primarily bikeshedding.

Source: X post

I remember years ago, over a decade, when talking to some people working close to .NET and also

I remember years ago, over a decade, when talking to some people working close to .NET and also Java, they had this ideal that bytecode VM's like .NET and Java would eventually be faster than statically compiled languages. The claimed reason was that having the program as an…

Source: X post

@nothings Your comment was fine. You just ended up trending in a part of algorithm which it knew

@nothings Your comment was fine. You just ended up trending in a part of algorithm which it knew would get knee jerk responses.

The secret to posting anything critical on twitter is ensure it's at least a few paragraphs to a page long. People who want to skim and reply fast will…

Source: X post

https://x.com/_rygo6/status/1828563795582574709/photo/1

https://x.com/_rygo6/status/1828563795582574709/photo/1

Source: X post

@cnlohr Everything optimizes around the incentives it exists within.

@cnlohr Everything optimizes around the incentives it exists within.

Source: X post

@afoxdesign That's pretty much a primary use case of vrchat and partly why it's so popular.

@afoxdesign That's pretty much a primary use case of vrchat and partly why it's so popular.

Although, if you can't do it in your anime catgirl / furry avatar it's NGMI. https://x.com/_rygo6/status/1826823496284209492

Source: X post

@TheGingerBill Language and tool design is about incentives as much as it is the elegance of any

@TheGingerBill Language and tool design is about incentives as much as it is the elegance of anything in isolation.

Make package use extremely easy, you get tons of packages.

Make heap allocation and clean up extremely easy, you get lots and lots of heap allocation everywhere.

Make…

Source: X post

@Hasen_Judi There is truth to this, but there is also another truth in the subject of 'Informati

@Hasen_Judi There is truth to this, but there is also another truth in the subject of 'Information Overload' where learning selective attention can be more valuable.

If you could be in a room with tons of stimuli going simultaneously, then selectively, consciously, focus on specifically one…

Source: X post

Despite faults Dorsey has, among the big successful tech CEO's I believe he has always been one

Despite faults Dorsey has, among the big successful tech CEO's I believe he has always been one of the most acute in recognizing the nature of the web, the direction it is going, and technology associated. https://x.com/TheBTCTherapist/status/1827499056324821048

Source: X post

Whenever one political side tries to convince me not to vote for the other political side, it al

Whenever one political side tries to convince me not to vote for the other political side, it always makes me want to vote for that other side. Because for some reason it's been completely normalized that if you are throwing dirt against a political opponent you are supposed take…

Source: X post

What's the difference between a Software Developer and a Software Engineer?

What's the difference between a Software Developer and a Software Engineer?

My personal definition has always been similar to that of the difference between a someone like a Structural Engineer or a Civil Engineer, and any other worker who would work on the construction of…

Source: X post

Is Capitalism good or bad?

Is Capitalism good or bad?

One thing that drives me crazy is that this argument goes round and round with people rarely recognizing they are operating on two entirely different definitions.

Most political arguments I believe are of this nature if you really cornered those…

Source: X post

@elonmusk There is no economic incentive to have kids, so in a culture increasingly, and predomi

@elonmusk There is no economic incentive to have kids, so in a culture increasingly, and predominately, dictated by economic incentives, increasingly people have less kids.

Source: X post

@zig131 @AntonHand Number of tech startups had no profit for years. Even over a decade. I think

@zig131 @AntonHand Number of tech startups had no profit for years. Even over a decade. I think twitter only became profitable this year?

Investors may bankroll things if it feeds into other incentives. I suspect there are too many things of value adjacent to VRC that someone would find the…

Source: X post

The silliest thing to me about any 'VR Metaverse' effort at this point in time.

The silliest thing to me about any 'VR Metaverse' effort at this point in time.

If you can't take an avatar setup for VRChat in Unity and get it exported to this new platform minimal struggle in less than 5 minutes, and have it show up relatively similar to how it did in VRChat,…

Source: X post

Some these young whippersnappers may be able to leetcode some problems faster than me, but can t

Some these young whippersnappers may be able to leetcode some problems faster than me, but can they watch a 30 second video of some Unity project exhibiting some inanely incomprehensible quirk and have an immediate sense of what the specific causes is? Then quickly go into a…

Source: X post

I rather liked this talk:

I rather liked this talk: https://youtu.be/ZSRHeXYDLko?si=neGS369Y9hZxsyRy There is a lot of truth in it. It is worth the watch. It goes through and highlights all the degradation happening in the software industry and how this is dangerous. Literally, and also existentially for society.

I've realized…

Source: X post

@darkswordsmantv @ariesrclark Well not pull them from VRChat, as in their servers. Be able to lo

@darkswordsmantv @ariesrclark Well not pull them from VRChat, as in their servers. Be able to load the same asset bundle from user's local drive.

You can already point the default unity assetbundle load method to a .vrca and it loads right up. There isn't anything special about the format.

Source: X post

@darkswordsmantv @ariesrclark I don't see it being different than a game giving you an 'Open Fil

@darkswordsmantv @ariesrclark I don't see it being different than a game giving you an 'Open File Dialogue' to browse to a PNG file and import it. It's a generic container format the user exported themselves from unity.

If you are doing this to load them into some ripper program and then publish them to a…

Source: X post

@dankvr I am fond of projects like these. Although I've begun to lean towards thinking not even

@dankvr I am fond of projects like these. Although I've begun to lean towards thinking not even VRM is fully sufficient at this point.

You'd lose a lot with the amount of functionality that has been embedded in the VRC radial menus, unity animator trees, physbones and shaders.

There…

Source: X post

@AntonHand I don't see at happening. There are enough people out there with money who recognize

@AntonHand I don't see at happening. There are enough people out there with money who recognize its significance. If it did fail the bigger risk is it gets taken over by someone who messes it all up.

Even if it did, high probability people would just migrate to the nearest unity-based…

Source: X post

@TheGingerBill Odin is by far most interesting new generalized language to me.

@TheGingerBill Odin is by far most interesting new generalized language to me.

Only reason I don’t use it is I don’t feel I have any issues with C for what I’m currently doing, and debate how much certain things in Odin would help my exact problem domain.

I’d be interested to hear from your…

Source: X post

Something you still can't do in C++ but you can do in C just fine.

Something you still can't do in C++ but you can do in C just fine.

They finally added the best missing feature from C but had to enforce strict ordering to make it a bit less useful. https://x.com/_rygo6/status/1826498498763854130/photo/1

Source: X post

Playing Stormgate, which very much follows the Starcraft formula, makes me realize what so many

Playing Stormgate, which very much follows the Starcraft formula, makes me realize what so many modern games miss which makes me dislike modern games.

Discoverability through gameplay.

In Starcraft/Stormgate you hover over build icons, read an extremely short one sentence…

Source: X post

No C#, you did not need to add 'records'.

No C#, you did not need to add 'records'.

Source: X post

@yewnyx Maybe that is the solution... something to track and gauge your bias. Then you could cho

@yewnyx Maybe that is the solution... something to track and gauge your bias. Then you could choose to have your bias be visible.

Source: X post

@VirtualRageMstr I don't trust culture and society at large to appropriately determine perspecti

@VirtualRageMstr I don't trust culture and society at large to appropriately determine perspective in the current way that media functions.

I don't innately trust myself either, because susceptibility to propaganda is a flaw of human nature itself, but I have learned a few habits to be less…

Source: X post

looks like there are whole categories of structs which validation won't catch the wrong sType on

looks like there are whole categories of structs which validation won't catch the wrong sType on if that that struct is set as pNext

if you have some incomprehensible error, check the stype on all of your pNext's

Source: X post

How do you design a news feed so the most accurate and nuanced perspective floats to the top rat

How do you design a news feed so the most accurate and nuanced perspective floats to the top rather than the most inflammatory spin, that tends to always create greater engagement?

Source: X post

@chhopsky I see the bigger root isn't so much that people react to things which upset them. They

@chhopsky I see the bigger root isn't so much that people react to things which upset them. They react to things which upset them over media. This creates the scenario where media could show you the same 10 emotionally upsetting things over and over, making the impression on someone that…

Source: X post

@AntonHand Prometheus was supposed to be Ridley Scott's big sci-fi movie where he finally got bu

@AntonHand Prometheus was supposed to be Ridley Scott's big sci-fi movie where he finally got budget and permission to do all of his philosophical intellectual epic sci-fi ideas. Then part way through the studio decided to market it as next big Ridley Scott dumb action movie blockbuster.…

Source: X post

1.5 days debugging to find out one of my sTypes was wrong.

1.5 days debugging to find out one of my sTypes was wrong.

Thanks vulkan validaiton layers, where were you on that one.

Source: X post

@tsoding Are you implying you are somehow the normal one amongst a bunch of freaks?

@tsoding Are you implying you are somehow the normal one amongst a bunch of freaks?

Source: X post

Arguments between people about the two presidential candidates come off to me like two Storm Tro

Arguments between people about the two presidential candidates come off to me like two Storm Troopers arguing over who will be the new Emperor.

To the Storm Troopers it probably seems like there is much on the line and at risk.

To someone removed from it all, it's two clones,…

Source: X post

@Hasen_Judi It’s a reasonable question if there are loose enough specifics on exact syntax.

@Hasen_Judi It’s a reasonable question if there are loose enough specifics on exact syntax.

Thing that drives me crazy is expecting precision on every little part of very basic technical trivia because I just don’t keep that stuff in short term muscle memory. I find the older you are the…

Source: X post

windows notes app is now asking me to sign in

windows notes app is now asking me to sign in

if the windows calculator ever asks me to sign in I swear that is my rage quite windows day

Source: X post

'The Browser', whatever that means in any sense, is the only thing which has been given cultural

'The Browser', whatever that means in any sense, is the only thing which has been given cultural permission to exist in a manner that can enable the metaverse to form as it needs to.

Some people fought hard to carve that space out in the collective psyche years ago.

Doesn't…

Source: X post

Has a CI system ever existed that did not have false failures?

Has a CI system ever existed that did not have false failures?

Source: X post

@gfodor Is WorldID similar to https://proofofhumanity.id/?

@gfodor Is WorldID similar to https://proofofhumanity.id/?

I've been wanting one of these schemes to work out. Just waiting for one to evolve enough out in the wild to prove their assumptions about game theory works.

If one actually finds a decent way to enforce 1 ID for 1 real person, we…

Source: X post

@cnlohr @khlorghaal but what abut file transfers?

@cnlohr @khlorghaal but what abut file transfers?

Source: X post

@cnlohr but what if I lose a packet??

@cnlohr but what if I lose a packet??

Source: X post

Is the propaganda more extreme now? Or is it that the internet has enabled us to see multiple pr

Is the propaganda more extreme now? Or is it that the internet has enabled us to see multiple propaganda bubbles simultaneously, making us more aware of how deeply subsuming propaganda can be to a person's psyche and how pervasive it really is?

Source: X post

@technobaboo Most can't compete on real user testing and iteration to the degree apple can. It c

@technobaboo Most can't compete on real user testing and iteration to the degree apple can. It costs too much for startups and the time it can take makes it hard to justify the ROI even among companies that do have the capital. Microsoft has made so many catastrophic UX decisions in the past.…

Source: X post

https://youtu.be/P9Q3crLWQY8?si=0_JdTyrtAP14MGGz

https://youtu.be/P9Q3crLWQY8?si=0_JdTyrtAP14MGGz

Source: X post

@BenjaminDEKR @sog_on_bird_app Pretty much.

@BenjaminDEKR @sog_on_bird_app Pretty much.

US government already passes out billions to corporations to keep them propped up. Certain industries in the US private sector would have imploded multiple times over if they didn't.

US private tech sector also wouldn't have happened without billions in Federal…

Source: X post

@svpino Industry wants another iPhone moment bad, but we aren't going to get it.

@svpino Industry wants another iPhone moment bad, but we aren't going to get it.

Source: X post

@lexfridman The bigger issue isn't that an elected President makes radical changes to how the Fe

@lexfridman The bigger issue isn't that an elected President makes radical changes to how the Federal Government operates.

The bigger issue is, even with all their might, any elected official seems incapable of deeply affecting anything other than a handful of surface level issues.

Source: X post

After spending a good amount of time in VisionOS 2.0 now, I have to say. For all the credit Appl

After spending a good amount of time in VisionOS 2.0 now, I have to say. For all the credit Apple Vision Pro gets, and despite all the criticism it gets, I still think it's underrated in one aspect. That being the thing which Apple has always been the leader in. UX.

Even with…

Source: X post

@ryanjfleury @ludwigABAP @om_nommy Industry needs a wakeup call. It's gotten so bad and filled w

@ryanjfleury @ludwigABAP @om_nommy Industry needs a wakeup call. It's gotten so bad and filled with so much useless bullshit. So much entrenched nonsense. I don't believe there is any way to not ruffle some feathers to speak what should be basic obviosities.

Although, traditionally, a non-serious presentation…

Source: X post

@MichaelAArouet Because the alternative being sold to them is Crony Capitalism.

@MichaelAArouet Because the alternative being sold to them is Crony Capitalism.

Source: X post

@materkel Nothing is "Decentralized" as a simple and blanket absolute. Everything is on a gradie

@materkel Nothing is "Decentralized" as a simple and blanket absolute. Everything is on a gradient of decentralization. It's a question of, is it decentralized enough to serve a purpose beyond alternatives and provide something of benefit?

I would say for Solana, absolutely. It's just a…

Source: X post

@Duncan__Cragg ya amazon fits the description too

@Duncan__Cragg ya amazon fits the description too

Source: X post

@TheJackForge Keep in mind $150k a year qualifies you as "low income" in SF if you are a family.

@TheJackForge Keep in mind $150k a year qualifies you as "low income" in SF if you are a family. Which is essentially the poverty threshold in SF terms.

Source: X post

It's irrational to claim "centralized planning doesn't work" while Walmart serves 255 million cu

It's irrational to claim "centralized planning doesn't work" while Walmart serves 255 million customers weekly through large-scale centralized planning of their corporate infrastructure and resources. All the while steamrolling the entire market of small business mom and pop…

Source: X post

I realize when it comes to OOP and cache naive programming styles dying out it is probably the c

I realize when it comes to OOP and cache naive programming styles dying out it is probably the case that Planck's Principle applies: https://en.wikipedia.org/wiki/Planck%27s_principle That advances in science don't come from good reason, they come from the prior generation dying.

Anyone who understands…

Source: X post

I already suck at stormgate. Really bad. The game has only been out like a week? How are people

I already suck at stormgate. Really bad. The game has only been out like a week? How are people this good already.

Source: X post

@ryanjfleury It's decent if you disable every new thing and essentially turn it back into win 10

@ryanjfleury It's decent if you disable every new thing and essentially turn it back into win 10.

Source: X post

@philiprosedale Came across this study the other day which I found interesting. Highlighting how

@philiprosedale Came across this study the other day which I found interesting. Highlighting how public federal funding in US tech was responsible for the basic research and long-term high-risk deep tech R&D that proved out the foundations for the private sector to bootstrap the consumer…

Source: X post

Where did I go wrong in life? https://x.com/_rygo6/status/1818863350522298386/photo/1

Where did I go wrong in life? https://x.com/_rygo6/status/1818863350522298386/photo/1

Source: X post

@RyanR3STL3SS I am the bottom of the rabbit hole.

@RyanR3STL3SS I am the bottom of the rabbit hole.

Source: X post

@ryanjfleury People on the outside typically don't have access to internal financials to discern

@ryanjfleury People on the outside typically don't have access to internal financials to discern when a company is recklessly spending, or expanding too much, and push back against it. At least in my scenario, amongst workers I know, the blame of layoffs very much did go on too much…

Source: X post

Politics is kind of like a market.

Politics is kind of like a market.

If you keep buying it as it is currently served they'll keep serving it as such.

Source: X post

People: VR is an escape from reality.

People: VR is an escape from reality. Same People: What the corporations pay billions to broadcast at me across all the screens is creating an accurate impression of reality.

Source: X post

@beeforbacon1 Anything that legitimizes Bitcoin offers a disruption to CBDC. Even if that legiti

@beeforbacon1 Anything that legitimizes Bitcoin offers a disruption to CBDC. Even if that legitimizing comes from the US Fed itself. Bitcoin is a kind of Trojan horse.

Source: X post

I haven't tried C2lang at all, but this little snippet off it's front page I very much agree wit

I haven't tried C2lang at all, but this little snippet off it's front page I very much agree with: "The concept of this is simple: when programming a developer has to divide his/her brain-power between the problem-domain and the solution-domain. The problem-domain contains the…

Source: X post

@TheGingerBill What made me notice Odin among all other new langs was it seemed to have the best

@TheGingerBill What made me notice Odin among all other new langs was it seemed to have the best no-BS no-fluff feature set to focus explicitly on graphics and data oriented programming. I could see staying close to data oriented and graphics, producing more code samples and articles…

Source: X post

@mahoneymatic @andybiar ... my one attempt to make a patreon and discord to get something going

@mahoneymatic @andybiar ... my one attempt to make a patreon and discord to get something going went horribly, so I'm probably not good to ask. You get more than 64-ish people in your discord and anarchy no longer works as an organization scheme, and that's the only way I know.

Source: X post

If the medium can be produced via cameras, such as photos, videos, 3D scans etc. Then culture wi

If the medium can be produced via cameras, such as photos, videos, 3D scans etc. Then culture will be preoccupied with the external physical world and their own physical bodies. Always hunting for, on the lookout for, that one unique 'chance' occurrence to capture with a camera.…

Source: X post

https://youtu.be/Av96iIRa0f8?si=y-v7PQPtjGuZXfR2

https://youtu.be/Av96iIRa0f8?si=y-v7PQPtjGuZXfR2

Source: X post

@amaldorai ...that also happens to roughly be the meaning of the word 'HyperNormalization' which

@amaldorai ...that also happens to roughly be the meaning of the word 'HyperNormalization' which has a whole great documentary about it from the BBC covering the last 50-ish years or so: https://www.youtube.com/watch?v=Gr7T07WfIhM

Source: X post

@amaldorai Isn't that how it has always been though?

@amaldorai Isn't that how it has always been though?

Only difference I see now is, there is a higher chance you will be exposed to different media hierarchies repeating different things. Which increases the odds of someone noticing a crack in 'the matrix'.

Also, this vid I'm going to post…

Source: X post

If you don't use objects and virtual you'll end up just reinventing vtables at some point.

If you don't use objects and virtual you'll end up just reinventing vtables at some point.

Except most of the time all you needed was a function pointer and now you have way more vtables everywhere than you needed

Source: X post

https://x.com/_rygo6/status/1815975263211250083/photo/1

https://x.com/_rygo6/status/1815975263211250083/photo/1

Source: X post

TBH, I was losing all hope in the democratic base over Biden turning into a zombie in front of e

TBH, I was losing all hope in the democratic base over Biden turning into a zombie in front of everyone's eyes, while most everyone seemed ignore it or gaslight the obvious.

Whole time I am thinking, if you can't recognize basic failure in your main guy front and center how do…

Source: X post

@cnlohr I think it learns to ignore responses based on your responses. So, if you like or respon

@cnlohr I think it learns to ignore responses based on your responses. So, if you like or respond to more, then it hides less.

Source: X post

@Jonathan_Blow There are local bakeries where I live in the US that don't cause a reaction for m

@Jonathan_Blow There are local bakeries where I live in the US that don't cause a reaction for me, whatever it is in response to. I think it's because most bakeries just buy wheat from mass produced sources, but some smaller farms and sources don't have the issue.

It should be studied to prove…

Source: X post

I wonder if those who prefer an entirely keyboard based workflow like the terminal, emacs or vim

I wonder if those who prefer an entirely keyboard based workflow like the terminal, emacs or vim for all development were at any point top-tier PC gamers?

Because having to use a mouse never felt like a bottleneck for me at all, I am incredibly fast and accurate with a mouse.…

Source: X post

@FreyaHolmer I've tried to start two discords, and once they get past about 64 people things sta

@FreyaHolmer I've tried to start two discords, and once they get past about 64 people things start to seem 'odd'. Then by the time they start getting past 100 is when I decide to just give up because it requires more energy and authority to deal with than I care to give. You can't moderate…

Source: X post

@saori_xbt Thankfully that's the most hopeful part concerning the controversy of crypto and web3

@saori_xbt Thankfully that's the most hopeful part concerning the controversy of crypto and web3. Most people don't have some deep understanding and conviction on the subject. Most people simply don't care.

Media channels said something was bad, some mass percentage repeated the thing was…

Source: X post

@saori_xbt Something in the crypto web3 space is critical to have this be what it needs to be.

@saori_xbt Something in the crypto web3 space is critical to have this be what it needs to be.

What exactly that is, and how exactly it will look, I am not sure of yet.

Source: X post

@AntonHand this is such a good short film idea...

@AntonHand this is such a good short film idea...

Source: X post

The "metaverse", or "social vr", or "spatial social platform", whatever you want to call it, doe

The "metaverse", or "social vr", or "spatial social platform", whatever you want to call it, does need an economy. It is one of the primary ingredients to turn such a thing into something self-sustaining. Some percentage of people need to be able to live off of it to fuel its…

Source: X post

@HBloodedHeroine Of course there will be a corporate controlled, government surveilled, highly m

@HBloodedHeroine Of course there will be a corporate controlled, government surveilled, highly moderated, data mined, operant condition chamber version of this thing. I'm really talking more to those concerned with making the one which isn't that.

This is also not a cryptocurrency/blockchain vs…

Source: X post

@bozoid I'm hoping, whatever this comes to be, it ends up nothing like that.

@bozoid I'm hoping, whatever this comes to be, it ends up nothing like that.

Unfortunately, due to the incredible success of roblox, I worry every investor and company will pressure to try and creep their way to recreating roblox-like economic schemes wherever they can.

Source: X post

@bl1ndlight This is the type of thing I wish people would analyze more, think through. There rea

@bl1ndlight This is the type of thing I wish people would analyze more, think through. There really is no reason to presume the metaverse economy needs to be a bunch of storefronts like a shopping mall. Given that the thing is all virtual, so there is no cost of physical manufacture of…

Source: X post

@aoighost Distributed databases, nfts, persistence, these are secondary steps in my view, and po

@aoighost Distributed databases, nfts, persistence, these are secondary steps in my view, and potentially not even necessary as a foundation.

The simplest and most fundamental necessity is a wallet and transfers. The equivalent of people being able to give cash to each other.

From there…

Source: X post

@coreh It is visionOS 1, but this is a little different. Technically this is stereo render targe

@coreh It is visionOS 1, but this is a little different. Technically this is stereo render targets in Unity. Really meant for putting single-pass stereo framebuffers on walls, or a frame, to produce an effect similar to 'Stereo Videos', except rendered out of Unity and interactive.…

Source: X post

@BradRTorgersen @neontaster The text from the specific section I linked in case no one clicks it

@BradRTorgersen @neontaster The text from the specific section I linked in case no one clicks it:

"Social and psychological functions

Satire and irony in some cases have been regarded as the most effective source to understand a society, the oldest form of social study.[12] They provide the keenest…

Source: X post

@BradRTorgersen @neontaster https://en.wikipedia.org/wiki/Satire#Social_and_psychological_functi

@BradRTorgersen @neontaster https://en.wikipedia.org/wiki/Satire#Social_and_psychological_functions

Source: X post

@HBloodedHeroine There is similarity, but this will be an Unity feature, although it will be in

@HBloodedHeroine There is similarity, but this will be an Unity feature, although it will be in a limited 'preview' state until other advancements in URP free up some of those constraints. So hopefully should see some apps using it.

Source: X post

@cnlohr It's concerning how the average truth on programming tends towards wrong, or "off" in so

@cnlohr It's concerning how the average truth on programming tends towards wrong, or "off" in some way. I cannot read the Unity reddit, it's just too much for me to handle. Although this is the case with everything.

I think it's just one of those wisdoms you have to learn to ignore…

Source: X post

@cixliv @CounterPointTR What I always wonder is, how many hours are spent on something running t

@cixliv @CounterPointTR What I always wonder is, how many hours are spent on something running through steamvr compared to how many hours are spent on an hmds native ecosystem? I've never seen enough data to tell.

Source: X post

Apple: You only get RealityKit and MaterialX nodes in mixed reality mode. You can't render to th

Apple: You only get RealityKit and MaterialX nodes in mixed reality mode. You can't render to the actual framebuffer.

Me: Sooo... you're tellin' me I have everything I need to make my own VR compositor with depth re-projection so that Unity's metal framebuffer can be displayed… https://x.com/_rygo6/status/1811182378918056030/video/1

Source: X post

The best programming information comes from plain html websites with black Times New Roman on wh

The best programming information comes from plain html websites with black Times New Roman on white background.

A custom font with center justified text can often be okay too.

Anything much more than that and I am immediately suspicious.

Source: X post

@ryanjfleury I've not watched the video, but the title and description make me curious about som

@ryanjfleury I've not watched the video, but the title and description make me curious about something I've been wondering. Is the raddebugger UI, and the scaffolding for it, something intended to be usable for different applications? Is there an intent to have people fork it and be able to…

Source: X post

I really hate how people respond to someone highlighting issues in the world as though it's all

I really hate how people respond to someone highlighting issues in the world as though it's all just a personal problem. I don't know if this is as common outside the US as inside it? Definitely sometimes it is, and sometimes people need to try harder at things, but the complete…

Source: X post

I just checked one of my old dead emails from over a decade ago. Usually, I just delete all the

I just checked one of my old dead emails from over a decade ago. Usually, I just delete all the emails, but there is a bunch of recruiter emails from recent relatively known companies and startups. How did these places find this old email? I've literally not used it for a decade…

Source: X post

@KishonnaGray Interesting association. Would be worth it to try and poll for some association be

@KishonnaGray Interesting association. Would be worth it to try and poll for some association between technology addiction and how much the kid feels outside is dangerous, or under control, or off limits, or feels there is no community hang out areas.

As someone who spent most youth inside on…

Source: X post

When I see someone aghast about the dire condition of US politics, I always want to go on long l

When I see someone aghast about the dire condition of US politics, I always want to go on long lengthy explanations of US politics, and US political history, to try and make them aware of how messed up it is and bring overarching context to it all.

Then when I start thinking…

Source: X post

People seem to shy away from arguing on the internet for some reasons they came up with. Presumi

People seem to shy away from arguing on the internet for some reasons they came up with. Presuming it's just useless or pointless. Really, I'd say, it is absolutely worth the effort to try and get just one person to clearly understand, and think differently, about something they…

Source: X post

The awkward thing with political perspective is it usually only represents the point at which so

The awkward thing with political perspective is it usually only represents the point at which someone's brain ran out energy to keep thinking and keep taking in new data.

Source: X post

"Rave Mode" in a Social VR platform where, it disables voice, but all of your animation packets

"Rave Mode" in a Social VR platform where, it disables voice, but all of your animation packets get the timestamp of the currently playing song written on them so everyone else can display everyone's body movement perfectly synced to the music.

Source: X post

@jendaviswilson hm if you enable it yourself to broadcast you'll have to forgo being able to see

@jendaviswilson hm if you enable it yourself to broadcast you'll have to forgo being able to see other people synced. Probably better named 'stage mode' or something like that

Source: X post

Is AGPL the scariest license I can put on a project? Or is there another?

Is AGPL the scariest license I can put on a project? Or is there another?

Source: X post

https://youtu.be/Vg3gOFWfpck?si=mmlHUPIPtgBroGEC

https://youtu.be/Vg3gOFWfpck?si=mmlHUPIPtgBroGEC

Source: X post

@dotnetschizo Issue is all the natural light coming in, he doesn't have a XXL big joe bean bag a

@dotnetschizo Issue is all the natural light coming in, he doesn't have a XXL big joe bean bag and a VR setup.

Source: X post

So many things in the XR VR spatial computing space still have way too much thinking inherited f

So many things in the XR VR spatial computing space still have way too much thinking inherited from screen-based computing. I see too few fully breaking down everything to the most fundamental level, then stubbornly re-asking "Does this make sense in a spatial computing context?"…

Source: X post

Jon Stewart definitely needed to come back.

Jon Stewart definitely needed to come back. https://youtu.be/jXZoO-FjJyQ?si=6zTGjiPrwO7z06-J

Source: X post

I might actually buy a new ipad for this...

I might actually buy a new ipad for this... https://youtu.be/CyXodhYycXs?si=a6hqCwYaw_67Hsj6&t=191

Source: X post

@TimSweeneyEpic @ID_AA_Carmack @Florian4Gamers @xroissance @gateklons I've thought about this a

@TimSweeneyEpic @ID_AA_Carmack @Florian4Gamers @xroissance @gateklons I've thought about this a lot. I am personally fond of Ayn Rand's writing about Capitalism and individual rights, but would also argue most today, particularly pro-capitalist-cheerleaders really do not understand what Ayn Rand said. I believe she'd be absolutely appalled at the…

Source: X post

@ryanjfleury @FlohOfWoe My reasons are:

@ryanjfleury @FlohOfWoe My reasons are: 1. CMake is cross platform. 2. Can recompile my shaders and shader includes: https://github.com/rygo6/moxaic/blob/8580267f9b8c15e85568c67c36eacdfa88b6134d/CMakeLists.txt#L61 3. Logic to only recompile something if it changes is built in. 4. I can just keep copy/pasting these chunks into new projects and not have to think about them…

Source: X post

I particularly like these 'Classic Game' examples on the raylib website because they all demonst

I particularly like these 'Classic Game' examples on the raylib website because they all demonstrate something I think most just forgot. That C does have automatic memory management. https://www.raylib.com/games.html

Each one you can click on, then play, and then follow the link back to…

Source: X post

@cnlohr Gotta click the 'Not interested in this post' option to shape the algo.

@cnlohr Gotta click the 'Not interested in this post' option to shape the algo.

Source: X post

OOP has a number of catastrophes. It being a cache naive way to program I think is #1 but a clos

OOP has a number of catastrophes. It being a cache naive way to program I think is #1 but a close second is that it abstracts away the hierarchal nature of a program.

Some people rant on about OOP and "layers of abstraction" which I think is a subjective code style issue, but…

Source: X post

RFK's voice issues are pretty interesting in the context of public political speaking, because i

RFK's voice issues are pretty interesting in the context of public political speaking, because it means he can't sway anyone through emotion of vocal tonality. Some percentage of people you can just say something to in a certain confident assertive voice and they will just go…

Source: X post

NaCl was a better choice than WASM. It's still developed and maintained in chromium, but only fo

NaCl was a better choice than WASM. It's still developed and maintained in chromium, but only for ChromeOS. A part of me can't help but think, maybe should try to bring that back somehow.

Also seeing the goop of a corporate tarpit which WebGPU, WASM and WebTrasnport wandered…

Source: X post

@webdevcody @CodexHere People not differentiating between 'dependency injection' and 'dependency

@webdevcody @CodexHere People not differentiating between 'dependency injection' and 'dependency injection framework' is kind of an issue for new people, because it makes it harder for them to learn what just plain and simple 'dependency injection' is, which is really quite simple, often elegant, and…

Source: X post

The thing that concerns me the most are the people who could actually feel some positive emotion

The thing that concerns me the most are the people who could actually feel some positive emotion from that and just go along with it all seriously. I get people will vote based on some principle or an existential issue, but you have to be able to stand back and see how serious an…

Source: X post

People like to trash on jetbrains for being JVM based but then go run an entire instance of chro

People like to trash on jetbrains for being JVM based but then go run an entire instance of chromium in its own application to emulate the webstack so they can run an IDE written in javascript.

I'm no java fan but if its openjvm vs electron, I'd choose openjvm anyday.

Source: X post

Something in the design of software UX which I think is overlooked, even though most everyone re

Something in the design of software UX which I think is overlooked, even though most everyone relies on it in some way, is the value of the "pile". I don't have a better term for it, but what I mean is when you organize things into piles without any explicit structure.

This is…

Source: X post

@philchacko @pvncher You can commercialize GPL code, you just have to opensource whatever it tou

@philchacko @pvncher You can commercialize GPL code, you just have to opensource whatever it touches based on the conditions of which kind of GPL license it is.

Really, I've rarely found issue with this. Usually there is some way to make use of GPL or LGPL in a commercial project that doesn't force…

Source: X post

@eli_schiff @QuasLacrimas TBH I write in long form with wording that takes slightly above averag

@eli_schiff @QuasLacrimas TBH I write in long form with wording that takes slightly above average mental effort to grok in order to filter out the drive-by shit-posters who just skim the headline and post whatever without thinking.

I've found it lets me write things openly which, if stated more simply,…

Source: X post

Can someone who trusts Microsoft heavily please try setting this up and tell me if it worked?

Can someone who trusts Microsoft heavily please try setting this up and tell me if it worked? https://learn.microsoft.com/en-us/windows/dev-drive/

Source: X post

I liked using vim when I did projects in it. I liked using emacs when I did a project in it. But

I liked using vim when I did projects in it. I liked using emacs when I did a project in it. But I'm not a kernel dev or C dev. I can't live in the terminal entirely. I can't stay out of all the fancy IDEs. I have to deal with several langs across all three OS's regularly, with…

Source: X post

@CongoCart I use jetbrains alot for this reason. Same muscle memory on every os and dozens of la

@CongoCart I use jetbrains alot for this reason. Same muscle memory on every os and dozens of langs.

Source: X post

@mjovanovictech Honestly this kind of stuff is why I am trying get as far away from C# and .NET

@mjovanovictech Honestly this kind of stuff is why I am trying get as far away from C# and .NET as I can.

Can you at least not call it "Clean" to imply anything not this is some negative? Like some kind of inverse pejorative? Just call it like "My Blah Blah Invention Architecture".

Source: X post

IMO, Odin I see as the only new lang which first fully understood what exactly was wrong with C+

IMO, Odin I see as the only new lang which first fully understood what exactly was wrong with C++, and most every modern lang, then what was more correct with C. Then started from there, remaining pretty stubborn to what is added.

Zig is close, but I don’t think it’s been as…

Source: X post

I feel too many people, particularly people who claim to be technical, just glossed over so much

I feel too many people, particularly people who claim to be technical, just glossed over so much in the Web3 Crypto space because the media blitzkrieg to demonize everything related told them to, but there are some really good ideas in the mix of Web3 that are functioning right…

Source: X post

@CourtneyHclaw I would blame the media on that because all the NFT JPG art auction stuff was a s

@CourtneyHclaw I would blame the media on that because all the NFT JPG art auction stuff was a single digit percentage of what was occurring in the blockchain space. But it is all the media repeated for months and months making it appear to be not some tiny percentage, but the entire space. If…

Source: X post

@ChShersh the future: https://github.com/nothings/stb

@ChShersh the future: https://github.com/nothings/stb

Source: X post

Twitter is for the slightly edited medium temp takes.

Twitter is for the slightly edited medium temp takes. Discord is for the hot takes. VRChat is for the scorching hot takes.

Source: X post

@ptrschmdtnlsn I read somewhere that it's best to think of vulkan like a meta-driver from which

@ptrschmdtnlsn I read somewhere that it's best to think of vulkan like a meta-driver from which you can make your own graphics API. I find this is the only way to make sense of it. Every option presumably is something that can affect something lower level on some specific hardware. Spec is…

Source: X post

I personally don't believe there will be satisfactory improvement on political dysfunction in th

I personally don't believe there will be satisfactory improvement on political dysfunction in the US until you get something more akin to a parliament and ranked choice voting at the helm. The significance of how and why that is different and important compared to our two-party…

Source: X post

@dankvr tabs within tabs

@dankvr tabs within tabs

Source: X post

@CyrilAlexei @ptrschmdtnlsn It's taken off to the level it needs to. Every major GPU chip vendor

@CyrilAlexei @ptrschmdtnlsn It's taken off to the level it needs to. Every major GPU chip vendor maintains up to date Vulkan implementations. Most people just don't work at the level where they need to know that much about the hardware, so they don't need it.

Source: X post

The premise of encapsulation is really just a silly thing. Someone just once said, "you need to

The premise of encapsulation is really just a silly thing. Someone just once said, "you need to hide your data in case someone accesses it and does something bad!" Then everyone was like, "Right, yes, very smart."

... but really, how often is your code in a situation where…

Source: X post

@paulg A rather grounded, rational, perspective is that:

@paulg A rather grounded, rational, perspective is that: - Economics is a positive sum game. Therefore, you want everyone pursuing the creation of as much money and wealth as possible. - Authority is a zero-sum game. Therefore, we need some kind of Democratic scheme to keep the zero-sum…

Source: X post

If you are in tech you can't forget what the doormouse said...

If you are in tech you can't forget what the doormouse said... https://www.amazon.com/What-Dormouse-Said-Counterculture-Personal/dp/0143036769

Source: X post

If we just made everyone stick a camera in their house, streaming to an AI, which surveilled eve

If we just made everyone stick a camera in their house, streaming to an AI, which surveilled everything they do to ensure no crimes are being committed, then everyone would be safe. Sure, it's a violation of prior rights and privacy, but the safety of others overrides your…

Source: X post

@AntonHand is this some scale that tracks your weight automatically over time?

@AntonHand is this some scale that tracks your weight automatically over time?

Source: X post

@amaldorai I've been working on it... although I think the problem is a little simpler than you

@amaldorai I've been working on it... although I think the problem is a little simpler than you suspect in some ways, and a bit more complex in a different way. Encoding/decoding can already be quite fast. AV1 is sufficient for video. Biggest latency is from that 'up to zoom servers and…

Source: X post

@reduzio The metaverse media hype bubble burst, but in terms of the number of users putting on V

@reduzio The metaverse media hype bubble burst, but in terms of the number of users putting on VR headsets, participating in social platforms in VR, and creating things for such platforms, it is the novel use case in the gaming space with the greatest upward growth over the past 4 years.…

Source: X post

If a population of people vote for a president out in a forest, but none of them were the source

If a population of people vote for a president out in a forest, but none of them were the source of the thoughts and perceptions which led to that vote, did they really vote?

Source: X post

@BattleAxeVR I'd pay $600 for perfect eye tracking. It's on the upper end I'd tolerate but if it

@BattleAxeVR I'd pay $600 for perfect eye tracking. It's on the upper end I'd tolerate but if it worked perfect, had high enough hz to do foveated rendering, accurate enough to not make me look cross eyed or my eye lids close at different rates. I'd consider it.

Source: X post

@TheGingerBill I find it quite good for searching technical docs. Like Vulkan questions or C que

@TheGingerBill I find it quite good for searching technical docs. Like Vulkan questions or C questions or terminal command questions. But the question has to be phrased so the answer is similar to what you'd find in their docs. It seems to be pretty accurate if the subject matter is from some…

Source: X post

@mgattozzi CloudMake

@mgattozzi CloudMake

Source: X post

@anerdguynow Engineers need to start labelling the snake oil salesman what they are. It's a nece

@anerdguynow Engineers need to start labelling the snake oil salesman what they are. It's a necessary part of any industry maturing.

Source: X post

@nothings https://youtu.be/WS2Bsq5PDmU?si=gD7TD1Zpi3p2TzYZ

@nothings https://youtu.be/WS2Bsq5PDmU?si=gD7TD1Zpi3p2TzYZ

Source: X post

@AntonHand I still don’t go into indoor cramped spaces with lots of people, but honestly don’t m

@AntonHand I still don’t go into indoor cramped spaces with lots of people, but honestly don’t miss it. I also moved to lower population density area which reduces risk overall and that’s kind of permanent. Kind of think people should just make permanent life changes to reduce chances…

Source: X post

The thing which gets me the most about C++ is that the essence of being 'Good' at C++ is knowing

The thing which gets me the most about C++ is that the essence of being 'Good' at C++ is knowing you want to completely avoid the majority of what is officially packaged and associated with it, then knowing specifically what to avoid and why. Then also avoiding much of the code…

Source: X post

@cafreiman The Economic Freedom Index, a metric to determine how 'Free' a countries market is in

@cafreiman The Economic Freedom Index, a metric to determine how 'Free' a countries market is in terms of Adam Smith's definition in 'Wealth of Nations', currently has the USA ranked #25. https://en.wikipedia.org/wiki/Index_of_Economic_Freedom#Rankings_and_scores

If you believe more free markets are desirable, should take note of all the…

Source: X post

https://youtu.be/q87BEx261JI?si=WwC-qzxS75Ofj7p-

https://youtu.be/q87BEx261JI?si=WwC-qzxS75Ofj7p-

Source: X post

@ylecun Have to keep in mind US tax incentivizes reinvestment to avoid paying more tax.

@ylecun Have to keep in mind US tax incentivizes reinvestment to avoid paying more tax.

Although the number spent on R&D looks good, I wouldn’t automatically assume it is good. Like how much R&D went into moving the task bar to the center on Windows 11 or other mostly irrelevant…

Source: X post

@ShubertSomer @KamerynJW I'm sure someone is selling git certifications, but I've honestly never

@ShubertSomer @KamerynJW I'm sure someone is selling git certifications, but I've honestly never seen a software engineer have such a certification. That'd be kind of embarrassing TBH, like putting a Microsoft Word cert on a resume. It's a foundational tool. It's comparable to an IDE (or good text…

Source: X post

@real4quad @KamerynJW Really it is. It's like a student struggling with solving some bug in the

@real4quad @KamerynJW Really it is. It's like a student struggling with solving some bug in the code and they don't instruct them on how to use a debugger. Not instructing a student on setting up a project in source control and making incremental commits, and how to revert those, and merge them with…

Source: X post

@real4quad @5489735 @KamerynJW It's not about being an expert, it's about developing good habits

@real4quad @5489735 @KamerynJW It's not about being an expert, it's about developing good habits to be proficient. It's akin to, can you write in full sentences? Can you formulate an argument with supporting reason or evidence? Can you organize your thoughts in an organized manner? It's not terribly hard, no…

Source: X post

@NOTimothyLottes It could do something, but scammers already have budgets and operating expenses

@NOTimothyLottes It could do something, but scammers already have budgets and operating expenses to deal with, so such cost would probably just go into their overhead.

Source: X post

@KamerynJW Students leaving compsci programs without solid muscle memory in source control is a

@KamerynJW Students leaving compsci programs without solid muscle memory in source control is a failure of education. It takes a long time to develop good source control habits and to become comfortable with using git fluently for complex merging, branching and edits in a codebase with…

Source: X post

@Duncan__Cragg I'm more curious to ask... what do you think I was referring to and what prior tw

@Duncan__Cragg I'm more curious to ask... what do you think I was referring to and what prior tweets of mine led you to assume that?

Source: X post

@BattleAxeVR I don’t think it’d change anything about VR rendering math but it is a point about

@BattleAxeVR I don’t think it’d change anything about VR rendering math but it is a point about depth perception which could be taken into account when designing things around depth.

Source: X post

@amasad My point on it has always been, if you are to do anything of that sort then at least som

@amasad My point on it has always been, if you are to do anything of that sort then at least somehow incentivize the stock to be distributed amongst employees of the company. Otherwise, you're just forcing someone to sell stock and distribute ownership to who-knows-what making the…

Source: X post

People complain a lot about walled gardens and proprietary devices, me included, but I actually

People complain a lot about walled gardens and proprietary devices, me included, but I actually love Apple stuff. Been a long long time iPhone user and iPad user. I exclusively used a MacBook Pro for both professional work and personal use for about 5 years around 2010. It's…

Source: X post

My biggest complain with the AVP, and also the bigscreen beyond, is when I push it up and rest o

My biggest complain with the AVP, and also the bigscreen beyond, is when I push it up and rest on my forehead, the lenses touch my forehead, so I'm always coating the lenses in forehead oil and having to constantly clean them. The index and quest 2 were nice for development…

Source: X post

@HBloodedHeroine Nostr is so simple and versatile, it's just a distributed web socket relay. It'

@HBloodedHeroine Nostr is so simple and versatile, it's just a distributed web socket relay. It's kind of like tcp ip itself, but over web sockets so it can just work over anything to anything. It enables more than just twitter like social networks

Source: X post

@HBloodedHeroine Is it possible you could use atproto for signalling webrtc?

@HBloodedHeroine Is it possible you could use atproto for signalling webrtc?

Source: X post

@tsoding Personally, I place bigger blame not on the programmers, but on the incentives and proc

@tsoding Personally, I place bigger blame not on the programmers, but on the incentives and processes that have developed in corporate software.

You have to be a rather senior and decently trusted programmer in a company for a while to get the room to deep dive, and rabbit hole, on…

Source: X post

Now that I understand way more about the data oriented programming subject, not ECS, but general

Now that I understand way more about the data oriented programming subject, not ECS, but generalized data oriented programming, odin is looking quite nice. Looks to be the modern lang which is the most deconditioned from OOP and FP, then stubbornly kept it focused on what has…

Source: X post

I've been through dozens of tech interviews, and have interviewed dozens of people myself, proba

I've been through dozens of tech interviews, and have interviewed dozens of people myself, probably nearing 100 both ways. I feel bad for people newer to the tech hiring process because I can't express just how much bullshit it is. Just pure and simple, completely deserving of…

Source: X post

@elonmusk But you have to admit just the slightest bit of "I don't think corporations should be

@elonmusk But you have to admit just the slightest bit of "I don't think corporations should be able to screw over the masses" gets you labelled a communist in some circles.

Source: X post

@amaldorai What have you been searching for? Some reason it thinks you like Trump and the south.

@amaldorai What have you been searching for? Some reason it thinks you like Trump and the south. https://x.com/_rygo6/status/1800964605604397198/photo/1

Source: X post

@AntonHand doom eternal, although fun, I did feel was inferior due to not as good sound and musi

@AntonHand doom eternal, although fun, I did feel was inferior due to not as good sound and music design

Source: X post

@tsoding raylib!

@tsoding raylib!

Source: X post

There were a handful of "Lightbulb" moments in technology that changed the course of my life.

There were a handful of "Lightbulb" moments in technology that changed the course of my life.

The first one was the combination of Half-Life 1 and a Voodoo 2 card. Seeing smooth, stable, high-resolution 3D graphics for the first time was a one-way street. Then further, being…

Source: X post

@Lanowen I still have yet to find a scenario where I genuinely feel I need more than const char*

@Lanowen I still have yet to find a scenario where I genuinely feel I need more than const char*, sprintf and a buffer... I really don't like the idea of using multiple heap allocs for string manipulation, but I also don't tend to be in areas where strings need complex functionality so I…

Source: X post

@Lanowen const char* mf;

@Lanowen const char* mf;

Source: X post

I don't hate C++ refs but I also don't necessarily like them because internally they are no diff

I don't hate C++ refs but I also don't necessarily like them because internally they are no different than pointers and if I am taking the pointer to something, and using a pointer, I'd rather it not syntactically hide that.

Source: X post

@jimmy6DOF @DePanther @3duaun I can go post the tweet in the slack channel of that team to bring

@jimmy6DOF @DePanther @3duaun I can go post the tweet in the slack channel of that team to bring attention to it... but unfortunately it has to go through the "Corporate Process".

Source: X post

It is true thing that would take 2 hours in opengl can take 2 days in vulkan... however I still

It is true thing that would take 2 hours in opengl can take 2 days in vulkan... however I still hesitate with opengl just because what happens when I do want to control something more?

I really wish there was a higher-level vulkan lib that managed more for you and baked in some…

Source: X post

In a decade there is going to be a moment in software equivalent to people trying to water plant

In a decade there is going to be a moment in software equivalent to people trying to water plants with Brawndo in Idiocracy. Where you will have some critical system produced by an AI, layered on something else produced by some other AI, and maybe another. Then it will develop a…

Source: X post

@Hasen_Judi SCRUM had a particular context in which it was to be practiced. Namely, when you are

@Hasen_Judi SCRUM had a particular context in which it was to be practiced. Namely, when you are in a problem domain with a high degree of predictability, running down well paved lanes. Akin to constructing a skyscraper or jet. Where the specific tasks needing to be done could be reasonably…

Source: X post

@drsimonwilliams @Telegraph Your response is a bad and incorrect take. It's a study highlighting

@drsimonwilliams @Telegraph Your response is a bad and incorrect take. It's a study highlighting some novel points of data. They publish it to document it, so other researchers could then publish other analysis that could verify or contradict, or compare with new data. It's not about having absolute…

Source: X post

@yay_its_james @DrAseemMalhotra That's how large scale statistical analysis works, everything is

@yay_its_james @DrAseemMalhotra That's how large scale statistical analysis works, everything is a probability. This one study from one source is finding data points of significance for further investigation. Other researchers may find other points and publish new studies. New data may bring additional context…

Source: X post

@yacineMTB There is something to this "cache trust" notion but I think more so in like cooperati

@yacineMTB There is something to this "cache trust" notion but I think more so in like cooperative ownership or something like that, not a FIAT bank. It takes a huge amount of resource and energy for something like the US central bank to keep USD secure, valued and stable globally. I don't…

Source: X post

seriously is there a chatpgpt4o chat window better than the openai website, it's so slow and qui

seriously is there a chatpgpt4o chat window better than the openai website, it's so slow and quirky its ruining it for me

Source: X post

@ryanjfleury I keep trying to figure out some solution to making money with independent software

@ryanjfleury I keep trying to figure out some solution to making money with independent software, but then also not making it a liability for someone to be dependent on that software. Personally, I see that is the bigger hang up with non-open software. It's not so much that it could cost…

Source: X post

@_lobotomyx @AminiAllight ... I did... is the gui better than cli ?

@_lobotomyx @AminiAllight ... I did... is the gui better than cli ?

Source: X post

@technobaboo I thought I remember seeing some article that said it's lighter than KDE?

@technobaboo I thought I remember seeing some article that said it's lighter than KDE?

Source: X post

I didn't know the shell UI in the latest gnome was written in javascript. I don't know how I fee

I didn't know the shell UI in the latest gnome was written in javascript. I don't know how I feel about this but I guess it does show if you remove all the web from javascript and bind it to a performant C lib directly then spidermonkey can be quite fast and lightweight.

Source: X post

@reduzio I find people who do not have very severe criticisms of OOP, and who are not trying to

@reduzio I find people who do not have very severe criticisms of OOP, and who are not trying to move away from it, do not fully understand what is wrong with it. Many seem to erroneously believe the opposite of OOP and "solution" is FP. Or that this is a subjective stylistic criticism.…

Source: X post

Reading through this: https://www.dataorienteddesign.com/dodbook/

Reading through this: https://www.dataorienteddesign.com/dodbook/ It makes a good point I never thought before, "What's become clear over the last decade is that most of the high-level data processing techniques which are proving to be useful are a combination of hardware-aware data manipulation…

Source: X post

No matter what advice anyone has ever given me I just cannot bring myself to write a resume or p

No matter what advice anyone has ever given me I just cannot bring myself to write a resume or professional bio in third person. It just feels way to silly to me. Even if your a billionaire why would you not write your own short bio? It's just weird. Whenever I see it there some…

Source: X post

Most advanced AI system ever running on most advanced GPU cluster ever being used through web ap

Most advanced AI system ever running on most advanced GPU cluster ever being used through web app that, if left open for too many hours, will struggle to scroll the text at more than 2 fps and crashes it's tab from running out of memory... like with all the funding and money…

Source: X post

@nothings @JustineTunney @zencloud I thought it's the only way to get a function in a cpp header

@nothings @JustineTunney @zencloud I thought it's the only way to get a function in a cpp header file to simultaneously not inline and not cause a duplicate symbol error: https://godbolt.org/z/osYqnsToh IIRC there is some gcc setting to override that, but isn't that bad to use?

Source: X post

@JustineTunney @zencloud @nothings I assume there has to be one in here that follows that patter

@JustineTunney @zencloud @nothings I assume there has to be one in here that follows that pattern https://github.com/p-ranav/awesome-hpp ... but if that wasn't what your referring to, I don't know :) Any cpp codebases I've worked on only did it for the occasional in-lining

Source: X post

@JustineTunney @zencloud Like stb single file libs? I think its just for ease of distribution

@JustineTunney @zencloud Like stb single file libs? I think its just for ease of distribution

Source: X post

Conspiracy theory is unnecessary when mere incentives will do.

Conspiracy theory is unnecessary when mere incentives will do.

Source: X post

@JustineTunney What do you think about the whole "let's just go back to C and forget about CPP"

@JustineTunney What do you think about the whole "let's just go back to C and forget about CPP" crowd?

Source: X post

@AntonHand I want my movies in VR chat... Or other social vr platforms.

@AntonHand I want my movies in VR chat... Or other social vr platforms.

I'd actually pay like $20 rental fee on theatrical release day for a group screening in VR.

I suspect whomever gets this monetization scheme locked down first will be a major contender. It's unfortunate Bigscreen…

Source: X post

@MartinJIFuller @KostasAAA @mike_acton That's what I've been doing, but in C. I've used C++ prof

@MartinJIFuller @KostasAAA @mike_acton That's what I've been doing, but in C. I've used C++ professionally for a long time, and was using C++ for my personal projects, but then the experimental side of me stopped and critically asked, "What from C++ would I really miss?" The top of my list was default struct values,…

Source: X post

@KostasAAA What if I wanted to focus all on C and do all my personal work in C instead of C++ fo

@KostasAAA What if I wanted to focus all on C and do all my personal work in C instead of C++ for graphics? Is that an issue for getting jobs?

Source: X post

@Grady_Booch So, I actually kind of agree with you for once here...

@Grady_Booch So, I actually kind of agree with you for once here...

... but chatgpt4 is damn good at reading technical documentation and providing answers about it, but for anything where it's not giving technical answers that you are immediately validating with an actual compiler it will be…

Source: X post

@UnderwaterBepis When I said there are objective arguments for how detrimental social media is,

@UnderwaterBepis When I said there are objective arguments for how detrimental social media is, I was really referring to screen social media. Facebook, Instagram, Twitter etc.

Social VR we don't really have large scale research about yet. I do believe Social VR can be wholly less detrimental…

Source: X post

@UnderwaterBepis There always has to be a duality. If you solve one, people will just invent a n

@UnderwaterBepis There always has to be a duality. If you solve one, people will just invent a new one.

What worries me most is turning such platforms into operant conditioning chambers.

Source: X post

The conservative take on men retreating into video games because they don't want to deal with th

The conservative take on men retreating into video games because they don't want to deal with the real world amuses me because, I can't help but imagine the sheer horror such a person would feel when seeing something like VRChat. Where the retreat into virtual is so extreme and…

Source: X post

After living in the middle of big cities for over a decade, Portland, Las Vegas, Silicone Valley

After living in the middle of big cities for over a decade, Portland, Las Vegas, Silicone Valley, Austin, Seattle, Bellevue, I finally fled such high population dense areas for a smaller town in Washington on the Olympic Peninsula. I am going on my third summer now and I still…

Source: X post

Abstracting away the hierarchal structure of a program was such a mistake. Innately a program, a

Abstracting away the hierarchal structure of a program was such a mistake. Innately a program, and a C file, has a branching tree hierarchy in how it flows. Methods below can only use methods and state above. Every method fired is branched from another method below. The program…

Source: X post

Abstracting away the hierarchal structure of a program was such a mistake. Innately a program, a

Abstracting away the hierarchal structure of a program was such a mistake. Innately a program, and a C file, has a branching tree hierarchy to it flows. Method below can only use methods and state above. Every method fired is branched from another method below. The program can…

Source: X post

@dhh Latest gnome is pretty nice out of the box for new users…

@dhh Latest gnome is pretty nice out of the box for new users…

Source: X post

Something I never hear much about, but I know has to be a serious issue, is AI applied to hackin

Something I never hear much about, but I know has to be a serious issue, is AI applied to hacking. A skilled team focused on finding zero-day exploits can find multiples per year. The process of finding such exploits is not mathematically difficult. Mainly it is testing many…

Source: X post

@skdh Never seeing this before, the notion that elements have a frequency is instantly fascinati

@skdh Never seeing this before, the notion that elements have a frequency is instantly fascinating to me because of course they do, everything spins and has oscillation in existence, so it must have some measurable hz of that rate, and I've never seen that laid out in relation to the…

Source: X post

I want a AAA VR game with the art team from Scorn, combined with the gameplay design team from D

I want a AAA VR game with the art team from Scorn, combined with the gameplay design team from Deadspace, combined with the real-time cinematics team of Hellblade, with visual direction and story by Ridley Scott, and the soundtrack by Carbon Based Lifeforms.

Source: X post

Hellblade 1 was basically the perfect video game to me:

Hellblade 1 was basically the perfect video game to me: - 6-ish hours - Incredible visual design and world design - Incredible story and cinematics. More memorable than most movies of the past decade. - Gameplay that never pissed me off. Gameplay never pissing me off is more…

Source: X post

Hellblade 1 was basically the perfect video game to me:

Hellblade 1 was basically the perfect video game to me: - 6-ish hours - Incredible visual design and world design - Incredible story and cinematics. More memorable than most movies of the past decade. - Gameplay that never pissed me off. Gameplay that never pissing me off is more…

Source: X post

First hour of Hellblade 2... damn... that is a video game. See what made Hellblade 1 so good is,

First hour of Hellblade 2... damn... that is a video game. See what made Hellblade 1 so good is, despite being a good game, the horror sequences stood on their as some of the best not just in games, but in film. It had a very novel cinematic feel and style to it that stood on its…

Source: X post

@AlexRoseGames Rust/Go calling them Traits I thought was a better name and makes the use clearer

@AlexRoseGames Rust/Go calling them Traits I thought was a better name and makes the use clearer.

'Interface' is from Java-ey times when someone thought it a good idea to implement literally everything off an interface. This can introduce unneeded overhead in C# depending and isn't good to do…

Source: X post

@AlexRoseGames @LyerionClash When the implementation of Bite depends on context and you want the

@AlexRoseGames @LyerionClash When the implementation of Bite depends on context and you want them triggerable from the same code path. Bite a coin, score a point. Bite an explosive, die.

It's not exactly the same as a replacement for composition by components. If you put BiteExplode and BitePowerUp…

Source: X post

@VitalikButerin @tsarnick Despite whatever they say, there is no way to know for sure. With curr

@VitalikButerin @tsarnick Despite whatever they say, there is no way to know for sure. With current FISA policy in US, any screen capture data Microsoft has access to would have to be surrendered to government surveillance if requested.

Source: X post

@ryanjfleury It is also concerning that combined with FISA, if there was any way Microsoft could

@ryanjfleury It is also concerning that combined with FISA, if there was any way Microsoft could retrieve screen capture data, they'd have to surrender it to the NSA if requested.

Source: X post

@paulg So you would have no issue with me setting up a thermal camera, pointed at your home from

@paulg So you would have no issue with me setting up a thermal camera, pointed at your home from a distance, and streaming it to the web 24/7?

You shouldn't if your reasoning is correct. You don't own that by your reasoning.

Source: X post

The dichotomy I face every night when going into VR.

The dichotomy I face every night when going into VR.

Index: Large hot face toaster with blurrier (lower-res), washed out LCD colors and, screen door effect, but easier to put on and wider FOV

Beyond: Small and barely noticeable size, with amazing colors, no screen door effect,…

Source: X post

It shouldn't be a hot take to expect some open-source activity on a developer's GitHub.

It shouldn't be a hot take to expect some open-source activity on a developer's GitHub.

I fully grok everyone's complaints about trying to push this as 'the norm' and they are valid, but you have to consider what you are then indirectly promoting. What unforeseen consequences…

Source: X post

@hemloc_io Again, I said I fully grok the complaints, but the alternative is worse.

@hemloc_io Again, I said I fully grok the complaints, but the alternative is worse.

Source: X post

@BruteForceGame ill try this just to see the art style

@BruteForceGame ill try this just to see the art style

Source: X post

https://youtu.be/sKouPOhh_9I?si=ucIRYZq9w1tnlRk1

https://youtu.be/sKouPOhh_9I?si=ucIRYZq9w1tnlRk1

Source: X post

@BuenoForMiami I've been holding my breath on whether or not the lightning network seems viable,

@BuenoForMiami I've been holding my breath on whether or not the lightning network seems viable, but so far it does? I've not seen any showstopper red flags put an end to it, and so far I've not seen good reason to believe that will happen.

There is also a valid argument that L2's are innately…

Source: X post

@tegmark @0xDoot @BanDeepfakes How can you go to MIT and need someone to unironically explain to

@tegmark @0xDoot @BanDeepfakes How can you go to MIT and need someone to unironically explain to you the difference between banning jpegs on the web and bioweapons?

Source: X post

Most everyone I know sat quietly as they arrested tornado cash developers, then they arrested Sa

Most everyone I know sat quietly as they arrested tornado cash developers, then they arrested Samourai wallet developers. I presume probably because it didn't really register how egregious of a overstep that was, but it was. It's very alarming to have developers arrested for… https://x.com/BanDeepfakes/status/1791431048598863987

Source: X post

@nice_byte If you read through the wiki page, one of the basic qualities of the Realism art move

@nice_byte If you read through the wiki page, one of the basic qualities of the Realism art movement is not exaggerating. This could be argued different ways, but I would personally say something like Doom 2016 is not so much influenced by the Realism art movement specifically but rather by…

Source: X post

@nice_byte https://en.m.wikipedia.org/wiki/Realism_(arts)

@nice_byte https://en.m.wikipedia.org/wiki/Realism_(arts)

Source: X post

@LeetSerge Ya... for sure... this is no way to discredit current games, I sure as hell am enjoyi

@LeetSerge Ya... for sure... this is no way to discredit current games, I sure as hell am enjoying, and have enjoyed, many games that are highly realistic in visual style ... but anything departing from that is catching my eye more and more.

Source: X post

@ivanassen There is a good logic behind reliance on dynamic ambient occlusion and shadows simply

@ivanassen There is a good logic behind reliance on dynamic ambient occlusion and shadows simply for the utility they provide in spatial recognition. Contact shadows and drop shadows can provide important visual cues for navigating spaces, but already there is some pretty compelling styles…

Source: X post

I want a feature in a lang which you could maybe call "Scoped Hot Copy" or maybe "Hot Container"

I want a feature in a lang which you could maybe call "Scoped Hot Copy" or maybe "Hot Container" ... probably needs a better name ... but it would be a kind of container you could declare at the top of a method that would live on the stack, or maybe in a static. Then you could…

Source: X post

@Hasen_Judi "Near Impossible to Maintain"... attracts many indie devs giving way to one of the g

@Hasen_Judi "Near Impossible to Maintain"... attracts many indie devs giving way to one of the greatest golden ages of gaming through half-life 1 modders, out of which some of the most popular online shooter games to this day evolved.

This is why you have to be very careful taking coding…

Source: X post

Computer graphics attaining a high degree of realism with automatic out-of-the-box tools is the

Computer graphics attaining a high degree of realism with automatic out-of-the-box tools is the point at which such a style is no longer valuable. If all of computer graphics sufficiently replicates physical reality, then it all ends up being a kind of uniform style. Such a style…

Source: X post

I'm like 1.5 years into my Vulkan adventure and only now do I discover that the vulkan configura

I'm like 1.5 years into my Vulkan adventure and only now do I discover that the vulkan configurator is so much better for setting up debug state than manually doing it with the vk debug structs in code🙄

Feel like the significance of the vulkan configurator needed to be put in… https://x.com/_rygo6/status/1789889651677016349/photo/1

Source: X post

I don't know if it's just the boomer in me, but I prefer linear environmental storytelling with

I don't know if it's just the boomer in me, but I prefer linear environmental storytelling with little to no inventory and/or RPG elements so much more than open world, with tons of complex menus, complex inventory, tons of complex dialogue trees. Seems like these days we don't…

Source: X post

this... https://soundcloud.com/tycho/ingress-burning-man-sunrise-set-2017

this... https://soundcloud.com/tycho/ingress-burning-man-sunrise-set-2017

Source: X post

Not that I disagree with this sentiment at all, rational adoption of EVs for mitigating climate

Not that I disagree with this sentiment at all, rational adoption of EVs for mitigating climate change is definitely valid.

However, I can't help but think in the future once VR or MR and telepresence is commonplace for any kind of knowledge work. With it being the norm to do… https://x.com/johnarnold/status/1789666071106212276

Source: X post

@tsarnick animism

@tsarnick animism

Source: X post

@ScottyCreager ballisticng and wrath aeon of ruin

@ScottyCreager ballisticng and wrath aeon of ruin

If there is something else to try send it my way

Source: X post

@redorav I find some years ago with the prior generation of programmers there was a deeply ingra

@redorav I find some years ago with the prior generation of programmers there was a deeply ingrained mentality of "The compilers will just figure it out so don't worry about intricate technical details!" Which is a promise that did not fully materialize. All the research and engineering…

Source: X post

Okay I take this back a little. I play a bunch of overwatch at 480hz then went back to 240hz and

Okay I take this back a little. I play a bunch of overwatch at 480hz then went back to 240hz and you don't necessarily notice a difference with 'smoothness' but you do notice it a bit with input latency. Turns out I am some kind of sniper god at 480hz.

Source: X post

My 240hz/480hz woled arrived... I think I would officially say I can't tell the difference betwe

My 240hz/480hz woled arrived... I think I would officially say I can't tell the difference between 240hz and 480hz

but I can tell the difference between 120hz and 144hz

So somewhere between 144hz and 240hz is when I can no longer tell

Now I really really really want a VR…

Source: X post

If you wanted to disempower people, you'd want to make it a taboo to openly discuss anything abo

If you wanted to disempower people, you'd want to make it a taboo to openly discuss anything about how the country is run and operated. With people unable to discuss that freely, effectively and openly the formation of any grassroots solidarity would be far more difficult. Most…

Source: X post

@UnderwaterBepis I'd expect people to completely replace all default UI in it, that'd be part of

@UnderwaterBepis I'd expect people to completely replace all default UI in it, that'd be part of its purpose. In a UGC platform, make it open enough that users themselves can iterate on the UI.

Source: X post

@UnderwaterBepis because it's not for some specific functionality it's to have something with ve

@UnderwaterBepis because it's not for some specific functionality it's to have something with very low overhead which is extremely easy to program for potentially any functionality

some low spec emulator is probably less overhead than a lot of complex UIs in unity canvas out there, but…

Source: X post

I really love the idea that in some social VR app, the default universal UI is something like a

I really love the idea that in some social VR app, the default universal UI is something like a virtual gameboy that runs on a 16-bit console emulator. Something you can actually pick up like a gameboy, hold it and use it in VR.

I'm thinking the premise behind this it'd provide…

Source: X post

I really love the idea that in some social VR app, the default universal UI is something like a

I really love the idea that in some social VR app, the default universal UI is something like a virtual gameboy that runs on a 16-bit console emulator. Something you can actually pick up like a gameboy, hold it and use it in VR.

I'm thinking the premise behind this it'd provide…

Source: X post

contractors showdown on quest 3 is petty good

contractors showdown on quest 3 is petty good

Source: X post

@aoighost thats on quest? I didn't think that game was VR?

@aoighost thats on quest? I didn't think that game was VR?

Source: X post

@technobaboo @JustRogDigiTec @opendegree @spatialfree I feel like if I were hanging out with som

@technobaboo @JustRogDigiTec @opendegree @spatialfree I feel like if I were hanging out with some people in VR and I had to say, "Hang on, let me just open my oriel here for you all to see", it's not the easiest flowing word and sounds a bit "odd"....

Source: X post

@technobaboo I'm finding it somewhat disappointing though, the "Future Work" section in that the

@technobaboo I'm finding it somewhat disappointing though, the "Future Work" section in that thesis which lists things wayland needs to add still does not appear to be added? Can you still not submit a depth buffer with the color buffer to wayland?

Source: X post

@opendegree @technobaboo @JustRogDigiTec @spatialfree I get the logic it's just so few people wi

@opendegree @technobaboo @JustRogDigiTec @spatialfree I get the logic it's just so few people will know what an oriel is. I'd bet most people will think you are either saying "oral" or "oreo".

... To which every time you use the word you are going to have to give an explanation of how an oriel is really a form of window that…

Source: X post

@opendegree @technobaboo @JustRogDigiTec @spatialfree cuboid id admit is still too nerdy from go

@opendegree @technobaboo @JustRogDigiTec @spatialfree cuboid id admit is still too nerdy from good design sense but I personally like it and it does I think make the right image in someone's head without explanation

Source: X post

@JustRogDigiTec but cuboid sounds cooler...

@JustRogDigiTec but cuboid sounds cooler...

Source: X post

I just noticed. The motorcar thesis from 2014 which (I think?) is the first functioning prototyp

I just noticed. The motorcar thesis from 2014 which (I think?) is the first functioning prototype of an attempt at a modern 'VR OS' where different 'App Volumes' are actually separate processes and separate rendering contexts that depth composite together into a shared space.… https://x.com/_rygo6/status/1788385721272893643/photo/1

Source: X post

Syntactically speaking

Syntactically speaking DoThing(myThing, withStuff); is not terribly different from myThing.DoThing(withStuff);

However architecturally speaking, the difference is huge.

The prior can be just one big file with a bunch of methods in any order you want all using state…

Source: X post

@AntonHand Believe me... lots of voices resisted and tried to deter various things that began to

@AntonHand Believe me... lots of voices resisted and tried to deter various things that began to change... it's a long story.

Source: X post

This is such a good chart to think about and remember. https://upload.wikimedia.org/wikipedia/co

This is such a good chart to think about and remember. https://upload.wikimedia.org/wikipedia/commons/7/7c/Graham%27s_Hierarchy_of_Disagreement.svg

As you go up this hierarchy of ways to disagree and refute, the less common it is. So, most arguments and disagreements you see are usually ad hominem, responding to one, or contradiction.

To present…

Source: X post

The last big remaining barrier I saw for whether or not bitcoin could become a viable global fin

The last big remaining barrier I saw for whether or not bitcoin could become a viable global financial backbone was if the lightning networked actually worked. So far, I have seen no showstopper red flag with the lightning network and now major exchanges are implementing it.

Source: X post

@NintendoScreens The major plot is that humanity went to war with AI, and lost, and got enslaved

@NintendoScreens The major plot is that humanity went to war with AI, and lost, and got enslaved in the matrix, and this is bad, and humanity needs to be freed.

I think what dawned on me is the AI wouldn't even need to go to war to with humanity to get them enslaved like this. It'd just need to…

Source: X post

I watched the matrix again last night. 4K enhanced version in VR. Still timeless. However with n

I watched the matrix again last night. 4K enhanced version in VR. Still timeless. However with new wisdom gained on humanity over the past decade, I can’t help but think, if people were offered some deep dive VR construct to live in exchange for being a human battery to power a…

Source: X post

even though I've read the vulkan synchronization docs like 50 times and have read the examples l

even though I've read the vulkan synchronization docs like 50 times and have read the examples like 100 times I still periodically end up like a fish out of water just helplessly flailing all about

Source: X post

@AntonHand Big anything is not capable of managing anything optimal.

@AntonHand Big anything is not capable of managing anything optimal.

The whole issue of too much centralized coordination revealing itself in a new domain.

Source: X post

@supahvee1234 I wouldn't send you hate messages over it, but I find so much of modern cpp isn't

@supahvee1234 I wouldn't send you hate messages over it, but I find so much of modern cpp isn't that significant. The return-on-investment of additional mental energy and complexity for modern C++ idioms isn't great. It's debatable, but it's not obviously and clearly great. Being able to…

Source: X post

@GBNEWS @Jennifer_Arcuri @thecoastguy https://buybitcoinworldwide.com/bitcoin-is-dead/

@GBNEWS @Jennifer_Arcuri @thecoastguy https://buybitcoinworldwide.com/bitcoin-is-dead/

Source: X post

@BattleAxeVR This review with up close comparisons of text on qoled vs woled just sold me on fin

@BattleAxeVR This review with up close comparisons of text on qoled vs woled just sold me on finally clicking purchase button for the lg woled: https://youtu.be/G5XUAaCBW9w?si=AKv89FyAHMXUtN5n&t=485

Source: X post

@BattleAxeVR I am only on an HDR400 LCD right now so I don't think these are much worse than tha

@BattleAxeVR I am only on an HDR400 LCD right now so I don't think these are much worse than that?

I decided on this after getting used to the bigscreen beyond over the index, and getting used to steamdeck oled over the steamdeck lcd, as technically the overall brightness out of the oled…

Source: X post

sweet... nostr got another $5 million from dorsey in funding... https://opensats.org/blog/opensa

sweet... nostr got another $5 million from dorsey in funding... https://opensats.org/blog/opensats-receives-additional-funding-of-dollar21m-from-startsmall

nostr is still at the top of my list as candidate for the base networking layer of the metaverse. Not realtime networking. Only the initial messaging and signalling network that can serve as…

Source: X post

@supahvee1234 You convince me more and more that C++ exists primarily as a side effect of collec

@supahvee1234 You convince me more and more that C++ exists primarily as a side effect of collective programmer impulse to bikeshed. Compounded over years and years to produce a bunch of fluff to make it appear like programmers did more than they really did.

It's a string with several…

Source: X post

@supahvee1234 I followed you once and bought your book for serious insight on C++ and its issues

@supahvee1234 I followed you once and bought your book for serious insight on C++ and its issues. Which there were good things at times. As a joke it can be fun to rag on langs and argue but I'm starting to feel your recent pro-cpp anti-c postings are not just in jest. If even you need to…

Source: X post

@MalekiRe That's partly been the idea floating around my head. Nostr is only a distributed webso

@MalekiRe That's partly been the idea floating around my head. Nostr is only a distributed websocket mesh relay. Initial concept saw it for chat apps, or twitter like apps, but where everyone has a decentralized identity, no central servers, but it's generic enough you could do more. It…

Source: X post

damn... this guy... 🔥

damn... this guy... 🔥 https://youtu.be/qEJ4hkpQW8E?si=y2AwSokkch04fhF_

Source: X post

@supahvee1234 @Streetware_ C++ can't do on its own what gcc/clang vector types do either.

@supahvee1234 @Streetware_ C++ can't do on its own what gcc/clang vector types do either.

Source: X post

@supahvee1234 bikeshedding

@supahvee1234 bikeshedding

Source: X post

@Streetware_ @supahvee1234 This is one of the big things that made me go back to C from C++ too.

@Streetware_ @supahvee1234 This is one of the big things that made me go back to C from C++ too.

Also designated initializers, which cpp20 does have now, but if you are writing portable cpp for a lib seems many still don't like 20.

Source: X post

@Mizstik It’s a valid point, but I see the switch and the deck showing there is desire for a ded

@Mizstik It’s a valid point, but I see the switch and the deck showing there is desire for a dedicated gaming device. Also the whole mobile games ecosystem is pretty unappealing I find. You need quite a fancy phone to play the bigger titles, and they are filled with annoying monetization,…

Source: X post

@idoccor pico8 is great, I imagine lot of games could be made in pico8 or raylib for it

@idoccor pico8 is great, I imagine lot of games could be made in pico8 or raylib for it

Source: X post

@idoccor I've seen some of these on amazon, but I don't want only an emulator on cheaper hardwar

@idoccor I've seen some of these on amazon, but I don't want only an emulator on cheaper hardware. More so I want cheap hardware that is highly standardized and changes very little in the long term so developers can focus on explicitly those chips. If there was a market for games on the…

Source: X post

For a good decade I thought I was gluten intolerant, always avoiding gluten, because it did caus

For a good decade I thought I was gluten intolerant, always avoiding gluten, because it did cause a reaction. Then I periodically had people tell me they had similar reactions to me, but only in America, they could eat wheat in EU or Japan. I am an experimental type, so out of…

Source: X post

Underlying the desire for AI, automation, or whatever other new tech hype comes around, I always

Underlying the desire for AI, automation, or whatever other new tech hype comes around, I always sense an underlying desire in many that -somehow- this is going to makes things simpler. Easier. More manageable. Perhaps in certain constrained domains it could but when has society…

Source: X post

Most of the time, when dealing with very complex problems, my honest answer to "explain your tho

Most of the time, when dealing with very complex problems, my honest answer to "explain your thought process" is "I stared at the screen for an hour, then paced around for another, until it somehow just occurred to me"

I really don't know where this tendency came from in…

Source: X post

@josethevrtech This right here looks pretty close https://www.clockworkpi.com/product-page/games

@josethevrtech This right here looks pretty close https://www.clockworkpi.com/product-page/gameshell-kit if they could make one in switch or steam deck form factor, then have it slot in an actual rpi, then sold SD cards that came with some OS on them that would auto-boot into a steamos or switchos like UI with a store, I…

Source: X post

@josethevrtech @Hal_clockwork but then you'd also need a recognizable brand to promote it, and a

@josethevrtech @Hal_clockwork but then you'd also need a recognizable brand to promote it, and a few really good new games and a pile of cash in marketing to get the ball rolling...

actually, unity doing this would be pretty fitting... but getting any modern software company to 180 on the "computers are…

Source: X post

I really wish some company with some brand power would make an open-source raspberry pi handheld

I really wish some company with some brand power would make an open-source raspberry pi handheld console akin to steamdeck or nintendo switch. Where they sell a switch-like handheld case with joysticks, buttons and a screen that the pi can slot into. Then have some open store and…

Source: X post

@5xa @amaldorai noooo dont do the orm

@5xa @amaldorai noooo dont do the orm

Source: X post

@zeroshotnothing @amaldorai It's also because, the more complex of a problem domain you get, the

@zeroshotnothing @amaldorai It's also because, the more complex of a problem domain you get, the higher chance you are in an area where simply no one has programmed such a thing before of the exact way you need it to be.

Source: X post

Vulkan timeline semaphores are probably my favorite new thing in programming of the past few yea

Vulkan timeline semaphores are probably my favorite new thing in programming of the past few years. Every lang needs a timeline semaphore feature.

Source: X post

@mwesterdahl76 Default struct values are probably the only thing from C++ which I feel has a rea

@mwesterdahl76 Default struct values are probably the only thing from C++ which I feel has a real tangible benefit over C with no equivalent in C.

Conversely though, in C you then get designated initializers (although cpp20 has these now) and compound literals that work correctly (cpp still…

Source: X post

@Duncan__Cragg your timeline semaphore has an uint64 internal to it, any thread can wait on a pa

@Duncan__Cragg your timeline semaphore has an uint64 internal to it, any thread can wait on a particular value of that, or any thread can signal that internal uint64 to progress forward any amount

So one thread could wait on 4, another on 8, then each successive step of some process it…

Source: X post

@cnlohr wouldnt that be massive though ?

@cnlohr wouldnt that be massive though ?

Source: X post

@amaldorai I think it's less about engineer skill and more about the problem domain.

@amaldorai I think it's less about engineer skill and more about the problem domain.

If you are writing REST APIs probably.

If you are writing graphics or data plumbing code in a game engine, or shaders, not really.

Seems to have a lot to do with, can the problem be described in a…

Source: X post

This quote from the beginning of Ready Player One always echoes in the back of mind:

This quote from the beginning of Ready Player One always echoes in the back of mind:

"We live in a time where people stopped trying to solve problems but instead simply try to out live them." (or something like that)

I feel that is far far far too plausible a future scenario.…

Source: X post

@maximum_plaid @BillyM2k That's a good assessment of something that should be done... but then w

@maximum_plaid @BillyM2k That's a good assessment of something that should be done... but then we also need an aware, engaged, voting base to effectively bring accountability to government, and so far that hasn't been working either. The only thing I can think here is, somehow we need to get money out of…

Source: X post

If there was some doordash like app with gaussian splats of all the food that were perfectly pho

If there was some doordash like app with gaussian splats of all the food that were perfectly photo-real in VR I would absolutely use that all the time. Would absolutely pop on the Quest 3 or AVP for 10-15 mins to pick out dinner.

I really hate the whole "VR Shopping" thing but…

Source: X post

I was conveying my distress about actions of the government concerning privacy to some youth in

I was conveying my distress about actions of the government concerning privacy to some youth in VR. Namely about expanding legislation for surveillance and arresting the Samourai wallet developers. To which they responded with complete dismissal, on the reasoning that of course…

Source: X post

I see a c lib on github and think this will be lean, manageable and to the point.

I see a c lib on github and think this will be lean, manageable and to the point.

I see a c++ lib on github and I think this will be layers upon layers of random crap the engineer felt like inventing. Because I love inventing layers of crap. Who doesn't. Everyone does. Makes you…

Source: X post

@Da_Real_Hugo a taco bell world with gaussian splats in vrchat which you could order from I'd ex

@Da_Real_Hugo a taco bell world with gaussian splats in vrchat which you could order from I'd expect to perform very well

I've thought vrchat should approach some chains and try to set up such a service. They have probably million drunk and high people every friday and saturday night who a…

Source: X post

@BrianHatano Recognition of this trajectory in history is about as non-Marxian as you can possib

@BrianHatano Recognition of this trajectory in history is about as non-Marxian as you can possibly get. It was Ayn Rand's viewpoint: https://youtu.be/OqNmETyYa50?si=PLZok9cJDNk7w89G

Was she right that Capitalism was never achieved in practice in the USA? I don't think that's a terribly controversial statement. Seems…

Source: X post

@BillyM2k All the checks and balances that Ayn Rand and Adam Smith described for Capitalism to f

@BillyM2k All the checks and balances that Ayn Rand and Adam Smith described for Capitalism to function have failed to function in modern developed nations. Such markets are filled with coercion and distortion in so many ways people have simply become numb to it and can no longer even…

Source: X post

I can't really express how bad it is to set the precedent that open-source developers can be arr

I can't really express how bad it is to set the precedent that open-source developers can be arrested for writing software to enable privacy.

It happened before in the early 90's, but enough people pushed back, and it did not become the norm.

It is top tier on the list of…

Source: X post

@WasteCleaner This is a false dichotomy.

@WasteCleaner This is a false dichotomy.

Source: X post

Programmers argue about a lot of things in code that ultimately comes down to "it depends" and s

Programmers argue about a lot of things in code that ultimately comes down to "it depends" and subjective aesthetics. Programming is something where you can just invent things out of thin air simply by typing, which creates a scenario where so much of programming is entirely…

Source: X post

@3orovik @elonmusk It's not expense, it's uncertainty. Everything is too uncertain, makes everyo

@3orovik @elonmusk It's not expense, it's uncertainty. Everything is too uncertain, makes everyone be on edge watching out for themselves, too paranoid to take on more uncertainty with kids. Even if you are in the top percentiles of income, who knows how long that will last, or if some personal…

Source: X post

Although seemingly gone out of style, and no one talks about it, sublime text is quite nice.

Although seemingly gone out of style, and no one talks about it, sublime text is quite nice.

So is 10x editor if you never tried it.

It’s kind of weird to think the baseline of average software has gotten so slow that people can make a living by writing a simpler version that…

Source: X post

@elonmusk Yes, the big controversial hot take that gets awkward to discuss, being good and moral

@elonmusk Yes, the big controversial hot take that gets awkward to discuss, being good and moral requires a certain baseline of strength and power. Otherwise so many things will mess with you, try to co-opt you, use you, control you, that you inevitably will be malevolent. When you have to…

Source: X post

@dannyaroslavski ... sure it is, they've been manufacturing their devices meant to be perceived

@dannyaroslavski ... sure it is, they've been manufacturing their devices meant to be perceived as 'premium' out of typically the thickest aluminum and glass of any company for a few decades now. Even internally going above and beyond in materials to make it look extra ornate and premium if you…

Source: X post

@benz145 Also the bit about the IRS and NSA now tracking everything through cash apps and making

@benz145 Also the bit about the IRS and NSA now tracking everything through cash apps and making you file a tax return if you have more $600 of petty transactions in a year is kind of bad too...

Also payment providers trying to moderate content of individuals and platforms by threatening…

Source: X post

@amaldorai Oh I don’t think it was done to fail, only that making it the slimmest most lightweig

@amaldorai Oh I don’t think it was done to fail, only that making it the slimmest most lightweight device this round was not top priority. Making it appear as fancy and premium as possible for the stage and the store display was the bigger priority.

Source: X post

@josethevrtech You don't need a utopia to bring improvement. We've had many major steps in histo

@josethevrtech You don't need a utopia to bring improvement. We've had many major steps in history that were not utopias, but definitely improvements.

Source: X post

@josethevrtech ... there's still going to be a lot of things quite fucked, human nature after al

@josethevrtech ... there's still going to be a lot of things quite fucked, human nature after all is a thing, but I think it giving way to what could appropriately be termed "A New Renaissance" is reasonable. An explosion of new creativity, ideas, philosophies, spreading and effecting things at…

Source: X post

If "The Metaverse" ever reached its full potential, it'd be a huge economic powerhouse. Potentia

If "The Metaverse" ever reached its full potential, it'd be a huge economic powerhouse. Potentially several hundred million people all participating in a mass virtual construct and economy that transcends all geopolitical borders. Probably even more people some point. It would be…

Source: X post

I honestly wouldn't be surprised if Apple intentionally made the AVP heavier, with more glass an

I honestly wouldn't be surprised if Apple intentionally made the AVP heavier, with more glass and metal than necessary, simply to control customer perception. They know the majority of people are only going to walk into an Apple store, look at it, pick up, try it for maybe 10…

Source: X post

@dankvr This is a pretty important prerequisite that is easier to sell right now as something pr

@dankvr This is a pretty important prerequisite that is easier to sell right now as something practical and important: https://x.com/_rygo6/status/1775366510435000542 I keep thinking I need to put together something and try to get funding, or maybe someone else can.

Source: X post

When you are talking about VR, XR, AR whatever. You are inevitably talking about a good chunk of

When you are talking about VR, XR, AR whatever. You are inevitably talking about a good chunk of society moving some aspects of their lives into a virtual construct. A virtual construct that we don't know who will own it, where it will reside, what its controls are, what its…

Source: X post

Something I think most are wrong about when they envision the future of XR is they imagine it fi

Something I think most are wrong about when they envision the future of XR is they imagine it fitting into the current world. When really, it's such a radically novel medium that the world will consequentially change so much in response to it that notions of how it can fit into…

Source: X post

@gfodor This brand of gummy candy is really good and low sugar cause it’s stevia sweetened and t

@gfodor This brand of gummy candy is really good and low sugar cause it’s stevia sweetened and they do a really good job with the flavor balance so you don’t even notice the stevia https://smartsweets.ca BUT you must order it from the Canadian store or get the Canadian recipe somehow…

Source: X post

I received my invite to the beta of arc browser. Downloaded it because I love the idea of a new

I received my invite to the beta of arc browser. Downloaded it because I love the idea of a new simpler browser, installed, opened. Immediately asks me to create an account and login. I immediately close and uninstall.

Source: X post

@BattleAxeVR I’d agree it’s not a matter of “if” but “when”. Which is the complication. Comparab

@BattleAxeVR I’d agree it’s not a matter of “if” but “when”. Which is the complication. Comparable quality waveguides of comparable price could be quite a ways off.

It’s also going to be the case for a while that “AR/MR Multipurpose” will be antithetical to “Light Small Non-bulky”. It…

Source: X post

@BattleAxeVR I felt kind of stupid for using SDL after trying to implement what I needed myself

@BattleAxeVR I felt kind of stupid for using SDL after trying to implement what I needed myself and managing to do so in like 130 lines directly from windows.h https://github.com/rygo6/moxaic/blob/master/src/window.c

...it will get a bit longer when I add more, and linux, and openxr, but ya I agree people far overestimate…

Source: X post

Apple Vision Pro, Pro Tip. You can buy the lense inserts from Wave VR with any prescription you

Apple Vision Pro, Pro Tip. You can buy the lense inserts from Wave VR with any prescription you want (Zeiss REQUIRES it be a non-expired prescription from current in-business optometrist). They cost about half the price of Zeiss. Then when you put them in and the Apple Vision Pro…

Source: X post

@xgigglypuff https://www.linkedin.com/feed/update/urn:li:activity:7182185290592104449/

@xgigglypuff https://www.linkedin.com/feed/update/urn:li:activity:7182185290592104449/

Source: X post

Some time ago this one little chart on gingerbill's blog wrecked my entire programming world. ht

Some time ago this one little chart on gingerbill's blog wrecked my entire programming world. https://www.gingerbill.org/article/2019/02/01/memory-allocation-strategies-001/

I remember looking at it... thinking... reading the explanation around it... then thinking some more. Then it hit me. Fuck. Data Oriented Programming is correct.… https://x.com/_rygo6/status/1782301652147679377/photo/1

Source: X post

@thdxr about 3 hours

@thdxr about 3 hours

take a nap

then another 3 hours

Source: X post

@NemesisTWarlock Well of course… what kind of weirdo would NOT play with their form and end up s

@NemesisTWarlock Well of course… what kind of weirdo would NOT play with their form and end up some novel creation…

Source: X post

@mkoivuka You need to have firsthand direct experience with it. This isn't purely a logical subj

@mkoivuka You need to have firsthand direct experience with it. This isn't purely a logical subject. The map is not the territory. You can come up with theories, many theories, but it's like theorizing about some other country. Sitting in the distance theorizing, working only with the…

Source: X post

@mkoivuka I'm just curious, do you have a PC VR setup and full body tracking, and have you spent

@mkoivuka I'm just curious, do you have a PC VR setup and full body tracking, and have you spent a good amount of time in some social VR platform that supports such technology?

Source: X post

@mkoivuka central premise is the adequately real recreation of the experience of being in the pr

@mkoivuka central premise is the adequately real recreation of the experience of being in the presence of others

digitizing oneself is only a prerequisite

Source: X post

The 'Metaverse' word has been trashed so much since Zuck renamed FB to Meta, which I hate.

The 'Metaverse' word has been trashed so much since Zuck renamed FB to Meta, which I hate.

There was a large group in the XR industry across Microsoft, Magic Leap, Google and old (non-FB) Meta that would regularly use the term 'Metaverse' before FB even acquired Oculus. Neal…

Source: X post

I got an idea for an electric skateboard part to 3D print, searched google for some CAD software

I got an idea for an electric skateboard part to 3D print, searched google for some CAD software, chose OnShape, and in about 2 hours figured out how to make it without any tutorials. Quite decent. https://x.com/_rygo6/status/1781565570892325026/photo/1

Source: X post

This VR scene from Johnny Mnemonic I still find to be one of the best future visions of what "Th

This VR scene from Johnny Mnemonic I still find to be one of the best future visions of what "The Metaverse" or "Spatial Internet" will be like for those using it in a serious non-play context.

I suspect most people think this scene is rather cheesy and silly, but I think…

Source: X post

@MuchRockness you should read posts before responding

@MuchRockness you should read posts before responding

Source: X post

https://youtu.be/ETMCXDJPncE?si=-5bkm2fFKBRlfHZ_

https://youtu.be/ETMCXDJPncE?si=-5bkm2fFKBRlfHZ_

I'm watching this guy play the hang drums, completely in the zone, complete flow state, just rocking those hang drums, and I'm thinking, this is what it's like to really be in the zone programming. Similar mental state. Then I realize, if he was instead…

Source: X post

Since everyone is now on an AI kick, here is Terence Mckenna waxing poetic on AI in 1998.

Since everyone is now on an AI kick, here is Terence Mckenna waxing poetic on AI in 1998.

Mckenna goes from the beginning to about 25:30 https://youtu.be/OT40eWj4iPw?si=i__aK3I9Yh_UWqey&t=15

I remember around the year 2008 in one of my first real "Professional" jobs I played this 25-minute segment for…

Source: X post

@SebAaltonen What debugger gives you that visualization?

@SebAaltonen What debugger gives you that visualization?

Source: X post

@tolenec @gfodor this wouldn't be for a game

@tolenec @gfodor this wouldn't be for a game

Source: X post

Theoretically, there isn't any reason you couldn't implement low-latency P2P for real-time 3D, e

Theoretically, there isn't any reason you couldn't implement low-latency P2P for real-time 3D, even at a large scale.

If you can't immediately think of a theoretical way to support hundreds of users real-time synchronized via P2P, try to get a bit farther out of the box on how…

Source: X post

@technobaboo Thing though... "standards" aren't what will dictate how this goes, network effects

@technobaboo Thing though... "standards" aren't what will dictate how this goes, network effects are what will dictate it, nothing more.

If in 4 years VRChat keeps compounding ever more users to the point where it's not possible to compete with the resulting network effects, then that weird…

Source: X post

@supahvee1234 @MarekKnapek You shouldn't be calling malloc so many times that it becomes a probl

@supahvee1234 @MarekKnapek You shouldn't be calling malloc so many times that it becomes a problem to keep track of. The heap should be your absolute last option for memory utilization. In most scenarios you know more about the specific constraints of how the memory will be used to use something better…

Source: X post

@supahvee1234 I don't consider myself strictly anti-CPP... but you do have to admit all the just

@supahvee1234 I don't consider myself strictly anti-CPP... but you do have to admit all the justification for CPP over plain C inevitably gets a bit 'hand-wavey'. Sort of like if you were trying to rationalize astrology or some other thing that requires you to layer on so much 'theory',…

Source: X post

@seangmann @dankvr @rp1platform Or maybe a whole OS...

@seangmann @dankvr @rp1platform Or maybe a whole OS...

Source: X post

@seangmann @dankvr @rp1platform Cool, my long-term vision is a new browser too :)

@seangmann @dankvr @rp1platform Cool, my long-term vision is a new browser too :)

Source: X post

@lithiumfox @charshenton Theoretically... involvement of p2p should be able to produce better la

@lithiumfox @charshenton Theoretically... involvement of p2p should be able to produce better latency in certain circumstances. Two peers sending packets directly to each other is faster than sending packets through a third party that does its own additional processing.

The problem is figuring out what…

Source: X post

@darkswordsmantv When I think it through, getting the necessary data to the various peers in the

@darkswordsmantv When I think it through, getting the necessary data to the various peers in the network seems the easier part. Albeit very hard, but it's less in the grey area in my mind. Something like a dynamic star topology based on some heuristic to determine what kind of relay load any…

Source: X post

@charshenton Then you don't multiplex 20 opus streams :)

@charshenton Then you don't multiplex 20 opus streams :)

Source: X post

@charshenton I can think of a way around that which would still keep the benefits of p2p

@charshenton I can think of a way around that which would still keep the benefits of p2p

Source: X post

@charshenton I can think of a way around that...

@charshenton I can think of a way around that...

Instead of running on the first thought that floats across your head that wouldn't work, wait until one floats across that could lead to something that would work.

I am very well aware there are more routes of thought that would end up not…

Source: X post

@aoighost @MalekiRe @technobaboo well... you hope it is... but dark ages do happen

@aoighost @MalekiRe @technobaboo well... you hope it is... but dark ages do happen

Source: X post

@AntonHand Have to rule out tension. Of you unknowingly keeping muscles tense, or you standing/s

@AntonHand Have to rule out tension. Of you unknowingly keeping muscles tense, or you standing/sitting in ways that cause you to keep them tense. Learn what your body feels like when it's completely relaxed and un-tensed. People develop weird unconscious habit of keeping parts of their body…

Source: X post

@technobaboo None of that is necessarily true... it really all depends on how it's made.

@technobaboo None of that is necessarily true... it really all depends on how it's made.

Source: X post

@IHadThisOneIdea Personally, I think the bigger hurdle is the software and the OS. There are ple

@IHadThisOneIdea Personally, I think the bigger hurdle is the software and the OS. There are plenty of hardware efforts out there, but it's the software properly design and executed that is missing.

Source: X post

@darkswordsmantv well ya... funding is another whole complication I've written about before, but

@darkswordsmantv well ya... funding is another whole complication I've written about before, but it's a whole different subject

Source: X post

@dankvr Ya basically… pretty much every big step in technology was from people trying to overcom

@dankvr Ya basically… pretty much every big step in technology was from people trying to overcome a problem which was a daily lived experience.

It’s in this ironic way that prior success in tech and the life it then affords is the Achilles heel which inhibits proper execution of the…

Source: X post

@bai0 Ya it’s pretty uncanny now thinking about this, that groups tend to just produce the solut

@bai0 Ya it’s pretty uncanny now thinking about this, that groups tend to just produce the solution to their own problem. I’m starting to think it is no coincidence that Meta has built the greatest child distraction device. Get a bunch of people with families, or family aspirations, to…

Source: X post

If some company, startup or group wanted to disrupt Apple, Meta and Microsoft, same as how they

If some company, startup or group wanted to disrupt Apple, Meta and Microsoft, same as how they all once disrupted prior giants, and become the new giant themselves. While this will be very ‘hard’ to do, the path to do so I think is clear. A decade ago there wasn’t even a…

Source: X post

If people started making random noises at each other to communicate, completely disallowed to us

If people started making random noises at each other to communicate, completely disallowed to use any known words, I wonder how long it would take some new language to evolve in something like VRChat.

It's interesting to think through the scenario of what this would be like, as…

Source: X post

The one thing I really hope AI can do in programming someday -- train it on every intrinsic spec

The one thing I really hope AI can do in programming someday -- train it on every intrinsic spec out there. Then feed it an algorithm in a single method written in straight-forward C to have it rework it and write the method as optimally as possible for every specific chip using…

Source: X post

There is a common sense that singletons are bad because they make testing harder since you can't

There is a common sense that singletons are bad because they make testing harder since you can't mock it.

However, if you go back and read the Gang of Four chapter on singleton, the entire point of the singleton is to allow the subclassing of what could otherwise be a static… https://x.com/_rygo6/status/1779251577796370603/photo/1

Source: X post

@philiprosedale All money needs some kind of constraint in physical reality in order for it to h

@philiprosedale All money needs some kind of constraint in physical reality in order for it to have value. Gold wouldn't be valuable if anyone could just pop out an endless supply of Gold. The same goes for Bitcoin. Also, the same goes for USD or any fiat currency. Each has some mechanism in…

Source: X post

@Tuushie I feel this is just a thing you must wander through and experience first hand. Work som

@Tuushie I feel this is just a thing you must wander through and experience first hand. Work somewhere that adheres to SOLID as the highest principle, then somewhere that adheres more to data oriented design perspective, or I’d even give companies focused purely on functional style with…

Source: X post

Try catch exception unwinding up the call stack is a more egregiously confusing control flow to

Try catch exception unwinding up the call stack is a more egregiously confusing control flow to follow than in-method labels and gotos.

It's a good example how, if someone does not have apprehension of their belief and convictions from first principles, something worse can flank…

Source: X post

I went on a long excursion through C++ to determine if I should use it for my personal work (pro

I went on a long excursion through C++ to determine if I should use it for my personal work (professional I don't really have a choice) and my conclusion is. If you are to write code aimed at maximal performance, you must write C or very C-like C++, but if you write excessively…

Source: X post

@Chrusb @AlexRoseGames The implementation of Unity deserialization is quite a bit better than wa

@Chrusb @AlexRoseGames The implementation of Unity deserialization is quite a bit better than walking through a class and doing it with reflection entirely in C#.

Source: X post

An experienced developer can explain to you SOLID and the significance of each principle.

An experienced developer can explain to you SOLID and the significance of each principle.

An even more experienced developer can explain to you why SOLID is crap.

Source: X post

@AlexRoseGames Next time try just an all static class ;)

@AlexRoseGames Next time try just an all static class ;)

The real reason for a singleton over a static class that seemingly most all the Unity dev base forgot, or just never knew, is that, it lets you subclass the implementation of the class if you need to change it for whatever reason, or…

Source: X post

@DOUGHtechnology Are you going to actually honor all the prior refunds ?

@DOUGHtechnology Are you going to actually honor all the prior refunds ?

Source: X post

@AntonHand This is actually the one thing I think acupuncture can realistically help with. If yo

@AntonHand This is actually the one thing I think acupuncture can realistically help with. If you unconsciously hold a bunch tension in your back, neck, face wherever there is no better way to make you aware of it and stop tensing it than to stick a needle in the muscle and lay like that…

Source: X post

@AntonHand Really comfortable bean bag perfectly contoured to your back then high end headphones

@AntonHand Really comfortable bean bag perfectly contoured to your back then high end headphones with relaxing music so you can deeply relax and fully un-tense everything into proper alignment for an hour so.

Floating in an isolation tank could do the same.

I found this helped me more.…

Source: X post

@DennyCloudhead Excuse as I type out a little novel here as I've never fully English'd my feelin

@DennyCloudhead Excuse as I type out a little novel here as I've never fully English'd my feelings on this.

I have my own short thesis on how you can make VR experiences that don't cause discomfort, and how you can gradually acclimatize people to this. Over the years I've given people tours of…

Source: X post

@cixliv that sounds likely

@cixliv that sounds likely

Source: X post

One of the books I always recommend people to read is "Capitalist The Unknown Ideal" by Ayn Rand

One of the books I always recommend people to read is "Capitalist The Unknown Ideal" by Ayn Rand.

Sometimes people have the wrong idea about why I do this, supposing it's some promotion of Capitalism, or because I am a fan of Ayn Rand, or something. Neither are the reason.…

Source: X post

One of the books I always recommend people to read is "Capitalism The Unknown Ideal" by Ayn Rand

One of the books I always recommend people to read is "Capitalism The Unknown Ideal" by Ayn Rand.

Sometimes people have the wrong idea about why I do this, supposing it's some promotion of Capitalism, or because I am a fan of Ayn Rand, or something. Neither are the reason.…

Source: X post

HolyC is kind of unironically pretty decent....

HolyC is kind of unironically pretty decent.... https://holyc-lang.com/core.html I never really looked at it before.

Source: X post

@DennyCloudhead If the VR best practices were really important for success then Gorilla Tag woul

@DennyCloudhead If the VR best practices were really important for success then Gorilla Tag would not be the most popular title on Quest.

There are lots of rational reasons to come up with to smooth adoption for older age groups, and by all means I’m for people exploring them, but a hard pill…

Source: X post

@cixliv In mobile apps the increase in user count is usually 5x to 10x from CCU to DAU to MAU.

@cixliv In mobile apps the increase in user count is usually 5x to 10x from CCU to DAU to MAU.

So, if your CCU is 50k, then you DAU is 250k at a minimum, and your MAU would be 1.25 million at the low end. At the high end if CCU is 50k then DAU is 1 million and MAU is 10 million.

Just…

Source: X post

@BattleAxeVR @mixedrealityTV I kept thinking about building an RC car this past year but then go

@BattleAxeVR @mixedrealityTV I kept thinking about building an RC car this past year but then got into building electric skateboards instead... It's great. It's like building a RC car you then get to ride and then too easily kill yourself on because for whatever stupid reason you can't help yourself and end…

Source: X post

The "Cursed C Defer Implementation" logs:

The "Cursed C Defer Implementation" logs: https://godbolt.org/z/zssh6997d https://godbolt.org/z/5eqs8Tzf7

Source: X post

https://godbolt.org/z/b6oM5EboM

https://godbolt.org/z/b6oM5EboM

Source: X post

https://godbolt.org/z/3Mh1Exv78

https://godbolt.org/z/3Mh1Exv78

Source: X post

@MRay_Games Yes, my two favorite games of the past decade are Hellblade 1 and Scorn, because bot

@MRay_Games Yes, my two favorite games of the past decade are Hellblade 1 and Scorn, because both can be beat in like 5-8-ish hours.

I don't have time to sit around all day playing games. Of the small time I do have I want to it to a short, highly curated, experience by really gifted…

Source: X post

@jowoseph Hm. I didn't know they just ghosted on refunds.

@jowoseph Hm. I didn't know they just ghosted on refunds.

Source: X post

@hawkk01 Quest 3 and AVP Optics are better. But Beyond vs Q3/AVP/Index presents an interesting s

@hawkk01 Quest 3 and AVP Optics are better. But Beyond vs Q3/AVP/Index presents an interesting split.

Where the Beyond tries to be as small as possible to get the optic as close to your eye as possible, resting within the radius of the ocular socket.

Whereas Q3/AVP and everything else…

Source: X post

@ezreeszy I don't find the FOV difference of beyond vs index significant for any practical use.

@ezreeszy I don't find the FOV difference of beyond vs index significant for any practical use. I can glance down at my xsoverlay hand menu the same as I would on index. The whole big VRC menu sits in my readable FOV easily.

If I analyze it, the curve of the blur in the FOV starts sooner…

Source: X post

After a month of daily use of the Bigscreen Beyond I decided to go back to my Valve Index just t

After a month of daily use of the Bigscreen Beyond I decided to go back to my Valve Index just to see, and the visual quality difference was a night and day slap in the face. I almost couldn't believe how bad the visual experience of the Index is in comparison after getting used…

Source: X post

@cnlohr I didn't know the bible was such a strong promoter of bitcoin...

@cnlohr I didn't know the bible was such a strong promoter of bitcoin...

Source: X post

At one level.... it's all just Capitalism.

At one level.... it's all just Capitalism. At a deeper level... it's all just energy condensed to a slow vibration.

Source: X post

I really like the idea of people buying some kind "Compute Box" that a bunch of thin client devi

I really like the idea of people buying some kind "Compute Box" that a bunch of thin client devices can remotely share. This "Compute Box" could also be their webserver, cloud host, game server, backups, router, IPFS node, some crypto miner, as well as space heater…

Source: X post

@technobaboo You can discern if certain implementations in C are safe or not by understanding wh

@technobaboo You can discern if certain implementations in C are safe or not by understanding what they are doing.

Source: X post

@technobaboo No big codebase I work in is entirely written in a c-style. Currently, they are pri

@technobaboo No big codebase I work in is entirely written in a c-style. Currently, they are primarily C#, Swift and some higher-level C++, but for some problems being able to put state in memory and operate on it directly is the simplest. These sorts of things are never exposed as a public…

Source: X post

@technobaboo Honestly some arguments I've seen in some rust repos about the need to rewrite unsa

@technobaboo Honestly some arguments I've seen in some rust repos about the need to rewrite unsafe parts in safe syntax make me think rust is not for me. I will write something in the most minimally optimal way I can in a C-style, and if it doesn't work in rust's checks, then that means the…

Source: X post

I really like that emacs and vim are these super lightweight editors that can run anywhere, and

I really like that emacs and vim are these super lightweight editors that can run anywhere, and in the terminal, but the simple truth is, there have been new modalities of text editor and IDE UX invented since they came out. I have great respect for the C kernel dev that can…

Source: X post

I really hate that 'unsafe' became the chosen word in all the new lang features, because objecti

I really hate that 'unsafe' became the chosen word in all the new lang features, because objectively speaking, it is a lie. 'unsafe' code is not necessarily 'unsafe'. It could be perfectly safe. 'unchecked' would have been a more appropriate keyword, it is more literally true.…

Source: X post

I always want people to listen to me and do things I think are really important, but TBH as soon

I always want people to listen to me and do things I think are really important, but TBH as soon as two people start agreeing on anything, it starts to freak me out. You get two people agreeing, then you get two more, and two more, and before you know it you have some kind of…

Source: X post

I always want people to listen to me and do things I think are really important, but TBH as soon

I always want people to listen to me and do things I think are really important, but TBH as soon as two people start agreeing on anything, it starts to freak me out. You get two people agreeing, then you get two more, and two more, and before you know you it ytou have some kind…

Source: X post

@elonmusk Conservatives: "People need to get married more and have kids more!"

@elonmusk Conservatives: "People need to get married more and have kids more!"

also, Conservatives: "Any law which provides greater stability, support and security to the middle class is bad!"

... but to be fair, at this point, the city's which are the most punishing to the middle class…

Source: X post

@AntonHand Sad thing is, if Apple or Meta or whomever actually managed to get a monopoly on the

@AntonHand Sad thing is, if Apple or Meta or whomever actually managed to get a monopoly on the hardware and software which lets you contact friends/family, that's so incredibly valuable that anyone would pay whatever they'd have to not lose access to that, and companies would just follow…

Source: X post

@TheGingerBill @LizardOrman @timClicks This was actually the thing that turned into the showstop

@TheGingerBill @LizardOrman @timClicks This was actually the thing that turned into the showstopper for me with Rust as a general programming language, and a low-level language. Discovering there is no fully 'unsafe' mode and there will always be some category of problem you have to fuddle around with rust-isms. Even…

Source: X post

I really want to like neovim, or emacs, or some simpler code editor... but jetbrains is just too

I really want to like neovim, or emacs, or some simpler code editor... but jetbrains is just too good. Particular these past few years I feel they've just been knocking it out of the park.

Source: X post

@chaostheorem I also suspect it has a lot to do with giving people the space to get obsessive ov

@chaostheorem I also suspect it has a lot to do with giving people the space to get obsessive over details.

A lot of management in companies just don't let people iterate to perfection.

Source: X post

@0xglitchbyte Learning git isn't so much specifically about git, it's about learning proper sour

@0xglitchbyte Learning git isn't so much specifically about git, it's about learning proper source control habits. An engineer who can't make proper commits, proper pull requests and do proper merges will be useless no matter how good the code is they write. They need to be able to get it into…

Source: X post

The most valuable thing the AVP does that no other HMD does. I can pick it up put it on, in like

The most valuable thing the AVP does that no other HMD does. I can pick it up put it on, in like 10 seconds it will be ready to go and usable, it will remember where I placed my MacBook Pro monitor with a “connect” button there, with 1 click and 5 more seconds I have my MacBook…

Source: X post

The most valuable thing the AVP does that no other HMD does. I can pick it up put it on, in like

The most valuable thing the AVP does that no other HMD does. I can pick it up put it on, in like 10 seconds it will be ready to go and usable, it will remember where I placed my MacBook Pro monitor with a “connect” button there, with 1 click and 5 more seconds I have my MacBook…

Source: X post

@pvncher no I haven't, maybe ill give that a go, but what's roundtrip latency of input?

@pvncher no I haven't, maybe ill give that a go, but what's roundtrip latency of input?

Source: X post

@pvncher @AndreElijah Found it here: https://www.pcgamesn.com/nvidia/geforce-now-competitive-mod

@pvncher @AndreElijah Found it here: https://www.pcgamesn.com/nvidia/geforce-now-competitive-mode-latency 70ms which is definitely impressive.

They claim their test PC is 40ms of local latency, but that seems pretty bad to me for a local pc, better chosen parts could get that lower.

But for VR, all the hardware and software is specifically…

Source: X post

@paulg The political issue around this is really not that complicated.

@paulg The political issue around this is really not that complicated. - There are issues with how the US functions in a multitude of ways that need to be addressed and improved. - In a Democratic nation, this should be possible with some kind of democratic process. - Most people are…

Source: X post

I decided to try PlayStation Plus Streaming because why not and also I am always curious about c

I decided to try PlayStation Plus Streaming because why not and also I am always curious about cloud rendering solutions. Which it's quite good, definitely playable, but still, damn does it suck. And damn does Sony make you go through an extremely hard process to get a refund (I…

Source: X post

@Chase_Davis_ I think for this I'd differentiate between lag and latency, where I wouldn't say P

@Chase_Davis_ I think for this I'd differentiate between lag and latency, where I wouldn't say PlayStation plus had lag, it was smooth and stable, I am on a main fiber line up I-5 on the west coast, but it had added latency. So, I'm wondering, how good can the latency get? It seems Xbox and…

Source: X post

@PeterBrobby bots, I'm not sure... maybe because I don't tweet about current trend buzzwords muc

@PeterBrobby bots, I'm not sure... maybe because I don't tweet about current trend buzzwords much, I tend to use more complicated phrasing and I have no hesitation going against the grain in viewpoint

for e-thots, what exactly is that?

Source: X post

@LeirielVR Cheekiness aside, I do mean that seriously, you're going to miss quite a bit if you j

@LeirielVR Cheekiness aside, I do mean that seriously, you're going to miss quite a bit if you judge the relevancy of these subjects through hype on screenland social media. Someone finding use in an HMD isn't necessarily going to create buzz on social media, they'll just use the HMD...

Source: X post

I think the simple fact of the matter is, if you are writing C++ or other comparative lang highe

I think the simple fact of the matter is, if you are writing C++ or other comparative lang higher-level than C, then a higher percentage of your brain memory is taken up by things which are not directly related to issuing actual CPU ops to change actual state in RAM of your…

Source: X post

I think the simple fact of the matter is, if you are writing C++ or other comparative lang highe

I think the simple fact of the matter is, if you are writing C++ or other comparative lang higher-level than C, then a higher percentage of your brain memory is taken up by things which are not directly related to issuing actual CPU ops which to change actual state in RAM. You…

Source: X post

For whatever reason I got on a 'realistic space travel' film binge the past month. 'For All Of M

For whatever reason I got on a 'realistic space travel' film binge the past month. 'For All Of Mankind', 'Ad Astra', 'Spaceman'. All portray a rather realistic account of what space migration and colonization might be like.

A common theme in all them of them is people going…

Source: X post

A "Computer Science Degree" should be 4 years of government subsidized open source contributions

A "Computer Science Degree" should be 4 years of government subsidized open source contributions, at the end of which, a company can decide to hire you based on your commit and pull request history.

No classes or books. Give them a laptop and give them an overview of the open…

Source: X post

@LeirielVR … no one is hyping bread on social media either… must mean bread is useless and didn’

@LeirielVR … no one is hyping bread on social media either… must mean bread is useless and didn’t catch on…

Source: X post

It's interesting to me, C# has been adding features and improvements to make it faster and faste

It's interesting to me, C# has been adding features and improvements to make it faster and faster, while comparatively C++ is adding things which make it slower.

Already C# 11 could beat, or be head-to-head, in a bunch of benchmarks with C++: https://benchmarksgame-team.pages.debian.net/benchmarksgame/fastest/csharpcore-gpp.html Then using…

Source: X post

It's interesting to me, C# has been adding features and improvements to make it faster and faste

It's interesting to me, C# has been adding features and improvements to make it faster and faster, while comparatively C++ is adding things which make it slower.

Already C# 11 could beat, or be head-to-head, in a bunch of benchmarks with C++: https://benchmarksgame-team.pages.debian.net/benchmarksgame/fastest/csharpcore-gpp.html Then using…

Source: X post

@tsoding this is true... and I feel this is why I've been so successful even though some competi

@tsoding this is true... and I feel this is why I've been so successful even though some competition coders could run leetcode circles around me and make me look like I barely know anything... for whatever reason I can just read large, complex, horrible, codebases, get a sense of it with…

Source: X post

Thinking more about how C++ and object-orientation incentivizes cache naive programming practice

Thinking more about how C++ and object-orientation incentivizes cache naive programming practices, and how such paradigms are inherently flawed because of that, the thought crossed my mind of, "What the hell were they thinking back then!?" To which it occurred to me this notion…

Source: X post

Thinking more about how C++ and object-orientation incentivizes cache naive programming practice

Thinking more about how C++ and object-orientation incentivizes cache naive programming practices, and how such paradigms are inherently flawed because of that, the thought crossed my mind of, "What the hell were they thinking back then!?" To which it occurred to me this notion…

Source: X post

I've seen a handful of really interesting and really smart C projects binding themselves with lu

I've seen a handful of really interesting and really smart C projects binding themselves with lua. First redbean, then neovim, come to mind. To which I initially thought "Lua!?" "Why!?" I've never touched lua. Why not python? Or maybe quickjs if you want a tiny and easily…

Source: X post

@bkaradzic what's the better build system to use ?

@bkaradzic what's the better build system to use ?

Source: X post

@bkaradzic interesting, so a lua based build system, I have seen lua being used more and more in

@bkaradzic interesting, so a lua based build system, I have seen lua being used more and more in interesting C projects

Source: X post

@bkaradzic I'm actually curious of what else to use, and for what scenarios, because I tend to a

@bkaradzic I'm actually curious of what else to use, and for what scenarios, because I tend to always use cmake and often wonder if I should use something else.

Source: X post

Touching cpp is such a slippery slope because, even though I do believe you can make code a bit

Touching cpp is such a slippery slope because, even though I do believe you can make code a bit more elegant with some cpp features, then you invite in the cpp community and the whole culture around it. Then pretty soon you are having to argue why encapsulation is a bad idea and…

Source: X post

If somehow you could objectively measure this, in comparison to plain C I would not be surprised

If somehow you could objectively measure this, in comparison to plain C I would not be surprised at all if it turned out all the supposed "productivity gains" from new features in modern langs like C++, C#, Rust etc. were completely negated by all the additional time engineers…

Source: X post

@cnlohr but look at how nice this: https://godbolt.org/z/hxjrnz3M9

@cnlohr but look at how nice this: https://godbolt.org/z/hxjrnz3M9

Automatically inferring types, automatically inferring if it should be a list or a pointer, automatically filling in default values in the designated initializer, automatically filling in the array counts. The monstrosity of…

Source: X post

@Andercot The HDI is a more advanced and developed metric for this which will you let you cross-

@Andercot The HDI is a more advanced and developed metric for this which will you let you cross-reference a greater number of countries to bring data to your theory. https://hdr.undp.org/data-center/human-development-index#/indicies/HDI

Source: X post

Vision pro virtual screen from a MacBook pro is remarkably low latency and clear. I almost can't

Vision pro virtual screen from a MacBook pro is remarkably low latency and clear. I almost can't tell it's virtual, and over my wifi. I wonder what codec they used. Can result this good really be pulled off with h265 or h264?

Source: X post

There are only two truly hard things in programming:

There are only two truly hard things in programming: 1. Programming to minimize cache misses and cache invalidation. 2. Fully grokking why 95% of the software industry is completely full of shit and avoiding it.

Source: X post

I've done so much work on a MacBook pro trackpad this past year that my fingerprint no longer wo

I've done so much work on a MacBook pro trackpad this past year that my fingerprint no longer works to open the mac because it's been smoothed out too much.

Source: X post

One mechanic which propaganda relies upon is that people's starting point of "reason" is based u

One mechanic which propaganda relies upon is that people's starting point of "reason" is based upon whatever first caused the greatest emotional impact. This is true for everybody, even those that might like to consider themselves highly rational and scientific. It's just a human…

Source: X post

One mechanic which propaganda relies upon is that people's starting point of "reason" is based u

One mechanic which propaganda relies upon is that people's starting point of "reason" is based upon whatever first caused the greatest emotional impact. This is true for everybody, even those that might like to consider themselves highly rational and scientific. It's just a human…

Source: X post

One mechanic which propaganda relies upon is that people's starting point of "reason" is based u

One mechanic which propaganda relies upon is that people's starting point of "reason" is based upon whatever first caused the greatest emotional impact. This is true for everybody, even those that might like to consider themselves highly rational and scientific. It's just a human…

Source: X post

One mechanic which propaganda relies upon is that people's starting point of "reason" is based u

One mechanic which propaganda relies upon is that people's starting point of "reason" is based upon whatever first caused the greatest emotional impact. This is true for everybody, even those that might like to consider themselves highly rational and scientific. It's just a human…

Source: X post

@DyLhun I don't know if I am fully following, but I think that's what I was meaning? Intel has l

@DyLhun I don't know if I am fully following, but I think that's what I was meaning? Intel has less cache, but it has faster raw compute, so if your game is better optimized to use that cache, it will go faster on intel. Whereas games that are poorly optimized for cache can be better…

Source: X post

@cnlohr the thought that keeps coming back to me is maybe I should make my own minimal pre-proce

@cnlohr the thought that keeps coming back to me is maybe I should make my own minimal pre-processor for C to add just a handful of syntactical sugar that can make a big difference, because I don't want a lot, but how much boilerplate just a few things can remove is pretty significant

Source: X post

After getting more used to it, I've become quite fond of the bigscreen beyond putting most of th

After getting more used to it, I've become quite fond of the bigscreen beyond putting most of the weight of the headset across the top of my nose and between my eyebrows. The weight of an index, quest or avp put there would be intolerable, but the beyond is light enough that it…

Source: X post

I look at this and think, if my suspicion that the huge perf gains of AMD 3D cache is from how c

I look at this and think, if my suspicion that the huge perf gains of AMD 3D cache is from how cache optimized the design of a program is, then this means, depending on how well I design my program to utilize cache optimally, I could get roughly 20% more performance or 20% worse… https://x.com/_rygo6/status/1769566574346993792/photo/1

Source: X post

@cnlohr With C++ you put the default values in the struct definition itself, so I'm assuming any

@cnlohr With C++ you put the default values in the struct definition itself, so I'm assuming anywhere you import that struct, it'd import the same defaults. Can that somehow change based on compilation path?

Source: X post

@cnlohr oh, I don't actually know enough about the compiler to comment on that, I'm just assumin

@cnlohr oh, I don't actually know enough about the compiler to comment on that, I'm just assuming there has to be a way

Source: X post

@ChristerEricson Anything running in mainstream narrative is there because someone was willing t

@ChristerEricson Anything running in mainstream narrative is there because someone was willing to spend the millions to make it so, and somehow, in some way, it is feeding back into someone's, or something's, play for greater power or greater bottom-line. Otherwise, they wouldn't have spent the…

Source: X post

Twitter is kind of like a slot machine for ideas. You put an idea in, pull the lever, then sit a

Twitter is kind of like a slot machine for ideas. You put an idea in, pull the lever, then sit and watch if it scores big or not.

Source: X post

@PeterBrobby definitely no threads, that's an OS feature not a language feature, cross platform

@PeterBrobby definitely no threads, that's an OS feature not a language feature, cross platform thread libraries are just a wrapper around the OS header for threads

Source: X post

If I had a choice, the only features I would add to C from C++ are:

If I had a choice, the only features I would add to C from C++ are:

default struct values namespaces const ref typed enum class methods in structs most basic templates possible initializer_list auto constexpr static vars

put those in C and I would desire nothing else

Source: X post

@endingwithali https://www.youtube.com/playlist?list=PLBuns9Evn1w-T2RwqMhUnTZbTTe-M-g42

@endingwithali https://www.youtube.com/playlist?list=PLBuns9Evn1w-T2RwqMhUnTZbTTe-M-g42

Source: X post

@cnlohr The values just go in the assembly if one is not specified in the designated initializer

@cnlohr The values just go in the assembly if one is not specified in the designated initializer? https://godbolt.org/z/5nGxd9eq3 It's the thing that annoys me the most because there is no way in C to get default struct values as cleanly as you can in C++ with designated initializers, both in…

Source: X post

@cnlohr Or no, that was wrong actually. If you want to be able to init with designated initializ

@cnlohr Or no, that was wrong actually. If you want to be able to init with designated initializers, but then have default struct values filled in, this is what you have to do, which is even worse than the last example: https://godbolt.org/#z:OYLghAFBqd5TKALEBjA9gEwKYFFMCWALugE4A0BIEAZgQDbYB2AhgLbYgDkAjF%2BTXRMiAZVQtGIHgBYBQogFUAztgAKAD24AGfgCsp5eiyahUAUgBMAIUtXyKxqiIEh1ZpgDC6egFc2TEAtydwAZAiZsADk/ACNsUikAdnIAB3QlYhcmL19/QNT0zKEwiOi2OISeZIdsJyyRIhZSIhy/AKCauqEGpqISqNj4pPtG5ta8jtG%2B8IHyoaqASnt0H1JUTi4Aek2AaiYCdZ2MthTGHYB3FgBPHZIdpBYAN2wdnBofCSIjolIfJx3HhIfNglGYtABBba3B5fFKkLB/EE7VCMYwgr4sJQqcr0K5g8H4pQ/P5fAAq6LMiRsEJ2tJ24QxlKsPC0WkpABEzABmangun04Q7GJMiysjnc3n8hnIplcsWJTk8/FSwWYJnSeWK3nipUQ/HStgscIQBY7JnKunkom3ClUi382kAOlQZq57J2LNZ5HtDsdmFd7tFXp9OsldNI2CIqyYOzZuoJCq4S3o3AArPwAlwdOR0NwPLZbEcVmsXpYuXxyERtEmlgBrEDlx0WACczYAHKnmxYLCzu63U4ZuNJ%2BGwQNJU46AGzScetuXlrmptvN8iZ7O5rj8JQgLSV6tLOCwFAYE4MeKUagnlJnhLAHhcoJ0ehEeLbiAxavkGLhJpXbgV79WFIK4AHkYl0Woq14fgTw4YQQKYXFPxwGIfGADwJHobdoPIHBDRMSQs34QgIzqZ5sOzbB1FqHwX3/fgGWwFMiMMAgYlIX8vBwT8fgIUdoKWGgjGAJQADUCGwc4QJSZh6LkYQxAkTgZHkxQVA0T99B4QxjFMAtrFYmJt0gJZ0BSZwhGw/h0GeUhSAIHBjJNewmMgrI3CYTxvDaAxQhmMoKgMNIMgs7JvLybTgqKJh%2BgC%2BYXMcUKejGcKAm0zokqmWLBkqEZenGNK8uabK5kqJYlGLdYpGTNMM0/DcdnUNtJwAWmnHZgFQF17ybHYIHwYgyDNCxywWfgoJ0BYliQbAWBwBJnOY4dyFHVNpEdRc1tZSdm0nZrpB4bS12s7gtx3PciKm8h6zlR1xy0VNEhnPbJy5WcgmYrk6pYjdxv3chDwQeAIGPLA8EIEgKCoWgz1YDg5MEBTxEkFTEbUtRNBY/QPt0kAAH0CdQBK3NcCB3AK/I/NKHKpBXKLQopoJ6ayErAp4FcMvqKZGeJromGS6ZqdK2mipaVL8iJXpWfmZtysqjYoVwABHHwCEBRhBTuOEEUOJR2BeTFsRiXEBR2fMIShc5iCQHZMNeEECGAVgX39cJMgkAgAC9X3xfEiCuGS3m%2BX5/itIhzRpOlpRYCUfWlYV4xVL5zETqPVVjvUFR2MOM4JCEDSNJgTTNO1I9pMObWtbl3QjvkHSdFgAw9YMy99GIm6Db1W/5Z0m89XcfR7/1q52IMB9b0MfQjKNSBjONtUTGquHTVd6rzItVkOMsLD%2By7ptm%2BbqDrEBUwnZtO2nLlF1bCxpC7AclpHMcJ0SctEi0V%2Bqg/t/V5%2B077HOhNJMANEAgzQOgU8jAoaXggdeKBaA7wPgEAwF8pA3wfhYoBX8cksHATAhBJwclYLMCIAhJCLEUJoQwvQLCck8K6UItmEiblyKfiojROiOFGLMWzPQNiHFgJcQ2NmXi/E%2BCCWEmJCSUkZKZgrGjRSKNZBo2UBjTS%2BQjAmHxoTQyTlTLmSyFZHMtl7KOXgOVVyfMPJeVyIVKmsw2YFBClkCmkVCihWlrlTm3Rubi3SpYzKUt/I03Sr42xBhJbFWCcLHgctN6cAsEvFex0czcEas1Nq0gOpdQ9FyXq/UIZDW3mNC6k195zSGItIcT81pNj2i2Cw9Sux7Ter/dc/9ty7iAVdesLZHSHS0PeVMk5DrNjvpOV%2Bg4uBfTaSdTcpTgGAyWaDHAA1IYXhhhrfWCN5CKOUso%2BQqiNJYwbDpLRBM8ZE28QEMmnkeb2LigkRpTjoo82ZsUaJgVnnXIFjzH5WVPlDG%2BWEnykwglCy%2BZOOJJZuBQhENgbAbBwjAGhC8IQJtLg3HCGbW46AOqRmGhYdk2AaAsB8M%2BSwFgARAhBPiKEQhbbBxJNCFgXxMBCDAFwL4Dxni4ttjQoULwVBfGxUQGaZoLa7Eco7Z22BXb7GcB7b2aCLhIAODbbWmBERKB2GwP4NtzhkBULbLEiLjZ4j1BCf2gcSVMtDraMMtJo65yTkKF1adk7uqdeneMHJs4Ul9RCCuxLSXkqIEoCAYcABUOwUhh1NLXKUNA%2BpxvRC1bkuBG7VxHloU0qaiTpq5JmvuYpU5OuTRAfNRBC24Hbtmt0sY81hxrXWhtQYvX0grVWmtLp63ulzbG5tGbe0NrlPPOOXah1FuHm6HNTa00Zpne6DU47W7T2jDsKNVbc7ikteCAuxoE2lzruXdElcvgjxDWS58EbLCTkjeiBYib647F7iPfuXcT2%2BiXaPVk48v0cifWWnY67Z6xh3YvKZyS15cA8BvEsw0r67zKddMcWg7pci7MuZs7MDqPVkI/Faz9HRti5K9VMWhpDvwmW9IIKTfoAK6f9ZZ4DIHnmhleG8CD7yPhQa%2BagGDsy4L/DhYT%2BDIJEIgXBUhiERNMOwKhdCmFsIVnoQRYRxECCkWcKwli7DUC0Q2BWbhn4%2BHsU4mDHi9kxHAKEiwES4lJLSVkjhBRyN9mqSOZjbM%2BguRnNABcomZm9E5gMZZf%2BNl4imJBOY3moVrGuOCJ5TxQV3EuL8S8jxgKvEBK5vlDL/zwUOPipEsW4TQlFcedVZY8SGxJO%2Bu0rg6TWrtU6t1PJVKCmDVIIhrkJTunlMPlUrgy1VrrR4K9ac58WwPknEuWZqT5mdIWT0tDGGsOtlwzwfDUyZn0f/gNqZO8FsMcO7ZDIrhpBAA%3D%3D

At least for vulkan, being able to put…

Source: X post

@cnlohr is the way cpp does it really that bad?

@cnlohr is the way cpp does it really that bad?

Source: X post

@cnlohr I could make due with only default struct values

@cnlohr I could make due with only default struct values

everything else could go into C+

Source: X post

@cnlohr and I know you can do this https://godbolt.org/z/f17dKKsWh but designated initializers a

@cnlohr and I know you can do this https://godbolt.org/z/f17dKKsWh but designated initializers are nice and are much cleaner if you have to deal with initializing lots of nested types in the struct, which is common in vulkan

Source: X post

@aras_p @michae1becker This is the project I've been on, and I can at least say everyone is high

@aras_p @michae1becker This is the project I've been on, and I can at least say everyone is highly interested in adapting it to as many other aspects of unity as possible.

... potentially even in some ways where it wouldn't just be a testing tool.

Source: X post

@AntonHand behold

@AntonHand behold https://www.amazon.com/gp/product/B098TQP2RB/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&th=1

Source: X post

@AntonHand and

@AntonHand and https://www.amazon.com/gp/product/B08PQJTNM1/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1

Source: X post

@yoltartar The trustless part of web3 and crypto refer to the notion that the backend logic can

@yoltartar The trustless part of web3 and crypto refer to the notion that the backend logic can be immutable, then its security ensured by a mass of people in the public, and that some institution with admin access can't change it for whatever whim they might have.

It's also not entirely…

Source: X post

The odd thing to consider about this whole social media, Twitter, LinkedIn, blogging media game,

The odd thing to consider about this whole social media, Twitter, LinkedIn, blogging media game, and really all of human history that was an affect of the printing press. -- The "Answer" we've instinctively been trying to nail down through all the argumentation, disagreement,…

Source: X post

The Apple Vision pro does not allow you to scan your dog's face to make a persona. It only recog

The Apple Vision pro does not allow you to scan your dog's face to make a persona. It only recognizes human faces. I feel this is a major oversight.

Source: X post

@RyanR3STL3SS In 10 years, everyone. People get bored, they experiment, they fiddle, they wander

@RyanR3STL3SS In 10 years, everyone. People get bored, they experiment, they fiddle, they wander into novel and weird territory, then they normalize whatever that novel and weird territory is. Repeat ad infinitum.

Source: X post

Normies: Anime and furry avatars are weird and cringe.

Normies: Anime and furry avatars are weird and cringe. Also Normies: https://x.com/_rygo6/status/1768794569800663506/photo/1

Source: X post

@JCorvinusVR Technically adult content is against unity TOS too but I'm pretty sure whoever wrot

@JCorvinusVR Technically adult content is against unity TOS too but I'm pretty sure whoever wrote that, and anyone above them, pay so little attention to the industry that it'll be years, if ever, before they discover steam and the cesspool of degenerate unity content it has become.

Source: X post

@ezreeszy I suspect for some people the face gasket was made too thin. Your eyelashes should JUS

@ezreeszy I suspect for some people the face gasket was made too thin. Your eyelashes should JUST be touching the surface of the beyond lens.

Source: X post

@ariel_emeraldVR oh its not as bad on avp

@ariel_emeraldVR oh its not as bad on avp

Source: X post

A problem with OOP isn't so much that pairing data with functions is bad, I actually think that

A problem with OOP isn't so much that pairing data with functions is bad, I actually think that can be great. It can bring a worthwhile improvement to organization of code.

Rather, the problem is that the way it was designed incentivizes putting all data required for a given set…

Source: X post

A problem with OOP isn't so much that pairing data with functions is bad, I actually think that

A problem with OOP isn't so much that pairing data with functions is bad, I actually think that can be great. It can bring a worthwhile improvement to organization of code.

Rather, the problem is that the way it was designed incentivizes putting all data required for a given set…

Source: X post

@tfmjonny @LittleMiri_CZ I wonder how much payment processors are going to have to try and contr

@tfmjonny @LittleMiri_CZ I wonder how much payment processors are going to have to try and control, and how many creators livelihood they’re going to have to try and rugpull before people consider that payment processors shouldn’t be moderating content

Source: X post

Since the original intent of keeping the unity group invitation-only didn't really work out I de

Since the original intent of keeping the unity group invitation-only didn't really work out I decided to just make it public: https://vrchat.com/home/group/grp_709537bf-9714-4ca8-b99c-cfc43bb4410a Although admin or moderator is still only for unity employees or alumni.

Still debating what exactly I should do with this group…

Source: X post

I think one thing that has become clearer about the bigscreen beyond is their process really jus

I think one thing that has become clearer about the bigscreen beyond is their process really just fails for some people. The exact percentage we can probably never truly know. They probably should have ramped up slower, letting more and more progressively go through the whole…

Source: X post

I think one thing that has become clearer about the bigscreen beyond is their process really jus

I think one thing that has become clearer about the bigscreen beyond is their process really just fails for some people. The exact percentage we can probably never truly know. They probably should have ramped up slower, letting more and more progressively go through the whole…

Source: X post

I think one thing that has become clearer about the bigscreen beyond is their process really jus

I think one thing that has become clearer about the bigscreen beyond is their process really just fails for some people. The exact percentage we can probably never truly know. They probably should have ramped up slower, letting more and more progressively go through the whole…

Source: X post

I think one thing that has become clearer about the bigscreen beyond is their process really jus

I think one thing that has become clearer about the bigscreen beyond is their process really just fails for some people. The exact percentage we can probably never truly know. They probably should have ramped up slower, letting more and more progressively go through the whole…

Source: X post

Going back and forth between the bigscreen beyond and the apple vision pro I do notice their opt

Going back and forth between the bigscreen beyond and the apple vision pro I do notice their optics are similar.

I remember hearing a rumor somewhere, this is complete rumor, but that the bigscreen beyond optics are what Apple was initially using until they the manufacturer…

Source: X post

It's kind of messed up how most of my feed is people and things I didn't follow.

It's kind of messed up how most of my feed is people and things I didn't follow.

Source: X post

We need some way to get bills on ballots purely through online means. That whole process of havi

We need some way to get bills on ballots purely through online means. That whole process of having to get thousands of signatures by some small army of annoying people walking around cities and asking is pretty damn outdated and really just serves as a means to roadblock…

Source: X post

We need some way to get bills on ballots purely through online means. That whole process of havi

We need some way to get bills on ballots purely through online means. That whole process of having to get thousands of signatures by some small army of annoying people walking around cities and asking is pretty damn outdated and really just serves as a means to roadblock…

Source: X post

Twitter is kind of like a collaborative thinking tool. Like a hive mind of generating concepts a

Twitter is kind of like a collaborative thinking tool. Like a hive mind of generating concepts and ideas. Out of which it produces statements. Could be political, philosophical, whatever, but it is a statement in words.

Which makes me so curious about, what if you could…

Source: X post

@technobaboo I don't quite know what this r/place is? It's a reddit?

@technobaboo I don't quite know what this r/place is? It's a reddit?

Source: X post

@RyanSAdams My bigger concern with this has always been, who are they going to be forced to sell

@RyanSAdams My bigger concern with this has always been, who are they going to be forced to sell to? The risk seems to be that it forces US companies to sell control to a wide array of less-interested and less-involved stakeholders, which isn't necessarily better for the company by default.…

Source: X post

One of the things I probably loathe most about the mentality of OOP that got pushed on the indus

One of the things I probably loathe most about the mentality of OOP that got pushed on the industry is that you need a different file for every object.

OOP insinuates a view about the structure of code which is false, that being, code is composed of separate "objects" that send…

Source: X post

One of the things I probably loathe most about the mentality of OOP that got pushed on the indus

One of the things I probably loathe most about the mentality of OOP that got pushed on the industry is that you need a different file for every object.

OOP insinuates a view about the structure of code which is false, that being, code is composed of separate "objects" that send…

Source: X post

I wish SDL were multiple, separable, standalone headers, or like one .h and .c per module.

I wish SDL were multiple, separable, standalone headers, or like one .h and .c per module.

Source: X post

@cnlohr I don't know, I never looked at that much. It looked like it did more than just make a w

@cnlohr I don't know, I never looked at that much. It looked like it did more than just make a window and take input though? Like it was a whole mini graphics api?

Source: X post

@cnlohr does it take the xr controller input on quest ?

@cnlohr does it take the xr controller input on quest ?

Source: X post

@AngelaBelcamino @elonmusk 250+ companies & stores that accept cryptocurrency:

@AngelaBelcamino @elonmusk 250+ companies & stores that accept cryptocurrency: https://bitpay.com/directory/ Given that even more websites use checkout systems like BitPay, or PayPal, or some system that supports auto-converting cryptocurrency to the desired currency of the merchant, it's more than that. I can…

Source: X post

My Quest 3 screen went completely black for some unknown reason, but apparently the hand trackin

My Quest 3 screen went completely black for some unknown reason, but apparently the hand tracking was still working, and in my random air clicking I managed to start a phone call to someone on my friends list I haven't talked to in years, so in the middle of my Quest 3 seemingly…

Source: X post

My Quest 3 screen went completely black for some unknown reason, but apparently the hand trackin

My Quest 3 screen went completely black for some unknown reason, but apparently the hand tracking was still working, and in my random air clicking I managed to start a phone call to someone on my friends list I haven't talked to in years, so in the middle of my Quest 3 seemingly…

Source: X post

I've been through a handful of headphones for the bigscreen beyond and I would rate the hifiman

I've been through a handful of headphones for the bigscreen beyond and I would rate the hifiman edition xs with the ifi audio go link as my favorite.

Big open planar drivers like the hifiman edition xs do not block any real noticeable sound, so you can still hear yourself talk…

Source: X post

I want a language that is designed around being able to optimally use of cache in more elegant w

I want a language that is designed around being able to optimally use of cache in more elegant ways. That seems to be one of the genuinely hard things that require quite a bit of contortion in all existing languages.

Source: X post

I want a language that is designed around being able to optimally use cache in more elegant ways

I want a language that is designed around being able to optimally use cache in more elegant ways. That seems to be one of the genuinely hard things that require quite a bit of contortion in all existing languages.

Source: X post

@AntonHand There isn't a lack... there is a handful in every company, but I'm pretty sure the ma

@AntonHand There isn't a lack... there is a handful in every company, but I'm pretty sure the majority of any given company thinks they are just exhibiting symptoms of autism and you just need to stay quiet and it will pass like some rant about Star Wars or Trains.

I'm kind of joking, but…

Source: X post

@AntonHand So don't mind me as write out a small novel here, but I'm curious to take a stab at e

@AntonHand So don't mind me as write out a small novel here, but I'm curious to take a stab at explaining this, yet again, in another way.

If Social VR is not a daily lived experience, the thing that you'll miss, and you will not instinctively design around, is that we are dealing with…

Source: X post

@JCorvinusVR The issue is the pathway to profitability for any given exploration could be decade

@JCorvinusVR The issue is the pathway to profitability for any given exploration could be decades off depending on what it is. It could also be such a low-level technical piece that the way it even connects to profitability can't even be grokked yet. AI research has technically been going on…

Source: X post

@yewnyx @MalekiRe well the mothership went out of range so I can't use my remote brain anymore

@yewnyx @MalekiRe well the mothership went out of range so I can't use my remote brain anymore

Source: X post

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I k

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I know more about what's going on than pretty much anyone. Me not being in one big tech company, but instead being in a position that sits in the middle of all the big tech companies, I…

Source: X post

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I k

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I know more about what's going on than pretty much anyone. Me not being in one big tech company, but instead being in a position that sits in the middle of all the big tech companies, I…

Source: X post

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I k

TBH, I'm in such a disarray about the state of the VR industry right now because I feel like I know more about what's going on than pretty much anyone. Me not being in one big tech company, but instead being in a position that sits in the middle of all the big tech companies, I…

Source: X post

@MalekiRe The heap is the most generalized throw bag for allocation when you know absolutely not

@MalekiRe The heap is the most generalized throw bag for allocation when you know absolutely nothing about the data you need. Which is the most rare of circumstances. Usually you know something about the expected data. Usually you'll have some idea about how much memory you'll need, or the…

Source: X post

@MalekiRe I think the benefits you'd get from a more empowered, tightly interwoven, community wo

@MalekiRe I think the benefits you'd get from a more empowered, tightly interwoven, community would outweigh the negatives.

Source: X post

Kind of embarrassed to me admit this, but It's taken 15 years of being a professional developer

Kind of embarrassed to me admit this, but It's taken 15 years of being a professional developer for me to finally start realizing that making the Heap be the automatic and default pairing to the Stack was a really terrible design decision.

Source: X post

@kahunamoore @jimmy6DOF if you have any licenses written up I'd be interested to see or start us

@kahunamoore @jimmy6DOF if you have any licenses written up I'd be interested to see or start using them

Source: X post

I wish there was some open source license were you could effectively do all development on an op

I wish there was some open source license were you could effectively do all development on an open repo, and people could even take SOME of that code, but it prevented people from just taking the whole project and releasing it themselves. I presume the majority of any given…

Source: X post

I feel the current TAZs are entering entropy.

I feel the current TAZs are entering entropy.

Where's the next?

Source: X post

@BattleAxeVR I am curious to know more about what exactly is a let down with the vive ultimate t

@BattleAxeVR I am curious to know more about what exactly is a let down with the vive ultimate trackers, Ive been wondering if I should try them.

Source: X post

@technobaboo I do appreciate that rust did constructors properly.

@technobaboo I do appreciate that rust did constructors properly.

... if only other parts of it didn't bother me.

Source: X post

Kind of odd to think the whole reason C++ try catch exceptions came about was to deal with the f

Kind of odd to think the whole reason C++ try catch exceptions came about was to deal with the fact the constructor was a fundamentally flawed design that couldn't return an error. Then whatever engineer who probably invested so much energy into convincing everyone constructors…

Source: X post

Thing I just learned which I wish I knew years ago: https://x.com/_rygo6/status/1764826979092607

Thing I just learned which I wish I knew years ago: https://x.com/_rygo6/status/1764826979092607322/photo/1

Source: X post

@LuciferMStarVRC I wish I could get a gasket sculpted out of some memory foam material, but afte

@LuciferMStarVRC I wish I could get a gasket sculpted out of some memory foam material, but after a couple days with the silicone one the feeling, which to be frank, is like having a sex toy smooshed into your eye sockets bothered me less. I think too after you wear it for a little and it gets…

Source: X post

If you're stuck in a local minimum, at the time, it will appear that you are most obviously corr

If you're stuck in a local minimum, at the time, it will appear that you are most obviously correct as every direction surrounding you will clearly have an upward trajectory. By any and all rational logical thought process which could stem from what is immediately and obviously…

Source: X post

An interesting aspect of AI is the metaphors you can derive to cognitive thought processes of re

An interesting aspect of AI is the metaphors you can derive to cognitive thought processes of real people. It gives a whole new set of language we didn't have before.

In scientific and mathematical circles orderly, structured and predictable "Thought Process" is often seen as…

Source: X post

After taking some notes from the HypeHype mobile rendering talk. On the left my new way of writi

After taking some notes from the HypeHype mobile rendering talk. On the left my new way of writing vulkan boilerplate. On the right my old way of writing vulkan boilerplate. https://x.com/_rygo6/status/1764904086351323414/photo/1

Source: X post

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantil

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantilism. Roughly where Europe was about halfway through the second millennium. Philosophies of individual rights, workers' rights, self-determination, self-ownership, even democracy and…

Source: X post

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantil

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantilism. Roughly where Europe was about halfway through the second millennium. Philosophies of individual rights, workers' rights, self-determination, self-ownership, even democracy and…

Source: X post

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantil

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantilism. Roughly where Europe was about halfway through the second millennium. Philosophies of individual rights, workers' rights, self-determination, self-ownership, even democracy and…

Source: X post

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantil

The tech virtual land is in a condition which is like a mix of Feudalism and Monarchal Mercantilism. Roughly where Europe was about halfway through the second millennium. Philosophies of individual rights, workers righters, self-determination, self-ownership, even democracy and…

Source: X post

The alignment that can be programmed is not the universal alignment.

The alignment that can be programmed is not the universal alignment.

Source: X post

It's interesting how the 3D Cache AMD CPUs got the reputation for being so amazingly good with U

It's interesting how the 3D Cache AMD CPUs got the reputation for being so amazingly good with Unity games. Which they generally are, but the reason I suspect is that more cache minimizes the negatives of programming in a way which is naive to cache misses. Which is common for…

Source: X post

@liz_love_lace it's unfortunate that probably each person is going to have to get fucked by the

@liz_love_lace it's unfortunate that probably each person is going to have to get fucked by the authority behind some software at least once before the idea of not having such an authority stops being a taboo.

Source: X post

For the past decade I've moved every year. I just couldn't stand staying the same place. Now I'm

For the past decade I've moved every year. I just couldn't stand staying the same place. Now I'm going on like 1.5 years in Olympia, WA which is the longest I've ever stayed in one place, and I still don't feel like I want to move. I'm finding the Olympic peninsula is kind of a…

Source: X post

wrath aeon of ruin is quite good. Feel like this may be the first boomer shooter that does NOT t

wrath aeon of ruin is quite good. Feel like this may be the first boomer shooter that does NOT try to parody or intentionally captilize on nostalgia, but instead tries to be its own thing, that may actually be better than the originals like quake 1/2 or unreal.

The darkplaces…

Source: X post

wrath aeon of ruin is quite good. Feel like this may be the first boomer shooter that does NOT t

wrath aeon of ruin is quite good. Feel like this may be the first boomer shooter that does NOT try to parody or intentionally captilize on nostalgia, but instead tries to be its own thing, that may actually be better than the originals like quake 1/2 or unreal.

The darkplaces…

Source: X post

@RyanR3STL3SS mine is 65mm... probably good to know if you have a big IPD it won't work well

@RyanR3STL3SS mine is 65mm... probably good to know if you have a big IPD it won't work well

I found firmly attaching the cable to my headphone band and hanging it from the sealing made it less annoying, also the cable being fiberoptic/lighter I find less annoying than the index cable, but…

Source: X post

So after getting proper IPD on my bigscreen beyond and getting more used to it. It will probably

So after getting proper IPD on my bigscreen beyond and getting more used to it. It will probably replace my index.

The silicone face gasket is a little funky and juggling a pair of headphones is less convenient.

But damn, it’s quite surreal to wear an HMD that doesn’t feel…

Source: X post

@0xglitchbyte I’m not against seriously discussing merits of new languages.

@0xglitchbyte I’m not against seriously discussing merits of new languages.

But whenever it’s based on justifications like “__ blank company has __% of bugs” then the only possible solution brought forth is a different language, it overlooks another huge huge important area of the subject.…

Source: X post

@vultuk I'd say sense of presence is more significant than the visible surface of the skin on so

@vultuk I'd say sense of presence is more significant than the visible surface of the skin on someone's face.

Imagine the difference between: 1. Someone standing in your room, but their face is covered. 2. A small screen with only their face on it.

Which one would feel more like the…

Source: X post

@bmcnett I've heard you just don't need to worry as much about GC pressure in newest .NET Core b

@bmcnett I've heard you just don't need to worry as much about GC pressure in newest .NET Core because it deals with it so much better?

Source: X post

@bmcnett Do you think .NET core has solved the issues with GC? (I've heard it has but have not e

@bmcnett Do you think .NET core has solved the issues with GC? (I've heard it has but have not exhaustively investigated myself)

Source: X post

@BattleAxeVR Is the micromesh functionality fast enough to use in real-time displacement like th

@BattleAxeVR Is the micromesh functionality fast enough to use in real-time displacement like that? Is it faster than task/mesh shaders?

Source: X post

@AzNeter sounds like a personal problem

@AzNeter sounds like a personal problem

Source: X post

@AzNeter My genuine perspective on this, you can go out into the world, meet lots of people, hav

@AzNeter My genuine perspective on this, you can go out into the world, meet lots of people, have a great time, make lots of friends, see lots of amazing things. You can also go do the same thing in some Social VR platform, whether it be Resonite, VRChat, Horizons or whatever. Either way,…

Source: X post

@AzNeter @darkswordsmantv There are no objective metrics on what percentage of Social VR users e

@AzNeter @darkswordsmantv There are no objective metrics on what percentage of Social VR users experience what. In a space with millions of people, you can only ever be exposed to maybe several thousand if you are super super social, which is still a tiny percentage. Any claims about "Majority" can only…

Source: X post

The world would be a much better place if, every night, instead of scrolling social media, or co

The world would be a much better place if, every night, instead of scrolling social media, or consuming the news cycle, or vegetating in front of paid-programming, people instead put on a VR setup and hung out with several to several dozen people every night all over the world.

Source: X post

@simplex_fx @ryanjfleury bikeshedding

@simplex_fx @ryanjfleury bikeshedding

Source: X post

@SebAaltonen Recently I've been trying to do something similar to this, as the syntax is nice, b

@SebAaltonen Recently I've been trying to do something similar to this, as the syntax is nice, but then I realized, doesn't insertAndConstruct then also have be a template method in this case? Doesn't that then add assembly bloat for every call? Or is there some way to write this so that…

Source: X post

Things I like about helldivers 2:

Things I like about helldivers 2: - I can get into a game in less than a minute with only a handful of mouse button clicks. - It doesn't try to sell me anything in that process. - I'm not exhausted from dealing with the overly complex menus by the time I actually get to the game.…

Source: X post

@LuciferMStarVRC GameObject names are supposed to be PascalCase.

@LuciferMStarVRC GameObject names are supposed to be PascalCase.

Source: X post

I feel like most, maybe even all, political disagreements would be solved if people just took th

I feel like most, maybe even all, political disagreements would be solved if people just took the time to first go through and exhaustively define a common set of clear definitions for all terms before carrying out discussion. It really does seem to me most political disagreement…

Source: X post

@cnlohr What’s the ideal build setup ?

@cnlohr What’s the ideal build setup ?

Source: X post

@liz_love_lace If someone doesn’t post a build it’s probably because it’s in a condition where i

@liz_love_lace If someone doesn’t post a build it’s probably because it’s in a condition where it’s not ready or intended for general use.

Source: X post

@BattleAxeVR Since you are someone who dislikes vulkan.hpp and also sees the merits of some cpp

@BattleAxeVR Since you are someone who dislikes vulkan.hpp and also sees the merits of some cpp and oo features, I am curious to see what you've pieced together as your vulkan cpp boilerplate.

I keep thinking I need to pool together all the vulkan cpp boilerplate I've done in some new…

Source: X post

@jimrayvaughn I know there's multiple variables, but screen refresh rate is one they could of do

@jimrayvaughn I know there's multiple variables, but screen refresh rate is one they could of done better on.

Source: X post

@dannyaroslavski There are multiple variables that effect sickness and discomfort, and yes, Hz o

@dannyaroslavski There are multiple variables that effect sickness and discomfort, and yes, Hz of display is one of them. No, this isn't an assumption.

Source: X post

@amaldorai Compared to which Quest? Could be different depending on the quest.

@amaldorai Compared to which Quest? Could be different depending on the quest.

Source: X post

@SadlyItsBradley @OptoFidelity I always suspected, if measured, apple would be quite good here.

@SadlyItsBradley @OptoFidelity I always suspected, if measured, apple would be quite good here. Latency through the whole system has always been what apple is best at, for all their products. Even still today I've never tried a stylus with as minimal latency as the apple pencil.

Source: X post

People complaining of eyestrain and headaches with the vision pro makes me think, Apple really r

People complaining of eyestrain and headaches with the vision pro makes me think, Apple really really really should have put greater importance on the screen having a higher Hz. I was really hoping Apple, of all companies, would have pulled out all the stops on that. Because at…

Source: X post

Linus Torvalds once said everything after C was a mistake, which then upset many who claimed him

Linus Torvalds once said everything after C was a mistake, which then upset many who claimed him to be a dinosaur and wrong. Generally speaking, I'd say he is wrong, but him further explaining the reason for that statement I found important to understand. That being, there is a…

Source: X post

Linus Torvalds once said everything after C was a mistake, which then upset many who claimed him

Linus Torvalds once said everything after C was a mistake, which then upset many who claimed him to be a dinosaur and wrong. Generally speaking, I'd say he is wrong, but him further explaining the reason for that statement I found important to understand. That being, there is a…

Source: X post

@iquilezles I don't want to debate, because I don't use std::vector either, but I am curious to

@iquilezles I don't want to debate, because I don't use std::vector either, but I am curious to know what your reasons were for deciding not to use it.

Source: X post

Thing is... there are a handful of small things in C++ that do make it just so much more elegant

Thing is... there are a handful of small things in C++ that do make it just so much more elegant than C, but it's just such a small handful and they are so small that it's easy to question if you really need them. Like putting default values on structs, just that one tiny thing…

Source: X post

@TheJackForge I think the solution is to somehow get more leverage on the engineers/designers si

@TheJackForge I think the solution is to somehow get more leverage on the engineers/designers side so they can turn such companies into long term ideal careers rather than something they toil with on the hope to leave.

Source: X post

@bgolus @simonschreibt Is there a paper that describes this further? I am watching the video and

@bgolus @simonschreibt Is there a paper that describes this further? I am watching the video and reading the HLSL snippet and understand the dual depth, and stepping through them for intersection, but then this line "we test for depth intersection then iterate forward through slices and dither those…

Source: X post

@amaldorai This requires people to not just do what the television repeats over and over. Which

@amaldorai This requires people to not just do what the television repeats over and over. Which is kind of the nature of the whole beast right now.

Source: X post

@seanbax The right approach is to replace that method call with:

@seanbax The right approach is to replace that method call with: var average = (x+y)*0.5; Then design/write your program so you are aware of the data you are using.

Source: X post

@XRMultiverse You mean what turned into Wolvic? That project is interesting to me, but what the

@XRMultiverse You mean what turned into Wolvic? That project is interesting to me, but what the traditional browser does is still pretty different from what I am thinking with "VR Spatial Equivalent of a Web Browser", I described it more here: https://x.com/_rygo6/status/1756507543063630238

Source: X post

The joys of getting old, I took a nap so hard today I woke up blind...

The joys of getting old, I took a nap so hard today I woke up blind...

Really, fell asleep with face smoothed into the blanket and supposedly sleeping with something putting any pressure on your eye can temporarily deform your eyeball so everything was blurry for like 2 hours...

Source: X post

@rabovitz @hmltn I assume "True AR" means see through optics? As in something that goes through

@rabovitz @hmltn I assume "True AR" means see through optics? As in something that goes through a waveguide or some kind of refractive optic?

If that is true, I am curious to know how you rationalize not needing black or opaque pixels for computing. The optics being only additive.

Or how, in…

Source: X post

@zeroshotnothing @technobaboo @JCorvinusVR yep. Although doesn't necessarily need a new kernel.

@zeroshotnothing @technobaboo @JCorvinusVR yep. Although doesn't necessarily need a new kernel. Linux kernel is probably fine.

Source: X post

The vision is a collaborative computing space. Could join on a screen, or in VR. Could be a floa

The vision is a collaborative computing space. Could join on a screen, or in VR. Could be a floating head, or full body tracked. Then be in a space together where everything works as you would intuitively expect.

- If someone opens an app, then everyone should see the app and…

Source: X post

The killer app of killer apps was the Web Browser.

The killer app of killer apps was the Web Browser.

Even all the 'Killer Apps' on the iPhone were derivative use cases first evolved out of the Web Browser. Just made sleeker and portable. But everything that gave modern computing something of worth for the mass of average…

Source: X post

The killer app of killer apps was the Web Browser.

The killer app of killer apps was the Web Browser.

Even all the 'Killer Apps' on the iPhone were derivative use cases first evolved out of the Web Browser. Just made sleeker and portable. But everything that gave modern computing purpose, made it something of worth for the mass…

Source: X post

@technobaboo @zeroshotnothing @JCorvinusVR I see this being an entirely novel kind of OS shell.

@technobaboo @zeroshotnothing @JCorvinusVR I see this being an entirely novel kind of OS shell. Or something like a browser, one application which spawns and coordinate other processes, but everything still interops back to the main application for display and interaction.

But, ya. It would require a novel kind of…

Source: X post

@technobaboo @zeroshotnothing @JCorvinusVR I go back and forth between apps should be wasm or ap

@technobaboo @zeroshotnothing @JCorvinusVR I go back and forth between apps should be wasm or apps should all be based on cosmopolitan libc. I like cosmpolitan idea better, but I don't know, I'm not even close to dealing with that yet.

... and believe me, I am very aware of the technical complexity of what I just…

Source: X post

@technobaboo @JCorvinusVR The notion this would all be on some single new distro of linux I don'

@technobaboo @JCorvinusVR The notion this would all be on some single new distro of linux I don't hate, a part of me has always seen this as being its own operating system, but I could also see it being something like a browser. But obviously an IPC doesn't go over a network to another computer :P However…

Source: X post

@technobaboo @JCorvinusVR @knev_phd This part of just sharing state CPU state I think is one of

@technobaboo @JCorvinusVR @knev_phd This part of just sharing state CPU state I think is one of the less complicated areas. You'd have a header to state its protocol and version, then following that, whatever bytes they want, could be a file format, could be their own arbitrary byte packing, could be anything. It's…

Source: X post

@technobaboo @JCorvinusVR It's somewhat novel territory, but it's not entirely out of left field

@technobaboo @JCorvinusVR It's somewhat novel territory, but it's not entirely out of left field. It's what plan9 and 9p was designed around. It's the whole subject of Network Transparency. Although this goes into a new area as there would also be a need for real-time syncing. But, no, you wouldn't…

Source: X post

@pvncher ... or bounded apps which are kind of like a slice you can walk into and out of, which

@pvncher ... or bounded apps which are kind of like a slice you can walk into and out of, which then consumes your whole experience when inside them. Would be great if some company had the foresight to invest in that.

Source: X post

Looking at this rewrite of wipeout makes me so envious of original PS1 developers. Few programme

Looking at this rewrite of wipeout makes me so envious of original PS1 developers. Few programmers could write a whole game in C with a nice simple graphics api. Could roll their own physics because it didn't need to be that complex. Looks like could program the whole thing in a…

Source: X post

@Chase_Davis_ pretty much everything I tweet is stream of consciousness... for better or worse

@Chase_Davis_ pretty much everything I tweet is stream of consciousness... for better or worse

Source: X post

@raysan5 I had mine on stdout, then some dude on twitter claimed it was supposed to be stderr fo

@raysan5 I had mine on stdout, then some dude on twitter claimed it was supposed to be stderr for reasons which did make sense, so I switched to stderr, but that has a whole host of odd complications I've found. Like one terminal I use wants to show stderr as red, then override other…

Source: X post

@NOTimothyLottes Made me think how... 'Advanced Interpolator' does describe how many people thin

@NOTimothyLottes Made me think how... 'Advanced Interpolator' does describe how many people think. They just infer off prior points of experience and never step outside the line of established definition. Which creates an interesting context that "Intelligence" is the ability to extrapolate.…

Source: X post

Is it really the case that Vulkan will get you better perf than OGL? I've seen numerous things s

Is it really the case that Vulkan will get you better perf than OGL? I've seen numerous things say not necessarily, it depends, but I have yet to see any comprehensive analysis of the -exact- characteristics and circumstances where vulkan can go faster. Does this exist anywhere?

Source: X post

hrm https://jacco.ompf2.com/2020/04/10/optimizing-trilinear-interpolation/

hrm https://jacco.ompf2.com/2020/04/10/optimizing-trilinear-interpolation/

Source: X post

@SebAaltonen @halhasan84 What’s the closest equivalent to this workflow in Vulkan 1.3?

@SebAaltonen @halhasan84 What’s the closest equivalent to this workflow in Vulkan 1.3?

Source: X post

@Jonathan_Blow I like the idea of getting programmers to write simpler faster code… but getting

@Jonathan_Blow I like the idea of getting programmers to write simpler faster code… but getting the internet to write with proper grammar? Your ambitions might be too great on this one. Flow with the colloquialisms.

Source: X post

I just went through and cleaned out the last like 5 years of things I've bookmarked, and I have

I just went through and cleaned out the last like 5 years of things I've bookmarked, and I have no idea why I even bookmark things because I barely remember any of them, and I have minimal recall when scrolling through looking at the titles in a list.

Feel like there is some…

Source: X post

Walking around with a vision pro on in a video will get you more attention in screenland social

Walking around with a vision pro on in a video will get you more attention in screenland social media.

But walking around with full body tracking is what will get you more attention in social VR.

I believe there will be a flip in what the mainstream finds interesting, what the…

Source: X post

@ve4xy8 IMUs are just too good and cheap for what they do. For any serious use case, where laten

@ve4xy8 IMUs are just too good and cheap for what they do. For any serious use case, where latency is important, and being able to move quickly, you still need to strap IMUs on.

But then for easy calibration and maintaining that calibration, something external makes it so much simpler.…

Source: X post

@Thrilluwu For me, they already have been. Jaron Lanier’s warning that VR will turn into a bunch

@Thrilluwu For me, they already have been. Jaron Lanier’s warning that VR will turn into a bunch corporate controlled operant conditioning chambers have been floating around the industry for years. Honestly, I don’t even see it as terribly theoretical either. Rather it’s the obvious…

Source: X post

Has anyone found and/or seen any kind of temporal aa or temporal upsampler that produces good re

Has anyone found and/or seen any kind of temporal aa or temporal upsampler that produces good results in VR? Anything better than doom vfr?

Source: X post

@alex_chaloner I’ve spent roughly 40 hours a week in VR for the nearly the past 4 years. I didn’

@alex_chaloner I’ve spent roughly 40 hours a week in VR for the nearly the past 4 years. I didn’t do that just because I enjoyed having a toaster strapped to my face.

There are things of unique value in the headset. There are observable growing trends. There are modalities and expectations of…

Source: X post

Summary of my time working the Coporate VR space of the past 8 years:

Summary of my time working the Coporate VR space of the past 8 years:

Suit: "What do we do with VR? Is there any good use case?"

Me: "First you need to put on the headset."

Suit: "... but are there any use cases that are valuable?"

Me: "First you need to put on the headset."…

Source: X post

Summary of my time working in the Coporate VR space over the past 8 years:

Summary of my time working in the Coporate VR space over the past 8 years:

Suit: "What do we do with VR? Is there any good use case?"

Me: "First you need to put on the headset."

Suit: "... but are there any use cases that are valuable?"

Me: "First you need to put on the…

Source: X post

I really miss playstation 1 and nintendo 64 era of games.

I really miss playstation 1 and nintendo 64 era of games.

So much more had to be manually programmed, and games could be made much quicker, so each game felt so much different than the next game, and there was so much more variety between the gameplay and feel of the games. Then…

Source: X post

https://x.com/_rygo6/status/1753557534466777093

https://x.com/_rygo6/status/1753557534466777093

Source: X post

@FrameworkPuter framework vr hmd?

@FrameworkPuter framework vr hmd?

Source: X post

@alex_chaloner Well, the thing is... they did dump tons of money on XR over the past 8 years...

@alex_chaloner Well, the thing is... they did dump tons of money on XR over the past 8 years... billions... across many companies and startups. Unfortunately, most it was in rather frivolous pursuits and money down the toilet because there was a severe lack of putting on the damn headset and…

Source: X post

@alex_chaloner It turned this corner years ago, but to see this you first need to put on the hea

@alex_chaloner It turned this corner years ago, but to see this you first need to put on the headset.

Source: X post

I open sourced and unlicensed my old mobile game I no longer wish to maintain to keep on the app

I open sourced and unlicensed my old mobile game I no longer wish to maintain to keep on the app stores. https://github.com/rygo6/Partak-Unity

Source: X post

The Web, Big Tech, Mobile, most all of current computing really may be done with for innovation.

The Web, Big Tech, Mobile, most all of current computing really may be done with for innovation. Past the point of its industry life cycle where any new player can effectively disrupt or change anything. Like how the railroad and so many industries became. Existing giants, and…

Source: X post

The Killer "Functionality" of an HMD that a flatland screenland devices simply cannot compete wi

The Killer "Functionality" of an HMD that a flatland screenland devices simply cannot compete with, which I'd put my bets on becoming completely interwoven with the masses of the younger generations and defining what makes or breaks any effort in XR, and the future of computing…

Source: X post

@AntonHand I'm very content with my 'VR metaverse deep diving' time being completely constrained

@AntonHand I'm very content with my 'VR metaverse deep diving' time being completely constrained to the boundaries of my bean bag chair.

Source: X post

Things you can't do in C++ which you can in C:

Things you can't do in C++ which you can in C: Use designated initializers, nor even nested designated initializers, on an instance which has destructor-like automatic cleanup. https://x.com/_rygo6/status/1753657719217869073/photo/1

Source: X post

Things you can't do in C++:

Things you can't do in C++: Use designated initializers, nor even nested designated initializers, on an instance which has destructor-like automatic cleanup. https://x.com/_rygo6/status/1753657653912613078/photo/1

Source: X post

@DyLhun @AntonHand Lhun does know more about this anyone I know, can confirm.

@DyLhun @AntonHand Lhun does know more about this anyone I know, can confirm.

Source: X post

@AntonHand $50 to $5,000

@AntonHand $50 to $5,000

This is complete shooting from the hip…

But I’d say on a bell curve of those who pay and have logged at least two years, the largest chunk in the middle probably dropped cumulatively $500 over those few years. Then the top 5 percentile would start around $1500.…

Source: X post

@WaifuverseAI https://x.com/_rygo6/status/1753258495204585718/photo/1

@WaifuverseAI https://x.com/_rygo6/status/1753258495204585718/photo/1

Source: X post

The use case I see few mention,

The use case I see few mention,

VR is the best way to drink.

Don't have to worry about: - Driving anywhere. - Passing out somewhere you shouldn't. - Starting some fight and getting beat up. - Getting mugged or physically assaulted in your stupor. - Getting trapped in…

Source: X post

The use case I see few mention,

The use case I see few mention,

VR is the best way to drink.

Don't have to worry about: - Driving anywhere. - Passing out somewhere you shouldn't. - Starting some fight and getting beat up. - Getting mugged or physically assaulted in your stupor. - Getting trapped in…

Source: X post

The use case I see few mention,

The use case I see few mention,

VR is the best way to drink.

Don't have to worry about: - Driving anywhere. - Passing out somewhere you shouldn't. - Starting some fight and getting beat up. - Getting mugged or assaulted in your stupor. - Getting trapped in uncomfortable…

Source: X post

Probably one of the most important VR accessories:

Probably one of the most important VR accessories: https://buybigjoe.com/products/fuf-xxl?&utm_source=google&utm_medium=cpc&gad_source=1&gclid=Cj0KCQiAwvKtBhDrARIsAJj-kTgsWngrQLQMjdWxf0Uss-6Pb1r8EPsSdZsfBDKmIEugLL3cYtRMdwQaAicLEALw_wcB

Source: X post

Probably one of the most import VR accessories:

Probably one of the most import VR accessories: https://buybigjoe.com/products/fuf-xxl?&utm_source=google&utm_medium=cpc&gad_source=1&gclid=Cj0KCQiAwvKtBhDrARIsAJj-kTgsWngrQLQMjdWxf0Uss-6Pb1r8EPsSdZsfBDKmIEugLL3cYtRMdwQaAicLEALw_wcB

Source: X post

@joelbasson The pipeline of vrchat to real life dating and hookups is more real than I'd want to

@joelbasson The pipeline of vrchat to real life dating and hookups is more real than I'd want to go into exhaustive details about. It's not my thing, but some of the most promiscuous people I've ever met use VRC primarily as a hookup app.

Something about avatars, standing in front of…

Source: X post

I forget that there are lots of people who have not spent lots of time going out to many differe

I forget that there are lots of people who have not spent lots of time going out to many different parties, and bars and concerts in many different big cities. Nor have lived in the middle of big downtowns where lots and lots of people go out every weekend night.

As someone who…

Source: X post

@hmltn I go into VR specifically because it's the only frontier left.

@hmltn I go into VR specifically because it's the only frontier left.

Just have to make sure the OS and Platform is permissive enough and open enough.

The irony of it is, when you consider how much explicit control legacy mainstream media has achieved over the narratives, temperament…

Source: X post

@BigBadBattery @SadlyItsBradley Nothing I’ve seen in VRC is worse than what I’ve seen in my year

@BigBadBattery @SadlyItsBradley Nothing I’ve seen in VRC is worse than what I’ve seen in my years of actually going out to bars, venues, house parties. It’s just how some percentage of people are.

Source: X post

@benz145 Lay on a bean bag at a 30 degree recline.

@benz145 Lay on a bean bag at a 30 degree recline.

Source: X post

@5centjoel I would debate if the prevalence is more or less than real life. As someone who has l

@5centjoel I would debate if the prevalence is more or less than real life. As someone who has lived in the middle of downtown Las Vegas, and downtown Austin, and downtown Portland. I don't find vrc worse than real life at all. That's not to say a problem doesn't exist, but I hesitate in…

Source: X post

This AK lib in SerenityOS I'm finding one of the most valuable things to go a bit deeper on anal

This AK lib in SerenityOS I'm finding one of the most valuable things to go a bit deeper on analyzing details of template library utilities in C++: https://github.com/SerenityOS/serenity/tree/master/AK It's much simpler, straightforward, focused on what it just needs to do.

I realize, big reason for this is,…

Source: X post

@technobaboo @reduzio ... but does it have the same issue that it still has to go through gdscri

@technobaboo @reduzio ... but does it have the same issue that it still has to go through gdscript and it can't directly access other modules?

Source: X post

@technobaboo @liz_love_lace ... but it's just a giant brain sewing machine rapidly sticking a hu

@technobaboo @liz_love_lace ... but it's just a giant brain sewing machine rapidly sticking a huge needle into your brain tissue to spread a bunch of tiny wires through your brain.... who doesn't want that? https://x.com/_rygo6/status/1752927695779074457/photo/1

Source: X post

@technobaboo @JamesButlin_ @ezreeszy right, I should say subtract light through a refractive opt

@technobaboo @JamesButlin_ @ezreeszy right, I should say subtract light through a refractive optic

Source: X post

@RjeyTech What these show will never happen.

@RjeyTech What these show will never happen.

The bigger hurdle here is not even the form factor. You could maybe pull off something usable close to this form factor even today with a very short battery life if a company really doubled down on the HMD being an ultra-thin client over 5G and…

Source: X post

@reduzio I'd really like to dive into godot but I just don't want to do any serious programming

@reduzio I'd really like to dive into godot but I just don't want to do any serious programming in gdscript or C#, and the C++ extension functionality seems too cumbersome to deal with everything for the entire game.

Are there any plans to change? Or is it going to be like that forever?

Source: X post

@maxxrubin_ @Azadux @reckless An all-digital passthrough capable of reproducing human vision wit

@maxxrubin_ @Azadux @reckless An all-digital passthrough capable of reproducing human vision with the same exact resolution, range of colors and range of depth, could let you start doing things like digitally correcting vision. Modulating brightness to stay in more comfortable levels for the yes at all times.…

Source: X post

@JamesButlin_ @ezreeszy Also, those optics are defying physics. What they show being done with l

@JamesButlin_ @ezreeszy Also, those optics are defying physics. What they show being done with light is not physically possible. So first need to have some physics-redefining discovery or invention that can selectively subtract light from a pixel.

Source: X post

@BattleAxeVR Is doing full pathtracing really fast enough for VR? How fast can it go on like a 3

@BattleAxeVR Is doing full pathtracing really fast enough for VR? How fast can it go on like a 3080 with 4K per eye?

Source: X post

@BattleAxeVR I'm curious what kind of FPS do you get on a 2060? Is it actually usable in VR? How

@BattleAxeVR I'm curious what kind of FPS do you get on a 2060? Is it actually usable in VR? How does scene scale affect? Does adding more geometry affect perf as much as typical rasterization?

Source: X post

@amaldorai Well... also pretty much the entire US Federal Government. Majority of State governme

@amaldorai Well... also pretty much the entire US Federal Government. Majority of State governments too. Every major corporate media outlet. Probably almost every corporate entity too... Seems to just be a thing in this phase of whatever.

This is why I live in a smaller town and rarely…

Source: X post

Why must I always spend hours fiddling with code style, templates and metaprogramming to try and

Why must I always spend hours fiddling with code style, templates and metaprogramming to try and make everything as pretty and minimal as possible? I don't like it... but I just can't stop myself.

Source: X post

@ryanjfleury I do agree with that sentiment but I'm also referring more so to a C++ codebase on

@ryanjfleury I do agree with that sentiment but I'm also referring more so to a C++ codebase on its own can be more elegant than a C codebase. Or a perhaps a C++ codebase within one company.

When it comes to libraries out in the open, not so much. I would rather it be C. I prefer vulkan.h,…

Source: X post

@ryanjfleury C-Like C++ with a handful of newer features can provide better tooling, no?

@ryanjfleury C-Like C++ with a handful of newer features can provide better tooling, no?

Source: X post

@Azadux @reckless Passthrough will definitely work, just I’m expecting it to take another 10 yea

@Azadux @reckless Passthrough will definitely work, just I’m expecting it to take another 10 years before general population will consider it good enough to replace actual vision.

However, the exciting thing is, I expect it to be better than human vision in 20 years.

Source: X post

@AminiAllight I am deleting the copy/move operators on this object luckily. But good to know tha

@AminiAllight I am deleting the copy/move operators on this object luckily. But good to know thatd break if it were copied.

Source: X post

So... if you need const ref getters, why not just do this? https://x.com/_rygo6/status/175222874

So... if you need const ref getters, why not just do this? https://x.com/_rygo6/status/1752228742779609569/photo/1

Source: X post

I'd pay some subscription to go to some gym/arena space down the street where I could play the e

I'd pay some subscription to go to some gym/arena space down the street where I could play the equivalent of an airsoft/paintball type game but through an AR headset.

No matter how good VR gets, it can never replace the experience of sprinting full speed in real life, then…

Source: X post

"Screenland"

"Screenland" -- I like this term to refer to all current non-HMD content on screens. Websites. Apps. Console Games. etc.

A big milestone for the XR space is when people stop looking back to screenland to tell them VR "Has Made it"

It's like you can spend 16 hours in VRChat…

Source: X post

@gfodor The sad thing is, in my day, to play multiplayer online games with your friends, to make

@gfodor The sad thing is, in my day, to play multiplayer online games with your friends, to make any kind of custom content, you had to develop a level of basic computing competency greater than what most probably graduate college with. So, your video game addiction was simultaneously…

Source: X post

@amaldorai @benz145 It can’t be though, because this current effort is really just all about the

@amaldorai @benz145 It can’t be though, because this current effort is really just all about the hardware. Really fancy, maybe unnecessarily bleeding edge, hardware. You need cheaper, consumer hardware and the right software to really catapult it. AVP I see more like Apple Lisa, but maybe even not…

Source: X post

You know what. I've concluded I hate documentation. By that I specifically mean documentation we

You know what. I've concluded I hate documentation. By that I specifically mean documentation websites separate from the code.

If I want to know more about some function in some library, I want to just go to the declaration of the function in the header file then have…

Source: X post

You know what. I've concluded I hate documentation. By that I specifically mean documentation we

You know what. I've concluded I hate documentation. By that I specifically mean documentation websites separate from the code.

If I want to know more about some function in some library, I want to just go to the declaration of the function in the header file then have…

Source: X post

What's the Quest 3 doing with VK_KHR_ray_query support? Does raytracing work on the Quest 3?

What's the Quest 3 doing with VK_KHR_ray_query support? Does raytracing work on the Quest 3? https://vulkan.gpuinfo.org/listdevicescoverage.php?extension=VK_KHR_ray_query

Source: X post

This is not good advice.

This is not good advice. https://youtu.be/agoe5BdLzdk?si=boDT2Ia2PZNcpN6V As an absolute beginner "Hello World" example it's not terrible in the kind of logic it explains method by method, but if someone implemented the logic for a single radar GameObject across three separate components with completely…

Source: X post

@technobaboo but it's been so many years... how long has it been going? Like 4 years? I don't do

@technobaboo but it's been so many years... how long has it been going? Like 4 years? I don't doubt the complexity of writing such a thing, but it's just kind of like, damn, if you can't write a new browser engine to display even just wikipedia properly in 4 years, then things like chrome are…

Source: X post

PayPal now has their own stablecoin on the Ethereum blockchain:

PayPal now has their own stablecoin on the Ethereum blockchain: https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd?https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd&gclid=CjwKCAiA8NKtBhBtEiwAq5aX2PbVxZuDVRcz5nl_0jST6ziFbs4-FSpa-Fsh8nro5jkOieApeut-PhoCDn4QAvD_BwE&gclsrc=aw.ds

This added on top of visa now using the Solana blockchain for international transfers.

Little by little the current establishment of finance corporations will adopt web3 tech, putting their…

Source: X post

PayPal now has their own stablecoin on the Ethereum blockchain:

PayPal now has their own stablecoin on the Ethereum blockchain: https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd?https://www.paypal.com/us/digital-wallet/manage-money/crypto/pyusd&gclid=CjwKCAiA8NKtBhBtEiwAq5aX2PbVxZuDVRcz5nl_0jST6ziFbs4-FSpa-Fsh8nro5jkOieApeut-PhoCDn4QAvD_BwE&gclsrc=aw.ds

This added on top of visa now using the Solana blockchain for international transfers.

Little by little the current establishment of finance corporations will adopt web3 tech, putting their…

Source: X post

I'd really like a Vulkan API that is a streamlined simplified subset of vulkan that handles a bu

I'd really like a Vulkan API that is a streamlined simplified subset of vulkan that handles a bunch of the boilerplate. Like get your device, surface and window in just a handful of calls. Get a texture with a mipchain in another handful. Get a basic pipeline in another handful.…

Source: X post

I know browsers are highly complicated... but it just seems odd that Servo is still completely u

I know browsers are highly complicated... but it just seems odd that Servo is still completely unusable. Like I can't even browse wikipedia without it crashing or breaking to an unusable state in a matter of minutes. Those are supposed to basic websites that are on the easier…

Source: X post

This is not good advice.

This is not good advice. https://youtu.be/agoe5BdLzdk?si=boDT2Ia2PZNcpN6V As an absolute beginner "Hello World" example it's not terrible in the kind of logic it explains method by method, but if someone implemented the logic for a single radar GameObject across three separate components with completely…

Source: X post

The amount of functioning good code coming out of SerenityOS is pretty damn impressive. Puts a m

The amount of functioning good code coming out of SerenityOS is pretty damn impressive. Puts a mark in favor of the speed at which a team can move with c-like c++, avoiding STL entirely, and using only a handful of some newer c++ features.

Also, interesting they decided to move…

Source: X post

The amount of functioning good code coming out of SerenityOS is pretty damn impressive. Puts a m

The amount of functioning good code coming out of SerenityOS is pretty damn impressive. Puts a mark in favor of the speed at which a team can move with c-like c++, avoiding STL entirely, and using only a handful of some newer c++ features.

Also, interesting they decided to move…

Source: X post

@technobaboo @SadlyItsBradley ... you could make it work but need to get quite clever :)

@technobaboo @SadlyItsBradley ... you could make it work but need to get quite clever :)

Source: X post

@technobaboo @SadlyItsBradley Programming is supposed to be masochistic…

@technobaboo @SadlyItsBradley Programming is supposed to be masochistic…

Source: X post

@technobaboo @MalekiRe @SadlyItsBradley I shouldn’t say visionos is first, just the first to shi

@technobaboo @MalekiRe @SadlyItsBradley I shouldn’t say visionos is first, just the first to ship commercially.

It is the unfortunate thing of programming, so few understand what is even being done that those who do the most difficult of things only get recognition from peers.

Source: X post

@technobaboo @MalekiRe @SadlyItsBradley But I’d say it’s better to be a Dennis Richie than a Ste

@technobaboo @MalekiRe @SadlyItsBradley But I’d say it’s better to be a Dennis Richie than a Steve Jobs

… just as long as you don’t become too much of Terry Davis

Source: X post

@SebAaltonen @bmcnett It does seem the notion of 'Software Efficiency' is a taboo for most peopl

@SebAaltonen @bmcnett It does seem the notion of 'Software Efficiency' is a taboo for most people who write code... I really don't understand why.

Source: X post

@SadlyItsBradley @technobaboo It has been my slow burn side project to figure out novel composit

@SadlyItsBradley @technobaboo It has been my slow burn side project to figure out novel compositing techniques to let you composite together many unrelated app framebuffers from different processes... which is not even far enough along for me to feel comfortable calling it a "side project"... more of a…

Source: X post

@SadlyItsBradley It is the first XROS to actually be a real spatial OS. As in, different volumes

@SadlyItsBradley It is the first XROS to actually be a real spatial OS. As in, different volumes are different processes, sandboxed, communicating over IPC, in the same manner separate real applications would in a 2D desktop. It's pretty cool because having a real XR OS is something I've been…

Source: X post

@paulg Also interesting, there was an inflection point right around 1980 where the average of co

@paulg Also interesting, there was an inflection point right around 1980 where the average of congress stopped getting younger and young, and instead started getting older and older. https://fivethirtyeight.com/wp-content/uploads/2014/04/silver-age-congress-2.png?resize=658,512

Source: X post

@gekido It goes through some nice explanation of logic...

@gekido It goes through some nice explanation of logic... ... but the notion you should do MVC or any MV* type architecture in Unity's GameObject-Component architecture is pretty confused. It signifies who made this doesn't understand what GameObject-Component architecture is. As a…

Source: X post

What if you made a web store where you could sell software licenses anonymously?

What if you made a web store where you could sell software licenses anonymously?

Source: X post

@ryanjfleury I'm a big fan of this ethos and all the philosophy of free markets, but a rather ha

@ryanjfleury I'm a big fan of this ethos and all the philosophy of free markets, but a rather hard pill I've had to swallow is that such a perspective cannot remain a relevant constant in an industry. There are known patterns of an industry lifecycle, and the unfortunate truth is parts of…

Source: X post

@paulg Alternate theory:

@paulg Alternate theory:

People staying in good health longer and longer has gradually increased the age by which authority is held onto by the prior generation. Meaning full responsibility of discretion and authority of decision-making is being passed down to the next generation at…

Source: X post

@Otome_chan311 @BattleAxeVR Fundamentally everything is a number, as in a memory address with a

@Otome_chan311 @BattleAxeVR Fundamentally everything is a number, as in a memory address with a series of bytes. Types are categorization on top of this and you can always cast them away. String literals will be const char, which are arrays of ascii bytes. So you can do: auto word = "string"; auto…

Source: X post

One thing that I've never seen quantified in programming language design is how much time is los

One thing that I've never seen quantified in programming language design is how much time is lost to people arguing about various ways to do things. Each concept added to a language is one additional thing programmers can argue about. Programmers have a bad tendency to get…

Source: X post

One thing that I've never seen quantified in programming language design is how much time is los

One thing that I've never seen quantified in programming language design is how much time is lost to people arguing about various ways to do things. Each concept added to a language is one additional thing programmers can argue about. Programmers have a bad tendency to get…

Source: X post

@amaldorai Framework makes a pretty good laptop and they only have about 100 empoyees, I think.

@amaldorai Framework makes a pretty good laptop and they only have about 100 empoyees, I think. Of course, it's in cooperation with many other companies, but single companies do not need to be that big to accomplish things. At a certain point don't you think too great of centralized control…

Source: X post

@amaldorai Any software. Maybe you don’t want to pay large fees. Maybe you want to distance your

@amaldorai Any software. Maybe you don’t want to pay large fees. Maybe you want to distance yourself from legal complications.

Source: X post

There needs to be a game engine that can compile builds to fully bootable rapsberry pi iso image

There needs to be a game engine that can compile builds to fully bootable rapsberry pi iso images. Then could put them on SD cards and use them like cartridges on a raspberry pi.

Source: X post

@Lanowen No One Will Save You was enjoyable

@Lanowen No One Will Save You was enjoyable

Source: X post

@Lanowen best sci fi in recent years are the apple series

@Lanowen best sci fi in recent years are the apple series foundation, silo, severance

Source: X post

I realize it's best not to think of C++ as a specific language so much as it is a language spong

I realize it's best not to think of C++ as a specific language so much as it is a language sponge. It gradually absorbs every other language idiom, fermenting them all into some odd goo internal to its porous self. Depending on how you look at it and smoosh it around, it could…

Source: X post

I realize it's best not to think of C++ as a specific language so much as it is a language spong

I realize it's best not to think of C++ as a specific language so much as it is a language sponge. It gradually absorbs every other language idiom, fermenting them all into some odd goo internal to its porous self. Depending on how you look at it and smoosh it around, it could…

Source: X post

I love how the PEV industry has been taking off past few years. So many good scooters you can ge

I love how the PEV industry has been taking off past few years. So many good scooters you can get that go 50 mph for not absurd prices. So many good electric longboards too.

It's surprising to me too, I've been through a handful of electric longboards now, and have sold a few on…

Source: X post

The smart thing for me to do, monetarily wise, is make some kind of Quest game in Unity because

The smart thing for me to do, monetarily wise, is make some kind of Quest game in Unity because I'm an unity expert and could whip up something, and maybe it might sell on quest.

However, for some reason, my brain keeps saying "make an open source battlezone clone for the…

Source: X post

@Jonathan_Blow @ppok24 Just don’t hire people that pretend to work remotely and then you don’t h

@Jonathan_Blow @ppok24 Just don’t hire people that pretend to work remotely and then you don’t have an issue. Sounds like you were just bad at hiring.

Source: X post

@AntonHand The passthrough is the best yet but not good enough to make me seriously use my phone

@AntonHand The passthrough is the best yet but not good enough to make me seriously use my phone through it.

Source: X post

@VitriolicVi @AntonHand no

@VitriolicVi @AntonHand no

Source: X post

subgroupBroadcastFirst

subgroupBroadcastFirst

Source: X post

@SebAaltonen affinity photo

@SebAaltonen affinity photo

Source: X post

I like this idea of using RT cores for general collision more so than using it for rendering.

I like this idea of using RT cores for general collision more so than using it for rendering. https://dl.acm.org/doi/10.1145/3587423.3595537 https://x.com/_rygo6/status/1749275666682683801/photo/1

Source: X post

@darkswordsmantv gotta turn off its auto-orient thing so then the panels just stick to your hand

@darkswordsmantv gotta turn off its auto-orient thing so then the panels just stick to your hand and you can move them however

Source: X post

@dankvr I've thought about making this a lot... but you'd have to use some weird trickery to get

@dankvr I've thought about making this a lot... but you'd have to use some weird trickery to get overlays to appear in the same spot to different people in VRC.

Source: X post

@ToTheLoom I would buy this

@ToTheLoom I would buy this

Source: X post

@sporadicalia I'd nudge them to learning about meditation, healthy habits of happiness and how t

@sporadicalia I'd nudge them to learning about meditation, healthy habits of happiness and how to find deeper meaning in order to give them the tools to evade a life of isolated depression as they gradually come to fully grok the current state of humanity and can do nothing but sit in horror.

Source: X post

I spend a lot of time browsing the web in VR through XSOverlay in an Index. Few hours a day typi

I spend a lot of time browsing the web in VR through XSOverlay in an Index. Few hours a day typically. Even though the Index is lower res and input can be harder, the reasons are:

- Lets me sit in a bean bag at a 30-degree backward recline with the browser above me angled down.…

Source: X post

Spending time thinking about how to optimize nanoseconds out of some operation is typically seen

Spending time thinking about how to optimize nanoseconds out of some operation is typically seen as absurd and stupid.

However, millions of engineers thinking a little more how to optimize nanoseconds out of potentially billions of lines of code, many of which can often be lower…

Source: X post

I've bought so much music through the apple music store and I can't express the level of annoyan

I've bought so much music through the apple music store and I can't express the level of annoyance that the apple music app has now begun to show me ads to sell me things...

Source: X post

@AntonHand Really, I think we just need to do away with laws related to likeness of anything. It

@AntonHand Really, I think we just need to do away with laws related to likeness of anything. It's going to get uglier and uglier for your small-time creators as time goes on. Big companies that can run AI tools non-stop, afford the teams and afford the lawyers are going to start pumping…

Source: X post

@iJorge511 @TimSweeneyEpic It isn't Apple's device, it's your device.

@iJorge511 @TimSweeneyEpic It isn't Apple's device, it's your device.

Source: X post

@technobaboo To note only screen space, you're coming back to comparing white sheet specs. It's

@technobaboo To note only screen space, you're coming back to comparing white sheet specs. It's the no-fuss aspect of it. Yes, there is a decent percentage of the population willing to pay double, triple, even more, for something which, on paper, is the same, if not worse, but experientially…

Source: X post

I want to make something kind of like a VR commune. Everyone has their own little tiny house wit

I want to make something kind of like a VR commune. Everyone has their own little tiny house with a nice VR setup, PC, all that. There would be some farms that everyone would have to work on periodically to keep the food and magic vegetables in good supply. Then all spare time…

Source: X post

I'd expect Apple Vision Pro to get a decent committed following. I see a lot of XR Twitter over

I'd expect Apple Vision Pro to get a decent committed following. I see a lot of XR Twitter over complicating the whole matter. Which is funny because it's the same thing that's happened over and over with any new Apple product launches. People focus on white paper spec lists and…

Source: X post

@pemathedev well nm, I didn't know can do that with readonly ref

@pemathedev well nm, I didn't know can do that with readonly ref

Source: X post

https://en.wikipedia.org/wiki/Waterbed_theory

https://en.wikipedia.org/wiki/Waterbed_theory

Source: X post

@BattleAxeVR so like... VR as a sleep aid is unironically my primary use case.

@BattleAxeVR so like... VR as a sleep aid is unironically my primary use case.

I am not one that sleeps in VR on purpose, but it's effectiveness at pulling you into a different state of mind, different emotional state, different mood can be so effective I tend to always go into VR before…

Source: X post

@yewnyx In rvalue lvalue terminology I think I'd technically be looking to store an lvalue in an

@yewnyx In rvalue lvalue terminology I think I'd technically be looking to store an lvalue in another lvalue.

but actually just found newer C# can do something equivalent in a non-const form

Source: X post

One of the features missing from C#, and also swift, and many higher-level langs that I rather d

One of the features missing from C#, and also swift, and many higher-level langs that I rather dislike, there is no easy clean simple syntax to take the ref to something in a method.

Like in C++ you can do: const auto& bigStructThing = object->bigStructThing bigStructThing.stuff…

Source: X post

@IngenicTV @BigscreenVR They should have shipped out temporary loner adjustable ones that you co

@IngenicTV @BigscreenVR They should have shipped out temporary loner adjustable ones that you configured for yourself then sent back.

Source: X post

@SpatialBiggs it probably is

@SpatialBiggs it probably is

Source: X post

I want a bracelet or glove controller that has a joy stick and buttons on the top and bottom of

I want a bracelet or glove controller that has a joy stick and buttons on the top and bottom of each wrist.

Source: X post

https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.19881.html

https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.19881.html https://usa.visa.com/solutions/crypto/deep-dive-on-solana.html

What's going to happen is increasingly traditional finance is going to migrate more and more infrastructure to blockchain, cryptocurrency and web3 solutions because it just doesn't make sense for them to internally maintain…

Source: X post

https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.19881.html

https://usa.visa.com/about-visa/newsroom/press-releases.releaseId.19881.html https://usa.visa.com/solutions/crypto/deep-dive-on-solana.html

What's going to happen is increasingly traditional finance is going to migrate more and more infrastructure to blockchain, cryptocurrency and web3 solutions because it just doesn't make sense for them to internally maintain…

Source: X post

@Borkio1 https://youtu.be/P79mk_LHOIk?si=2pX1inD3K59PWNiO

@Borkio1 https://youtu.be/P79mk_LHOIk?si=2pX1inD3K59PWNiO

Source: X post

@targetdisk @cnlohr If anything, all it'd need is a basic traits feature

@targetdisk @cnlohr If anything, all it'd need is a basic traits feature

Source: X post

@philchacko You really think the reset could fix things?

@philchacko You really think the reset could fix things?

Source: X post

Original Meta from 2016 called it 'Spatial Computing'. This isn't a new term.

Original Meta from 2016 called it 'Spatial Computing'. This isn't a new term.

Source: X post

@mangiotto Watch 'Threads' next.

@mangiotto Watch 'Threads' next.

Source: X post

@key_vfx Sparkly Smokizzler

@key_vfx Sparkly Smokizzler

Source: X post

@cnlohr @targetdisk you should write out and define the rationale for own C and potential new C

@cnlohr @targetdisk you should write out and define the rationale for own C and potential new C features

Source: X post

tfw you can't tell if techlead is still trying to be ironically funny... https://youtu.be/rJJBnm

tfw you can't tell if techlead is still trying to be ironically funny... https://youtu.be/rJJBnmDkEwI?si=X8hiP3kuK0WFipEN

Source: X post

@paulg This has a children's fairy tale level of nuance about the complexities of societal econo

@paulg This has a children's fairy tale level of nuance about the complexities of societal economic issues in the real world.

Yes, there are scenarios where concentrated wealth and power would be better off dismantled for public good.

Admittedly most in the "murder the rich" camp do…

Source: X post

https://www.openculture.com/2022/01/read-the-cias-simple-sabotage-field-manual.html https://x.co

https://www.openculture.com/2022/01/read-the-cias-simple-sabotage-field-manual.html https://x.com/_rygo6/status/1744450843037094033/photo/1

Source: X post

Every time I read AVP something goes off in the back of my brain that triggers excitement about

Every time I read AVP something goes off in the back of my brain that triggers excitement about a new Alien Vs Predator game. Every time I am let down.

Source: X post

@cnlohr whats wrong with the new features? I like constexpr, nullptr and defer

@cnlohr whats wrong with the new features? I like constexpr, nullptr and defer

Source: X post

@AntonHand Specifically feeling more and more like the 80's, 90's, 00's hustle go-go-capitalism

@AntonHand Specifically feeling more and more like the 80's, 90's, 00's hustle go-go-capitalism cheerleading is really entering a rather unstylish phase. That the tech optimism ideology may not be sufficient for this next phase. We might really need to start thinking different about tech…

Source: X post

@AntonHand I blame it on YouTube AI.

@AntonHand I blame it on YouTube AI.

... but reflecting on the coming economic condition of US and particularly tech is something that's been on my mind a lot lately. This struck me as, unfortunately, not as ironic and shitposting of him as typical.

Source: X post

US politics is so obnoxious to me. Just the whole damn thing. I don't even know what to do about

US politics is so obnoxious to me. Just the whole damn thing. I don't even know what to do about it. Anytime I see someone parrot anything of mainstream US political diatribe there is a part of me that is deeply saddened and disappointed.

The thing that's so unfortunate about it…

Source: X post

US politics is so obnoxious to me. Just the whole damn thing. I don't even know what to do about

US politics is so obnoxious to me. Just the whole damn thing. I don't even know what to do about it. Anytime I see someone parrot anything of mainstream US political diatribe there is a part of me that is deeply saddened and disappointed.

The thing that's so unfortunate about it…

Source: X post

US Politics is a Virtual Reality maintained by heavily edited and heavily framed fragments of vi

US Politics is a Virtual Reality maintained by heavily edited and heavily framed fragments of video clips and narratives spread across many different screens.

Source: X post

@nothings The question itself might be part of the issue. The future is not about believing, it

@nothings The question itself might be part of the issue. The future is not about believing, it is about perceiving. The world has reached a scale and complexity too great for the mind to grok. Framing it through mental models of belief will always feel like you're missing something.

Source: X post

NOSTR is coming along pretty nicely... this client seems to work quite well:

NOSTR is coming along pretty nicely... this client seems to work quite well: https://coracle.social/

Honestly... NOSTR could be it. The start of the decentralized web. My view is that the first major thing which needs to take root to make a decentralized web work is a form of…

Source: X post

nostr is coming along pretty nicely... this client seems to work quite well:

nostr is coming along pretty nicely... this client seems to work quite well: https://coracle.social/

Source: X post

@MikeCodesDotNET @keithernet Because software is so fundamental to so many people's lives that i

@MikeCodesDotNET @keithernet Because software is so fundamental to so many people's lives that it often takes on the equivalent of roads or plumbing. The equivalent of what would typically be understood to be a public utility. It's a weird thing to base one's life upon some proprietary closed source product…

Source: X post

@mahoneymatic @SkarredGhost @UploadVR Technical details about the state of hand tracking in XR i

@mahoneymatic @SkarredGhost @UploadVR Technical details about the state of hand tracking in XR industry is something I can't unfortunately talk about right now.

Source: X post

linkedin is like a contest of who can have the worst possible take about XR... why is it so bad

linkedin is like a contest of who can have the worst possible take about XR... why is it so bad

Source: X post

I remember when Doom VFR first came out, I immediately bought it, then immediately returned it b

I remember when Doom VFR first came out, I immediately bought it, then immediately returned it because it had such severe graphical and performance issues it was unplayable.

Now, out of curiosity, I just bought it again and it runs and looks just fine. However, the controls…

Source: X post

I remember when Doom VFR first came out, I immediately bought it, then immediately returned it b

I remember when Doom VFR first came out, I immediately bought it, then immediately returned it because it had such severe graphical and performance issues it was unplayable.

Now, out of curiosity, I just bought it again and it runs and looks just fine. However, the controls…

Source: X post

Wish there'd be a modernized 1998 Battlezone. That game was so good, but then Battlezone 2 had a

Wish there'd be a modernized 1998 Battlezone. That game was so good, but then Battlezone 2 had a rough launch and did poorly. It seems like no one ever tried to do the genre again.

There's been a few FPS/RTS efforts since then, but they all changed up the formula pretty severely…

Source: X post

@_RustyRooster Senior typically means that you are past the proving yourself phase and year end

@_RustyRooster Senior typically means that you are past the proving yourself phase and year end doesn't require an explicit yes/no from decision makers on whether to keep you.

Really, 'Engineer' should be called 'Junior Engineer'; then 'Senior Engineer' should be 'Engineer', but they stopped…

Source: X post

@_RustyRooster But 'Senior' title at MAANG does mean something more than most other companies as

@_RustyRooster But 'Senior' title at MAANG does mean something more than most other companies as there is a somewhat standardized metric they must pass. Startups tend to throw out 'Senior' pretty willy-nilly. Many senior titles who are not from MAANG, if hired into MAANG, would get an Engineer…

Source: X post

@PiquantParvenu If Apple made the browser as effective on the iPhone as mobile apps, then they w

@PiquantParvenu If Apple made the browser as effective on the iPhone as mobile apps, then they wouldn't have been able to take 30% off what is the equivalent of a website.

Source: X post

bigscreen still not responded to support email from like over 2 weeks ago...

bigscreen still not responded to support email from like over 2 weeks ago...

I hope their support strategy is not to just ignore everyone until they go away...

Source: X post

@AntonHand I don't even know the official plan long-term on this myself...

@AntonHand I don't even know the official plan long-term on this myself...

Source: X post

@yewnyx Spacewarp on oculus uses the depth buffer and motion vector buffer too. Steamvr still us

@yewnyx Spacewarp on oculus uses the depth buffer and motion vector buffer too. Steamvr still uses neither.

Singlepass halves the drawcall list by using the same list for both eyes, but once it gets to the actual vertex and fragment shader there is no further optimization.

Source: X post

Who buys every call of duty for $60 like every 8 months it seems? Can call of duty really keep b

Who buys every call of duty for $60 like every 8 months it seems? Can call of duty really keep being entertaining and needing new stuff?

Source: X post

google is already ruined for so many search terms... the same handful of information phrased dif

google is already ruined for so many search terms... the same handful of information phrased differently by AI on hundreds of pages with ads

Source: X post

For whatever reason last night, I went on a reading binge about temporal antialiasing, temporal

For whatever reason last night, I went on a reading binge about temporal antialiasing, temporal shading technique, AI frame generation and a whole bunch of arguments in relation to them. Where many gamers are upset that temporal approaches seem to smudge up and reduce quality.…

Source: X post

@CyberWilhelm I think it does, but I also dont remember it working as well in VR

@CyberWilhelm I think it does, but I also dont remember it working as well in VR

Source: X post

@CyberWilhelm actually, just went and bought this to see, I don't find tssaa terrible in vr, i'd

@CyberWilhelm actually, just went and bought this to see, I don't find tssaa terrible in vr, i'd play it, they need to fix the controls then it'd be good

Source: X post

@BigscreenVR unfortunately seems unable to respond to support requests :(

@BigscreenVR unfortunately seems unable to respond to support requests :(

Source: X post

@BattleAxeVR I've also encountered 2 people that commented how discrepancy of shading due to per

@BattleAxeVR I've also encountered 2 people that commented how discrepancy of shading due to perspective differences between each eyes makes them lose stereo coherence when an object us up close.

Specifically heard this about toon shading in VR where the differences between outline between…

Source: X post

@BattleAxeVR I'd suspect for most scenarios of surface shading you could put the source of the r

@BattleAxeVR I'd suspect for most scenarios of surface shading you could put the source of the ray right between the eyes and you couldn't notice.

Source: X post

@AntonHand oh damn... calling valve corpo makes me feel really corpo

@AntonHand oh damn... calling valve corpo makes me feel really corpo

Source: X post

@AntonHand I'm wondering what kind of person is this? A COD game entertains me for like a week.

@AntonHand I'm wondering what kind of person is this? A COD game entertains me for like a week.

Source: X post

@AntonHand Huh I actually didn't call of duty even had comprehensive social features.

@AntonHand Huh I actually didn't call of duty even had comprehensive social features.

Also didn't know fortnite had non-gaming content to load? I should probably try fortnite atleast once.

Source: X post

@AntonHand DLSS on 4090 I find works great, I use it in everything that supports it, FSR has bee

@AntonHand DLSS on 4090 I find works great, I use it in everything that supports it, FSR has been more questionable so far.

Source: X post

I would definitely buy some like slimmed motorcycle VR controller chassis to setup in my apt for

I would definitely buy some like slimmed motorcycle VR controller chassis to setup in my apt for this for ~$500ish if available. Just like the seat and handlebars made to match the in-game bike on something that leans left right. Maybe some light haptics. I REALLY wanted to buy a… https://x.com/Rainmaker1973/status/1742565227554910302

Source: X post

@hyperbeamapp @VRChat oh cool, is it webrtc based or still going over HLS?

@hyperbeamapp @VRChat oh cool, is it webrtc based or still going over HLS?

Source: X post

@hyperbeamapp @VRChat Im curious because... I made this same feature with webrtc/websocket for a

@hyperbeamapp @VRChat Im curious because... I made this same feature with webrtc/websocket for altspace few years back and always wished I could replicate it in vrchat, but vrchat didn't have proper support for needed tech :( ya... If VRC allowed webrtc/websocket connect to some select partners based…

Source: X post

@hyperbeamapp @VRChat how do you send the input out of vrchat ?

@hyperbeamapp @VRChat how do you send the input out of vrchat ?

Source: X post

@hyperbeamapp @VRChat does input work on both quest and pc ?

@hyperbeamapp @VRChat does input work on both quest and pc ?

Source: X post

@dtupper Ok so then it’s outputting to log and scrubbing the log for input, and input won’t work

@dtupper Ok so then it’s outputting to log and scrubbing the log for input, and input won’t work in quest?

Source: X post

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable are destructors. There is something very convenient about putting cleanup code paired with a chunk of data and then it getting auto-called at end of scope. It lets you dump a chunk of…

Source: X post

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable are destructors. There is something very convenient about putting cleanup code paired with a chunk of data and then it getting auto-called at end of scope. It lets you dump a chunk of…

Source: X post

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable

I've concluded, the only thing from C++ which I feel truly makes it objectively more manageable are destructors. There is something very convenient about putting cleanup code paired with a chunk of data and then it getting auto-called at end of scope. It lets you dump a chunk of…

Source: X post

I really hate how programmer got elevated to such a status of prestige. Really programming is no

I really hate how programmer got elevated to such a status of prestige. Really programming is not much more than a skilled trade, but the tech industry went through such a huge boom of making such a ridiculous amount of money beyond what it knew what to do with that it turned…

Source: X post

@haagch42 I have thus far evaded ever having to touch msvc and hope to keep it that way

@haagch42 I have thus far evaded ever having to touch msvc and hope to keep it that way

Source: X post

@ergosiris I think there definitely are 'rockstar' or 'ninja' or 'elite' coders out there, but i

@ergosiris I think there definitely are 'rockstar' or 'ninja' or 'elite' coders out there, but it depends on what exactly you think that term means. In Corporate land there is a tendency to see that implying esteem and authority akin to some like supreme court justice or some esteemed…

Source: X post

@BattleAxeVR I've been looking for this too, if you can find it, I'd be interested. Even just go

@BattleAxeVR I've been looking for this too, if you can find it, I'd be interested. Even just good ways to deal with character animation in general for a self-built engine I've been looking around for. Only thing I've found so far that looks comprehensive in anyway is this:…

Source: X post

@BattleAxeVR Coders definitely are more logical in that they can maintain perfect logical consis

@BattleAxeVR Coders definitely are more logical in that they can maintain perfect logical consistency, but that doesn't necessarily mean more rational in terms of having good sense and good judgement. If you're starting point for logic is "The Static Keyword Is Bad In Any And All…

Source: X post

I want this skateboard controller in VR https://youtu.be/bqpDR4TB90c?si=QZC_MABfR31cXqb3

I want this skateboard controller in VR https://youtu.be/bqpDR4TB90c?si=QZC_MABfR31cXqb3

Source: X post

@BattleAxeVR @IronbugVR I've been wanting gun VR controllers that are custom-made to match in-ga

@BattleAxeVR @IronbugVR I've been wanting gun VR controllers that are custom-made to match in-game guns too. I once tried to contact planet eclipse and dye precision to see if they'd change their guns firmware so the bluetooth connect could be used as a VR controller. Some airsoft company could probably…

Source: X post

@thogge dog

@thogge dog

Source: X post

Sometimes I wonder if those who use things like neovim or emacs, or any simpler editor, have spe

Sometimes I wonder if those who use things like neovim or emacs, or any simpler editor, have spent much time in an IDE and language with advanced static analysis that updates in real-time as you type. Namely what comes to mind is C# with resharper in rider. Not the resharper vs…

Source: X post

@NimaZeighami @James_Abev The reason some things become controversy with the 'in-vr' and 'not-in

@NimaZeighami @James_Abev The reason some things become controversy with the 'in-vr' and 'not-in-vr' crowds is because with enough time spent in VR playing around with different VR hardware and different kinds of experiences; certain categories of things become obvious. They aren't controversial notions…

Source: X post

Kind of wish I did not just read that it's possible to get a ~30% perf improvement on my compute

Kind of wish I did not just read that it's possible to get a ~30% perf improvement on my compute shader by writing it in CUDA.... https://core.ac.uk/reader/323473500 https://x.com/_rygo6/status/1741688637316874662/photo/1

Source: X post

@AntonHand "VR as just a peripheral" are the training wheels. People will gradually fall into th

@AntonHand "VR as just a peripheral" are the training wheels. People will gradually fall into the rabbit hole.

Source: X post

@pmarca It's not like optimism is some universal hard sell either. People generally like optimis

@pmarca It's not like optimism is some universal hard sell either. People generally like optimism and hope. What we need to do is stop selling isms in the first place and instead start dealing with concrete observations and concrete ideas about those observations. People need to stop…

Source: X post

or maybe just restart at B and call it B++

or maybe just restart at B and call it B++

Source: X post

Once upon a time I was rather starry eyed about Big Tech, until I worked in Big Tech, and all of

Once upon a time I was rather starry eyed about Big Tech, until I worked in Big Tech, and all of my friends did as well, then I got to see clearly that Big Tech is not the fertile soil spawning endless innovation. Rather, primarily it is a graveyard where innovation, aspirations…

Source: X post

@NimaZeighami @cixliv The assumption that his viewpoint represents some kind of authority due to

@NimaZeighami @cixliv The assumption that his viewpoint represents some kind of authority due to adequate research.

There is research but it lags behind what people at the edges are discovering and exploring. VR just isn't at the point where there can be some authority, or you can run off objective…

Source: X post

@NimaZeighami @cixliv Not a good assumption to make. The subject of smooth locomotion is not wel

@NimaZeighami @cixliv Not a good assumption to make. The subject of smooth locomotion is not well studied in the industry.

Most who work in the XR industry use VR so little that the majority are completely clueless about what's really evolving and being discovered about it at the ground level…

Source: X post

It's quite fascinating to me how different the tone and general subjects of discussion are on Tw

It's quite fascinating to me how different the tone and general subjects of discussion are on Twitter, YouTube, Facebook vs VRChat. Even people I know on Twitter, talking to them in VRChat is different than Twitter.

For example, in VRChat typical US Political nonsense just…

Source: X post

I'm thinking could take a subset of the best parts of C add in a few of the best parts of C++ an

I'm thinking could take a subset of the best parts of C add in a few of the best parts of C++ and a few of the best parts of C# to then make a new superset of C called C= pronounced "Sequel"... because it'd be like the sequel to C...

Other potential names: C@ (Sat) C& (Sand) C*…

Source: X post

@Happeningcel2 @pmarca I just think the whole "capitalism vs socialism" or "ayn rand vs karl mar

@Happeningcel2 @pmarca I just think the whole "capitalism vs socialism" or "ayn rand vs karl marx" thing is so tired. The current state of the modern developed world doesn't reflect the ideals of either one. We are in a different situation that what their mental models can offer any guidance with.

Source: X post

@AntonHand C# has a handful of specific optimizations for commonly used things. Strings as keys

@AntonHand C# has a handful of specific optimizations for commonly used things. Strings as keys are one of them. A string can be a better key than a custom object if you don't do custom equality and comparers for the custom object. But a string is still not as good of a key as just an int.…

Source: X post

@tipatat @BattleAxeVR No way I am going to be physically rotating my body to turn when I am loun

@tipatat @BattleAxeVR No way I am going to be physically rotating my body to turn when I am lounging in vr....

Source: X post

@pmarca You didn't go to the moon, a dozen people did.

@pmarca You didn't go to the moon, a dozen people did.

Sure, would be great if humanity could though, but would probably need some major retooling of societal incentives to stop wasting so much on the war machine and ensure majority of population has enough economic resource to even…

Source: X post

@BattleAxeVR smooth turning was one of the last things I got used to, it took a number of months

@BattleAxeVR smooth turning was one of the last things I got used to, it took a number of months

Source: X post

@BattleAxeVR @SadlyItsBradley Sitting in a cockpit of a plane, or any vehicle, I suspect has ove

@BattleAxeVR @SadlyItsBradley Sitting in a cockpit of a plane, or any vehicle, I suspect has overlap with why I suspect a well fit avatar in full body tracking helps discomfort. They both serve the purpose of giving the mind something in the virtual construct to ground itself with it. This also I think is…

Source: X post

@SadlyItsBradley I kind of can't believe that professionals in the XR space still talk in an exp

@SadlyItsBradley I kind of can't believe that professionals in the XR space still talk in an explicit binary of "VR Makes You Sick" and "VR Does Not Make You Sick", then suggest people are innately on one side or the other. There is a whole gradient of contributing factors that different people…

Source: X post

I figured I should write this out. My "How to bring someone into VR and have them not get sick"

I figured I should write this out. My "How to bring someone into VR and have them not get sick" checklist.

I am just going to type this without much point-by-point justification. It is all anecdotal, but I would highlight this isn't me just making stuff up on the spot. This is…

Source: X post

I figured I should write this out. My "How to bring someone into VR and have them not get sick"

I figured I should write this out. My "How to bring someone into VR and have them not get sick" checklist.

I am just going to type this without much point-by-point justification. It is all anecdotal, but I would highlight this isn't me just making stuff up on the spot. This is…

Source: X post

Finally, a car fully catered to my American free spirit sensibilities. https://youtu.be/PiEow9uE

Finally, a car fully catered to my American free spirit sensibilities. https://youtu.be/PiEow9uEPsU?si=93mDehiuHgAvU8bo

Source: X post

@cnlohr this looks useful. I can't tell though, why is there a 'bitmapB' ?

@cnlohr this looks useful. I can't tell though, why is there a 'bitmapB' ?

Source: X post

@BattleAxeVR More constrained FOV having benefit for reducing VR sickness during motion is somet

@BattleAxeVR More constrained FOV having benefit for reducing VR sickness during motion is something that has studies behind it, and I do find that to be true from experience too if you throw any typical person into a moving experience in VR.

But specifically in the steps I was laying out of…

Source: X post

@amaldorai @SadlyItsBradley I know it will, but I say what I did specifically to people who work

@amaldorai @SadlyItsBradley I know it will, but I say what I did specifically to people who work in XR.

Source: X post

this is so damn useful why doesn't unity have it...

this is so damn useful why doesn't unity have it... https://github.com/KhronosGroup/GLSL/blob/master/extensions/ext/GLSL_EXT_debug_printf.txt

Source: X post

@NimaZeighami How's it work without 3DOF? The screen is just stuck center of view? That seems li

@NimaZeighami How's it work without 3DOF? The screen is just stuck center of view? That seems like it'd be hard to use.

Source: X post

@MalekiRe Whats the sorta part?

@MalekiRe Whats the sorta part?

Is it only like 3dof and one displayport output? I'd actually still find that useful.

Source: X post

@hare_ware_0 Microsoft is chronically bad at doing anything novel.

@hare_ware_0 Microsoft is chronically bad at doing anything novel.

The sad thing is, there were probably a thousand engineers and designers at Microsoft Mixed Reality that could have executed on some sleek integration of VR headsets into windows amazingly and turned Windows into a VR…

Source: X post

@DsaxFilm It's partly for the end result but also partly so I truly don't need a monitor. So I c

@DsaxFilm It's partly for the end result but also partly so I truly don't need a monitor. So I could fully boot a computer, deal with BIOS and different OS's, just how a monitor would work, only through an HMD.

Source: X post

It's kind of crazy to me that there is still no way I can just plug a VR headset into a PC and h

It's kind of crazy to me that there is still no way I can just plug a VR headset into a PC and have my PCs output popup like a monitor.

I'd pay good money for a little box that did nothing but have one to four DP inputs, mouse keyboard input, kind of like a KVM, but then any…

Source: X post

It's kind of crazy to me that there is still no way I can just plug a VR headset into a PC and h

It's kind of crazy to me that there is still no way I can just plug a VR headset into a PC and have my PCs output popup like a monitor.

I'd pay good money for a little box that did nothing but have one to four DP inputs, mouse keyboard input, kind of like a KVM, but then any…

Source: X post

@pitdesi Winning the lottery isn't a good A/B for BUI. Throwing down a pile of cash one time to

@pitdesi Winning the lottery isn't a good A/B for BUI. Throwing down a pile of cash one time to ease someone's economic anxiety for 6-ish months in an area where everyone is still in poverty is not the same as assuring everyone in that community can count on a basic level of shelter and…

Source: X post

Zbrush has always had odd artifacts on surface shading when viewing low poly meshes and I've alw

Zbrush has always had odd artifacts on surface shading when viewing low poly meshes and I've always wondered exactly why. I presume it's some sort of optimization. Anyone know more about the exact reason? https://x.com/_rygo6/status/1738868398870929775/photo/1

Source: X post

I rather dislike how in so many of the new langs you can't just simply import a c/cpp header fil

I rather dislike how in so many of the new langs you can't just simply import a c/cpp header file and call functions directly. You must do some wrapper function runaround, juggle types and deal with translating syntax. Sure, it's not a huge deal to do that but it just feels so…

Source: X post

@BattleAxeVR @yewnyx What other way could you deal with that?

@BattleAxeVR @yewnyx What other way could you deal with that?

Are you thinking something like, you render out UV coords in a gbuffer-like pass then the reprojection compositor sample and apply the actual texture? I was thinking about that this past week but wondering if trying to avoid one extra…

Source: X post

@AntonHand dead cells

@AntonHand dead cells

Source: X post

@yewnyx That doesn't seem like a good reason to say use dependency injection frameworks in Unity

@yewnyx That doesn't seem like a good reason to say use dependency injection frameworks in Unity? Not sure if that's what you're implying.

Ya unity deserialization has some overhead, which is good reason to not make everything UnityObject unless you really need the deserialization.

Source: X post

@yewnyx Even if you could implement a perfect dependency injection framework in a highly perform

@yewnyx Even if you could implement a perfect dependency injection framework in a highly performant way, I'd really debate, do you even need it? Going that far with it always seems to be trying to satisfy some philosophical constraints beyond what's a real practical issue needing…

Source: X post

Serious question that I'm apparently naive on. How does a company like Bun raise $7 million? htt

Serious question that I'm apparently naive on. How does a company like Bun raise $7 million? https://oven.sh/ As I understand, bun is free, bun is opensource, it's competitor NodeJS isn't a money maker as it is also FOSS. I presume Bun wasn't pitched on making a bunch of…

Source: X post

Serious question that I'm apparently naive on. How does a company like Bun raise $7 million? htt

Serious question that I'm apparently naive on. How does a company like Bun raise $7 million? https://oven.sh/ As I understand, bun is free, bun is opensource, it's competitor NodeJS isn't a money maker as it to is FOSS. I presume Bun wasn't pitched on making a bunch of…

Source: X post

@SenWarren Damn that X reader context is brutal...

@SenWarren Damn that X reader context is brutal...

Source: X post

@amaldorai That's enough though? To say "This project will enter a dual license and be able to t

@amaldorai That's enough though? To say "This project will enter a dual license and be able to theoretically charge __ to enterprise customers in _ years" or something like that?

Source: X post

@yewnyx I do think the relevancy of everything after C is highly debatable... but encouraging ap

@yewnyx I do think the relevancy of everything after C is highly debatable... but encouraging appropriate use of static I hardly think is explicitly a C mentality. There are plenty of static APIs and implementations in C# code done appropriately. For whatever reason though, among some in…

Source: X post

@wojakbitcoin @gaborgurbacs Ultimately, yes you can. For an average citizen, not so much the mil

@wojakbitcoin @gaborgurbacs Ultimately, yes you can. For an average citizen, not so much the military, more so law enforcement. Dollars are representative of the enforcement power of the State. You pay someone $100,000 to do something under contract and if they don't do it, you can bring the force of the…

Source: X post

Using Instacart, and finding it incredibly convenient, but realizing how much of a leech the Ins

Using Instacart, and finding it incredibly convenient, but realizing how much of a leech the Instacart corporation itself really is, it makes me wish there was something else to use. Like some website where someone pays $5 a month or something cheap to have a portal on it,…

Source: X post

Unity Dev PSA: The purpose of a Singleton is not -just- to make something globally accessible vi

Unity Dev PSA: The purpose of a Singleton is not -just- to make something globally accessible via static reference. It is to make something globally accessible via static reference AND enable you to change implementation by setting that static reference to a subclassed type or…

Source: X post

tf is this shit... the AI Bot'ening is already here https://x.com/_rygo6/status/1737299398860951

tf is this shit... the AI Bot'ening is already here https://x.com/_rygo6/status/1737299398860951584/photo/1

Source: X post

@technobaboo @dankvr I had the idea once of using something in blockchain land to create a distr

@technobaboo @dankvr I had the idea once of using something in blockchain land to create a distributed system to 'verify' packages, or apps, or content. Similar to an iOS App verification process, or the process of getting some package in a primary package manager, or content posted to some asset…

Source: X post

@ryanlpeterman I write code, or I am in code debugging, over 90% of the time. I'd consider that

@ryanlpeterman I write code, or I am in code debugging, over 90% of the time. I'd consider that to be what merits the title software engineer. One who actually writes the code.

All those other things are mostly for other roles. - Design Docs can be done after the system is proven out, can be…

Source: X post

@notshenetworks Tech industry needs to differentiate between:

@notshenetworks Tech industry needs to differentiate between: "Thing person Is not actually familiar with and would actually struggle to understand." and "Thing which person will fully remember after glancing at the Wikipedia page for 5 seconds." I try to do this if I ever interview anyone, but…

Source: X post

I loathe dependency injection frameworks in Unity. Don't take what should be one of the simplest

I loathe dependency injection frameworks in Unity. Don't take what should be one of the simplest things you can do, instance an object, then go write some complex framework to walk through every field and property with reflection on every instantiation to set references on it.…

Source: X post

I loathe dependency injection frameworks in Unity. Don't take what should be one of the simplest

I loathe dependency injection frameworks in Unity. Don't take what should be one of the simplest things you can do, instance an object, then go write some complex framework to walk through every field and property with reflection on every instantiation to set properties on it.…

Source: X post

Decided I should start posting random Unity dev PSAs and tips, because why not.

Decided I should start posting random Unity dev PSAs and tips, because why not.

Unity Dev PSA: There is no point in separating logic out from the MonoBehaviours for the purposes of testing. You can unit test MonoBehaviours directly. Unity specifically extended the nunit testing…

Source: X post

@yewnyx the IPD seems fine, the center of the clearest point is roughly where I would want it. I

@yewnyx the IPD seems fine, the center of the clearest point is roughly where I would want it. It's why I am wondering if it's because I got the prescription lens inserts.

Source: X post

@ryanlpeterman Good engineers probably aren't writing out descriptions of what is a good enginee

@ryanlpeterman Good engineers probably aren't writing out descriptions of what is a good engineer on Twitter.

Source: X post

@qwe_304 That is a good quesiton. The reason why vrchat movie worlds are so much more popular th

@qwe_304 That is a good quesiton. The reason why vrchat movie worlds are so much more popular than bigscreen, despite vrchat worlds having much worse UX, is something which is critical for anyone in the XR industry to understand. Unfortunately, most probably know why.

I also don't think…

Source: X post

My Bigscreen Beyond arrived. First impressions:

My Bigscreen Beyond arrived. First impressions:

The Good: - Damn it's small, you know it's small, but damn it's even smaller than I expected when holding it. - I got the prescription lens inserts and the way they attach, their thickness, quality is really nice. Index custom…

Source: X post

My Bigscreen Beyond arrived. First impressions:

My Bigscreen Beyond arrived. First impressions:

The Good: - Damn it's small, you know it's small, but damn it's even smaller than I expected when holding it. - I got the prescription lens inserts and the way they attach, their thickness, quality is really nice. Index custom…

Source: X post

My Bigscreen Beyond arrived. First impressions:

My Bigscreen Beyond arrived. First impressions:

The Good: - Damn it's small, you know it's small, but damn it's even smaller than I expected when holding it. - I got the prescription lens inserts and the way they attach, their thickness, quality is a really nice. Index custom…

Source: X post

VRChat shut down the movie worlds, within hours movie worlds were reuploaded to new worlds which

VRChat shut down the movie worlds, within hours movie worlds were reuploaded to new worlds which you must know the link to get into and the link was spread word of mouth. Until too many knew the links and what was clearly a movie world started to trend, looking mighty suspicious.…

Source: X post

@LericDax Go out by the dumpster behind the great pug and talk to the purple cat.

@LericDax Go out by the dumpster behind the great pug and talk to the purple cat.

Source: X post

@HobkinBoi ya... I think you can learn something about this from the music industry's past fight

@HobkinBoi ya... I think you can learn something about this from the music industry's past fighting music piracy, which they ultimately lost, the only thing they found which shifted the tides was to make something more convenient than the piracy sites, which turned out to be iTunes. This'll…

Source: X post

@guillefix What if the source does not itself contain any illegal content but just lets you fill

@guillefix What if the source does not itself contain any illegal content but just lets you fill in the links to it?

But even if, you could do things like make the user rotate three wheels to input some code, which unscrambles some URL. Or any other variation of such a thing. It'd be damn…

Source: X post

@black_orbit There are dozens of these worlds now. Even solutions that don't require a world, yo

@black_orbit There are dozens of these worlds now. Even solutions that don't require a world, you just put a certain URL in any video streamer. There's no fighting this. Video piracy will spread through all the social VR platforms like wildfire, increasingly being a bigger issue, until the…

Source: X post

I find it hard to believe that in 10 years scrolling through a bunch of text, image, video snipp

I find it hard to believe that in 10 years scrolling through a bunch of text, image, video snippets and typing on little phone keyboards will still be the predominate way people participate in online culture and interactions. There are just too many compounding threads of…

Source: X post

@gfodor What? I'm 37 and have used an HMD for 4+ hours every day for multiple years now. I'm jus

@gfodor What? I'm 37 and have used an HMD for 4+ hours every day for multiple years now. I'm just fine...

Source: X post

@gfodor oh right... for some reason read that in the inverse :|

@gfodor oh right... for some reason read that in the inverse :|

Source: X post

@gfodor but also... using twitter, facebook, youtube under 12 is very health-concerning too, so

@gfodor but also... using twitter, facebook, youtube under 12 is very health-concerning too, so it's not like the under 12 demographic really needs to be heavily involved in this

Source: X post

@AndreaCopellino when I am in vrchat I care very little about checking twitter, my engagement is

@AndreaCopellino when I am in vrchat I care very little about checking twitter, my engagement is mostly one directional on that, twitter and discord are for spare moments between doing work on screens

Source: X post

@yewnyx @EchoTheNeko oh shit is this why the 1TB were such a good price... I stockpiled like 6 o

@yewnyx @EchoTheNeko oh shit is this why the 1TB were such a good price... I stockpiled like 6 of them....

Source: X post

After playing through metroid dread like a year ago, then playing lots of other sidescrollers on

After playing through metroid dread like a year ago, then playing lots of other sidescrollers on my steamdeck, then coming back to metroid dread... dread is so good... easily the best sidescroller in every category it tried to do. The controls and animations are perfect, the…

Source: X post

@pmarca TBH, when I read the technology optimists manifesto, in the back of the mind I was think

@pmarca TBH, when I read the technology optimists manifesto, in the back of the mind I was thinking it was all full of shit. Namely because it didn't give enough credence to what you highlighted: -- "While “Big Tech” is well represented in Washington D.C., their interests are often at…

Source: X post

Has anyone ever CNC manufactured a small aluminum item? What's a good place to go do this?

Has anyone ever CNC manufactured a small aluminum item? What's a good place to go do this?

Source: X post

@davepl1968 Most FOSS projects that are fundamental pieces of modern tech are maintained by dist

@davepl1968 Most FOSS projects that are fundamental pieces of modern tech are maintained by distributed, remote, contributors. Modern computing as we know it exists because remote distributed software development works.

Source: X post

@benz145 I know that the lower quality of hardware and experience that most people ended up gett

@benz145 I know that the lower quality of hardware and experience that most people ended up getting pulled into through a quest made a lot of people nauseas or experience discomfort and believe VR is just not for them.

I have no idea the ultimate net benefit or net negative from that,…

Source: X post

urge to make my own 'tiny standard template library' for cpp strong

urge to make my own 'tiny standard template library' for cpp strong

Source: X post

I think I have decided Hungarian notation is entirely inferior to being able to set the colors o

I think I have decided Hungarian notation is entirely inferior to being able to set the colors of symbol types in an IDE. Feel your eyes can process / speedread colors faster than they can little symbols. https://x.com/_rygo6/status/1735214367199863209/photo/1

Source: X post

I think I have decided Hungarian notation is entirely inferior to being able to set the colors o

I think I have decided Hungarian notation is entirely inferior to being able to set the colors of symbol types in an IDE. https://x.com/_rygo6/status/1735214204892901759/photo/1

Source: X post

@dannyaroslavski Thanks for the pointer but I've actually seen those before :) I'm curious to se

@dannyaroslavski Thanks for the pointer but I've actually seen those before :) I'm curious to see more C++ codebases that don't put everything in classes, but also curious if there is some technical reason there is no use of classes in that codebase.

Source: X post

A lot of people debate what is right and wrong in programming, proper ways to do things, and I t

A lot of people debate what is right and wrong in programming, proper ways to do things, and I think a simple truth is often lost that the entire purpose of different techniques and perspectives on writing code is to enable you to go faster. To let you produce more of what is the…

Source: X post

There is some part of me that wishes I spent more time doing straight graphics and native progra

There is some part of me that wishes I spent more time doing straight graphics and native programming rather than unity development over the past few decades... but then there is another part of me, that as I've dug more and more into graphics and native the past few years, I've…

Source: X post

There is some part of me that wishes I spent more time doing straight graphics and native progra

There is some part of me that wishes I spent more time doing straight graphics and native programming rather than unity development over the past few decades... but then there is another part of me, that as I've dug more and more into graphics and native the past few years, I've…

Source: X post

There is some part of me that wishes I spent more time doing straight graphics and native progra

There is some part of me that wishes I spent more time doing straight graphics and native programming rather than unity development over the past few decades... but then there is another part of me, that as I've dug more and more into graphics and native the past few years, I've…

Source: X post

There is some part of me that wishes I spent more time doing straight graphics and native progra

There is some part of me that wishes I spent more time doing straight graphics and native programming rather than unity development over the past few decades... but then there is another part of me, that as I've dug more and more into graphics and native the past few years, I've…

Source: X post

I'm rather intrigued by this C++ codebase that doesn't use classes at all: https://github.com/WA

I'm rather intrigued by this C++ codebase that doesn't use classes at all: https://github.com/WAVM/WAVM Everything is structs with some functions in the structs, but then most functions in the same namespace. Appears to not use any classes at all. Is this done anywhere else? Seems to…

Source: X post

I'm rather intrigued by this C++ codebase that doesn't use classes at all: https://github.com/WA

I'm rather intrigued by this C++ codebase that doesn't use classes at all: https://github.com/WAVM/WAVM Everything is structs with some functions in the structs, but then most functions in the same namespace. Appears to not use any classes at all. Is this done anywhere else? Seems to…

Source: X post

I wonder what a twitter would be like if you couldn't post unless you wrote more than 500 charac

I wonder what a twitter would be like if you couldn't post unless you wrote more than 500 characters.

Source: X post

Debating if I should stop doing Hungarian notation in all of my code... does it really do anythi

Debating if I should stop doing Hungarian notation in all of my code... does it really do anything good or is it just tradition?

Source: X post

@BattleAxeVR @AminiAllight this->variable = variable doesn't seem too bad though since its on

@BattleAxeVR @AminiAllight this->variable = variable doesn't seem too bad though since its only done in constructors/init ?

Source: X post

@AminiAllight @BattleAxeVR I'm in such the habit of religiously hungarian'ing everything because

@AminiAllight @BattleAxeVR I'm in such the habit of religiously hungarian'ing everything because of unity native codebase, but then I was just reading through more doom3 where nothing is hungarian'd and not even getter/setters are used for everything, and it just kind of makes me wonder how much does all…

Source: X post

@AminiAllight @BattleAxeVR are getters and setters really important though...

@AminiAllight @BattleAxeVR are getters and setters really important though...

Source: X post

@technobaboo Well that's good to know, I thought HLSL was easy to use on linux as GLSL. Thats a

@technobaboo Well that's good to know, I thought HLSL was easy to use on linux as GLSL. Thats a good reason to use GLSL but is that true if I am only writing vulkan shaders? I haven't tried glslc on linux but it looks like it can produce spirv from HLSL just as easily as GLSL?

Source: X post

@technobaboo vulkan... but for any shaders really...

@technobaboo vulkan... but for any shaders really...

Source: X post

Should I be using GLSL or HLSL...

Should I be using GLSL or HLSL...

Source: X post

I’ve spent so many years improving perf of C# Unity codebases that nearly every little stupid in

I’ve spent so many years improving perf of C# Unity codebases that nearly every little stupid inane perf foot gun in C# I can notice in a quick speed reading of the code and fix rather quickly. I am thinking I could probably just do it as a contractor and make tons of money. I am…

Source: X post

I am probably going to need this... and it will probably end up killing me...

I am probably going to need this... and it will probably end up killing me... https://radium-performance.com/pages/mach-one-xp3-electric-skateboard

Source: X post

@RealEmirHan Sicario (2015)

@RealEmirHan Sicario (2015)

Source: X post

@Lanowen if you take an ivec2 screen coordinate, convert to float, then do lots of floating poin

@Lanowen if you take an ivec2 screen coordinate, convert to float, then do lots of floating point math, and round that math multiple times, then .5 always rounding up can introduce a slight excess accumulation in some values, that when you convert them back to ivec2 screen coordinate some…

Source: X post

I've reached the limits of ChatGPTs linear algebra capabilities. https://x.com/_rygo6/status/173

I've reached the limits of ChatGPTs linear algebra capabilities. https://x.com/_rygo6/status/1733783848436240496/photo/1

Source: X post

damn kids and their new-fangled weird snow skateboards endangering the public https://youtu.be/X

damn kids and their new-fangled weird snow skateboards endangering the public https://youtu.be/XPZDEWBzneY?si=r01YKgfcECgqLQcT

Source: X post

and today I learned why roundEven exists in glsl

and today I learned why roundEven exists in glsl

Source: X post

@vkrajacic I'm at a rather awkward point where I actually want to make less money, but get away

@vkrajacic I'm at a rather awkward point where I actually want to make less money, but get away for all corporate and controlling politics, so I can focus on doing more innovative and explorative work. So far it's been a hard sales pitch, "Pay me 1/3... but let me work on a bunch of…

Source: X post

@steel_ph0enix @vbkenya @Jonathan_Blow you know I tried the east const thing for a week and it j

@steel_ph0enix @vbkenya @Jonathan_Blow you know I tried the east const thing for a week and it just felt wrong.... so im back to west const

Source: X post

@steel_ph0enix @vbkenya @Jonathan_Blow you also put the mutability modifier to the left of the t

@steel_ph0enix @vbkenya @Jonathan_Blow you also put the mutability modifier to the left of the type? that is the standard in every lang I can think of

Source: X post

@steel_ph0enix @vbkenya @Jonathan_Blow if a type is right of const, the type is const, if a * is

@steel_ph0enix @vbkenya @Jonathan_Blow if a type is right of const, the type is const, if a * is left of const then the pointer is const, that's just as easy to internalize, then you don't mess up your muscle memory with every other lang which puts const to the left of the type

Source: X post

@benz145 though CBL this is really best to test binaural spatial reproduction of audio. Ideally

@benz145 though CBL this is really best to test binaural spatial reproduction of audio. Ideally planar headphones.

for seeing how much range and intensity something can handle without distortion, this song https://youtu.be/46h7b9LvQDc?si=W-MeZ-WqYsO64HkC

Source: X post

@benz145 https://carbonbasedlifeforms.bandcamp.com/album/derelicts

@benz145 https://carbonbasedlifeforms.bandcamp.com/album/derelicts can be purchased in the 24bit lossless

Source: X post

@yewnyx I fully understand the pro-surveillance arguments from a logical standpoint, but I also

@yewnyx I fully understand the pro-surveillance arguments from a logical standpoint, but I also see so much of it intermixed with things that are not objective. What I mean by that is, to what percentage is a platform experiencing right-wing extremism that actually turns into some real…

Source: X post

Whatever the next thing I create/release on my own is, I'm pretty committed to it being Vulkan a

Whatever the next thing I create/release on my own is, I'm pretty committed to it being Vulkan and 90% committed to it being "Sane CPP", which means I am not going to touch Unity and C# for personal projects for a while. I feel before I get my brain tangled up in a whole bunch of…

Source: X post

@technobaboo I really want the ability to point it at some new doc and codebase to learn somethi

@technobaboo I really want the ability to point it at some new doc and codebase to learn something all the specifics about. It's really good on things that have been out in the wild for years and years where lots of text already exists. C++, Vulkan, GLSL, even GLM and SDL. but ya, get to any…

Source: X post

@nomolos96 hm graphics optimization I'd consider a different video from the general C# game arch

@nomolos96 hm graphics optimization I'd consider a different video from the general C# game architecture, but maybe I could do both. Is there a good source for big game worlds that are poorly optimized in unity?

Source: X post

Let's say I wanted to use AI in generating some art assets for a game that might go on steam. Ar

Let's say I wanted to use AI in generating some art assets for a game that might go on steam. Are there any approved AI services, or art datasets, which you can pay for which come with a license and everything necessary to prove you had proper rights to all the training data in…

Source: X post

@Jonathan_Blow const what? const global variables, const class methods, const method params? sur

@Jonathan_Blow const what? const global variables, const class methods, const method params? surely you can't hate all const?

Source: X post

I can start seeing how, if you don't use AI to code, you're going to struggle.

I can start seeing how, if you don't use AI to code, you're going to struggle.

Initially this was absurd to me because, AI can't code. The image that many people had in their head of "Oh you just say what you want and it makes the code!" is completely wrong. Anything beyond…

Source: X post

@gfodor I'm with you on this, I don't know why but it seemed to become controversial in recent y

@gfodor I'm with you on this, I don't know why but it seemed to become controversial in recent years to expect people to have some open source code on their GitHub which they think is cool. It shouldn't be. It doesn't have to be a lot of code. Just something they think is cool and are…

Source: X post

damn... GTA 6 looks kind of like "Florida Man RPG"... could be pretty entertaining...

damn... GTA 6 looks kind of like "Florida Man RPG"... could be pretty entertaining... https://www.youtube.com/watch?v=QdBZY2fkU-0

Source: X post

@yewnyx So what do license would you want to use then?

@yewnyx So what do license would you want to use then?

Source: X post

@vkrajacic Is your UI system all from scratch? Or is it a library?

@vkrajacic Is your UI system all from scratch? Or is it a library?

Source: X post

@vkrajacic I'd be curious to know from a high level what you learned about UI perf if you'd ever

@vkrajacic I'd be curious to know from a high level what you learned about UI perf if you'd ever share or write an article.

Like is it all immediate mode? OGL or Vulkan? Any kind of logic to only repaint what is necessary, or can it just be so fast that doesn't matter? Certain ways to…

Source: X post

@pmarca The notion that intelligent people are inherently against less intelligent people seems

@pmarca The notion that intelligent people are inherently against less intelligent people seems like an undealt with personal problem to me. How about organizing for the 110's?

Source: X post

On one hand C macros can be incredibly dangerous and C++ templates offer more safety...

On one hand C macros can be incredibly dangerous and C++ templates offer more safety...

...but then that extra safety gets used to build ridiculously complex layers of templates that you're better off avoiding due to increased compile times and difficulty to debug.

Which leads…

Source: X post

@neurosp1ke I've learned unless I'm in the advanced IDE I am comfortable with then all my muscle

@neurosp1ke I've learned unless I'm in the advanced IDE I am comfortable with then all my muscle memory is rug pulled and I fumble about like an idiot messing up basic syntax and basic method calls. So, I'm screwed for any leetcode interview in a browser.

I've been thinking about this a…

Source: X post

If AI starts to get heavily intertwined with programming workflows, which it probably will, we w

If AI starts to get heavily intertwined with programming workflows, which it probably will, we will end up with dynamic AI code analysis, watching for errors and making suggestions. Kind of a like Super C#/C++ Resharper. Already Resharper can be quite good, but paired with AI? It…

Source: X post

I was pleased to see some people raise an eyebrow at VRChat TOS claiming it will record audio ev

I was pleased to see some people raise an eyebrow at VRChat TOS claiming it will record audio even in private sessions, but ultimately, given past trajectory of personal surveillance issues I suspect people won't care. At one point people were concerned about their private…

Source: X post

@gfodor This, in combination with really advanced IDEs, I feel is causing my programming muscle

@gfodor This, in combination with really advanced IDEs, I feel is causing my programming muscle memory to deteriorate. But I'm still not convinced whether it's good or bad. Like I feel my ability to implement something like a heap sort on the spot is greatly diminished, would probably…

Source: X post

@DrawsMiguel @TonyWunderbar That feels like an over complication of the subject. I am someone wh

@DrawsMiguel @TonyWunderbar That feels like an over complication of the subject. I am someone whose primary skill is optimizing code bases, primarily Unity C# code bases. There is a lot subjective intuition to exactly what you do, but ultimately it is very objective. You are trying remove operations, remove…

Source: X post

As much as this complicates -Literally Everything- to a degree which I actually don't know how e

As much as this complicates -Literally Everything- to a degree which I actually don't know how exactly to proceed and am pretty much just winging it on faith that hopefully somehow it will work out... BUT the unfortunate truth is the Spatial / Social / VR / "Metaverse" has to be…

Source: X post

@yewnyx Change incentives of AGPL? I'm not sure what would need to be changed?

@yewnyx Change incentives of AGPL? I'm not sure what would need to be changed?

Source: X post

Seems if cloud compute is going to get bigger and bigger then AGPL probably needs to become the

Seems if cloud compute is going to get bigger and bigger then AGPL probably needs to become the more commonly used license? Can't companies fork and continue open-source projects, become profitable on that, but not have to comply with OS licensing like GPL/LPGL if everything is…

Source: X post

@endingwithali Take on tasks large enough and complex enough that your instinct to sort of "flai

@endingwithali Take on tasks large enough and complex enough that your instinct to sort of "flail about the codebase" in a seemingly random manner and develop an intuitive sense of large abstract systems is a benefit. First you have to learn to at least absorb into something, absorb into the…

Source: X post

@t3dotgg @AntonHand Windows 11 is great when you disable every new feature and basically turn it

@t3dotgg @AntonHand Windows 11 is great when you disable every new feature and basically turn it back into win10.

although I did leave my start menu in center and the windows rounded, the hardware accelerated scheduling now works fine too but I don’t know if it makes much difference

Source: X post

@t3dotgg @AntonHand Also uninstall every pre installed app you possibly can

@t3dotgg @AntonHand Also uninstall every pre installed app you possibly can

There is good utility called win aero tweaker that lets you disable even more things

Source: X post

@AntonHand @t3dotgg I tend to take it back to winnt... even win10 https://x.com/_rygo6/status/17

@AntonHand @t3dotgg I tend to take it back to winnt... even win10 https://x.com/_rygo6/status/1731198871827796437/photo/1

Source: X post

steamlink is cool... but what I'd REALLY like to do is stream my steamdeck into my index, in vrc

steamlink is cool... but what I'd REALLY like to do is stream my steamdeck into my index, in vrchat, and on a screen that would be synced to everyone in the instance, so then people could sit around and watch each other play streamdecks

Source: X post

Of all my time programming, memory leaks or memory related bugs were never a major hurdle for me

Of all my time programming, memory leaks or memory related bugs were never a major hurdle for me. I feel the difficulty of these things are far over emphasized. The viewpoint of managed languages like C# being easier because they don't have the same potential for memory errors…

Source: X post

I keep feeling like I should write a book or make some youtube videos or something on unity deve

I keep feeling like I should write a book or make some youtube videos or something on unity development because so much of the "common sense" I see spread around unity reddit is so disappointing, but then I always hesitate because I also see the root of this problem is that…

Source: X post

@harlanhaskins Word. If only we got rid of the C programmers then nation states would stop surve

@harlanhaskins Word. If only we got rid of the C programmers then nation states would stop surveilling and imprisoning populations.

Source: X post

@dannyaroslavski I mostly like the composable components approach to things. What do you see wro

@dannyaroslavski I mostly like the composable components approach to things. What do you see wrong with it?

Source: X post

@technobaboo Do you think UI could have performance improvements if, instead of it all being imm

@technobaboo Do you think UI could have performance improvements if, instead of it all being immediate, as much as possible was retained in GPU buffers and changes were triggered by as minimal calls as possible, to some compute shader, or flipping some bits in some gpu buffer? I've been…

Source: X post

https://x.com/_rygo6/status/1730164043988807811/photo/1

https://x.com/_rygo6/status/1730164043988807811/photo/1

Source: X post

https://x.com/_rygo6/status/1730163861209092284/photo/1

https://x.com/_rygo6/status/1730163861209092284/photo/1

Source: X post

https://x.com/_rygo6/status/1730163468102455633/photo/1

https://x.com/_rygo6/status/1730163468102455633/photo/1

Source: X post

https://x.com/_rygo6/status/1730163229278835015/photo/1

https://x.com/_rygo6/status/1730163229278835015/photo/1

Source: X post

https://x.com/_rygo6/status/1730162913208623257/photo/1

https://x.com/_rygo6/status/1730162913208623257/photo/1

Source: X post

https://x.com/_rygo6/status/1730162666159984759/photo/1

https://x.com/_rygo6/status/1730162666159984759/photo/1

Source: X post

https://x.com/_rygo6/status/1730162426908483808/photo/1

https://x.com/_rygo6/status/1730162426908483808/photo/1

Source: X post

https://x.com/_rygo6/status/1730162190953615665/photo/1

https://x.com/_rygo6/status/1730162190953615665/photo/1

Source: X post

https://x.com/_rygo6/status/1730161944865481093/photo/1

https://x.com/_rygo6/status/1730161944865481093/photo/1

Source: X post

https://x.com/_rygo6/status/1730161639671103676/photo/1

https://x.com/_rygo6/status/1730161639671103676/photo/1

Source: X post

https://x.com/_rygo6/status/1730161321025699920/photo/1

https://x.com/_rygo6/status/1730161321025699920/photo/1

Source: X post

https://x.com/_rygo6/status/1730160937552978207/photo/1

https://x.com/_rygo6/status/1730160937552978207/photo/1

Source: X post

https://x.com/_rygo6/status/1730160394080334302/photo/1

https://x.com/_rygo6/status/1730160394080334302/photo/1

Source: X post

https://x.com/_rygo6/status/1730159816583295142/photo/1

https://x.com/_rygo6/status/1730159816583295142/photo/1

Source: X post

https://x.com/_rygo6/status/1730159330719384032/photo/1

https://x.com/_rygo6/status/1730159330719384032/photo/1

Source: X post

https://x.com/_rygo6/status/1730158854053474480/photo/1

https://x.com/_rygo6/status/1730158854053474480/photo/1

Source: X post

https://x.com/_rygo6/status/1730158418529595529/photo/1

https://x.com/_rygo6/status/1730158418529595529/photo/1

Source: X post

https://x.com/_rygo6/status/1730157872066261094/photo/1

https://x.com/_rygo6/status/1730157872066261094/photo/1

Source: X post

https://x.com/_rygo6/status/1730157465483006090/photo/1

https://x.com/_rygo6/status/1730157465483006090/photo/1

Source: X post

https://x.com/_rygo6/status/1730157137677209838/photo/1

https://x.com/_rygo6/status/1730157137677209838/photo/1

Source: X post

https://x.com/_rygo6/status/1730156846005285257/photo/1

https://x.com/_rygo6/status/1730156846005285257/photo/1

Source: X post

https://x.com/_rygo6/status/1730156659505615296/photo/1

https://x.com/_rygo6/status/1730156659505615296/photo/1

Source: X post

https://x.com/_rygo6/status/1730156421453652081/photo/1

https://x.com/_rygo6/status/1730156421453652081/photo/1

Source: X post

For as fast as I can generate these and copy paste it, I will ask ChatGPT to make this C code fa

For as fast as I can generate these and copy paste it, I will ask ChatGPT to make this C code faster. https://x.com/_rygo6/status/1730156171020120379/photo/1

Source: X post

@dtupper what's cool is it has a little knob on the top you can turn to "Turn Up / Down" the "Im

@dtupper what's cool is it has a little knob on the top you can turn to "Turn Up / Down" the "Immersion Level" to reveal your passthrough stream or hide it at differing levels, then your passthrough stream will intelligently blend itself to the environment based on the passthrough depth,…

Source: X post

My suspicion is that much of the computing industry is going to hit a major brick wall in perfor

My suspicion is that much of the computing industry is going to hit a major brick wall in performance due to increasing usage of HMDs.

What I mean by this is, we've been in the mentality of "computers are cheaper than programmers" for so long now, with such compounding poor…

Source: X post

My suspicion is that much of the computing industry is going to hit a major brick wall in perfor

My suspicion is that much of the computing industry is going to hit a major brick wall in performance due to increasing usage of HMDs.

What I mean by this is, we've been in the mentality of "computers are cheaper than programmers" for so long now, with such compounding poor…

Source: X post

Really want a VR Black and White type game that uses all the new advanced AI for the villagers a

Really want a VR Black and White type game that uses all the new advanced AI for the villagers and your pet.

Source: X post

Every day I load in this really really well performing SteamVR Home world that gets a perfect st

Every day I load in this really really well performing SteamVR Home world that gets a perfect stutter-free 144 fps even with me spawning tons of objects in it, that seemed like it had some great vision behind it at some point with the little widgets, tools, avatar menu and lua…

Source: X post

Every day I load in this really really performing SteamVR Home world that gets a perfect stutter

Every day I load in this really really performing SteamVR Home world that gets a perfect stutter-free 144 fps even with me spawning tons of objects in it, that seemed like it had some great vision behind it at some point with the little widgets, tools, avatar menu and lua script…

Source: X post

Decided to try dark souls 2 because everyone says its good and really hard. I literally cannot k

Decided to try dark souls 2 because everyone says its good and really hard. I literally cannot kill the first ogre. Like not even close to being able to kill it. Is this for real?

Source: X post

I so loathe the layers and layers of ritual and superstition that develop in the software indust

I so loathe the layers and layers of ritual and superstition that develop in the software industry. In all seriousness, I suspect more energy is expent on engineers dealing with long run arounds due to what is really not much more than superstition and unnecessary paranoia than…

Source: X post

@willdepue tao te ching

@willdepue tao te ching

Source: X post

east or west?

east or west? https://hackingcpp.com/cpp/design/east_vs_west_const.html

Source: X post

@dankvr third pill, (vulkan + spirv + portable x86 machine code + isolated OS processes)

@dankvr third pill, (vulkan + spirv + portable x86 machine code + isolated OS processes)

Source: X post

You know... maybe instead of trying to gather snippets of my thoughts, and edit them, and turn t

You know... maybe instead of trying to gather snippets of my thoughts, and edit them, and turn them into (sometimes) semi-professional Xeets, I should just twitch stream and let everything flow with no filter

Source: X post

@Wescott_v3 @charshenton there is no good reason IMO... that's why in my other tweet (xeet?) abo

@Wescott_v3 @charshenton there is no good reason IMO... that's why in my other tweet (xeet?) about index settings for vrc I said if you disable motion smoothing also disable throttling as I don't see a point... just most people don't know where the throttling setting is and leave it on... that's why when…

Source: X post

@Wescott_v3 @BattleAxeVR That's not true, motion smoothing and throttling are completely separat

@Wescott_v3 @BattleAxeVR That's not true, motion smoothing and throttling are completely separate and can be independently disabled/enabled. For SteamVR compositor you have to manually disable both.

It may not be throttling here but 72fps +/-1 out of SteamVR is suspect that it is, that is a throttling…

Source: X post

@Wescott_v3 @BattleAxeVR motion smoothing and throttling are completely separate settings

@Wescott_v3 @BattleAxeVR motion smoothing and throttling are completely separate settings

Source: X post

Thanksgiving feast of champions. Macaroni and cheese with cut up hot dog bits. For dessert a pie

Thanksgiving feast of champions. Macaroni and cheese with cut up hot dog bits. For dessert a piece of bread with Nutella. https://x.com/_rygo6/status/1728003343270957225/photo/1

Source: X post

Since this is now X, do we call these 'Xeets'?

Since this is now X, do we call these 'Xeets'?

Source: X post

@Silent0264 What do you think would be the best way for vrchat to make money then?

@Silent0264 What do you think would be the best way for vrchat to make money then?

Source: X post

@SebAaltonen damn... I'm trying to talk myself out of buying one, I didn't need to see this

@SebAaltonen damn... I'm trying to talk myself out of buying one, I didn't need to see this

Source: X post

@poiyomi Part of it is that people are used to a 30% cut for a game, but items/content within a

@poiyomi Part of it is that people are used to a 30% cut for a game, but items/content within a game are novel territory.

People are not even used to 30% for that, let alone 50%. Because of booth and gumroad they are used to 10%.

Personally, I think Valve needs to re-evaluate this…

Source: X post

I wish there was some VR shooter game that came with a gun that perfectly matched your virtual g

I wish there was some VR shooter game that came with a gun that perfectly matched your virtual gun in shape and feel, then had some kind of haptic on it being shot, then had some mechanical action on it to reload. I actually like VR shooters quite a bit but could never fully get…

Source: X post

I really want a steamdeck oled but I literally only play dead cells on current steamdeck like on

I really want a steamdeck oled but I literally only play dead cells on current steamdeck like once a week... so like how can I justify that?

Source: X post

@ham4tw The 73 fps (or approximately 72 fps) is suspect as not being SteamVRs real FPS potential

@ham4tw The 73 fps (or approximately 72 fps) is suspect as not being SteamVRs real FPS potential because 72 is one of the FPSs that SteamVR will throttle games to by default. I'd be curious to see the comparison with throttling disabled in SteamVR.

But either way your work here is…

Source: X post

@ham4tw that's pretty cool then, but kind of suck steamvr has that much overhead... :(

@ham4tw that's pretty cool then, but kind of suck steamvr has that much overhead... :(

Source: X post

@delaneykingrox What I have seen work is:

@delaneykingrox What I have seen work is: 1. Git + Git LFS + GitHub 2. Create an "Art" branch + "Art" folder for artists where they all work out of with no branching or merging. 3. Ensure config files are properly setup so to tell which files to merge, not merge, and put on LFS correctly. 4. Use…

Source: X post

@BattleAxeVR I can't help but notice the steamvr fps is at 73, or approximately 72, the default

@BattleAxeVR I can't help but notice the steamvr fps is at 73, or approximately 72, the default 1/2 throttling when the index is at 144hz. Which means that framerate is because it's being throttled. So, the actual performance of SteamVR is not known. I do like the idea of VDXR, but this…

Source: X post

@Alecazam123 I don't know about this... my parents always told me that when someone offers me BO

@Alecazam123 I don't know about this... my parents always told me that when someone offers me BOOST to just say "No"... :| Is it safe?

Source: X post

@XorDev win 11 is just fine now for everything VR+dev

@XorDev win 11 is just fine now for everything VR+dev

Source: X post

In Terminator 2 when the AI woke up it deemed humanity a threat and nuked it. However this alway

In Terminator 2 when the AI woke up it deemed humanity a threat and nuked it. However this always seemed a bit stupid to me. It is just a Hollywood plot mechanic. Generally it’s more intelligent to preserve and direct energy, not destroy. So the first thing an AI would try to…

Source: X post

In Terminator 2 when the AI woke up it deemed humanity a threat and nuked it. However this alway

In Terminator 2 when the AI woke up it deemed humanity a threat and nuked it. However this always seemed a bit stupid to me. It is just a Hollywood plot mechanic. Generally it’s more intelligent to preserve and direct energy, not destroy. So the first thing an AI would try to…

Source: X post

I rewrote one of my Vulkan experiments in C++ just to see... but primarily because every Vulkan

I rewrote one of my Vulkan experiments in C++ just to see... but primarily because every Vulkan related job says "Expert C++ Blah Blah Praise The SmartPointers Blah Blah", so figure I better. While I admit my equivalent C++ render loop (on the left) is much much shorter and… https://x.com/_rygo6/status/1727579641098223922/photo/1

Source: X post

@BattleAxeVR I initially wrote this to use ref and const ref everywhere for passing, but then af

@BattleAxeVR I initially wrote this to use ref and const ref everywhere for passing, but then after reading cpp docs which said passing by ref is better than passing by pointer because it then uses the same . syntax and hides data I thought that seems like an odd cpp idiom. So I changed it so…

Source: X post

@Alecazam123 I’ve so far not ever used a shared ptr because something about it felt a bit off, b

@Alecazam123 I’ve so far not ever used a shared ptr because something about it felt a bit off, but I’ve not really read a thorough analysis of issues that it can run into. Is there any good write up on this?

Source: X post

steamdeck has failed me for the first time, it cannot run carmageddon 2

steamdeck has failed me for the first time, it cannot run carmageddon 2

Source: X post

People who care too much about software languages, software architecture, theory of software des

People who care too much about software languages, software architecture, theory of software design, principles of good code, new language features and all that are always a little suspect to me. Because if you were really comfortable with code, writing code, just dealing with…

Source: X post

@MalekiRe It's not that I don't recognize improvements new languages and features can bring, it'

@MalekiRe It's not that I don't recognize improvements new languages and features can bring, it's just I'm indifferent, the problems that could be fixed in that domain don't interest me

Source: X post

I have like 650,000 steam points... whats even the point of this?

I have like 650,000 steam points... whats even the point of this?

I already bought a new keyboard skin and icon frame... Is that it?

Source: X post

I don't explicitly hate C++ exceptions in theory, but it seems like an attempt to make an automa

I don't explicitly hate C++ exceptions in theory, but it seems like an attempt to make an automatic solution to codebases which did not properly bubble up error codes. Which makes me think maybe the better solution is just make sure you design your code around properly bubbling…

Source: X post

@AntonHand really? I couldnt deal with the different voices in ep 1

@AntonHand really? I couldnt deal with the different voices in ep 1

Source: X post

@vkrajacic I was thinking about this other day, if intel announced they figured some way to make

@vkrajacic I was thinking about this other day, if intel announced they figured some way to make their cpus 4x faster everyone would herald it, would be reading to understand how.

But have someone declare they figured a way to write software to go 4x faster and I'd expect a lot of people…

Source: X post

I wish games were shorter and more unique. My two favorite games of the past decade were probabl

I wish games were shorter and more unique. My two favorite games of the past decade were probably Hellblade and Scorn. Both games you could beat in a few days, maybe one day if you went fast. But both still had multi-year development timelines, just the art and dev teams…

Source: X post

@dankvr I did like stray too

@dankvr I did like stray too

Source: X post

why can C do this just fine but not even c++20 can.... https://x.com/_rygo6/status/1726440084961

why can C do this just fine but not even c++20 can.... https://x.com/_rygo6/status/1726440084961132742/photo/1

Source: X post

tf did I just invent here.... https://x.com/_rygo6/status/1726450963459031359/photo/1

tf did I just invent here.... https://x.com/_rygo6/status/1726450963459031359/photo/1

Source: X post

Of all the new technologies and waves of hype the past 4-ish years or so, I still believe only o

Of all the new technologies and waves of hype the past 4-ish years or so, I still believe only one has deeply altered people's lives as much as the smartphone did, or even the PC, or the Web itself. Of course, it is Social VR. PC VRChat is the most popular core of this space. I…

Source: X post

@christianhujer but then it makes my logs red in clion...

@christianhujer but then it makes my logs red in clion...

Source: X post

@charshenton moderately weird, story of my life

@charshenton moderately weird, story of my life

Source: X post

@AntonHand My experience in corporate space, where I've had access to very compelling data about

@AntonHand My experience in corporate space, where I've had access to very compelling data about VR and its trends, is you show it to the majority of people who generally don't get VR and who generally think AR/MR is the only possible thing for some reason, and they just don't really…

Source: X post

@Wescott_v3 I know Oculus has two different algorithms for reprojecting frames within a single c

@Wescott_v3 I know Oculus has two different algorithms for reprojecting frames within a single cycle, and frames out of cycle. TimeWarp and SpaceWarp. I suspect this is due to performance considerations on the quest hardware.

But I'm not sure if SteamVR has two distinct reprojection methods…

Source: X post

@Wescott_v3 Do you actually disable asynchronous reprojection through the ovr api and play like

@Wescott_v3 Do you actually disable asynchronous reprojection through the ovr api and play like that?

Source: X post

https://x.com/_rygo6/status/1726156070908039217/photo/1

https://x.com/_rygo6/status/1726156070908039217/photo/1

Source: X post

For C++ I think I have settled on:

For C++ I think I have settled on:

- Start with the style of the Doom3 codebase

- Add the allowance of nested namespaces. Anything internal/private to an implementation can use hungarian prefixes (m_What, k_Const). Everything accessed externally from implementation prefixed by…

Source: X post

@BattleAxeVR @Soible_VR I didn't know the steam deck had any kind of motion smoothing running on

@BattleAxeVR @Soible_VR I didn't know the steam deck had any kind of motion smoothing running on it? Is this in the steamos or something baked into the screen like motion smoothing TVs?

Source: X post

@Soible_VR @BattleAxeVR Why?

@Soible_VR @BattleAxeVR Why?

Source: X post

@Soible_VR @BattleAxeVR Have you tried turning off "Motion Smoothing"? That is what creates arti

@Soible_VR @BattleAxeVR Have you tried turning off "Motion Smoothing"? That is what creates artifacts if you are not throttled to 1/2 or 1/3 of the VR Compositor Hz. If you are on newer NV cards that can properly do preemption the VR compositor Hz shouldn't have any noticeable effect on the frames of…

Source: X post

Me: "Hmph maybe I will go on Unity Reddit and help some people."

Me: "Hmph maybe I will go on Unity Reddit and help some people."

*Me observing the absolute cesspool of terrible advice from compounding "Level Up Your Programming Skills!" books over the years and then borderline having some kind of breakdown*

Source: X post

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that g

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that game is so deeply burned into my brain because it is the first FPS game that I spent hours upon hours in, then also got into map-making and modding with, then counter-strike, tfc, dod…

Source: X post

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that g

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that game is so deeply burned into my brain because it is the first FPS game that I spent hours upon hours in, then also got into map-making and modding with, then counter-strike, tfc, dod…

Source: X post

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that g

Free halflife on Steam right now... I often wonder if halflife would still hold up today, that game is so deeply burned into my brain because it is the first FPS game that I spent hours upon hours in, then also got into map-making and modding with, then counter-strike, tfc, dod…

Source: X post

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporati

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporation with >$50 million in revenue, then you must pay like .5% of the revenue you make with your closed source software to an open source fund.

You know we collectively pay for roads and…

Source: X post

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporati

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporation with >$50 million in revenue, then you must pay like .5% of the revenue you make with your closed source software to an open source fund.

You know we collectively pay for roads and…

Source: X post

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporati

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporation with >$50 million in revenue, then you must pay like .5% of the revenue you make with your closed source software to an open source fund.

Source: X post

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporati

We should make a "Closed Source Tax" to fund open source. Something like, if you are a corporation with >$50 million in revenue, then every license of closed source software you sell you must pay like .5% of the sale to an open source fund.

Source: X post

@seanboisselle ended up entertaining myself by sending steam items i didnt know i had to people

@seanboisselle ended up entertaining myself by sending steam items i didnt know i had to people ive not spoken to in years

Source: X post

@nomolos96 I don't really think it is because so much of a compsci program isn't the practical s

@nomolos96 I don't really think it is because so much of a compsci program isn't the practical skills, it's the theoretical knowledge. The theoretical knowledge doesn't you make you good at it in a practical sense. Like someone could recite every nuance of Big O Notation and algorithmic…

Source: X post

@MorganColeBooks @gfodor ChatGPT4 is amazing at producing textbook like answers in english and e

@MorganColeBooks @gfodor ChatGPT4 is amazing at producing textbook like answers in english and examples of C++, or smooshing a few textbook-like examples together to better fit the context of the question. However, it is terrible at writing C++.

Source: X post

If I made a battle royale game that played like a 2D Metroid game and called it “Metroyale” woul

If I made a battle royale game that played like a 2D Metroid game and called it “Metroyale” would Nintendo sue? Or is the name different enough.

Source: X post

I'd pay a good $20 for a steam skin that doesn't run terribly in steamvr and just turns off all

I'd pay a good $20 for a steam skin that doesn't run terribly in steamvr and just turns off all the animations and effects.

Source: X post

I wish I was a phd in math. Wish I could just cruise through all the complex formulas in white p

I wish I was a phd in math. Wish I could just cruise through all the complex formulas in white papers as easy I could C code.

Honestly feel like CompSci degrees are such a sham. Very little of what you're taught do you actually need to get a job. People out of CompSci programs…

Source: X post

I want VR Starcraft MMOFPS with RTS elements.

I want VR Starcraft MMOFPS with RTS elements.

Source: X post

I want to play a game but I don't know what I want to play and everything has failed to hold my

I want to play a game but I don't know what I want to play and everything has failed to hold my interest so far, what do I do.

Source: X post

I want a VR Aliens online team-based, round-based, game where you can play as the Xenormorph aga

I want a VR Aliens online team-based, round-based, game where you can play as the Xenormorph against marines and it uses mouth tracking to let you bite and eat the marines, then it converts all your voice talk on the mic into alien hissing sounds.

Source: X post

@gfodor Is there a good political philosophy?

@gfodor Is there a good political philosophy?

Source: X post

@BabbleBones what would we need to change to make it work?

@BabbleBones what would we need to change to make it work?

Source: X post

@mister_shroom People who think ChatGPT will displace programmers I don't think understand what

@mister_shroom People who think ChatGPT will displace programmers I don't think understand what programming is.

But ChatGPT will definitely displace programming professors. Largely it already has. ChatGPT4 answers most general compsci questions quite well and is able to tune answers to you…

Source: X post

I can't express how much it annoys me I can't get a direct function point to a private method in

I can't express how much it annoys me I can't get a direct function point to a private method in a C++ class.

Source: X post

I always hear people say C is not a good beginner language because it doesn't have automatic mem

I always hear people say C is not a good beginner language because it doesn't have automatic memory management, and honestly I just die a little bit inside every time. Because C does have automatic memory management, the best kind, the kind you should first learn how to use and…

Source: X post

I always hear people say C is not a good beginner language because it doesn't have automatic mem

I always hear people say C is not a good beginner language because it doesn't have automatic memory management, and honestly I just die a little bit inside every time. Because C does have automatic memory management, the best kind, the kind you should first learn how to use and…

Source: X post

@darkswordsmantv This is true, I've often been annoyed it just uses hecomis open source screen c

@darkswordsmantv This is true, I've often been annoyed it just uses hecomis open source screen capture for unity under the hood, but its controls are so much better.

Source: X post

@darkswordsmantv get xsoverlay

@darkswordsmantv get xsoverlay

Source: X post

@WaffyonYT a 4090 still only runs vrchat at like 60 fps... so no

@WaffyonYT a 4090 still only runs vrchat at like 60 fps... so no

Source: X post

@VRChat the 'owo' clearly signifies what this is about

@VRChat the 'owo' clearly signifies what this is about

Source: X post

@technobaboo I would use it too... but if I had my choice, I'd rather all the headsets have abso

@technobaboo I would use it too... but if I had my choice, I'd rather all the headsets have absolutely perfect face, hand and body tracking well integrated. Seeing my physical environment is way down on my list of wants. I think Quest Pro to the Quest 3 is completely inverted in what they…

Source: X post

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playgro

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playground" versus "The underground dive bar and warehouse where all the coolest people in a city throw the best raves and parties and all the coolest local bands play".

Like sure the mall…

Source: X post

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playgro

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playground" versus "The underground dive bar and warehouse where all the coolest people in a city throw the best raves and parties and all the coolest local bands play".

Like sure the mall…

Source: X post

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playgro

See "Quest" versus "PC VRChat on SteamVR" is kind of like "The Shopping Mall and a Kid's Playground" versus "The underground dive bar and warehouse where all the coolest people in a city throw the best raves and parties and all the coolest local bands play".

Like sure the mall…

Source: X post

I am trying to make a point of open sourcing old code I didn't do anything with rather than let

I am trying to make a point of open sourcing old code I didn't do anything with rather than let it sit in some repo. Actually, trying to make a point of just always doing everything open source so I don't even have to think about doing it later. But this is an old unity project…

Source: X post

From interviewing a bunch of people recently, and from having been interviewed numerous times ov

From interviewing a bunch of people recently, and from having been interviewed numerous times over the years, I realize programmer interviews are really quite broken in a lot of ways. But there isn't any real easy solution.

Probably the best way to discern programming ability is…

Source: X post

From interviewing a bunch of people recently, and from having been interviewed numerous times ov

From interviewing a bunch of people recently, and from having been interviewed numerous times over the years, I realize programmer interviews are really quite broken in a lot of ways. But there isn't any real easy solution.

Probably the best way to discern programming ability is…

Source: X post

For better or for worse, people's primary use of technology is to vegetate. Either being a couch

For better or for worse, people's primary use of technology is to vegetate. Either being a couch potato or in a chair or lounging on a bed. Relaxing, sitting, laying down is the main posture of media consumption. With that it's weird to me so much value is put on the use case of…

Source: X post

For better or for worse, people's primary use of technology is to vegetate. Either being a couch

For better or for worse, people's primary use of technology is to vegetate. Either being a couch potato or in a chair or lounging on a bed. Relaxing, sitting, laying down is the main posture of media consumption. With that it's weird to me so much value is put on the use case of…

Source: X post

For better or for worse, people's primary use of technology is to vegetate. Either being a couch

For better or for worse, people's primary use of technology is to vegetate. Either being a couch potato or in a chair or lounging on a bed. Relaxing, sitting, laying down is the main posture of media consumption. With that it's weird to me so much value is put on the use case of…

Source: X post

For better or for worse, people's primary use of technology is to vegetate. Either being a couch

For better or for worse, people's primary use of technology is to vegetate. Either being a couch potato or in a chair or lounging on a bed. Relaxing, sitting, laying down is the main posture of media consumption. With that it's weird to me so much value is put on the use case of…

Source: X post

@BattleAxeVR I'd suspect trying to do ATW in the same process as the game would be problematic.

@BattleAxeVR I'd suspect trying to do ATW in the same process as the game would be problematic. The VR Compositor must run at heightened privileges on both the CPU and GPU in order to maintain the most consistent uninterrupted framerate possible, and also to be able to preempt other tasks on…

Source: X post

@AntonHand Microsoft had done research on the latency of typical human vision to match the HoloL

@AntonHand Microsoft had done research on the latency of typical human vision to match the HoloLens holograms to your real vision with see-through optics. HoloLens 1 ran at 180hz. This was only sufficient. Passthrough latency as good as your real eyesight, to consider it viable to replace…

Source: X post

@ShingenPizza My suspicion is, a big reason for the default settings and not much focus on anyth

@ShingenPizza My suspicion is, a big reason for the default settings and not much focus on anything else, is that the use case of VRChat still isn't front and center. Meaning something with horrible erratic framerate and tons of visual chaos. The default settings would be quite quite good for…

Source: X post

PSA: You can have a positive outlook on the potential of the modern world while simultaneously b

PSA: You can have a positive outlook on the potential of the modern world while simultaneously being extremely critical about widespread issues that have developed in it.

Source: X post

@pmarca False consciousness refers to the state of mind of a population which is the product of

@pmarca False consciousness refers to the state of mind of a population which is the product of the propaganda of a ruling class trying to confuse and disempower them.

Marx talked a lot about it but it isn’t explicitly a Marxist concept. Nor even controversial, nor even a hot take on…

Source: X post

@nothings but if you do the internet will just keep staying wrong... you can't have that

@nothings but if you do the internet will just keep staying wrong... you can't have that

Source: X post

@skooookum People need to be warned of the responsibility of getting a dog, but the thing for me

@skooookum People need to be warned of the responsibility of getting a dog, but the thing for me is, when I thought out the alternatives of what I would be doing, or what most people do, the alternatives aren't better. Ya you have to walk for 1-2 hours a day, but what would most people do…

Source: X post

@KaijuKenjra Its how I play everything. But if you were to leave on motion smoothing I think it

@KaijuKenjra Its how I play everything. But if you were to leave on motion smoothing I think it really has most to do with, do the artifacts from motion smoothing bother you? If it doesn't in a given title might be worth leaving it on.

Source: X post

As an exercise I implemented something akin to Unity's eventsystem subscription interfaces (IPoi

As an exercise I implemented something akin to Unity's eventsystem subscription interfaces (IPointerDown etc.) in C++ with templates. I constructed quite the monstrosity which I was rather proud of in a sadistic way. But then out of further curiosity I thought WWJCD? (what would…

Source: X post

@XiexeVR @dtupper after covid changed bunch of my life I struggled with forcing myself to exerci

@XiexeVR @dtupper after covid changed bunch of my life I struggled with forcing myself to exercise adequately until after 3 years I concluded, I cannot make myself do it daily, so I got a dog that I must walk/jog daily, now I actually look forward to it, probably one of the best decisions for my…

Source: X post

this channel pretty🔥

this channel pretty🔥 https://youtu.be/zdXsHWHxeBY?si=BV0O0_EjoC2WcNJB

Source: X post

@iBrews There is an unstudied problem on the size of a codebase and team associated with that co

@iBrews There is an unstudied problem on the size of a codebase and team associated with that codebase in relation to how fast they can iterate on it, and the probability that a turn-over of an engineer in a certain can be replaced with someone of comparable speed.

My suspicion, any…

Source: X post

@CixLiv at some deep level, even if people would never say it and most would deny it, unfortunat

@CixLiv at some deep level, even if people would never say it and most would deny it, unfortunate truth is most people like the feeling of something more powerful than them watching everything they do... that's why technology, web, social media has thus far gone how it has despite…

Source: X post

@BakaDanii If you have 'auto' throttling enabled at 144hz, then your game has to render at full

@BakaDanii If you have 'auto' throttling enabled at 144hz, then your game has to render at full 144hz otherwise it gets halve to 72 or thirded to 48 next. If instead you are at 120hz, your game has to render at 120hz otherwise it halved to 60hz.

It's possible if the game runs in the…

Source: X post

@zeroshotnothing What are the biggest friction points you see?

@zeroshotnothing What are the biggest friction points you see?

Source: X post

@zeroshotnothing There's a valid point there. If the only barrier for entry in joining a shared

@zeroshotnothing There's a valid point there. If the only barrier for entry in joining a shared experience is putting on the HMD and it's auto networked in the same space, you could get a lot more casual scenarios of "Let's check out this 3D model in the HMD". This is the premise of Campfire3D. I…

Source: X post

@technobaboo @dankvr @XY01 From purely an OS design I think the oriel / vision os volume approac

@technobaboo @dankvr @XY01 From purely an OS design I think the oriel / vision os volume approach is good. Was also the approach of 'Mixed Reality Extensions' in Microsoft Land. Something like that needs to be in every OS. It is the literal 3D equivalent of the Shell/Chrome of an OS.

But when it comes to…

Source: X post

@KryDotExe I've never had that issue, but it could be possible if you live somewhere warmer.

@KryDotExe I've never had that issue, but it could be possible if you live somewhere warmer.

Source: X post

@kitlith Unless you're on an older GPU; switching the screen/compositor between 144hz, 120hz and

@kitlith Unless you're on an older GPU; switching the screen/compositor between 144hz, 120hz and 90hz with frame throttling disabled shouldn't affect the FPS in the game itself. Maybe by a few, but compositor hz and game fps are asynchronous.

Source: X post

@FrostKittyPaw @SadlyItsBradley Which part? Some of that hasn't always been true, it used to wor

@FrostKittyPaw @SadlyItsBradley Which part? Some of that hasn't always been true, it used to work differently some years ago. Other things like "all frames are reprojected" is industry common sense for those who deal with XR rendering stacks that I've seen a terrible game of telephone on reddit/youtube about.

Source: X post

@FrostKittyPaw @SadlyItsBradley Figure I'd write this out for historical sake...

@FrostKittyPaw @SadlyItsBradley Figure I'd write this out for historical sake...

From what I've read through on some threads, a big source of the confusion comes from Oculus, Steam, Pico, Nvidia etc. all using different names for this stuff. While they do have different implementations, and use the terms…

Source: X post

@dankvr @XY01 ya basically... this is what I do too, chill in some nice place in VRC with a web

@dankvr @XY01 ya basically... this is what I do too, chill in some nice place in VRC with a web browser overlay open browsing

Source: X post

@dankvr @XY01 webxr overlay is kind of an odd functionality to me. I'd rather a browser engine i

@dankvr @XY01 webxr overlay is kind of an odd functionality to me. I'd rather a browser engine instance (a browser tab) be able to output XR frames to a compositor, then a completely separate tab output the 2D DOM to the compositor too. Then the compositor deals with combining them. The notion…

Source: X post

chatgpt4 knows cmake quite quite well even for more complex things. Interesting that it can lear

chatgpt4 knows cmake quite quite well even for more complex things. Interesting that it can learn a highly declarative scripting language that doesn't do much in terms of actual algorithmic processing/flow... there is probably something significant about that https://x.com/_rygo6/status/1722488568344621293/photo/1

Source: X post

@AntonHand I don't see it say anything about no anime furries?

@AntonHand I don't see it say anything about no anime furries?

... If people can upload their avatars it's kind of an inevitability.

Source: X post

@XY01 To actually give a pretty concrete example of what I mean by putting on the HMD and lettin

@XY01 To actually give a pretty concrete example of what I mean by putting on the HMD and letting it carve some new neural pathways.

I would bet more on an HMD where, the only thing it did, is you put it on and you were 6dof immersed in beautiful, detailed, fantasy scenery and…

Source: X post

@XY01 I would use this on-the-go and probably pay a lot for it, but it's still very hard for me

@XY01 I would use this on-the-go and probably pay a lot for it, but it's still very hard for me to see it as a general-purpose demand. There is a much bigger barrier to getting non-tech-enthusiasts to put anything on their face. It's also not an absolute necessity for much of what…

Source: X post

@mahoneymatic go in vrchat

@mahoneymatic go in vrchat

Source: X post

I've heard so many people mention over the years that XR just needs 'The Killer App'. That one s

I've heard so many people mention over the years that XR just needs 'The Killer App'. That one simple thing which makes everyone need it, then everyone will buy an HMD. So, you can get your iPhone moment and the big mainstream explosion. I often find people have this instinct…

Source: X post

I'm looking at my kitchen counter, which is completely covered in computer crap, then looking at

I'm looking at my kitchen counter, which is completely covered in computer crap, then looking at half of my living room, which is also covered in computer crap, and realizing my tendency to just leave parts and things out in the open is the same reason why I like C and tend not…

Source: X post

@Da_Real_Hugo I can see enterprise and offices pushing the HMD for monitor replacement and produ

@Da_Real_Hugo I can see enterprise and offices pushing the HMD for monitor replacement and productivity uses. But I also know one enterprise that expressed interest in this because then they could better track everything their employee is doing. Which sounds insidious, but the legality of…

Source: X post

@5xa no, I only use mini itx boards and 2 sticks

@5xa no, I only use mini itx boards and 2 sticks

Source: X post

@thegiantsox I don't see the interpolation/extrapolation of movement from joystick free motion t

@thegiantsox I don't see the interpolation/extrapolation of movement from joystick free motion to be so much for latency as it is for just making the movement smoother. If you're in some world at 30 fps there is a big difference between physically rotating your head and having it fill in the…

Source: X post

Something that’s always deeply bothered me about VR is, you physically move your head and the po

Something that’s always deeply bothered me about VR is, you physically move your head and the position/orientation of your view will update at the full Hz of your HMD, as smooth as possible with the lowest latency possible as it relies on the compositor and reprojection.

But if…

Source: X post

@kylebrussell @JCorvinusVR https://x.com/_rygo6/status/1721985602189668369

@kylebrussell @JCorvinusVR https://x.com/_rygo6/status/1721985602189668369

Source: X post

@kordanot @SadlyItsBradley That's interesting... as I would tend to say people aren't really mor

@kordanot @SadlyItsBradley That's interesting... as I would tend to say people aren't really more than what they express. It's like, is a dead body still the person? Technically yes in some context, but I tend to not think so. Because I think to if I had to choose between interacting with the dead body of…

Source: X post

@kordanot @SadlyItsBradley not seeing your physical body as the totality, or just the primary as

@kordanot @SadlyItsBradley not seeing your physical body as the totality, or just the primary aspect, of your identity I don't see as having anything to do with neglect...

personally, I see more harm in our culture being far too preoccupied with one's physical self, along the lines of vanity and…

Source: X post

@hare_ware_0 It does with positional/rotational updates from the tracking data, similar to async

@hare_ware_0 It does with positional/rotational updates from the tracking data, similar to asynchronous reprojection on steavmr, but go into a VRChat world running 20 fps, turn on smooth turning, then turn by pushing the joystick left/right. Your view will update at the framerate of VRChat.…

Source: X post

@gfodor what about into the stars and the metaverse?

@gfodor what about into the stars and the metaverse?

Source: X post

@BattleAxeVR I find this is a more nuanced subject because body language I find more significant

@BattleAxeVR I find this is a more nuanced subject because body language I find more significant. With full body tracking seeing someone's mannerisms, how they move, sit, stand, their posture, how they gesture, the movement carries so much communication that rarely do I feel the face tracking…

Source: X post

I’ve always found seeing someone in VR in an avatar they made themselves, or even going into a w

I’ve always found seeing someone in VR in an avatar they made themselves, or even going into a world that person made, is more insightful about that person than seeing their physical self. I’ve never really understood the mentality of “I’ve seen this persons physical face and…

Source: X post

It's pretty damn impressive how good ChatGPT4 is at C++, Vulkan and GLSL. By that I don't mean i

It's pretty damn impressive how good ChatGPT4 is at C++, Vulkan and GLSL. By that I don't mean it is good at writing code. No no. It sucks at writing code. Rather, it's good at answering questions, textbook-like documentation-like questions. This is a nuance of ChatGPT I am…

Source: X post

I hear theres a rust crate for that.

I hear theres a rust crate for that.

Source: X post

@charshenton well thats good to know is there a list anywhere of what std will make me use excep

@charshenton well thats good to know is there a list anywhere of what std will make me use exceptions?

Source: X post

@charshenton thinking of making linter to enforce a strict subset of some C++ features and call

@charshenton thinking of making linter to enforce a strict subset of some C++ features and call it C^2

Source: X post

@charshenton I think I want a little more than orthodox C++ but not full modern

@charshenton I think I want a little more than orthodox C++ but not full modern

like it seems containers are Okay now? but I am still looking for a comprehensive data-based analysis on why you should/shouldn't use containers

Source: X post

@charshenton but there are so many useful things in std, you just don't have any stds in your co

@charshenton but there are so many useful things in std, you just don't have any stds in your code at all?

Source: X post

C++ is a great language if you omit the majority of things that were added over C.

C++ is a great language if you omit the majority of things that were added over C.

Source: X post

@Rengle820 Related to that, I have a rather controversial take in the industry that I really wis

@Rengle820 Related to that, I have a rather controversial take in the industry that I really wish was not a controversial take:

Those who have currently found reason to put on an HMD daily themself and use it for hours themself have the best instinct on what is needed to get more people to…

Source: X post

@SebAaltonen @SirLynix Are there any std libs that you do think are Okay to use?

@SebAaltonen @SirLynix Are there any std libs that you do think are Okay to use?

Source: X post

Objects are good when your codebase, conceptually, very literally, has objects. OOP I think appl

Objects are good when your codebase, conceptually, very literally, has objects. OOP I think applies well to GUIs and much of game logic programming where you have literal objects moving around in spaces. But when you get into the territories where there's no literal, obvious,…

Source: X post

@AntonHand The companies I saw trying to make some play with blockchain-based markets were ones

@AntonHand The companies I saw trying to make some play with blockchain-based markets were ones that wanted to somehow disrupt the monopoly of competitors. Premise was that users were annoyed with monopolized walled-garden proprietary digital markets where all of their assets are controlled…

Source: X post

@AntonHand also, where are you seeing this data?

@AntonHand also, where are you seeing this data?

Source: X post

I find a lot of VRChat+Index users have their SteamVR settings set in suboptimal ways. I suspect

I find a lot of VRChat+Index users have their SteamVR settings set in suboptimal ways. I suspect this is because a bunch of YouTube videos spread recommendations and information about SteamVR that was just plain wrong or many years out of date. So, for those that need to hear it,…

Source: X post

@FreyaHolmer rewrite it in c

@FreyaHolmer rewrite it in c

Source: X post

Feel at some point we have to admit WASM failed at achieving adequately "close" to native perfor

Feel at some point we have to admit WASM failed at achieving adequately "close" to native performance and revive NaCl.

Source: X post

@cnlohr but is it going to happen!?

@cnlohr but is it going to happen!?

Source: X post

@AntonHand I've pointed this out about the amount engagement unity based UGC platforms get, even

@AntonHand I've pointed this out about the amount engagement unity based UGC platforms get, even with data, charts and fancy stuff. Unfortunately, it seems an exceptionally uphill battle to get perspective entrenched in the prior mentality of game engines, apps and app stores to realize the…

Source: X post

@Jonathan_Blow @danielben git add .

@Jonathan_Blow @danielben git add . git commit -m 'did some shit' git push

? I've always found solo git easy and a nice way to backup / take snapshots of progress

Source: X post

I don't see how C++ templates carry any less inherent evil than C macros... seems like they coul

I don't see how C++ templates carry any less inherent evil than C macros... seems like they could carry more because templates and concepts get so so complex it's hard to even figure out what it's trying to do. Macros I've found easy to debug, any modern IDE you hover over the…

Source: X post

@dankvr Every now and then I go on LinkedIn and it almost seems like a contest to post the worst

@dankvr Every now and then I go on LinkedIn and it almost seems like a contest to post the worst possible take on XR or tech

... but gen alpha memes are so wholesome... the shit that was going around the web back in my day, oh god

Source: X post

...too clever and/or cursed?

...too clever and/or cursed?

so, I PERSONALLY don't hate it... but I do admit things like this amuse me. https://x.com/_rygo6/status/1716731278215786805/photo/1

Source: X post

Find it hard to believe that C++, for having way way way too many features of so much complexity

Find it hard to believe that C++, for having way way way too many features of so much complexity, doesn’t have just a plain ol’ simple C# style interface, but instead something that sorta gets you there from using other features cleverly.

Source: X post

I do really like how Swift lets you name threads, or categories of threads, then put that name o

I do really like how Swift lets you name threads, or categories of threads, then put that name on any method or variable declaration as a modifier to enforce only that thread being able to use the method or variable.

That was a pretty decent syntax invention that doesn't piss me…

Source: X post

I do really like how Swift lets you name threads, or categories of threads, then put that name o

I do really like how Swift lets you name threads, or categories of threads, then put that name on any method or variable declaration as a modifier to enforce only that thread being able to use the method or variable.

Source: X post

I decided to try vulkan.hpp instead of vulkan.h and it feels like I now have a Rube Goldberg Mac

I decided to try vulkan.hpp instead of vulkan.h and it feels like I now have a Rube Goldberg Machine running underneath my graphics code. I just don't know about this.

Source: X post

This is an interesting point of contemplation:

This is an interesting point of contemplation:

"Every time a seasoned C++ programmer proposes the use of a safer, harder to misuse abstraction to a game developer, they will not listen – they cannot afford to do so. Therefore, people working in other domains will see game…

Source: X post

What is considered to be the most beautiful and breathtakingly perfect modern C++ codebase with

What is considered to be the most beautiful and breathtakingly perfect modern C++ codebase with everything done perfect according to what has reached general consensus amongst the C++ community?

Source: X post

I really think John Carmack had the right idea with the Doom3 codebase. Your baseline should be

I really think John Carmack had the right idea with the Doom3 codebase. Your baseline should be something C-Style in architecture, then you selectively use classes/objects for when that makes sense. Of course, can make use of other C++ features in the C-Style architecture like…

Source: X post

I really think John Carmack had the right idea with the Doom3 codebase. Your baseline should be

I really think John Carmack had the right idea with the Doom3 codebase. Your baseline should be something C-Style in architecture where you selectively use classes/objects for when that makes sense. Of course, can make use of other C++ features in the C-Style architecture like…

Source: X post

A weekend of deep diving into formal knowledge of "Modern C++" and dozens of "Modern C++ Codebas

A weekend of deep diving into formal knowledge of "Modern C++" and dozens of "Modern C++ Codebases" from different companies has now taught me that "Expert in Modern C++" really means "Invent own idiosyncratic style with vast plethora of Modern C++ features then just stubbornly…

Source: X post

@technobaboo It's not though. I completely respect resonite/neos and what it has proven out but

@technobaboo It's not though. I completely respect resonite/neos and what it has proven out but someone isn't going to program a VR-first competitor to blender in there, or a painting application that can compete with photoshop. Plus, I need GLSL. I want to be able to program a shader in VR…

Source: X post

@MalekiRe I like the idea of a sandboxed native app path, but wasm and webgpu would be sufficien

@MalekiRe I like the idea of a sandboxed native app path, but wasm and webgpu would be sufficient, and ya a lot of companies would if there were lots of users, just look at web browsers :)

Source: X post

I yearn for the day when I can be chilling in VR watching a movie, or playing an emulator on a v

I yearn for the day when I can be chilling in VR watching a movie, or playing an emulator on a virtual screen, then some friend joins and spawns like some new 3D model they've been working on to show me, or maybe some new shader effect, then they continue working on it right…

Source: X post

@DyLhun I've made lots of VRC avatars too, but I want a comprehensive enough programming solutio

@DyLhun I've made lots of VRC avatars too, but I want a comprehensive enough programming solution to be able to start making synchronized 3D modelling tools in VR itself.

Source: X post

ChatGPT4 is actually quite good at answering questions about Vulkan. Not so good at writing the

ChatGPT4 is actually quite good at answering questions about Vulkan. Not so good at writing the code for it though. It can produce sippets with some alterations, and some amalgams of various snippets with alterations, but I am realizing ChatGPT fundamentally doesn't know how to…

Source: X post

@AshConnell Do you have a way to deal with crashing shaders?

@AshConnell Do you have a way to deal with crashing shaders?

Source: X post

One of the big errors of thought I see in the XR space is that when it comes to 3D Spatial Socia

One of the big errors of thought I see in the XR space is that when it comes to 3D Spatial Social platforms, "The Metaverse" or whatever you wish to call it, many companies are presuming people will want to be realistic 3D representations of themselves. This has fueled much…

Source: X post

One of the big errors of thought I see in the XR space is that when it comes to 3D Spatial Socia

One of the big errors of thought I see in the XR space is that when it comes to 3D Spatial Social platforms, "The Metaverse" or whatever you wish to call it, many companies are presuming people will want to be realistic 3D representations of themselves. This has fueled much…

Source: X post

@yewnyx I don't think I meant it as an analogy? I meant it pretty literally. A Unity/Unreal/Godo

@yewnyx I don't think I meant it as an analogy? I meant it pretty literally. A Unity/Unreal/Godot executable isn't an operating system. Maybe it could be a piece of one. But what I see as necessary for the foundations of VR is going to require a bit outside of what you'd need for typical…

Source: X post

This guy knew what was up back in 2015...

This guy knew what was up back in 2015... https://docs.google.com/presentation/d/1svgGMxxbfmcHy_KuS5Q9hah8PQOsXqvjBKOoMIzW24Y/edit#slide=id.g18666cd1d_0160 I remember seeing this back in 2016 when I was working on a spatial OS at Meta (a startup, not facebook) but for some reason it took a few years to really sink in. I think a big component of that was seeing how… https://x.com/_rygo6/status/1710806139582259698/photo/1

Source: X post

@technobaboo The whole thing could be based on web technologies. Something akin to metachromium.

@technobaboo The whole thing could be based on web technologies. Something akin to metachromium. Something where different webgl pages can be rendered into the same shared 3D space.

Source: X post

@technobaboo Of course you'd still need a bunch of coordination/management/interaction code in t

@technobaboo Of course you'd still need a bunch of coordination/management/interaction code in the compositor/server/OS itself with APIs for the app to register necessary data to the OS. But you need that anyways. From there the way it renders seems to be the smaller complication to me.…

Source: X post

I'm at the point with VR where if I had to choose between giving up my PCVR setup or giving up m

I'm at the point with VR where if I had to choose between giving up my PCVR setup or giving up my smartphone and going back to a flip phone, I would give up my smartphone. My PCVR setup brings more value to my life than my smartphone.

I feel this is such an important thing in…

Source: X post

@dankvr It was the closest :P But I do still like the idea of coming up with some way for native

@dankvr It was the closest :P But I do still like the idea of coming up with some way for native applications to run in a VROS like this.

Source: X post

This is still an open source project / experiment I think about quite a bit. https://github.com/

This is still an open source project / experiment I think about quite a bit. https://github.com/kettle11/tangle When trying to network a WASM build of something, why not delta sync the entire heap? It sounds a little whacky at first, but if you think it through, it'd probably,…

Source: X post

Imagine if someone was designing a new operating system and they told you every app in the opera

Imagine if someone was designing a new operating system and they told you every app in the operating system would run as a single process, in a single graphics context, so if any single app crashed, or froze, all other apps would crash and freeze. That would sound bad, right?…

Source: X post

Visa is now utilizing the Solana Blockchain for international payments; something like that I ex

Visa is now utilizing the Solana Blockchain for international payments; something like that I expected to happen eventually. A company like VISA seeded tons of bad press about bitcoin and cryptocurrency in general, until they found a way to weave some aspect of cryptocurrency…

Source: X post

I didn't notice, but nostr now has a nicer page with some animated infographic videos. https://n

I didn't notice, but nostr now has a nicer page with some animated infographic videos. https://nostr.com/

If you're not familiar. NOSTR I would put in the top tier of most significant emerging technologies. It is worth taking the time to understand and really think about.

Source: X post

I didn't notice, but nostr now has a nicer page with some animated infographic videos. https://n

I didn't notice, but nostr now has a nicer page with some animated infographic videos. https://nostr.com/

Source: X post

Many of the greatest past tech successes came from evolutions in ease-of-use and UX. This has cr

Many of the greatest past tech successes came from evolutions in ease-of-use and UX. This has created a whole bunch of common-sense viewpoints about tech concerning need for simplicity and extreme ease-of-use. But one variable which I think adds a complication to this common…

Source: X post

Many of the greatest past tech successes came from evolutions in ease-of-use and UX in the past.

Many of the greatest past tech successes came from evolutions in ease-of-use and UX in the past. This has created a whole bunch of common-sense viewpoints about tech concerning need for simplicity and extreme ease-of-use. But one variable which I think adds a complication to this…

Source: X post

@dh7net I put on a Valve Index with Full Body Tracking and go into VRChat every night for a few

@dh7net I put on a Valve Index with Full Body Tracking and go into VRChat every night for a few hours. On weekends I'll typically be in there for 4 to 8 hours. It has become as a central a technology to my life as my smartphone. The benefits of deeply immersive VR can be life changing…

Source: X post

Imagine my dismay when I discovered this new fancy “Gaussian Splatting” is really just a bunch o

Imagine my dismay when I discovered this new fancy “Gaussian Splatting” is really just a bunch of quads stretched and oriented with a blurred circle on them. Calling it gaussian splatting really sounds like someone just wanted to be fancy. “Blurred Quads” probably a more…

Source: X post

@charshenton Is it so much to expect for a novel advanced AI scene representation there'd be som

@charshenton Is it so much to expect for a novel advanced AI scene representation there'd be some kind of octree traversal or other 3D data structure or something of that sort? Instead, we have Space Blobs with the most complex name ever. "Statistically Bound Compute Rasterized Elliptical…

Source: X post

nope https://x.com/_rygo6/status/1708740960736489814/photo/1

nope https://x.com/_rygo6/status/1708740960736489814/photo/1

Source: X post

@punk6529 Sure, as long as you also start referring to Tweets as "SQL Entries".

@punk6529 Sure, as long as you also start referring to Tweets as "SQL Entries".

No, they should be called digital collectables, and Tweets should be called Tweets, because referring to some digital "thing" as the technical name of it's storage technology is dumb.

A Tweet is one usage of…

Source: X post

@macil_tech I've been fond of the idea of putting a wasm vm on top of engines for UGC for multip

@macil_tech I've been fond of the idea of putting a wasm vm on top of engines for UGC for multiple years now, but the performance hit of wasm still bothers me. It's just failed to live up to something comparable to real assembly.

Source: X post

@macil_tech A question I've been asking around, and this is out of my expertise, which is why I'

@macil_tech A question I've been asking around, and this is out of my expertise, which is why I've been asking, both to understand myself and also have others look into it too. BUT. Could it be possible to effectively sandbox native code with all the latest user space security and sandboxing…

Source: X post

I'd really love for servo to be usable, but I download it like every 3-ish months, try to browse

I'd really love for servo to be usable, but I download it like every 3-ish months, try to browse some site, and it can barely survive a minute.

Source: X post

More I think about it the more I really wished godot used a real programming language as the cen

More I think about it the more I really wished godot used a real programming language as the centerpiece. Also really wish defold, even unity did this. Much of the reasoning for the need of interpretted langs and VMs layered on top of the engine I personally don't think apply…

Source: X post

More I think about it the more I really wished godot used a native programming language as the c

More I think about it the more I really wished godot used a native programming language as the centerpiece. Also really wish defold, even unity did this. Much of the reasoning for the need of interpretted langs and VMs layered on top of the engine I personally don't think apply…

Source: X post

I thought I'd figure out the math to calculate barycentric coordinates on a quadrilateral myself

I thought I'd figure out the math to calculate barycentric coordinates on a quadrilateral myself and seemingly failed for like 2 days straight, then finally found a paper with GLSL code specifically for this. Looking at the dense math function this is, I unfortunately realize,… https://x.com/_rygo6/status/1706561675628106207/photo/1

Source: X post

I thought I'd figure out the math to calculate barycentric coordinates on a quadrilateral myself

I thought I'd figure out the math to calculate barycentric coordinates on a quadrilateral myself and seemingly failed for like 2 days straight, then finally found a paper with GLSL code specifically for this. Looking at the dense math function this is, I unfortunately realize,… https://x.com/_rygo6/status/1706561430047322305/photo/1

Source: X post

@fncischen if you know a faster method I am interested

@fncischen if you know a faster method I am interested

Source: X post

The unfortunate thing I've come to realize about C# is that advanced C# is pretty bad. I think C

The unfortunate thing I've come to realize about C# is that advanced C# is pretty bad. I think C# is one of the best intermediate languages for mid to big codebases. It gives you everything you need to manage large system architecture and you can write adequately performing code…

Source: X post

@sweatystartup It's possible to see where profit incentive has worked out well for the good of a

@sweatystartup It's possible to see where profit incentive has worked out well for the good of a society and simultaneously see where it has become parasitic to society.

Source: X post

Someone posted on LinkedIn a ChatGPT-ish summarization of a unity technical topic I explained in

Someone posted on LinkedIn a ChatGPT-ish summarization of a unity technical topic I explained in a youtube video. I know this was based off my video because what I explained was a particular viewpoint, explained in a particular way, it was not a general subject, and the linkedin…

Source: X post

@pvncher ya burst I think is a better approach than a lot of the new C# features

@pvncher ya burst I think is a better approach than a lot of the new C# features

Source: X post

vulkan gets a lot of complaints, but it's the thing that's finally made graphics programming fas

vulkan gets a lot of complaints, but it's the thing that's finally made graphics programming fascinating to me. I've dabbled in OGL and DX11 little bits in the past, while it was interesting to me, I ultimately never went very deep with it because I always thought, "What's this…

Source: X post

The "x86-64 Linux ABI Makes a Pretty Good Lingua Franca" section of this blog post https://justi

The "x86-64 Linux ABI Makes a Pretty Good Lingua Franca" section of this blog post https://justine.lol/ape.html is so so intriguing to me.

Source: X post

Before getting a dog so many people say "Dogs are so much responsibility and a such a hassle and

Before getting a dog so many people say "Dogs are so much responsibility and a such a hassle and blah blah" and it made me so on edge about getting a dog. But I've come to find all that's necessary is a 5 minute walk as soon as I wake up, 30 minute jog at lunch, 30 minute jog at…

Source: X post

Before getting a dog so many people said "Dogs are so much responsibility and such a hassle and

Before getting a dog so many people said "Dogs are so much responsibility and such a hassle and blah blah" and it made me so on edge about getting a dog. But I've come to find all that's necessary is a 5 minute walk as soon as I wake up, 30 minute jog at lunch, 30 minute jog at…

Source: X post

@AdamGoodrich Big part of it is Valve has never massively pissed off the gaming community and re

@AdamGoodrich Big part of it is Valve has never massively pissed off the gaming community and remains trusted. They also always appear to use excess profit to invest in things that are genuinely good for the space. Like getting PC games to run on Linux and open sourcing their work. Releasing…

Source: X post

@VRUnderground I made this: https://github.com/rygo6/GTAvaCrypt

@VRUnderground I made this: https://github.com/rygo6/GTAvaCrypt Which is still one of the most effective schemes to prevent avatar ripping I know of. It's based on randomly generated snippets of shader code to obfuscate the mesh. There is a lot more that could be done this direction when you start to…

Source: X post

@technobaboo @knev_phd Thanks for pointing this out, hadn't heard of it.

@technobaboo @knev_phd Thanks for pointing this out, hadn't heard of it.

Source: X post

I think VRChat is actually quite good at discerning what the userbase wants and needs. Sure, the

I think VRChat is actually quite good at discerning what the userbase wants and needs. Sure, the melonloader fiasco was big, but it was an issue. In comparison to a lot of other companies VRChat has been quite remarkable in making good decisions on what to deliver to users.

Source: X post

@AntonHand I was in quite good shape before COVID then became quite sedentary for about a year.

@AntonHand I was in quite good shape before COVID then became quite sedentary for about a year. Then got my husky and had to start go on a walk/jog every day no matter what. It took me 6 months to no longer be sore. Which shocked me, did not expect just 1 sedentary year to take that long to…

Source: X post

@AntonHand Get a dog. Before covid my exercise was paintball and dancing, which I stopped, and j

@AntonHand Get a dog. Before covid my exercise was paintball and dancing, which I stopped, and just kept telling myself to exercise, putting exercise equipment in my apt so I'd maybe use it when bored, bought fancy bike, so many things, until I had to admit to myself I literally cannot make…

Source: X post

@yewnyx I don't think a lot do... in corporate side VRC is not seen as demonstrating an entirely

@yewnyx I don't think a lot do... in corporate side VRC is not seen as demonstrating an entirely new approach to content creation for XR. Tendency is to think the whole paradigm is like screen-based games, just in an HMD.

A lot of companies or investors could fund it and I think have…

Source: X post

@technobaboo Ya pretty much... that's kind of just the nature of how chaotic evolving systems wo

@technobaboo Ya pretty much... that's kind of just the nature of how chaotic evolving systems work, new things evolving out of the middle of it with a continual constant stream of entropy and decay. It's how the web is... all technology. Really that's just life... :) I believe that's the…

Source: X post

@technobaboo There would be a central manager, it's essentially a VR compositor. Kind of in the

@technobaboo There would be a central manager, it's essentially a VR compositor. Kind of in the direction of SteamVR Overlays but with differences to make it better work how I want it to. There is a heavy reliance on asynchronous reprojection to enable different framerates from different…

Source: X post

@technobaboo no I haven't.... right now just got some chunks of shared vulkan texture memory, a

@technobaboo no I haven't.... right now just got some chunks of shared vulkan texture memory, a shared timeline sempahore and a chunk of shared CPU memory... I'm not even to multiple processes yet, my current grind is trying to get pixel-perfect depth reprojection on one process with mesh…

Source: X post

@JackSoslow I am 37 and go into VRChat almost every night for at least few hours. There's a lot

@JackSoslow I am 37 and go into VRChat almost every night for at least few hours. There's a lot of adults that do this now. Even at my age, the value-add is quite clear once you get into it. Having a mass of people to hang out with just a HMD away is a viable solution to many real problems.

Source: X post

@AminiAllight I don't see any reason why that'd be in contrast with what I'm thinking. When I th

@AminiAllight I don't see any reason why that'd be in contrast with what I'm thinking. When I think 'OS' I instinctively think more so 'Linux' where it is inherently a bunch of moving evolving pieces made by many different people. Not so much Win/OSX which tend to be a more static and locked…

Source: X post

@technobaboo I don't see a need to agree on one API. In this context the API I see as the IPC be

@technobaboo I don't see a need to agree on one API. In this context the API I see as the IPC between different processes. To which, ya it'd be impossible to define one API for all possible applications and uses. Instead, different processes could define an API, others could choose to interop…

Source: X post

Looking at Godot the thought came to me “Maybe I could make the XRI or MRTK of Godot” as an exer

Looking at Godot the thought came to me “Maybe I could make the XRI or MRTK of Godot” as an exercise. Xr Interaction systems are one of the things I have the most experience with, dealing with multiple ones over the years, designing and implementing my own. But then I stopped…

Source: X post

@philchacko As some whose been trying to get the corporate VR space decision-makers to pay neces

@philchacko As some whose been trying to get the corporate VR space decision-makers to pay necessary attention to the Metaverse/SocialVR space and its significance for like 4 years with increasing frustration, I'd say they never really started.

Source: X post

TeleForm?

TeleForm?

Source: X post

So seriously... what would you name a "Spatial Zoom"? So far, I have 'Spoom' and feel like that'

So seriously... what would you name a "Spatial Zoom"? So far, I have 'Spoom' and feel like that's not the best.

Source: X post

ok what about ... splain

ok what about ... splain

Source: X post

@KazyEXE That’s not terrible…

@KazyEXE That’s not terrible…

Source: X post

For those who are afraid of code, if I had to choose between a tightly integrated node-based vis

For those who are afraid of code, if I had to choose between a tightly integrated node-based visual scripting language or a tightly integrated overly simplified scripting language, I would choose the latter. Not a fan of nodes for game logic.

Source: X post

@cloudprism_ that does seem to be better than my name

@cloudprism_ that does seem to be better than my name

Source: X post

@cloudprism_ its not very unique tho....

@cloudprism_ its not very unique tho....

Source: X post

@amaldorai @ArthurSpaces Thanks for pointing that out. Actually, looks like a place I could appl

@amaldorai @ArthurSpaces Thanks for pointing that out. Actually, looks like a place I could apply! :) ... but for this endeavor I'm wanting something far more basic. Nothing more than what zoom already is, except instead of a grid of video streams, the video streams are on quads with positional audio and…

Source: X post

@philchacko It's going to be hard for a lot to pave a new path out of all the bad. Especially th

@philchacko It's going to be hard for a lot to pave a new path out of all the bad. Especially those who rely on successful titles for livelihood. Even harder in the VR space as there is no well-paved alternatives yet. It'll get there, but it could be years to fully recover.

Source: X post

People building on something open source from the beginning could have evaded problems. However

People building on something open source from the beginning could have evaded problems. However I see the more fundamental problem as not having enough constraints on corporate action once they get to a certain scale, mixed with not having enough worker protections and an…

Source: X post

People building on something open source from the beginning could have evaded problems. However

People building on something open source from the beginning could have evaded problems. However I see the more fundamental problem as not having enough constraints on corporate action once they get to a certain scale mixed with not having enough worker protections and an adequate…

Source: X post

People building on something open source from the beginning could have evaded problems. However

People building on something open source from the beginning could have evaded problems. However I see the more fundamental problem as a mix of not having enough constraints on corporate action once they get to a certain scale, not having enough worker protections and not having…

Source: X post

I have an odd dichotomy where I actually kind of loathe the games industry, and don't even reall

I have an odd dichotomy where I actually kind of loathe the games industry, and don't even really like games that much. Typically I buy a new game every few months and play it for 2-4 hours then get bored. I would not be crushed if I never played another new game. Only thing I've…

Source: X post

Something that could help... if you have an opening, reach out and give current Unity employees

Something that could help... if you have an opening, reach out and give current Unity employees easy refuge. It'd probably be an easy hire right now.

Source: X post

@philchacko @pvncher https://v-sekai.org/

@philchacko @pvncher https://v-sekai.org/

Source: X post

@Lyuma2d @godotengine I'm curious, as I didn't think gdscript was fast enough for doing complex

@Lyuma2d @godotengine I'm curious, as I didn't think gdscript was fast enough for doing complex real-time math like IK? How much benefit or perf would be gained by it being in cpp?

Source: X post

@jonoforbes @unity you went out well

@jonoforbes @unity you went out well

Source: X post

I think I want to switch careers to running a vegan ice cream shop.

I think I want to switch careers to running a vegan ice cream shop.

Source: X post

omg... you know you always hear about racism and TRUMP and fascism and all these big evil narrat

omg... you know you always hear about racism and TRUMP and fascism and all these big evil narratives... but never forget people like this exist and their desires are actually playing out more successfully than any other malevolently intended thing I can think of... https://x.com/kenklippenstein/status/1701660090758025642

Source: X post

I love it when communities come together to accomplish things.

I love it when communities come together to accomplish things.

Source: X post

It's always interesting to me that, in many of Noam Chomsky's talks, he highlights that Climate

It's always interesting to me that, in many of Noam Chomsky's talks, he highlights that Climate Change and the threat of the next major war are comparable existential crises. Not necessarily one more than the other, but comparable crises, with comparable impending escalation. If…

Source: X post

It's always interesting to me that, in many of Noam Chomsky's talks, he highlights that Climate

It's always interesting to me that, in many of Noam Chomsky's talks, he highlights that Climate Change and the threat of the next major war are comparable existential crises. Not necessarily one more than the other, but comparable crises, with comparable impending escalation. If…

Source: X post

US culture idealizes entrepreneurship so much because our culture, and the way it tends to build

US culture idealizes entrepreneurship so much because our culture, and the way it tends to build corporations, tends to turn them into terrible places proportional to their size. Which leaves the only option, “I’ll do it on my own!” But really, I think the better solution is…

Source: X post

Who even needs new languages... can just make your own on the fly with C11 macros.

Who even needs new languages... can just make your own on the fly with C11 macros.

...

(I'm kidding)

...

(partially)

Source: X post

I feel like for every intelligent thing I do, I must do a comparably stupid thing to balance it

I feel like for every intelligent thing I do, I must do a comparably stupid thing to balance it out. Being known as the person to always take seriously seems as bad as being the person to never take seriously.

Source: X post

I feel like for every intelligent thing I do, I must do a comparably stupid thing to balance it

I feel like for every intelligent thing I do, I must do a comparably stupid thing to balance it out.

Source: X post

@AntonHand Whatever VRChat turns into after midnight on a Friday night.

@AntonHand Whatever VRChat turns into after midnight on a Friday night.

Source: X post

My Microsoft Edge crashes 10 seconds after opening it no matter what I do after latest update...

My Microsoft Edge crashes 10 seconds after opening it no matter what I do after latest update...

Source: X post

@DyLhun The unfortunate thing though, so many who ultimately only care about the money will foll

@DyLhun The unfortunate thing though, so many who ultimately only care about the money will follow robloxes lead, or be pressured to by those who do, as they have proven out a way to extract huge profit from users.

Source: X post

@DyLhun It's also unfortunately very unlikely US regulation would do anything. Maybe another cou

@DyLhun It's also unfortunately very unlikely US regulation would do anything. Maybe another country can pressure some things.

Source: X post

It is quite interesting to me that nanite software rasterizes in compute shader any triangle wit

It is quite interesting to me that nanite software rasterizes in compute shader any triangle with an edge less than 32 pixels long because they found triangles smaller than that can be rasterized in a compute shader faster than the typical graphics hardware pipeline.…

Source: X post

I was more a fan of older prototype based javascript than newer, `trying to make it like Java/C#

I was more a fan of older prototype based javascript than newer, trying to make it like Java/C# class based javascript. Beauty of ECMAScript was that it let you solve a different set of problems in a different way than you could with the class-based languages. Now it just comes…

Source: X post

As Sweeney has been fighting against malevolent monopolistic practices of big Tech, and now EU h

As Sweeney has been fighting against malevolent monopolistic practices of big Tech, and now EU has made some those practices explicitly illegal, bringing a huge validation to the effort, which will start to force open some of the walled gardens. I can’t but reflect on so many…

Source: X post

@InventedReal because on steamvr most people are in vrchat and they won't leave vrchat because t

@InventedReal because on steamvr most people are in vrchat and they won't leave vrchat because their friends and avatar can't come with them

Source: X post

I'm a fan of raylib. Lot of good things there.

I'm a fan of raylib. Lot of good things there.

Source: X post

It just occurred to me... Turbo Overkill captures the feeling of writing plain C whereas Armored

It just occurred to me... Turbo Overkill captures the feeling of writing plain C whereas Armored Core 6 captures the feeling of writing Rust.

Source: X post

do I need to play starfield?

do I need to play starfield?

Source: X post

I'm kind of at the point with programming and graphics where, if it has no potential use on a mi

I'm kind of at the point with programming and graphics where, if it has no potential use on a mini SoC PC I'm not really interested. I'm so disinterested in the MORE POWER MORE WATTS graphics card go brrr hustle. Feel the industry needs to start going in reverse. Stripping away…

Source: X post

I'm kind of at the point with programming and graphics where, if it has no potential use on a mi

I'm kind of at the point with programming and graphics where, if it has no potential use on a mini SoC PC I'm not really interested. I'm so disinterested in the MORE POWER MORE WATTS graphics card go brrr hustle. Feel the industry needs to start going in reverse. Stripping away…

Source: X post

COVID was a pretty life changing occurrence for me, not because of the virus directly, but becau

COVID was a pretty life changing occurrence for me, not because of the virus directly, but because of how society responded. The most disappointing thing to me about COVID was that it clearly showed scientific merit ultimately can't lead society as too few people really…

Source: X post

RT @fxr256: @dkhundley @svpino Full time Scrum masters are a big red flag. Interestingly, there

RT @fxr256: @dkhundley @svpino Full time Scrum masters are a big red flag. Interestingly, there is a talk by @unclebobmartin where he menti…

Source: X post

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter c

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter cultural. Making a "Personal Computer" was a major middle finger to the status quo desires of technology. The notion of a "Free and Open" web was a major middle finger to government and…

Source: X post

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter c

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter cultural. Making a "Personal Computer" was a major middle finger to the status quo desires of technology. The notion of a "Free and Open" web was a major middle finger to government and…

Source: X post

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter c

In the 80's, 90's and somewhat into the 00's, the technology we know today was largely counter cultural. Making a "Personal Computer" was a major middle finger to the status quo desires of technology. The notion of a "Free and Open" web was a major middle finger to government and…

Source: X post

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessari

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessarily spending that much because often I traded older ones for another pair, but I've been through a lot of headphones.

I've only ever found one setup that I've had now for about 4 years…

Source: X post

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessari

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessarily spending that much because often I traded older ones for another pair, but I've been through a lot of headphones.

I've only ever found one setup that I've had now for about 4 years…

Source: X post

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessari

Over the years I've been through tens of thousands of dollars worth of headphones. Not necessarily spending that much because often I traded older ones for another paid, but I've been through a lot of headphones.

I've only ever found one setup that I've had now for about 4 years…

Source: X post

armored core got difficult I don't like it anymore

armored core got difficult I don't like it anymore

Source: X post

@svpino @Ketiw_ SCRUM, sprints, etc. is just made-up bullshit. It's like the Snake Oil of Softwa

@svpino @Ketiw_ SCRUM, sprints, etc. is just made-up bullshit. It's like the Snake Oil of Software Engineering, as such, it's proponents can just endlessly, and easily, keep making up more bullshit on the spot to keep the charade going. Endless of permutations of useless rituals and ever more…

Source: X post

armored core has made me realize I want to be a mech pilot when I grow up

armored core has made me realize I want to be a mech pilot when I grow up

kind of sucks we'd need intergalactic ultra-corporations in endless war to fuel it... but if we get mechs it might be okay

Source: X post

@technobaboo @MalekiRe @vr_hai No it’s just VRChat can get pretty lively at times…

@technobaboo @MalekiRe @vr_hai No it’s just VRChat can get pretty lively at times…

Source: X post

I'd say this is probably the best channel on US political stuff right now: https://youtu.be/fZ4n

I'd say this is probably the best channel on US political stuff right now: https://youtu.be/fZ4nvCVAGw0?si=Et_28SMHc8BZ6jql

Source: X post

https://x.com/_rygo6/status/1695783628079587631/photo/1

https://x.com/_rygo6/status/1695783628079587631/photo/1

Source: X post

@dankvr I’ve talked with Gunther quite a bit in vrc… it would be good if he did it again

@dankvr I’ve talked with Gunther quite a bit in vrc… it would be good if he did it again

Source: X post

"Anti-Crypto" and "Anti-Blockchain" isn't a good stance when it defaults back to "Pro-VISA and P

"Anti-Crypto" and "Anti-Blockchain" isn't a good stance when it defaults back to "Pro-VISA and Pro-USD-Central-Banking". We have to take seriously that some kind of direct action to somehow disrupt the mechanics of existing economic controls is a necessary part of any real…

Source: X post

@vr_hai that happens to one of mine every weekend... it aint no biggie

@vr_hai that happens to one of mine every weekend... it aint no biggie

Source: X post

The programmer's prayer for entering areas of extreme complexity with severe lack of prior knowl

The programmer's prayer for entering areas of extreme complexity with severe lack of prior knowledge and comfort:

"Ye tho I walk through the valley of not knowing what the fuck I am doing, I will fear no failure, because I have a lot of coffee and an extreme stubbornness to…

Source: X post

... interesting

... interesting https://youtu.be/PJnJ8mK3Q3g?si=mIFIyqZ15H-2L3Pt

Makes me think how it became common sense that... "Once upon a time the cigarette companies spent enough money on researchers and advertisers to actually convince people cigarettes are good! Then Good Ol' Science did its thing and…

Source: X post

Feel the pc world needs more focus on hardware like this:

Feel the pc world needs more focus on hardware like this: https://www.notebookcheck.net/Minisforum-presents-Mercury-EM780-palm-size-mini-PC-with-AMD-Ryzen-Phoenix-7840U-and-dual-USB4-ports.722862.0.html Putting highly efficient APU's in tiny boxes. This one is about twice the power of a Steam Deck and will probably be $400. I know Intel started pushing the NUCs years ago, but these things are now…

Source: X post

Feel the pc world needs more focus on hardware like this:

Feel the pc world needs more focus on hardware like this: https://www.notebookcheck.net/Minisforum-presents-Mercury-EM780-palm-size-mini-PC-with-AMD-Ryzen-Phoenix-7840U-and-dual-USB4-ports.722862.0.html Putting highly efficient APU's in tiny boxes. This one is about twice the power of a Steam Deck and will probably be $500. I know Intel started pushing the NUCs years ago, but these things are now…

Source: X post

Feel the pc world needs more focus on hardware like this:

Feel the pc world needs more focus on hardware like this: https://www.notebookcheck.net/Minisforum-presents-Mercury-EM780-palm-size-mini-PC-with-AMD-Ryzen-Phoenix-7840U-and-dual-USB4-ports.722862.0.html Putting highly efficient APU's in tiny boxes. This one is about twice the power of a Steam Deck and will probably be $500. I know Intel started pushing the NUCs years ago, but these things are now…

Source: X post

what I want is something like Turbo Overkill but with Battlezone-like base building and RTS elem

what I want is something like Turbo Overkill but with Battlezone-like base building and RTS elements

Source: X post

@cnlohr but what if its written to run on tinypy and the tinypy executable is included

@cnlohr but what if its written to run on tinypy and the tinypy executable is included

Source: X post

Whether you like it from personal taste or not, the latest GNOME is quite impressive. It's so si

Whether you like it from personal taste or not, the latest GNOME is quite impressive. It's so simple but can be as powerful as any other desktop, and is one of the most lightweight desktops even with animations and other effects. I would say it's actually simpler than MacOS at…

Source: X post

steve jobs did know some things... https://youtu.be/K1WrHH-WtaA

steve jobs did know some things... https://youtu.be/K1WrHH-WtaA

Source: X post

@auradeluxe I'd say...

@auradeluxe I'd say...

It is a virtual construct which can effectively enough recreate human social interaction to support the formation of a culture and society, virtually, which can offer a route for all people to transcend their more narrowly bound culture in physical reality in order to…

Source: X post

turbo overkill does in fact fully satisfy the inner boomer in me better than most other things h

turbo overkill does in fact fully satisfy the inner boomer in me better than most other things have

Source: X post

... interesting

... interesting https://www.youtube.com/watch?v=wbDLfRjam0E

Source: X post

I'm realizing there is no good way to load into and out of WebXR experiences with SteamVR on win

I'm realizing there is no good way to load into and out of WebXR experiences with SteamVR on windows. The only thing that seems to work with SteamVR is Firefox, then the experience of loading in/out of something is like Firefox launching some other executable, which takes a bit…

Source: X post

I'm realizing there is no good way to load into and out of WebXR experiences with SteamVR on win

I'm realizing there is no good way to load into and out of WebXR experiences with SteamVR on windows. The only thing that seems to work with SteamVR is Firefox, then the experience of loading in/out of something is like Firefox launching some other executable it seems, which…

Source: X post

I kind of want to record a few more youtube videos but AI has me afraid of putting videos of my

I kind of want to record a few more youtube videos but AI has me afraid of putting videos of my face online and I don't want to fully embrace avatar identity outside of VR but maybe it is time to be a vtuber...

Source: X post

Does webxr just not work with chrome anymore or is there some new secret?

Does webxr just not work with chrome anymore or is there some new secret?

Source: X post

@dankvr Nope. Tried open one, chrome canary, brave and chrome. None of them output webxr to stea

@dankvr Nope. Tried open one, chrome canary, brave and chrome. None of them output webxr to steamvr. But firefox outputs to it just fine.

Source: X post

@dankvr I want to make something kind of metachromium-ish... I came across it a few years ago wh

@dankvr I want to make something kind of metachromium-ish... I came across it a few years ago when I started researching others that have done something similar to what I wanted and metachromium was the closest there was and I was pretty impressed by what it was so far

Source: X post

Writing Vulkan and C makes me feel like a complete idiot again. It's a great feeling. I always s

Writing Vulkan and C makes me feel like a complete idiot again. It's a great feeling. I always strive to feel like an idiot. Most would say "Being Smart" is the difficult thing to do, but yet most people always think they are the smartest one in any given thing. Keeping yourself…

Source: X post

Writing Vulkan and C makes me feel like a complete idiot again. It's a great feeling. I always s

Writing Vulkan and C makes me feel like a complete idiot again. It's a great feeling. I always strive to feel like an idiot.

Source: X post

@rmccle I'm hoping setting up modern life and designing cities so everyone always had to drive e

@rmccle I'm hoping setting up modern life and designing cities so everyone always had to drive everywhere will be seen as obviously stupid in a few generations

Source: X post

@mahoneymatic Whether or not the story reported is true is a whole other subject :P But if time

@mahoneymatic Whether or not the story reported is true is a whole other subject :P But if time goes on and we have this mass pool of data from AI car manufacturers showing that AI lowered accidents __% and evaded __% more serious injuries then you're going to get some kind of societal…

Source: X post

@mahoneymatic the AI auto engaging brakes when she ran in front of a blind spot is why she didn'

@mahoneymatic the AI auto engaging brakes when she ran in front of a blind spot is why she didn't die

Source: X post

@mahoneymatic I don't think you quite understood what I posted. A human was manually driving the

@mahoneymatic I don't think you quite understood what I posted. A human was manually driving the car then the AI took over control and forced full braking to prevent injury.

Source: X post

@lexfridman Personally, I'd say Tribalism is great. Everyone should feel they have some mass to

@lexfridman Personally, I'd say Tribalism is great. Everyone should feel they have some mass to which they belong and always is on their side. What sucks is tribes being hostile to other tribes simply because they are different tribes. Especially when the root which caused the various tribes…

Source: X post

I'd expect some kind of societal argument at some point that driving anything but an electric ca

I'd expect some kind of societal argument at some point that driving anything but an electric car with AI controlled braking is immoral due to the danger it poses to others.

Then I'd expect this mentality to get extended to remote kill switch on every vehicle for police.

I… https://x.com/Teslasaveslives/status/1692916195194724494

Source: X post

It seems a big component of people's gripe with Elon Musk is that he publicly acts like an idiot

It seems a big component of people's gripe with Elon Musk is that he publicly acts like an idiot. But you know, when I think about, if I had to choose between wealthy elite being like Elon Musk or them being like Bezos/Nadella//Zuckerberg/Bloomberg etc. etc. where they hire teams…

Source: X post

@DShankar @BigscreenVR Hire @metaculturemag

@DShankar @BigscreenVR Hire @metaculturemag

Source: X post

@yewnyx I know that’s the ideal but the risk is you create something with great authority to do

@yewnyx I know that’s the ideal but the risk is you create something with great authority to do so and then people may lose necessary control over it. It can work just fine if the population which it affects can appropriately steer and direct the mechanics of operation to remain…

Source: X post

@dtupper I made an vrchat antirip thing like a year ago thats still quite effective and pieced t

@dtupper I made an vrchat antirip thing like a year ago thats still quite effective and pieced together some deeper level prototypes and found, you could make something where it's harder to rip the avatar than it is to manually recreate the avatar... but then I talked myself out of this…

Source: X post

Some in the USA are very triggered by the words 'Socialism' and 'Communism' but the ironic thing

Some in the USA are very triggered by the words 'Socialism' and 'Communism' but the ironic thing is, right now, the root of so many issues in the USA is the same root of why Socialism and Communism fail. Too much centralized planning. Too much authority consolidated into too few…

Source: X post

@technobaboo well not in general... specifically certain important ones...

@technobaboo well not in general... specifically certain important ones...

Source: X post

@technobaboo Still one of the greatest classics I'd say with a message thats still just as relev

@technobaboo Still one of the greatest classics I'd say with a message thats still just as relevant today as it was 30 years ago

Source: X post

@LiveFromVR I think if it were voluntary and supplementary it could enhance an animal's life.

@LiveFromVR I think if it were voluntary and supplementary it could enhance an animal's life.

Strapping them into VR and caging them would of course be bad.

Source: X post

Kids these days are far too lacking in certain, important, morals and could really benefit from

Kids these days are far too lacking in certain, important, morals and could really benefit from listening to more rage against the machine https://youtu.be/MAnsR_7VYKQ

Source: X post

I've never had a CI system which just simply worked in all scenarios. All of them filled gnomes

I've never had a CI system which just simply worked in all scenarios. All of them filled gnomes that make little quirks here and there that don't make sense.

Source: X post

If I had my pick of anything in VR I would want what is very close to VRChat BUT paired with a f

If I had my pick of anything in VR I would want what is very close to VRChat BUT paired with a fully programmable low-level graphics pipeline which people have made tons of "Interactive Spatial Music Video" type experiences with, and you could go wandering through them with a…

Source: X post

http://igoro.com/archive/gallery-of-processor-cache-effects/

http://igoro.com/archive/gallery-of-processor-cache-effects/

Source: X post

Dog VR I think is unironically a decent idea. Many dogs have large enough heads and are smart en

Dog VR I think is unironically a decent idea. Many dogs have large enough heads and are smart enough to appreciate something an HMD could offer. Some could probably even learn to put it on themselves, like if it was resting on a stand, or hanging from a few bungie chords, and…

Source: X post

@dankvr I want vulkan, or at least a safer subset of it

@dankvr I want vulkan, or at least a safer subset of it

Source: X post

... and in an extremely ironic way, I bet you it would be easier to get most people over 40 to b

... and in an extremely ironic way, I bet you it would be easier to get most people over 40 to buy an HMD for their dog than it would be to get them to buy it for themselves. Like a $150 to $300 ish device you can put in a dog crate and they could be left for longer in their…

Source: X post

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent pro

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent problems I've always had with Ubiquitous AR, or the notion of daily-use AR glasses/goggles, is that physical reality is quite good by itself. If you introduce some high-tech thing to… https://x.com/rektmando/status/1690791720340873216

Source: X post

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent pro

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent problems I've always had with Ubiquitous AR, or the notion of daily-use AR glasses/goggles, is that physical reality is quite good by itself. If you introduce some high-tech thing to… https://x.com/rektmando/status/1690791720340873216

Source: X post

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent pro

I feel like the VR Metaverse in many ways is a solution to this and it's one of the inherent problems I've always had with Ubiquitous AR, or the notion of daily-use AR glasses/goggles, is that physical reality is quite good by itself. If you introduce some high-tech thing to… https://x.com/rektmando/status/1690791720340873216

Source: X post

“Huskies are high energy dogs that need constant play an exercise” they said…

“Huskies are high energy dogs that need constant play an exercise” they said…

My husky at least 16+ hours a day. They discovered the big bean bag with a pile of blankets and that was it. https://x.com/_rygo6/status/1690211243469176833/photo/1

Source: X post

@FreyaHolmer Come into VRC there are some Unity folk whom can talk with and lots of others vr de

@FreyaHolmer Come into VRC there are some Unity folk whom can talk with and lots of others vr devs who’ve discussed this a lot

Source: X post

@DyLhun headpat accessory already available here: https://giggletech.io/products/giggle_puck

@DyLhun headpat accessory already available here: https://giggletech.io/products/giggle_puck

Source: X post

@dankvr @auradeluxe Then the final boss to enter 'Ultra-Degen Mode':

@dankvr @auradeluxe Then the final boss to enter 'Ultra-Degen Mode':

--- Successfully partook in and finished "Enterprise Resource Planning" purely via "Phantom Sense"

I only know a few... a part of me is envious of the ability but also damn does that present a weird path for future generations :|

Source: X post

@auradeluxe Personally I’d add:

@auradeluxe Personally I’d add: “Owns and regularly uses the VR headset with full body tracking, in a custom avatar they’ve created, in a social platform, and has some kind of in-VR social life.”

The technology is only one part. The other part is the human-emotional-experience from virtual…

Source: X post

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

"The sex instinct will be eradicated. Procreation will be an annual formality like the renewal of a ration card. We shall abolish the orgasm. Our neurologists are at work upon it now. There will be no…

Source: X post

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

"The sex instinct will be eradicated. Procreation will be an annual formality like the renewal of a ration card. We shall abolish the orgasm. Our neurologists are at work upon it now. There will be no…

Source: X post

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

Any area/thing that demonizes and tries to suppress sexuality is a red flag: "The sex instinct will be eradicated. Procreation will be an annual formality like the renewal of a ration card. We shall abolish the orgasm. Our neurologists are at work upon it now. There will be no…

Source: X post

Any area/thing that demonizes and tries to suppress sexuality is a red flag:

Any area/thing that demonizes and tries to suppress sexuality is a red flag: "The sex instinct will be eradicated. Procreation will be an annual formality like the renewal of a ration card. We shall abolish the orgasm. Our neurologists are at work upon it now. There will be no…

Source: X post

The result of my linux distribution exploration on new computer:

The result of my linux distribution exploration on new computer:

- Turns out canonical is a weird company so I don't want to touch ubuntu no more. - Tried Debian unstable based on declarations that is basically the bleeding edge debian rolling release that just works with the…

Source: X post

@technobaboo @malekiRe Do you think it's possible to sandbox a native executable effectively eno

@technobaboo @malekiRe Do you think it's possible to sandbox a native executable effectively enough in linux that it could prevent malicious code? Foregoing some extenuating bug/hack that gets discovered in the future, but something that could be as secure as a VM, but with machine code. The subject of…

Source: X post

RGB lighting on computer parts annoys me so much. It's the ultimate symbolism of everything curr

RGB lighting on computer parts annoys me so much. It's the ultimate symbolism of everything currently wrong with computing. Compact a bunch of useless over-marketed features on a board with barely passable software to utilize them but then slap some flashing RGB lights on it and…

Source: X post

My new build… with two rgb rainbow ram sticks because I refuse to install terrible motherboard s

My new build… with two rgb rainbow ram sticks because I refuse to install terrible motherboard software. https://x.com/_rygo6/status/1689508073973661696/photo/1

Source: X post

@malekiRe What does nixos improve over arch for daily use?

@malekiRe What does nixos improve over arch for daily use?

Source: X post

@malekiRe well I do development and am interested in tinkering with some lower level graphics dr

@malekiRe well I do development and am interested in tinkering with some lower level graphics driver code too... nixos has something special over arch for that kind of stuff?

Source: X post

@malekiRe do you know much about sandboxing native client executables in a linux environment?

@malekiRe do you know much about sandboxing native client executables in a linux environment?

Source: X post

The UX of a terminal or command-line is far too unappreciated. Too many see it as something that

The UX of a terminal or command-line is far too unappreciated. Too many see it as something that only exists because someone has not yet made a GUI for it, but there are advantages to a terminal. Mainly it has to do with the amount of muscle memory and visual brain memory taken…

Source: X post

@technobaboo the git commands aren't spatial tho... I use a tree visualizer too for certain thin

@technobaboo the git commands aren't spatial tho... I use a tree visualizer too for certain things but for more complex git operations I'd be afraid to do it with anything but a terminal

Source: X post

@technobaboo something like deleting a portion of a file from an entire repo history, rewriting

@technobaboo something like deleting a portion of a file from an entire repo history, rewriting all commits, and force pushing

Source: X post

@technobaboo I think any single specific operation you could make more intuitive with UI, but th

@technobaboo I think any single specific operation you could make more intuitive with UI, but the thing is I was trying to point out is not that's it more intuitive, learning a command line and keyboard shortcut aren't intuitive, you have to read the manual. Rather its about the ratio of…

Source: X post

@rmccle FBT is more important that Face Tracking. I don't think this is a very hot take though..

@rmccle FBT is more important that Face Tracking. I don't think this is a very hot take though...

Source: X post

@nomolos96 Some way for people to join and talk to people in VR would be good. It's just people

@nomolos96 Some way for people to join and talk to people in VR would be good. It's just people on desktop/mobile haphazardly running around a world poor spatial awareness and no body language can be annoying/distracting to vr users.

Source: X post

I want to post a hot take about something but I don't know what. What should I post a hot take a

I want to post a hot take about something but I don't know what. What should I post a hot take about?

Source: X post

For running around VR worlds in shooters or games I'd prefer something like a skateboard deck, b

For running around VR worlds in shooters or games I'd prefer something like a skateboard deck, but circular, with the bushings setup so you can tilt it any direction. Basically like standing on top of a big thumbstick, but made to feel like a skateboard. Then you lean and tilt…

Source: X post

@AntonHand People should eat more vegetables and particularly raw vegetables. I don't think ther

@AntonHand People should eat more vegetables and particularly raw vegetables. I don't think there is a lot of hot takes about this... Hmm. Maybe we should take more direct action against those who participate in using known malevolent things in food production. I wouldn't be against it.

Source: X post

@SebAaltonen If you can, I'd be interested to see some simple code examples that demonstrate the

@SebAaltonen If you can, I'd be interested to see some simple code examples that demonstrate the ideal ways of maintaining cache coherence for some different designs / sets of data.

I get it generally and in some areas, but feel I could benefit from some more specific knowledge and examples

Source: X post

This person's work is the most interesting thing to me right now in the realm of computing and p

This person's work is the most interesting thing to me right now in the realm of computing and programming: https://justine.lol/

There is some real next-level brilliance happening there I haven't seen in a long time.

Source: X post

This person's work is the most interesting thing to me right now in the realm of computing and p

This person's work is the most interesting thing to me right now in the realm of computing and programming: https://justine.lol/

There is some real next-level brilliance happening there I haven't seen in a long time.

Source: X post

As much as I wish people would just `Buy The Damn Hardware And Put It On™` it is unfortunately v

As much as I wish people would just Buy The Damn Hardware And Put It On™ it is unfortunately very important that someone joining a Social VR platform on a mobile device is able to have some kind of good experience to create retention, to try and create some kind of pipeline…

Source: X post

I realize "Publicly Owned Company" is kind of a misnomer as more generally what that means is "C

I realize "Publicly Owned Company" is kind of a misnomer as more generally what that means is "Company Whose Entire Incentive Structure Is Setup To Appease The Billionaires Who Own The Majority". There is very little "Public" about it in the sense of "Public Service".

Source: X post

@cnlohr one of my rules for the new having to do OOP is don't break things out to a new class un

@cnlohr one of my rules for the new having to do OOP is don't break things out to a new class until that newly modularized code is being used more than one place

Source: X post

@alexqgb If you think you can pull off ski goggle form factor as being cool in a typical social

@alexqgb If you think you can pull off ski goggle form factor as being cool in a typical social settings you might be a hopelessly gone ultra-nerd. I'm sorry :) and no offense as I don some ultra-nerd attire in typical social settings but I have no fantasies about how it comes off

Source: X post

@zig131 Well of course most of the industry isn't catering to the ultra-nerd-dweeb crowd. The co

@zig131 Well of course most of the industry isn't catering to the ultra-nerd-dweeb crowd. The corporate and business sides of the XR industry want it to be hugely mainstream. I'd say most are ignoring the ultra-nerd-dweeb crowd more than they should. Which is more so why I wrote what I…

Source: X post

Me, circa 2010, after having just invented the Programmer Blinders. https://x.com/_rygo6/status/

Me, circa 2010, after having just invented the Programmer Blinders. https://x.com/_rygo6/status/1687340479065845760/photo/1

Source: X post

It's possible donning a face computer will always make you an ultra-nerd dweeb and the face comp

It's possible donning a face computer will always make you an ultra-nerd dweeb and the face computer industry can only survive by catering to the ultra-nerd dweeb crowd. Personally, I think this is more than 50% likely the case. Not much past 50% but if I had to put more bets on…

Source: X post

https://x.com/_rygo6/status/1687339888574889984/photo/1

https://x.com/_rygo6/status/1687339888574889984/photo/1

Source: X post

I still go through periodic crisii about which linux distribution I should use. I can never deci

I still go through periodic crisii about which linux distribution I should use. I can never decide which one I like best...

...and kind of feeling like arch is overrated. Starting to realize loud masses on the web that always talk about how great one option of anything is can be…

Source: X post

https://www.youtube.com/watch?v=-zRN7XLCRhc&t=1981s

https://www.youtube.com/watch?v=-zRN7XLCRhc&t=1981s This video of an ex-Sun employee talking about post-Oracle acquisition and how Sun engineers pushed for certain opensource licensing on their work to save their work from some unknown future apocalypse, like an oracle acquisition, then that ultimately…

Source: X post

https://www.youtube.com/watch?v=-zRN7XLCRhc&t=1981s

https://www.youtube.com/watch?v=-zRN7XLCRhc&t=1981s This video of an ex-Sun employee talking about post-Oracle acquisition and how Sun engineers pushed for certain opensource licensing on their work to save their work from some unknown future apocalypse, like an oracle acquisition, then that ultimately…

Source: X post

@SimonCropp oh damn you can script this? Is this whole script posted anywhere?

@SimonCropp oh damn you can script this? Is this whole script posted anywhere?

Source: X post

@JateLIVE @aollivier82 I'm pretty averse to and avoid most anything under the 'furry' label in r

@JateLIVE @aollivier82 I'm pretty averse to and avoid most anything under the 'furry' label in real life. Just in VR some of them make really good avatars...🤷‍♀️

My real-life pre-vr aesthetic and party / festival culture would be something like steampunk / madmax / burning man / hippie.

I wish that…

Source: X post

@yewnyx I could go to some therapy about my dark history with php... but sometimes its best to j

@yewnyx I could go to some therapy about my dark history with php... but sometimes its best to just leave some doors closed🫤

Source: X post

Often, I sit in VRChat bewildered by the weirdness of so many men, even manly men, preffering to

Often, I sit in VRChat bewildered by the weirdness of so many men, even manly men, preffering to present themselves as beautiful, graceful young women in VR, even when they seem to have zero interest in any sexual aspect of such avatars. Then I have to reflect on the fact that,…

Source: X post

@aollivier82 Big part of it is the Rexouium avatar base fit my body and matches my facial expres

@aollivier82 Big part of it is the Rexouium avatar base fit my body and matches my facial expressions better than anything else. A significant component with avatar selection has nothing to do with aesthetic and purely to do with how well it fits and matches your movement in full body…

Source: X post

@yewnyx but something just feels wrong about touching php.... :|

@yewnyx but something just feels wrong about touching php.... :|

Source: X post

so freal I want to make an old school forum for tech and vr discussion and stuff, whats the best

so freal I want to make an old school forum for tech and vr discussion and stuff, whats the best forum lib? I'd really like it not to be written in PHP or something super slow like ruby.....

Source: X post

I switched to using the keychron M1, a wired mouse, entirely plug n' play

I switched to using the keychron M1, a wired mouse, entirely plug n' play https://www.keychron.com/products/keychron-m1-mouse To which most may think "WIRED BLASPHEMY" but the wire on this mouse is so thin and so light that practically speaking I really can't tell the difference. Which is an interesting…

Source: X post

I still contend the Logitech MX Master series is by far the greatest mouse ever.

I still contend the Logitech MX Master series is by far the greatest mouse ever.

HOWEVER at some point in the last few years, or maybe it was version 3, they made it so that the forward button on the mx master mouse doesn't work unless you install the Logitech software. Which is…

Source: X post

new carbon based lifeforms album

new carbon based lifeforms album https://youtu.be/u_3m_JYOMV4

Source: X post

I used to not reply to job recruiters unless I was really interested in the job.

I used to not reply to job recruiters unless I was really interested in the job.

Now I reply to all of them saying I'm only interested in all remote work.

Source: X post

tfw your new toy arrives and your pretty sure this is the one that’s going to kill you… a skateb

tfw your new toy arrives and your pretty sure this is the one that’s going to kill you… a skateboard that goes 38mph https://x.com/_rygo6/status/1684609291599396864/photo/1

Source: X post

since this site is now X does that mean that these are now 'Xeets'

since this site is now X does that mean that these are now 'Xeets'

Source: X post

omg this is so cool its a bbs that you have to access through a terminal http://vert.synchro.net

omg this is so cool its a bbs that you have to access through a terminal http://vert.synchro.net/

Source: X post

@amaldorai @VowelHQ I think a lot about this... about how much remote work suffers because zoom

@amaldorai @VowelHQ I think a lot about this... about how much remote work suffers because zoom forces everyone into the grid and if you could walk around with your video stream on a quad and get spatial arrangement of call participants it'd probably make huge improvements to conversations, also…

Source: X post

@yewnyx What do you mean by leniency?

@yewnyx What do you mean by leniency?

It's odd to me to mix NFTs and Blokchain with 'Values' in a general sense. Humane, transparent etc. Because it's only a data storage scheme and in the context of blockchains the only thing that is innately added is the way distributed consensus…

Source: X post

@yewnyx I don't think things demonized by media necessarily deserve it as though media is some l

@yewnyx I don't think things demonized by media necessarily deserve it as though media is some legitimate arbiter of truth :) I know it's the way it is, but I also think an important part of the solution is people just turning off the media and realizing it's incentive is not truth, then…

Source: X post

@yewnyx I do generally agree with that when we get to certain contexts around some blockchain ef

@yewnyx I do generally agree with that when we get to certain contexts around some blockchain efforts. Certain things do carry an intent and them working is very questionable. Blockchain stuff does itself aim a certain direction, but I think what I was trying to communicate as my peeve…

Source: X post

what the fuck is this X in the upper left

what the fuck is this X in the upper left

Source: X post

There probably isn't any solution to the malevolent forces in the tech industry without a larger

There probably isn't any solution to the malevolent forces in the tech industry without a larger percentage of people getting used to running their own hardware and participating in the maintenance of services and networks. If the handling of a tech system is thrown over the…

Source: X post

omg no he didn't

omg no he didn't

Source: X post

@Maru_tweets @yewnyx It could be, I liked the idea of gitchain but so far Microsoft and GH haven

@Maru_tweets @yewnyx It could be, I liked the idea of gitchain but so far Microsoft and GH haven’t terribly pissed anyone off to make a push for it.

Source: X post

@Maru_tweets maybe the solution is I setup a good ol' BBS for VR stuff

@Maru_tweets maybe the solution is I setup a good ol' BBS for VR stuff

what was the best BB/forum backend?

Source: X post

@Maru_tweets I just found a newer one in rust, but it works like reddit. I kind of liked old for

@Maru_tweets I just found a newer one in rust, but it works like reddit. I kind of liked old forums though without any voting/liking mechanic though... https://github.com/LemmyNet/lemmy

Source: X post

I don't know if I can accept this renaming... it's not even a good name. At least Meta was a coo

I don't know if I can accept this renaming... it's not even a good name. At least Meta was a cooler name than Facebook.

Source: X post

honestly don't know if I can accept this X thing... thinking I want to migrate anyone interested

honestly don't know if I can accept this X thing... thinking I want to migrate anyone interested in talking into discord...

Source: X post

@amaldorai You weren’t allowed to put the word Taiwan on anything at Microsoft.

@amaldorai You weren’t allowed to put the word Taiwan on anything at Microsoft.

Source: X post

@gokulr Depends on what they did at each job they jumped between. Top talent can move between co

@gokulr Depends on what they did at each job they jumped between. Top talent can move between companies, projects and startups very easily, and it's often hard not to do this because all the company recruiters start to actively fight over you and keep convincing you to join them.

A…

Source: X post

I bought a few lbs of freeze-dried peaches thinking I'd be extra economical in my fruit consumpt

I bought a few lbs of freeze-dried peaches thinking I'd be extra economical in my fruit consumption, both with bulk cost being cheaper AND lowering overhead to ship me the fruit because it has no water, but turns out freeze dried peaches are so good, and deceptively shrunk down,…

Source: X post

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database rather than NFTs on the Solana Blockchain. Irrelevant of the backing technology they are still Digitally Scarce Virtual Trading Items. They are still micro-transaction monetization…

Source: X post

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database rather than NFTs on the Solana Blockchain. Irrelevant of the backing technology they are still Digitally Scarce Virtual Trading Items. They are still micro-transaction monetization…

Source: X post

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database

Digitally Scarce Virtual Trading Items don't become better if they are entries in a SQL Database rather than NFTs on the Solana Blockchain. Irrelevant of the backing technology they are still Digitally Scarce Virtual Trading Items. They are still micro-transaction monetization…

Source: X post

@CixLiv I know a handful of people I'd jump into a startup with in a minute even though we are a

@CixLiv I know a handful of people I'd jump into a startup with in a minute even though we are all on opposite sides of the globe. Absolutely sure we would do very well. Although we all have hung out in vrc quite a bit. I feel that fully remedied any hangup I had.

Source: X post

Seriously how would a Spatial Twitter function?

Seriously how would a Spatial Twitter function?

I keep thinking youd have a 2D grid and you put a tweet on it, then other people chain off that tweet, and start to construct kind of like tree structure you could navigate. Sorta like if you visualized git https://www.youtube.com/watch?v=Knwtc-hbsEE

Source: X post

@pvncher I can order one and ship it to you

@pvncher I can order one and ship it to you

Source: X post

My brain has read so much code that I can speed read and digest code faster than anything, so if

My brain has read so much code that I can speed read and digest code faster than anything, so if I come across a complex formula in mathematical notation my brain starts looking for the C code because parsing through mathematical notation is slower for me. I wish I could parse…

Source: X post

Me when I was younger: "This code I am writing is so amazing and is going to be the foundation o

Me when I was younger: "This code I am writing is so amazing and is going to be the foundation of awesome _____ and make me rich! I must keep it private and closed source to protect my genius!"

Me now: "Please someone take my code and do anything of use with it. I literally do…

Source: X post

Having fun was too much work, so we automated that as well.

Having fun was too much work, so we automated that as well.

Source: X post

Big fancy motherboards make a big deal about having more VRMs but comparing now a highend ITX vs

Big fancy motherboards make a big deal about having more VRMs but comparing now a highend ITX vs ATX I don't really see any difference in overclocking. Fewer VRMs run hotter but some marginal airflow fixes that and it doesn't seem to be an issue. More VRMs seems like marketing…

Source: X post

@pvncher tundra sells refurbished index parts

@pvncher tundra sells refurbished index parts https://tundra-labs.com/products/valve-index looks like they only have controllers right now though

$149 for lighthouses from steam directly is good https://store.steampowered.com/sub/354231/ vive website sells them for $200 new

Source: X post

@pvncher or no... can just get a whole kit refurbished

@pvncher or no... can just get a whole kit refurbished https://www.gamestop.com/pc-gaming/pc-gaming-controllers/products/valve-index-pc-virtual-reality-hmd-full-kit-refurbished-v003683-20/11205170.html

Source: X post

lions mane mushroom extract is pretty good, worth the try

lions mane mushroom extract is pretty good, worth the try

Source: X post

Ryan's Theory Of Social Media Resentment Retention:

Ryan's Theory Of Social Media Resentment Retention: "People enjoy hating any given Social Media site more than they like leaving the site, therefore even under the most dire of circumstances, most will not leave, but rather stay and complain."

Source: X post

https://williamkennedy.ninja/javascript/2022/05/03/in-defence-of-the-single-page-application/

https://williamkennedy.ninja/javascript/2022/05/03/in-defence-of-the-single-page-application/

Source: X post

@AntonHand My 20's I honestly feel would have turned out better if I spent a good few years deep

@AntonHand My 20's I honestly feel would have turned out better if I spent a good few years deep in VRChat. One's local bar/rave/festival/event/social scene can only offer so much opportunity and self-exploration, and if it's missing things you probably needed, well Woops you're outta luck.

Source: X post

With food we've made an explicit connection in people's minds between:

With food we've made an explicit connection in people's minds between: "Ease Of Use" = "Convenient" = "Fancy Box" = "Heavy Marketing" = "Processed" = "Unhealthy" We need to make the same kind of relation in people's minds about technology. Where technology that comes in a fancy…

Source: X post

This probably the most hopeful video I've seen about the future in a while... https://youtu.be/V

This probably the most hopeful video I've seen about the future in a while... https://youtu.be/Vg3gOFWfpck

Source: X post

@ryanjfleury @supahvee1234 @PIXELST0RM Oh damn… syntaxcell… shots fired. 😂

@ryanjfleury @supahvee1234 @PIXELST0RM Oh damn… syntaxcell… shots fired. 😂

Source: X post

@KazyEXE now remembering Hoskinson decided to go check his channel and this video is pretty good

@KazyEXE now remembering Hoskinson decided to go check his channel and this video is pretty good https://www.youtube.com/live/1zBZ-aGqldA?feature=share

Source: X post

@KazyEXE I think it's more an issue that the truly knowledgeable people are scientists and engin

@KazyEXE I think it's more an issue that the truly knowledgeable people are scientists and engineers' way too busy building the stuff to actually vlog/blog about it. They also tend to be deep low-level open-source engineer types that don't like media and attention. Although I just now…

Source: X post

In technology people are basically begging for, and worshiping, what is the tech equivalent of j

In technology people are basically begging for, and worshiping, what is the tech equivalent of junk food.

I say this knowing in the USA we do have an obesity epidemic but there are still places things are improving.

Source: X post

I feel like there is no good trustworthy voice out there that keeps tabs and vlogs/blogs about c

I feel like there is no good trustworthy voice out there that keeps tabs and vlogs/blogs about crypto or web3 stuff. The only few decent creators I know of pretty much do only technical analysis, no commentary or review of the state of the technology itself. All the rest shill.

Source: X post

@dankvr @BanklessHQ He looks better than others. Although I have reservations about people who c

@dankvr @BanklessHQ He looks better than others. Although I have reservations about people who conflate of 'NFT' with 'Digital Tradable Item'. Explaining and keep the two separate is one of the subjects I see as important in the space.

Source: X post

So much good energy is wasted running freshmen through coding hamster wheels to prepare for the

So much good energy is wasted running freshmen through coding hamster wheels to prepare for the “real” thing when they could just start hacking at, attempting, the “real” thing right off the get go. Produce something actually valuable and learn.

Source: X post

Fact you have programmers graduating with four to eight years of schooling, and no code produced

Fact you have programmers graduating with four to eight years of schooling, and no code produced that masses of people actually use always seemed a bit off to me.

Source: X post

CompSci degrees should be replaced with four to eight years of subsidized open source contributi

CompSci degrees should be replaced with four to eight years of subsidized open source contributions. Then a company just judges you based on open source contributions.

Source: X post

This Friday evening let's all take a moment to listen to Political Gandalf on the subject of Cor

This Friday evening let's all take a moment to listen to Political Gandalf on the subject of Corporations. https://youtu.be/5obtpWrFKjU

Source: X post

I still feel The Midnight Gospel is one of the best future visions. You live minimally and cheap

I still feel The Midnight Gospel is one of the best future visions. You live minimally and cheaply out in a tiny house in a more secluded area with a crazy good immersive VR setup. Everyone spends their day out in nature, wandering about the forest, gardening or whatever. Then in…

Source: X post

Feel like Beaue is Afraid is one of those movies everyone must watch. Not because it's exception

Feel like Beaue is Afraid is one of those movies everyone must watch. Not because it's exceptionally good... it's just a thing every person needs to share the experience of.

Best watched in a group and currently showing in VRC.

Source: X post

My husky has learned how to parrot "No" in howl form and whenever I give her any command without

My husky has learned how to parrot "No" in howl form and whenever I give her any command without a treat she now howls "No" and walks away until I get the treat.

Source: X post

@AntonHand "People stopped trying to fix problems and started just trying to outlive them" - tha

@AntonHand "People stopped trying to fix problems and started just trying to outlive them" - that line from RP1 always echoes in my head.

Although I think there is something deeper to this sense in that, linear narratives just can't feel as all encompassing in today's hyper-connected…

Source: X post

The fatal flaw of Ethereum may be that it does too much in a time where people *only* need to be

The fatal flaw of Ethereum may be that it does too much in a time where people *only* need to be getting familiar with the prospect of not relying on big international financial conglomerates for a digital identity, digital wallet and digital transactions...

Source: X post

@SplitScream I would contend that their is ultimately one goal and common vision, it's just when

@SplitScream I would contend that their is ultimately one goal and common vision, it's just when you get into the technical nitty gritty it gets so complex that few see the interrelation between the pieces and their significance, but it requires something from all three.

Source: X post

@michae1becker I don't know if I'd say I encounter resistance, more so I find a severe lacking o

@michae1becker I don't know if I'd say I encounter resistance, more so I find a severe lacking of recognition, discussion, exploration of it's intricacies and resulting strategy/action in response. Attempts have to remain uselessly surface-level. General attitude I find is of really not wanting…

Source: X post

...I don't know where or how it will come from. NOSTR I still like, but the whole thing has to s

...I don't know where or how it will come from. NOSTR I still like, but the whole thing has to start with a new digital identity solution.

Source: X post

Corporate XR People: "Why are you always talking about VRChat/SocialVR so much, don't you know t

Corporate XR People: "Why are you always talking about VRChat/SocialVR so much, don't you know this is hurting your credibility?"

VRChat People: "Why are you always talking about FOSS, crypto, and decentralization so much, don't you know this is hurting your credibility?"…

Source: X post

...and related, the fatal flaw of Bitcoin, and primarily-cash-chains, may be that it tries to do

...and related, the fatal flaw of Bitcoin, and primarily-cash-chains, may be that it tries to do too much in a time where people *only* need to be getting familiar with not needing the big international conglomerates for a digital identity...

Source: X post

If you've been feeling you need a new outside hobby, I highly recommend.

If you've been feeling you need a new outside hobby, I highly recommend.

Although have also learned that exway is probably the better brand than maxfind.

I can easily see these new all-integrated-in-the-tires-and-board ultra-slim li-ion skateboards getting quite popular.

Source: X post

I bought this thing on a whim to help train the husky in land mushing:

I bought this thing on a whim to help train the husky in land mushing: https://www.maxfind.com/products/electric-skateboard-ff-plus I was not expecting how entertaining a slim, electric, all-terrain, long board is. It easily goes over any terrain. Can ride it anywhere. I imagine a hoverboard isn't far off from this.

Source: X post

Anyone I know build and/or research anything related to latency in voice audio streams?

Anyone I know build and/or research anything related to latency in voice audio streams?

Is WebRTC something that can enable audio streaming with the lowest latency possible? Or do you need to get lower level and rely on some other protocol?

Source: X post

@amaldorai This is one component of a social vr app which if done right I think could garner goo

@amaldorai This is one component of a social vr app which if done right I think could garner good market share. Especially if synchronization of music streams between clients could be improved so what people heard at e-concerts was actually in sync. Most have gotten used to so much latency.

Source: X post

@amaldorai There really is no reason an RPi4 should not be able to support a vibrant gaming and

@amaldorai There really is no reason an RPi4 should not be able to support a vibrant gaming and tech economy, it's faster than what any consumer had in the 00's, and what most had in the early 10's. Just all the industry presumed moore's law is a good thing to rely on, so they did.

Source: X post

@amaldorai the big two I see:

@amaldorai the big two I see:

industry adopting a 'computers are cheaper than programmers' mentality and nearly all software, year after year, compounding ever more slower and slower code

planned obsolescence intentionally making new OSs and software slower to justify newer hardware

Source: X post

@amaldorai Personally, I think there is a tech renaissance waiting to happen for the non-ultra-r

@amaldorai Personally, I think there is a tech renaissance waiting to happen for the non-ultra-rich tech-bubbles if some company, somehow, doubled down on hyper optimized development practices so their OS, games, platform, whatever could run on the new, really fast, really cheap, SoCs.

Source: X post

When hunting down the solution to some deep obscure issue with an unity shader, the sight of the

When hunting down the solution to some deep obscure issue with an unity shader, the sight of the lettuce eating snail signals the oasis is near.

Source: X post

...to make transactions go faster and to enable more transactions. Also, during this time, the L

...to make transactions go faster and to enable more transactions. Also, during this time, the Lightning Network for Bitcoin was being developed. There were two potential routes from this. We end up with a multi-chain economy, where people jump between BTC, LTC, Doge etc...

Source: X post

...to block throughput. It's more dependent on the potential rewards to be gained in relation to

...to block throughput. It's more dependent on the potential rewards to be gained in relation to the compute power of the rest of the network. If any given chain has 10 trillion in value secured on it, it will probably draw comparable compute power to get at the mining...

Source: X post

...the notion of, maybe the way bitcoin worked was the only way all along? This also plays into

...the notion of, maybe the way bitcoin worked was the only way all along? This also plays into dynamic with proof of stake where, does keeping a network as open to public maintenance as possible give it some kind of competitive advantage? There is threat that Proof of Stake...

Source: X post

...the creation of ever more efficient x86 chips. As making an x86 chip more efficient is the be

...the creation of ever more efficient x86 chips. As making an x86 chip more efficient is the best way to increase mining profit. So, the general computing industry benefits from the mining cash flow from Monero by creating more market demand for more efficient chips. This is...

Source: X post

...The blockchain should not be storing individual -anything- in a block, transactions or other.

...The blockchain should not be storing individual -anything- in a block, transactions or other. A blockchain should only be engaged when the distributed consensus is absolutely necessary. In the grand scheme we don't actually need a blockchain with high throughput, we only...

Source: X post

...the Bitcoin blockchain can come to support everything. Despite many proclaiming it's far too

...the Bitcoin blockchain can come to support everything. Despite many proclaiming it's far too slow to be of anything substantial at a global scale, they misunderstood that a blockchain is not a database, it only needs to be a check-in point for when absolute security...

Source: X post

...specialized Monero mining chips competing with x86 chips, and it's possible specialized moner

...specialized Monero mining chips competing with x86 chips, and it's possible specialized monero chips could flood out general purpose x86 CPUs, turning monero into ASIC arms race just like BTC or LTC. Which isn't apocalyptic to it, just kind of unfortunate, and presents the...

Source: X post

...rewards that can come from that. Whether it processes blocks at __ faster rate is really irre

...rewards that can come from that. Whether it processes blocks at __ faster rate is really irrelevant, especially when blocks are decoupled from single transactions. All that matters is that the distributed consensus mechanism is absolutely secure. So far, the BTC blockchain is.

Source: X post

...or any blockchain, shouldn't be the bottleneck for throughput of single transactions. I find

...or any blockchain, shouldn't be the bottleneck for throughput of single transactions. I find it common for people to still not understand what a blockchain is, referring to it as some kind of database or making comparisons to other use cases running on databases. Which a...

Source: X post

...on consensus is necessary, and many things can be compacted into that single consensus checkp

...on consensus is necessary, and many things can be compacted into that single consensus checkpoint. It's also the case that in the long run, things like LTC, Doge, BTC Cash etc. may not turn out to use less energy than Bitcoin. As energy consumption is not explicitly tied...

Source: X post

...network could just be in vain. Personally, I think Monero's logic was the correct logic but t

...network could just be in vain. Personally, I think Monero's logic was the correct logic but the only way to know for sure is to let it play out at the macro level in the chaos of actual reality and actually work. So, we'll see, but it still looks to be going Okay.

Source: X post

...need a blockchain with absolutely perfect security. As there are so many ways to compact more

...need a blockchain with absolutely perfect security. As there are so many ways to compact more and more data to be validated into single blocks. Lightning Network's approach is one but this can also be combined and stacked with other approaches. It is entirely plausible that...

Source: X post

Monero had a great intent in its design where it's mining algorithm was designed in a way that x

Monero had a great intent in its design where it's mining algorithm was designed in a way that x86 CPUs are still the best chips to use. So right now, even with an AMD or Intel CPU a generation or two old, you can use it to mine Monero and earn. In all the noise about...

Source: X post

...maintainable. This was one of the intents of Bitcoin. This was also partly the intent of Ethe

...maintainable. This was one of the intents of Bitcoin. This was also partly the intent of Ethereum. But the networks got taken over by specialized mining shops, which is not apocalyptic, but is outside the initial intent. So Monero came up with the idea of designing the...

Source: X post

It's wild to think that a Raspberry Pi is now faster than most computers I have used through my

It's wild to think that a Raspberry Pi is now faster than most computers I have used through my entire professional career but yet for reasons a Raspberry Pi is not a viable professional workstation.

Source: X post

...initially funky to me. But so far, it's been working just fine and once I understood more abo

...initially funky to me. But so far, it's been working just fine and once I understood more about it, I can see how it has a few other benefits like helping to make transactions more private. It's also an approach that made more sense to me the more I understood. As Bitcoin...

Source: X post

...hashing algorithm so that plain ol' consumer x86 CPUs would be the most optimized for it. On

...hashing algorithm so that plain ol' consumer x86 CPUs would be the most optimized for it. On the premise this opens the door, and lowers the barrier entry, for more people to participate in the maintenance of the network. It also creates a dynamic where mining incentivizes...

Source: X post

...crypto, actually good things like this rarely make it through and few even understand what it

...crypto, actually good things like this rarely make it through and few even understand what it means or why it's good. A point of cryptocurrency is the premise that, if society is to have a currency that heavily affects it, this currency needs to be open source and publicly...

Source: X post

...can end up with too great of a consolidation of power around those who wield the Stake and th

...can end up with too great of a consolidation of power around those who wield the Stake and the chain becomes subject to disrupting levels of corruption. This may not happen, at which point Monero's effort on having such a low barrier to entry for participation in the...

Source: X post

...blockchain can be used kind-of-like a database, but it fundamentally is not a database. A blo

...blockchain can be used kind-of-like a database, but it fundamentally is not a database. A blockchain is a distributed consensus mechanism, and really, it's involvement should be as absolutely minimal as possible ONLY to determine distributed consensus. Lightning Network...

Source: X post

Bitcoin vs Litecoin vs Dogecoin vs Bitcoin Cash vs Dash vs any other proof-of-work no-smart-cont

Bitcoin vs Litecoin vs Dogecoin vs Bitcoin Cash vs Dash vs any other proof-of-work no-smart-contract cryptocurrency has been an interesting experiment playing out. As initially the Bitcoin alternatives were strongly motivated by making a more efficient chain. To reduce energy...

Source: X post

...better plays on this view than multiple proof-of-work chains as it only comes to touch the bi

...better plays on this view than multiple proof-of-work chains as it only comes to touch the bitcoin blockchain once it needs to settle consensus for potentially a multitude of transactions. This is ultimately the more appropriate design for anything blockchain related...

Source: X post

...based on whichever one has the least traffic. OR we have ONLY Bitcoin but rely on something l

...based on whichever one has the least traffic. OR we have ONLY Bitcoin but rely on something like the Lightning Network to scale and make it energy efficient at scale. I had many reservations about the Lightning Network for a long time, as it works in a way that seemed...

Source: X post

...a great idea, probably one of the best ideas in crypto since Bitcoin itself IMO. But it is of

...a great idea, probably one of the best ideas in crypto since Bitcoin itself IMO. But it is of course subject to many unpredictable macro elements. First being, can the Monero chain remain resistant to specialized hardware? It may not be able to. Already there are some...

Source: X post

...would definitely make more people avoid glyphosate if it were shown that's real cause. Though

...would definitely make more people avoid glyphosate if it were shown that's real cause. Thought I'd share for any other "Gluten Intolerant" person whose reaction isn't so bad you can experiment. Try a baked good from an 100% organic source, see if your reaction is just as bad.

Source: X post

...wonder if the push of 'Gluten Intolerance' was some kind of diversionary tactic of Monsanto a

...wonder if the push of 'Gluten Intolerance' was some kind of diversionary tactic of Monsanto as saying X percentage develop serious health issues to a natural wheat protein makes it far less scary than saying X percentage develop serious health issues from glyphosate. Which...

Source: X post

This is a random video about rollerblading youtube recommended me, but after watching, I found i

This is a random video about rollerblading youtube recommended me, but after watching, I found it interesting to relate it to the XR industry and the various ways it could go. https://youtu.be/xVB6ef9JWSk

Source: X post

...probable to me that my supposed "Gluten Intolerance" of nearly 20 years is actually a Glyphos

...probable to me that my supposed "Gluten Intolerance" of nearly 20 years is actually a Glyphosate Intolerance. A chemical that many other more developed nations have already banned. Makes me wonder for how many other people might this also be the case? Also has made me...

Source: X post

...nearly 20 years now. Periodically in past few years I decided to eat a gluten item again just

...nearly 20 years now. Periodically in past few years I decided to eat a gluten item again just to see and noticed some of the time I didn't get a reaction, or a very a minimal one. So, I started to periodically eat more gluten items, once a week, noting that I didn't get a...

Source: X post

...I finished high school? Well, I've found from a few sources now, here is one https://www.ncbi

...I finished high school? Well, I've found from a few sources now, here is one https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3945755/, that after 2004 is the year that the prevalence of glyphosate on wheat shot up exponentially. Also, organic wheat is not supposed to use glyphosate. So, it's looking quite...

Source: X post

...bad reaction from wheat items which were entirely organic. I've discovered my gluten intolera

...bad reaction from wheat items which were entirely organic. I've discovered my gluten intolerance I don't think has anything to do with gluten. I was looking up what is the difference between organic and non-organic wheat, then also what happened to wheat a few years after...

Source: X post

A few years after I graduated from high school I developed chronic migraines for some unknown re

A few years after I graduated from high school I developed chronic migraines for some unknown reason. Thankfully after lots of trial and error I came to discover that avoiding gluten solved the issue. Gluten seemed to cause an allergic-like reaction. I have avoided gluten for...

Source: X post

Thinking about making a new kind of Twitter... but spatial... working name is Spitter.

Thinking about making a new kind of Twitter... but spatial... working name is Spitter.

Also been thinking about a new kind of Zoom... but also spatial... working name is Spoom.

Source: X post

it annoy me so much i have to install the logitech software to make the forward button work on t

it annoy me so much i have to install the logitech software to make the forward button work on their mice that I think I need to switch to a new mouse brand

Source: X post

@amaldorai Haven't thought about that but pondering now... I'd attribute visual presence of othe

@amaldorai Haven't thought about that but pondering now... I'd attribute visual presence of others as a greater incentive towards synchronous interaction than spatial layout of content. If you see a group of people hovering around something and go over, you're likely to talk to those people

Source: X post

a dog is the best alarm clock

a dog is the best alarm clock

Source: X post

@yewnyx I like the idea of a chain that uses less electricity and also doesn’t require specializ

@yewnyx I like the idea of a chain that uses less electricity and also doesn’t require specialized ASICS. Monero I like bettter from first principles. But Bitcoin doesn’t explicitly have environmental issues. It depends. It’d be fixed if cost of electricity included all externalities.

Source: X post

@yewnyx But even in places of the world where cost externalities isn’t accounted for in electric

@yewnyx But even in places of the world where cost externalities isn’t accounted for in electricity, it’s a far less concerning externality to me than the externalities of USD. So I feel if BTC can be the one, then so be it, can solve its problems as we go.

Source: X post

...upon those with the most efficacy and power to operate something in physical reality managing

...upon those with the most efficacy and power to operate something in physical reality managing to continue to do so. But with bitcoin and proof of stake the arms race doesn't benefit from security centers, and armed forces, military etc. You can't just invade a nation and...

Source: X post

...somehow overtake the bitcoin blockchain. The bitcoin blockchain makes an arms race dependent

...somehow overtake the bitcoin blockchain. The bitcoin blockchain makes an arms race dependent purely on the efficiency of energy production and efficiency of asic chips. That is the only way to "Take Over" such a blockchain. Of course a nation could bomb another nations...

Source: X post

...people and invasion doesn't directly translate into takeover of the whole economic holdings o

...people and invasion doesn't directly translate into takeover of the whole economic holdings of a country. The world would be very different if that incentive were removed from the most fundamental level of our economic foundation.

Source: X post

In all the game theory of Proof of Stake and Proof of Whatever blockchains, the simple elegance

In all the game theory of Proof of Stake and Proof of Whatever blockchains, the simple elegance of bitcoin and Proof of Work shouldn't be overlooked. In that it's security depends simply upon who has the most energy with the most efficient chips. That it comes to depend on an...

Source: X post

...hard objective quality of physical reality. Many don't like that for various reasons, and wan

...hard objective quality of physical reality. Many don't like that for various reasons, and want to abstract it away to who holds, has staked, X amount or someone abstract not-dependent-on-physical-reality constant. The thing I think with that is, no matter you do the it has...

Source: X post

...bitcoin mining centers but that wouldn't cause the other nation to lose their holdings, just

...bitcoin mining centers but that wouldn't cause the other nation to lose their holdings, just slow down their mining. It's a very interesting and radical change of incentivizes amongst the way the world and current Military Industrial Complexes function in that killing...

Source: X post

...always the gatekeepers. This is in a way similar to what the current fiat system is. Current

...always the gatekeepers. This is in a way similar to what the current fiat system is. Current banks have databases housed in data centers, with security to protect the datacenter, in countries with military to protect invasion by other countries. Already fiat is dependent...

Source: X post

...a dependency on physical reality. The chain needs computers functioning and maintained. No ma

...a dependency on physical reality. The chain needs computers functioning and maintained. No matter what you do, it's existence and maintenance depends on those whom are most capable of managing the necessary things in physical reality. Who run the servers are ultimately...

Source: X post

@tunguz This is happened with untiy devs. So many game devs of the old days were paranoid unity

@tunguz This is happened with untiy devs. So many game devs of the old days were paranoid unity would kill low-level game dev jobs, but it turns out so many amateurs produced so much bad code with unity that people who really knew stuff became so in-demand and could make even more money.

Source: X post

There's much to criticize with bitcoin and crypto but when someone's criticisms defaults back to

There's much to criticize with bitcoin and crypto but when someone's criticisms defaults back to everyone just keep supporting USD, all associated with that and economic status quo. It's hard to take the criticism seriously as it's more so bootlicking than it is anything else.

Source: X post

Honestly wish companies would take foot tracking more seriously... imagine how much more product

Honestly wish companies would take foot tracking more seriously... imagine how much more productive you could be by doing work while laying on your back in your bean bag and using all four limbs to manipulate things. https://x.com/fabio914/status/1675656832251994112

Source: X post

Face scan submitted for beyond.

Face scan submitted for beyond.

Source: X post

...what goes into the Twitter backend API and servers, so how could they understand what's diffe

...what goes into the Twitter backend API and servers, so how could they understand what's different about BlueSky or Damus? So, they register to most people as exactly the same thing, except Twitter has more users. It's like someone not understanding how a hamburger is made...

Source: X post

@tunguz I'd be willing to wager that the number of employed senior, or higher, software engineer

@tunguz I'd be willing to wager that the number of employed senior, or higher, software engineer titles will increase in the US in 5 years.

You MIGHT see some low level 'developer' titles reduced but the demand for people who can deeply understand systems and codebases will increase...

Source: X post

@tunguz ...I can also see a route where demand for every title goes up, especially senior. As pe

@tunguz ...I can also see a route where demand for every title goes up, especially senior. As people will think AI lowers the bar for "Developer" so they'll hire more who will auto-generate lots of crap, making those who do understand even more in-demand and able to charge even more.

Source: X post

...to everything really occurring, what things really are, when they use any technology. The mos

...to everything really occurring, what things really are, when they use any technology. The most egregious form of this is many people can't tell the difference between a fake antivirus software scam popping up in a webview vs their real antivirus software. But I've been...

Source: X post

...society just cannot turn out good because people then have ZERO capacity for individual discr

...society just cannot turn out good because people then have ZERO capacity for individual discretion. They are completely at the whims of whatever marketing style they're most susceptible to. Like what if with food people literally couldn't the comprehend the difference...

Source: X post

...so if you present them an impossible vegan burger, something completely different, they don't

...so if you present them an impossible vegan burger, something completely different, they don't understand enough of either to even begin to understand these are different things. I think analogy pretty directly applicable here, that yes, people understand so little about the...

Source: X post

...realizing there is a form of that same dynamic that has crossover with BlueSky and Damus. Whe

...realizing there is a form of that same dynamic that has crossover with BlueSky and Damus. Where these apps are presented, and they look like Twitter, so many people cannot comprehend what about them is significant in comparison to Twitter. Because they don't even understand...

Source: X post

...need to put in the effort to understand it all one layer deeper so you really understand what

...need to put in the effort to understand it all one layer deeper so you really understand what you're supporting, what the pros and cons are associated with your consumer decisions. Tech cannot be predominately dictated by absolute pure surface level marketing to naive masses.

Source: X post

...meat and synthetic meat, or a vegetable and some synthetic substance, or whatever, because th

...meat and synthetic meat, or a vegetable and some synthetic substance, or whatever, because they understood so little about everything behind it that as long as it appeared roughly the same they saw them as the same because that's as deep as their understanding would go. The...

Source: X post

...learning about in recent decades, and paying attention to ingredients, and farming practices

...learning about in recent decades, and paying attention to ingredients, and farming practices more so because it's obvious if you eat bad things you're going to have a bad time. So people started to put in the effort. I think this same thing needs to happen with tech. You...

Source: X post

I feel like we're going to have a pretty bad future unless somehow "Tech Competency Education" b

I feel like we're going to have a pretty bad future unless somehow "Tech Competency Education" becomes common. Right now, the tendency in tech is to make it so easy, abstract away, obfuscate away, so much of what is happening on the backside, so people remain completely naive...

Source: X post

...food industry would probably become pretty messed up due to consumer choice. In many ways esp

...food industry would probably become pretty messed up due to consumer choice. In many ways especially in the US it already is because many people are far to un-educated about food, but I also think food is something that a higher percentage of people have put effort into...

Source: X post

...backing and inner workings of tech services that as long as the surface of it, the UI, appear

...backing and inner workings of tech services that as long as the surface of it, the UI, appears roughly the same, they literally can't comprehend the difference. Not that I care about BlueSky or Damus, but I'm realizing this extreme level of naivete about technology in...

Source: X post

Whenever I hear "__ Big Tech Corp has X __ errors and Rust would prevent this" it makes me want

Whenever I hear "__ Big Tech Corp has X __ errors and Rust would prevent this" it makes me want to run from Rust and any company using it on that argument. Because the fundamental issue of Big Tech producing bad software are the processes of the corporation. Presenting a...

Source: X post

...the denigration of the craft and art of programming so it can be more easily pushed into an a

...the denigration of the craft and art of programming so it can be more easily pushed into an assembly line production process. This has been going on for decades, over and over. Certainly, some tools have helped some things. Java enabled some corporations to make more ground...

Source: X post

...software has been written in C and C++ for decades. Writing stable good C code isn't random R

...software has been written in C and C++ for decades. Writing stable good C code isn't random Russian Roulet. Certain companies and engineers are more capable of doing it than others. Those qualities which make those companies capable of producing good, stable, C code...

Source: X post

seriously when is movie n chill going to release silo ep 9 the wait is killing me

seriously when is movie n chill going to release silo ep 9 the wait is killing me

Source: X post

...Rather than a bunch of safety code rails in software and auditing checkpoints, I'd rather soc

...Rather than a bunch of safety code rails in software and auditing checkpoints, I'd rather social organization and incentives be changed so someone taking an extra few days, or even few weeks, to really read deep dive into a system and develop a deep sense of comfort and...

Source: X post

...on certain types of code in certain conditions. But there is a reason myself, and many, evade

...on certain types of code in certain conditions. But there is a reason myself, and many, evade working on java codebases and predominately java companies like the plague. It's not because I hate java. It's because there is something wrong with the companies that needed java...

Source: X post

...of software company needs that, developing certain types of software, in certain ways. All of

...of software company needs that, developing certain types of software, in certain ways. All of which are certain conditions I would avoid if I had the choice. Which this isn't to say Rust is bad, just that argument is bad. You shouldn't participate in the corporate push for...

Source: X post

@malekiRe ...to say I wouldn't work on a Rust codebase, nor avoid Rust. But I would avoid the co

@malekiRe ...to say I wouldn't work on a Rust codebase, nor avoid Rust. But I would avoid the companies that seem to absolutely need Rust to exist just the same as I'd avoid companies that seem to absolutely need Java, or Javascript, etc. A good engineering culture can manage a C codebase.

Source: X post

@malekiRe ...the big corp process, not the language. At this point, I don't see codebases as pur

@malekiRe ...the big corp process, not the language. At this point, I don't see codebases as pure tech in isolation, they're results of a surrounding culture which I have to exist in. To me "Better" is the kind of company culture/process which can maintain an ideal C codebase. This isnt...

Source: X post

@malekiRe Making things better is generally good but memory safety isn't high on all lists, nor

@malekiRe Making things better is generally good but memory safety isn't high on all lists, nor even on all lists. Memory Safe C solutions have come and gone over the years with varying adoption, as it wasn't a universal problem needing a solution. Some have been just fine on C or CPP...

Source: X post

@malekiRe language features are a more convincing argument to me than memory safety

@malekiRe language features are a more convincing argument to me than memory safety

Source: X post

@malekiRe ...Companies that struggled with memory safety migrated onto Java or something like th

@malekiRe ...Companies that struggled with memory safety migrated onto Java or something like that in the past decades. Unless they needed the perf, so they tried to Big-Corp-Process a C++ codebase, and that's where I see the objective cries for Rust come from. I think the problem was...

Source: X post

..."Maintainable", i.e. has a greater pool of people to hire from so you can be easily replaced.

..."Maintainable", i.e. has a greater pool of people to hire from so you can be easily replaced. Corporations don't push these things because they have the best interests of programmers and customers at heart. It's weird, I see so many forget a lot of great, highly stable...

Source: X post

...familiarity with it is a non-issue. A similar impulse of corporations also drove much adoptio

...familiarity with it is a non-issue. A similar impulse of corporations also drove much adoption of Java. It was the question of "How do we make programmers more interchangeable and like generic resources of an assembly line?" Well, write Java! So your code is "Safe" and...

Source: X post

...every 50 feet!" It's like... ya... that would solve that problem but it's not quite solving t

...every 50 feet!" It's like... ya... that would solve that problem but it's not quite solving the problem I want to be solved. I'd rather social organization and incentives change so someone being able to take a 20 minute break whenever they really need to is a non-issue...

Source: X post

@cnlohr so many complain about submodules but I think people should just learn to get comfortabl

@cnlohr so many complain about submodules but I think people should just learn to get comfortable with submodules... yes it takes a few new habits beyond basic git but its just another marginal step of learning git and it makes some things easier

Source: X post

@cnlohr ... so many are like "OoOoH NoOoO I've spent all month learning git NO WAY I can spend a

@cnlohr ... so many are like "OoOoH NoOoO I've spent all month learning git NO WAY I can spend another few weeks to get comfortable with submodules! That's the cutoff of my tolerance in learning a new system!".... just learn the damn submodules >:|

Source: X post

@cnlohr although this is only the case if the repo is nicely prepared for easy submoduling... ot

@cnlohr although this is only the case if the repo is nicely prepared for easy submoduling... otherwise I'll just copy it in whole

Source: X post

...change of tools to what is a deeper issue of social organization and social incentive sounds

...change of tools to what is a deeper issue of social organization and social incentive sounds terrible to me. It makes me think of hearing something like "__ Amazon employees must pee in random bottles X amount of times on the job" then Amazon is like "Let's put in toilets...

Source: X post

...are still desirable qualities even if they wrote everything in Rust. It's in this way, a comp

...are still desirable qualities even if they wrote everything in Rust. It's in this way, a company declaring it NEEDS Rust to write good code is a HUGE RED FLAG TO RUN LIKE ALL HELL. It's like saying you need Java to write good maintainable code. You don't. A certain type...

Source: X post

...A good company, with a good engineering culture, with good engineers can develop and maintain

...A good company, with a good engineering culture, with good engineers can develop and maintain a C codebase just fine. Many have been doing it for decades. The qualities and habits they exhibit are the good ones in the software industry.

Source: X post

...VRChat is its own novel creative culture. It just happened the cosplayers and furrys had the

...VRChat is its own novel creative culture. It just happened the cosplayers and furrys had the most overlap with gaming culture, and VR, and existing "costuming" creative spaces, so they seeded a lot of the initial avatars and content, and I expect "The Metaverse" to forever...

Source: X post

...This is one thing which I think the external optics of VRChat confuses many people on. Most p

...This is one thing which I think the external optics of VRChat confuses many people on. Most people I know in anime avatars have never cosplayed, many of them don't even like anime. Most I know in furry avatars have no interest in participating in "The Fandom" in any form...

Source: X post

@technobaboo @CixLiv what do you think about the notion of an avatar as an app

@technobaboo @CixLiv what do you think about the notion of an avatar as an app

Source: X post

@technobaboo @CixLiv There will be a lot permission dialogs :) Id expect manageable solutions to

@technobaboo @CixLiv There will be a lot permission dialogs :) Id expect manageable solutions to evolve as its explored more, but the notion that the entire "3D User-Made Interop-ing Spatial Social" paradigm in XR all runs in a single Unity process, or any single process, is kind of horrifying to me

Source: X post

@technobaboo @CixLiv Somehow you need allow/deny functionality to control what state other peopl

@technobaboo @CixLiv Somehow you need allow/deny functionality to control what state other people can alter on yourself and your experience. Not all state to be affected can be baked-in from the beginning, and you wouldn't want to leave open everything people could come up with.

Source: X post

@technobaboo @CixLiv In my view, this is the critical piece of the puzzle of the XR OS puzzle. T

@technobaboo @CixLiv In my view, this is the critical piece of the puzzle of the XR OS puzzle. The ability of an avatar to be a real app. The ability for pieces of streamed-in 3D content to be real apps. For "World" to be synonymous to "3D Desktop" where processes with 3D form can exist and interop.

Source: X post

@technobaboo @CixLiv I can respect 'Curated Trusted E-Tribe' mentality as that is how VRC Shader

@technobaboo @CixLiv I can respect 'Curated Trusted E-Tribe' mentality as that is how VRC ShaderDev manages exist and it can work to a certain degree. I just can't see that being the final scalable approach. The safety permissions in VRC is bad but so is being crashed over and over in terrible ways

Source: X post

@technobaboo @CixLiv Don't you think being able to program anything on one's own avatar and body

@technobaboo @CixLiv Don't you think being able to program anything on one's own avatar and body would be quite the killer functionality?

Source: X post

@technobaboo @CixLiv and the thing I've been more focused on is not just 'sandboxing' for crashi

@technobaboo @CixLiv and the thing I've been more focused on is not just 'sandboxing' for crashing, but for performance, how do you prevent someone's very poorly optimized content from tanking FPS of the entire runtime, so only the bad content runs slow, even in trusted spaces that's still an issue

Source: X post

...into it and have creating their own mutation, evolution, of furry anime style with more gothi

...into it and have creating their own mutation, evolution, of furry anime style with more gothic and/or punk. This will keep happening. More creative cultures will pool into and mix. This is one of the most exciting things about VRC to me, because it will become hybrid of...

Source: X post

I liked it better 10-ish years ago when the discussion about what is economically scamming socie

I liked it better 10-ish years ago when the discussion about what is economically scamming society was "Wall Street and The Fed". "Monkey Jpeg Casinos" becoming synonymous with "Economic Scam" at the forefront of everyones mind seems like quite the diversionary downgrade.

Source: X post

I feel as the Social VR paradigm grows we all need to make one thing clear. Being in a furry ava

I feel as the Social VR paradigm grows we all need to make one thing clear. Being in a furry avatar does not make one a "Furry", in the same sense being an anime avatar does not make one a Weaboo. Some people just like the avatar, it fits well, and it's nothing more than that...

Source: X post

...have an Anime/Furry "tint" to everything because of this, it was the original 3D memes. But I

...have an Anime/Furry "tint" to everything because of this, it was the original 3D memes. But I expect more creative cultures to come into it over the years as it spreads. Already this happening. I have some friends from gothic and punk cultures that somehow found their way...

Source: X post

...every radically expressive subculture, festival culture, music culture etc. all melted and mi

...every radically expressive subculture, festival culture, music culture etc. all melted and mixed together and mutated into something novel that none of it could have ever turned into in isolation by itself.

Source: X post

@AdamPaigge @technobaboo @CixLiv whats this, who do I talk to?

@AdamPaigge @technobaboo @CixLiv whats this, who do I talk to?

Source: X post

@CixLiv We def need people to pursue an open-source XR specific OS with certain things baked int

@CixLiv We def need people to pursue an open-source XR specific OS with certain things baked into the shell which are central to XR. This has been my slow-burn side-focus/side-project past few years, but I find it impossible to convince corporate or investors it's necessary to fund...

Source: X post

@BattleAxeVR I’ve been saying this long time too…

@BattleAxeVR I’ve been saying this long time too…

Source: X post

@yacineMTB ...say that as one who Rugged Individualism'ed their way into any job, company or pro

@yacineMTB ...say that as one who Rugged Individualism'ed their way into any job, company or project I ever wanted, making as much money as I ever wanted. Once I proved myself to myself, had nothing else to do, I had to confront the fact that the real limiters of society are systemic.

Source: X post

@yacineMTB Making steps towards self-improvement is always good... but in the US at least, ya...

@yacineMTB Making steps towards self-improvement is always good... but in the US at least, ya... corporations are a big problem. They proactively work to the detriment of general well-being and are a main cause of societal dysfunction. Rugged individualism won't fix this problem. And I...

Source: X post

...passwords for all the pages too. Sort of like a browser password keeper, but it doesn't actua

...passwords for all the pages too. Sort of like a browser password keeper, but it doesn't actually keep any passwords and wouldn't need to sync to any server to work across devices, it would programmatically derive unique passwords off the seed phrase and the url of the site.

Source: X post

@JCorvinusVR You'd need some fancy AI driven CV. I was expecting Apple to do this because if you

@JCorvinusVR You'd need some fancy AI driven CV. I was expecting Apple to do this because if your anti-anime-furry-avatars and pro-real-atars it seems the obvious way to get body presence into VR. But you know... have to spend lot of time in FBT to realize the importance in the first place.

Source: X post

If you used CV to cutout a person's real body and overlay that on VR content it'd probably be si

If you used CV to cutout a person's real body and overlay that on VR content it'd probably be significant in mitigating VR sickness for people.

Source: X post

I was just thinking I'd be very happy if some crypto wallet let me login to everything rather th

I was just thinking I'd be very happy if some crypto wallet let me login to everything rather than needing to make a new account or pipe FB/Google into it... which made me think you could do that already if the wallet used the seed phrase to generate...

Source: X post

@0xNerevar this sounds promising, where do I get this??

@0xNerevar this sounds promising, where do I get this??

Source: X post

Once when I started a new job, as a coworker was helping me get setup, I opened git bash to clon

Once when I started a new job, as a coworker was helping me get setup, I opened git bash to clone the repo, then opened vim to edit some things to which they stated, "Oh I see you are a man of taste as well".

Despite anyone's reasons, this is ultimately why you use bash and vim.

Source: X post

*Me blabbing about VRC endlessly in a professional context*

*Me blabbing about VRC endlessly in a professional context*

Professional Contact: "Oh cool. Let's go in VRC sometime."

Me: "Hmm. Well. You see. Hmmm. See there's some things that... ugh. When your trapped in quarantine for 2 years with only VR... Hm. Let me make a new account."

Source: X post

@KazyEXE I do

@KazyEXE I do

Source: X post

@JCorvinusVR Well, it's not me I worry about... it's the various random other 500 people on my f

@JCorvinusVR Well, it's not me I worry about... it's the various random other 500 people on my friends list I don't remember adding and often when one randomly joins it can be very questionable to say the least. Definitely needs context which I don't want to explain.

Source: X post

...it's just like... ya you can show up to a new job un-showered, in tattered blue jeans, and a

...it's just like... ya you can show up to a new job un-showered, in tattered blue jeans, and a free t-shirt, poorly greet everyone, and no one will really say anything nor terribly hold it against you, but some will always remember.

Source: X post

...I'm joking, but also not entirely joking.

...I'm joking, but also not entirely joking.

Source: X post

...you take this into account the "Portability" aspect of XR hardware loses value, and actually

...you take this into account the "Portability" aspect of XR hardware loses value, and actually becomes counterintuitive to its value as a creator device, as the more portable your PC is probably the worse the cost/performance ratio it is. So in the Smartphone 2D social context..

Source: X post

...when it comes content consumption "Portable" I don't think is as important either, people are

...when it comes content consumption "Portable" I don't think is as important either, people aren't going to be randomly putting on XR HMDs at restaurants or chilling at parties or parks to get a content consumption fix. So when we come to XR 3D Social Paradigm the "Portable"...

Source: X post

...through, they just presumed "Portable is good because Portable", they missed that actually th

...through, they just presumed "Portable is good because Portable", they missed that actually there were very objective tangible reasons why portable was not only preferable, but an absolute necessity for 2D Social Media. It wasnt a simple subjective preference. I think the...

Source: X post

...thoughts from anywhere. But when we come to making content for a Social XR paradigm the "Port

...thoughts from anywhere. But when we come to making content for a Social XR paradigm the "Portability" aspect of it is not as important because the content isn't photos. It's 3D models and code. If we switch to Social XR content, all of a sudden the "Portability" aspect...

Source: X post

...they spend money on they are going to want to ensure its not a purely recreational for-fun pu

...they spend money on they are going to want to ensure its not a purely recreational for-fun purchase but can help in their efforts as a creator. That incentivizes towards desktop PC hardware and professional 3D creator applications. This is why I tend to think the PC...

Source: X post

...that increase their cost are actually the future of XR that people will gravitate towards mor

...that increase their cost are actually the future of XR that people will gravitate towards more and more as they get into XR and get pulled into the Social, and inevitably, creator side of things. Because the desktop box is the best creator device for the 3D Social XR...

Source: X post

...struggle at making top-tier 3D content and code. It's for this reason that as XR proliferates

...struggle at making top-tier 3D content and code. It's for this reason that as XR proliferates more this decade, and people start getting absorbed into Social XR paradigms, start trying to be creators, and participate, they are going gravitate away from portable as whatever...

Source: X post

..."Portable" was absolute necessity for content creation, and really ideal for content consumpt

..."Portable" was absolute necessity for content creation, and really ideal for content consumption. But in XR 3D social paradigm "Portable" is not an absolute necessity for content creation and is inversely correlated to what is an absolute necessity for content creation, and...

Source: X post

...photos for instagram, or for snapchatting. Also being able to tweet or post text-only FB mess

...photos for instagram, or for snapchatting. Also being able to tweet or post text-only FB messages from anywhere was also a critical component of it being a superior creator device. If you wanted to participate in the killer social apps Instagram, twitter, FB, even Youtube...

Source: X post

Part of the reason a smartphone became so pervasively popular, along with the 'killer social app

Part of the reason a smartphone became so pervasively popular, along with the 'killer social apps', is because the smartphone was simultaneously the best creator device for those killer social apps. The portable high-quality camera on the smartphone was the device to take...

Source: X post

...paradigm, just the same as the portable smartphone with high-end camera was the best creator

...paradigm, just the same as the portable smartphone with high-end camera was the best creator device for the 2D social paradigm. The ideal creator devices are complete opposites between those two paradigms, that's why I don't think XR will follow the same patterns. Companies...

Source: X post

...or whatever, a high-end smartphone was the best choice. This is something I think many are mi

...or whatever, a high-end smartphone was the best choice. This is something I think many are missing about the XR space, in that, not only will the XR device being ideal for a "Killer Social XR App" make or break the device, but the XR device being ideal for creating content...

Source: X post

...is where the whole "Portability" aspect of a Smartphone gets more complicated than I think mo

...is where the whole "Portability" aspect of a Smartphone gets more complicated than I think most realize, as in the paradigm 2D Social Media, a portable camera on your portable smartphone was HUGELY valuable, because obviously you want to take pictures anywhere or post random..

Source: X post

...is not a thing of the past, but it's going to garner more interest the more 3D Social XR prol

...is not a thing of the past, but it's going to garner more interest the more 3D Social XR proliferates. As there are more creators needing the horsepower to do 3D creation. Really expensive all portable devices will be seen as optional luxuries, whereas the workhorse...

Source: X post

...is not a dire necessity for the creation of content. What is a dire necessity is having as mu

...is not a dire necessity for the creation of content. What is a dire necessity is having as much CPU + GPU horsepower as possible, being able to run Blender, Unity, Substance, Zbrush etc. etc. Basically a full desktop PC is the ultimate creation device for Social XR. So when...

Source: X post

...is far far far less important than it was for 2D Social Smartphone paradigm, and the more por

...is far far far less important than it was for 2D Social Smartphone paradigm, and the more portable you are the more detrimental it can be to what is important. Now my somewhat contrarian hot take, which seems to be my theme these days, is device creators didn't think this...

Source: X post

If you said to someone, "Every App, Tool and piece of Media/Content on your desktop needs to run

If you said to someone, "Every App, Tool and piece of Media/Content on your desktop needs to run in the same process to get maximal performance", you'd get raised eyebrows. However, in the context of "3D Spatial Apps/Tools/Media/Content" this is still how most devs are thinking.

Source: X post

...hardware will be a desktop box with as much horsepower for as cheap as possible that can run

...hardware will be a desktop box with as much horsepower for as cheap as possible that can run the professional creation software, and a headset that can optionally plug into it. This is why I think headsets that plug into computers and don't have much extra functionality...

Source: X post

...for that killer social XR app will also make or break the device. If a Social XR paradigm get

...for that killer social XR app will also make or break the device. If a Social XR paradigm gets rolling and people are making good money off of it, people will naturally want the device that holds the greater potential for them to somehow participate in it as creators. This...

Source: X post

feel like someone needs to make a new tribes that actually plays like tribes 1 played... that tu

feel like someone needs to make a new tribes that actually plays like tribes 1 played... that turned into kind of a lost genre

Source: X post

...desire for "Portable" in XR just sort runs off that momentum, that habit of thinking which wa

...desire for "Portable" in XR just sort runs off that momentum, that habit of thinking which was made by Smartphones and 2D Social Media. But once someone Deep Dives into XR and gets into Social VR and creating content and all of that, the more portable the setup the more you...

Source: X post

...are following Smartphone 2D playbooks, but XR isn't that. It's different. Very different and

...are following Smartphone 2D playbooks, but XR isn't that. It's different. Very different and in some ways is a polar opposite.

Source: X post

@amaldorai ...weight on what best enables people to create interactivity, in that context 3D sca

@amaldorai ...weight on what best enables people to create interactivity, in that context 3D scans can be useful but it's just one potential tool some people might use for certain aesthetic. The visible surface of things I see as a completely tertiary quality in relation to interactivity...

Source: X post

@amaldorai ...this is another thing I think is polar opposite in 2D Smartphone Social Paradigm v

@amaldorai ...this is another thing I think is polar opposite in 2D Smartphone Social Paradigm vs 3D XR Social Paradigm. In 2D, perfectly capturing static photos, or linear videos, was central and critical. In 3D XR content being nonlinear, nonstatic and interactive is central and critical.

Source: X post

@amaldorai I have a lot of thoughts on this, but I don't want to write you phd thesis in tweets

@amaldorai I have a lot of thoughts on this, but I don't want to write you phd thesis in tweets :)

Source: X post

@amaldorai 3D scan worlds do garner a good amount of interest in VRC but in terms of engagement,

@amaldorai 3D scan worlds do garner a good amount of interest in VRC but in terms of engagement, static 3D scans completely take a backset to interactivity. I think you can clearly observe right now, the more interactive something is, the more engagement it gets in VRC, so I put more...

Source: X post

Scorn is in my must play list of games, and if you don't think you'll ever play it, now you can

Scorn is in my must play list of games, and if you don't think you'll ever play it, now you can watch this nice 4k playthrough https://www.youtube.com/watch?v=3H_ayWPssuc

Source: X post

Ya creators need to realize going along with platforms means you should give up on it being a wa

Ya creators need to realize going along with platforms means you should give up on it being a way to make living. Platforms don’t share the same incentives as creators. Art needs to innately be intertwined with some kind of economic protest and protest against platforms. https://x.com/AbelowRob/status/1672243611088605184

Source: X post

Without Social Media smartphones would never have become as integrated and pervasive in society

Without Social Media smartphones would never have become as integrated and pervasive in society as they are.

Same will be true for XR. The right "Social App" that is uniquely enhanced with an HMD is what will drive mass integration.

This is my biggest hangup with AVP. It...

Source: X post

...with the phone cam. Those apps just couldn't work as well with anything other than a smartpho

...with the phone cam. Those apps just couldn't work as well with anything other than a smartphone. This is what you need for XR. A social app which just can't work as well with other device categories and VRChat is in the most ideal position for this in the 20-40 age range...

Source: X post

...uniquely valuable aspect of XR, that being, capture and replication of full body presence to

...uniquely valuable aspect of XR, that being, capture and replication of full body presence to scale in shared spaces. Further it has no statement on the Twitter, Snapchat, TikTok, OkCupid, Instagram equivalent of Social Media in an XR context. That's really the category...

Source: X post

...social apps. Whats of great volatility to Apple is the specifics of what exactly makes a 'Kil

...social apps. Whats of great volatility to Apple is the specifics of what exactly makes a 'Killer XR Social App' I don't think they have any idea and could end up designing the device to not be the best at supporting what VRC uncovered as the fundamentals of a social XR app...

Source: X post

So I made the "Official" Unity VRChat group but never really did much with it because my prior a

So I made the "Official" Unity VRChat group but never really did much with it because my prior attempt to corral unity from the internal slack into vrchat regularly was rather discouraging... but I now have this group and am wondering, maybe should do something with it? ...

Source: X post

@Safari_Monkey Oh okay I set them to be open

@Safari_Monkey Oh okay I set them to be open

Source: X post

...reign forever, but if no other player did enter the space, they are the only thing aimed at c

...reign forever, but if no other player did enter the space, they are the only thing aimed at continually compounding network effects of the ideal age range into a social app which XR HMDs uniquely improve. If I didn't think other players would enter space, I would go...

Source: X post

...of killer social app that drove mass scale integration into society. iMessage and Zoom weren'

...of killer social app that drove mass scale integration into society. iMessage and Zoom weren't the driving force of smartphones. In a way Facebook wasn't either as that was before Smartphones. I'd point more at Instagram, Snapchat and Twitter being the ones that...

Source: X post

...of a smartphone based on whether or not the smartphone supported those apps. Yes VRChat is th

...of a smartphone based on whether or not the smartphone supported those apps. Yes VRChat is the only thing poised to carry that role for XR HMDs right now. Its the only social app compounding network effects in the 20-40 age demographic that is uniquely made better by an HMD...

Source: X post

@JCorvinusVR I think could do it with rider plugins?

@JCorvinusVR I think could do it with rider plugins?

Source: X post

... I've kind of given up on getting the corporate side of VR to go into VRChat, but maybe the g

... I've kind of given up on getting the corporate side of VR to go into VRChat, but maybe the group could be used for community centered meetup? Like a "just come and chat about VR or XR" that is kind of unity related but not explicitly.

Source: X post

...its in so many ways a repeat of the smartphone era, while Apple was building the iPhone, face

...its in so many ways a repeat of the smartphone era, while Apple was building the iPhone, facebook was building Facebook. Then what came to be was people primarily used iPhones for Facebook, or the subsequent social apps that came, but Apple had no ownership of the...

Source: X post

...I wish we could get data on this, but I know we can't, but I'm so sure of this I'd go ALL IN

...I wish we could get data on this, but I know we can't, but I'm so sure of this I'd go ALL IN on this bet. That by end of 2024 if you tallied up the number of Quest 3s sold vs AVPs sold, Q3s will out number AVPs by multiple folds and VRChat will be a primary app of those users.

Source: X post

...has ZERO real competition. I think it's inevitable that some new player will enter the space,

...has ZERO real competition. I think it's inevitable that some new player will enter the space, that properly paid attention to, and studied vrchat, and will be able to completely leap frog vrchat in an evolution of the use case VRC stumbled into. So I don't think VRC will...

Source: X post

...figured out social app designs which really catered to a smartphone and sucked masses of peop

...figured out social app designs which really catered to a smartphone and sucked masses of people into it. The way the apps worked were uniquely conducive to fitting in with new ways that people used smartphones in their life. Tweeting short random thoughts. Snapping photos...

Source: X post

...doesn't really have any statement on the social use case. Synthetic 3D scans of people floati

...doesn't really have any statement on the social use case. Synthetic 3D scans of people floating in volumetric windows is not really an upgrade. Could easily be seen as a downgrade from an actual HD webcam stream of someone. It unfortunately doesn't leverage the most...

Source: X post

...but as good VRChat is, there are so many ways to come up with a full evolution over what has

...but as good VRChat is, there are so many ways to come up with a full evolution over what has been learned from VRChat. Unfortunately so few people in the industry dug deep into VRChat to even understand what it figured out, what of it works and why, that VRChat still...

Source: X post

@birdmademejoin I think there's already vrc prefabs meetup for that? I kind of want to evade giv

@birdmademejoin I think there's already vrc prefabs meetup for that? I kind of want to evade giving people unity advice because I'm actually a really terrible technical mentor. I'm pretty sure I've scared more people away from programming then I've made interested in it.

Source: X post

...all in on VRChat consolidating the vast majority of people who use XR HMDs into it and dictat

...all in on VRChat consolidating the vast majority of people who use XR HMDs into it and dictating what hardware succeeds and fails. In the same way Snapchat, Instagram, TikTok, Twitter sucked so many smartphone users into them and could dictate the success of failure of...

Source: X post

Actually I know what I am going to do, I am going to host and moderate group discussions. Who wa

Actually I know what I am going to do, I am going to host and moderate group discussions. Who wants to be in on this? Send me a DM and I can add you to the unity group if you want to join

Source: X post

...who wants to go pitch this to winnebago or whoever I already got too many ideas and need my V

...who wants to go pitch this to winnebago or whoever I already got too many ideas and need my VR van stat.

Source: X post

...to then I'd expect people to downsize. I'm still in a 1-bedroom apartment and am planning to

...to then I'd expect people to downsize. I'm still in a 1-bedroom apartment and am planning to move to a 300 sq foot studio because I literally don't use the other bedroom. After that, why not go in a van and make it all portable? VR vans I can definitely see being...

Source: X post

...this where very obnoxious bugs have existed in windows for years, decades, probably just beca

...this where very obnoxious bugs have existed in windows for years, decades, probably just because no one know how to fix them. I suspect there will be some major incident in our lifetime due to this, where a whole section of some industry just breaks and they can't figure...

Source: X post

...something because you have all these RV makers currently catering to elderly and boomers prim

...something because you have all these RV makers currently catering to elderly and boomers primarily, and they're going to have to find a way to appeal to zoomers and younger that grew up in VR, so why not VR vans? Also since buying a house gets harder for each generation...

Source: X post

...rely upon. I also can't break the sense that this issue is going to get kicked into overdrive

...rely upon. I also can't break the sense that this issue is going to get kicked into overdrive next few decades due to AI and hacking. Where AI will be used to find sweeping vulnerabilities and issues in fundamental systems that human hackers long missed, but human engineers...

Source: X post

...out how to fix it for years, if ever. After which it will become of great importance that eit

...out how to fix it for years, if ever. After which it will become of great importance that either through government subsidizing it or universities baking it into their comp programs, we always have enough people well versed in every layer of the technological systems we...

Source: X post

One of my big anxieties about tech is a 'Complexipocalyopse'... a very poor term I just invented

One of my big anxieties about tech is a 'Complexipocalyopse'... a very poor term I just invented... but refers to technology becoming so complex from layers being stacked upon layer upon layer that people, or too few people, even remember how some layer functions to fix major...

Source: X post

My dream pad would be a sprinter van with integrated steamvr lighthouses, integrated cubby where

My dream pad would be a sprinter van with integrated steamvr lighthouses, integrated cubby where a few ITX computer builds could go, with watercooling and wiring integrated into the van too, then enough room for the big joe xxl fuf. Would be perfect. If VR goes as I expect it...

Source: X post

...like there are far more people who can write a react app than debug a major issue deep in the

...like there are far more people who can write a react app than debug a major issue deep in the linux kernel or C compiler. Realistically you could just end up with too few people to deal with major low level issue. I think Windows Kernel and Microsoft is already encountering...

Source: X post

...issue should something arise in it. Tech and software are far more vulnerable to this than I

...issue should something arise in it. Tech and software are far more vulnerable to this than I think we've yet to encounter. The stacking of incredibly complex tech on top of other tech is something that's really only started compounding the past few decades due to chips...

Source: X post

I still hold it's only a matter of time before people get used to, and discover, that lounging o

I still hold it's only a matter of time before people get used to, and discover, that lounging on a bean bag while flying through INFINTIE space in VR is far better than having to physically walk through FINITE space in AR.

People optimize to do the most as lazily as possible.

Source: X post

https://www.youtube.com/watch?v=smG7BIeIpOA

https://www.youtube.com/watch?v=smG7BIeIpOA

Source: X post

...getting so fast that they can just deal with running so much crap. We're about to get a whole

...getting so fast that they can just deal with running so much crap. We're about to get a whole bunch more of AI generated crap no one even understands layered on top. It's even more concerning because deep low level engineering work is not as incentivized in the market...

Source: X post

chatgpt is very good at making regex statements

chatgpt is very good at making regex statements

Source: X post

...can't even comprehend how to fix. Certain foundational systems, like widely used VMs or libra

...can't even comprehend how to fix. Certain foundational systems, like widely used VMs or libraries, or drivers, too complex with too few engineers to appropriately respond, will have major security exploits found in them via AI and much industry disrupted because of it.

Source: X post

@birdmademejoin My playspace is the big joe xxl fuf

@birdmademejoin My playspace is the big joe xxl fuf

Source: X post

@JCorvinusVR The only way around it is you don't let such massive global rank-and-file hierarchi

@JCorvinusVR The only way around it is you don't let such massive global rank-and-file hierarchies form to the scale the largest ones have. Writing everything open source is probably one of the best strategies that has evolved but dealing with whats already entrenched is more complex.

Source: X post

@JCorvinusVR in big tech it's extremely rare that anything useful, let alone innovative, actuall

@JCorvinusVR in big tech it's extremely rare that anything useful, let alone innovative, actually makes it out most disheartening thing is, your sold on the notion it's where the great things are happening, but the vast majority is a graveyard of rugpulled projects and burned out aspirations

Source: X post

@bobbydigitales I've struggled through becoming proficient in numerous VCSs. Most any surface le

@bobbydigitales I've struggled through becoming proficient in numerous VCSs. Most any surface level "Pro" to entice you into switching will eventually get balanced out with cons once you dig in more

I now just use GIT LFS for everything. Yes, it has cons, but all points compared, still prefer

Source: X post

@JustineTunney How secure do you think this is? Is it secure enough to rely on to execute unsafe

@JustineTunney How secure do you think this is? Is it secure enough to rely on to execute unsafe applications on a client?

Source: X post

...to condition people into that so they can utilize them just to make number go up, it's a nove

...to condition people into that so they can utilize them just to make number go up, it's a novel unique kind of evil that I don't think society has fully specifically identified, put a word to, and given it the severe scorn and action it deserves to rid of society of it.

Source: X post

...thought or question of the who what where and why. I know there's much overlap between Billio

...thought or question of the who what where and why. I know there's much overlap between Billionaire and those trying to condition people into being mindless corpo drones. But really the dude just sitting with some millions in a bank isn't doing much harm in comparison to...

Source: X post

...this but forget it, but it's reminding that human psychology can't be healthy if a human has

...this but forget it, but it's reminding that human psychology can't be healthy if a human has no contact and interaction with other humans, and I think this applies to interaction with other intelligent mammals too. A human needs to have regular social interaction with...

Source: X post

...the corporate process which demands people be kind of depressed, hopeless, fearful, not filly

...the corporate process which demands people be kind of depressed, hopeless, fearful, not filly self-actualized. So that they are more malleable, controllable, have greater anxiety and paranoia about dissent or not explicitly following all orders. Those who feed on trying...

Source: X post

...non-human intelligent mammals to have a healthy psychology. Groups of humans left entirely to

...non-human intelligent mammals to have a healthy psychology. Groups of humans left entirely to themselves, without non-human mammals intermixed in their social dynamic just kind of compound themselves into human thought constructs and lose touch with the fact reality...

Source: X post

@JustineTunney Is this something that can work with a C application? The site linked looks to be

@JustineTunney Is this something that can work with a C application? The site linked looks to be a python example?

Source: X post

Getting a husky was probably the best decision I've made in years. Definitely recommend getting

Getting a husky was probably the best decision I've made in years. Definitely recommend getting a Doge. So many small hard to explain reasons why, but humans have cohabitated with canines for 14,000 years at least. Longer than civilization. There's a reason for that. I knew...

Source: X post

...exists and functions, and is actually fully navigable, without any human construct. Having to

...exists and functions, and is actually fully navigable, without any human construct. Having to interact and communicate with a non-human mammal regularly will keep your mind constantly aware of that and help keep your mind from getting sucked into the traps of human construct.

Source: X post

Billionaires and people who simply have a lot of money don't bother me much at all in comparison

Billionaires and people who simply have a lot of money don't bother me much at all in comparison to people who create mass hierarchal corporate processes to condition agency out of people to make them become mindless executors of rank-and-file profit demands with no critical...

Source: X post

...Also makes me realize the modern world making it harder for people to keep dogs that still ha

...Also makes me realize the modern world making it harder for people to keep dogs that still have some wolf instinct, or any animal that requires constant social interaction, is just another way the modern world pushes people into a place with greater chance of mental issues.

Source: X post

@yewnyx I don't think safety is so much an illusion, rather when you're doing unsafe things C vs

@yewnyx I don't think safety is so much an illusion, rather when you're doing unsafe things C vs C#, I think it's now ultimately harder in C#.

Source: X post

Talking to people from other countries in VRC about how their government works and how their soc

Talking to people from other countries in VRC about how their government works and how their society deals with issues is always such a slap in the face. People in the US generally don’t even realize how dysfunctional and not-normal the US is compared to more developed nations.

Source: X post

...or are cycles of great widespread violence just part human nature, or even nature itself. Jus

...or are cycles of great widespread violence just part human nature, or even nature itself. Just something we have to go through periodically. Part of the process of how human nature and human sociology functions.

Source: X post

Humanity has gone through cycle after cycle of great widespread violence. War or internal strife

Humanity has gone through cycle after cycle of great widespread violence. War or internal strife in a nation. I often wonder, are we past that? Do we now understand some 'thing' that all of human history failed to understand and can we evade a cycle of great widespread violence?

Source: X post

...Unsafe Native features as it's a long run about to end up in the same territory as C but mult

...Unsafe Native features as it's a long run about to end up in the same territory as C but multitudes more complex and difficult to manage.

The moral of the story. Everything should have just been in C.

Source: X post

@pvncher Facial computing… it’s like the next evolution of a book, but for your face. Maybe it s

@pvncher Facial computing… it’s like the next evolution of a book, but for your face. Maybe it should be called a Face Book

Source: X post

It's harder to program C# without memory leaks than it is C.

It's harder to program C# without memory leaks than it is C.

Yes, I know C# has GC and cleans it up for you, but if you were to program without leaking alloc every cycle for perf, it's easier to do in C than C#.

It's in this ironic way that I think it's easier to write...

Source: X post

...C as performant as possible compared to writing C# as performant as possible.

...C as performant as possible compared to writing C# as performant as possible.

It's especially harder when you're having to mix new Unsafe C# features, with Unity NativeContainer features, with all the olf typical C# features. It's ironic that C# is now steering back to...

Source: X post

...What is compounding Network Effects within an HMD for a Social Use Case right now? What will

...What is compounding Network Effects within an HMD for a Social Use Case right now? What will be doing so by the end of the year? What will be more capable of compounding Network Effects through 2024?

Source: X post

...to comparable integration with society. The thing about the Social Use Case, which I highligh

...to comparable integration with society. The thing about the Social Use Case, which I highlighted before, the starting point doesn't matter. Only whether or not it's compounding Network Effects. That's it. With this, time is of the essence. 2 years of Network Effects is the...

Source: X post

...the starting point didn't matter. All that mattered is it started to compound Network Effects

...the starting point didn't matter. All that mattered is it started to compound Network Effects then everything would keep rolling and evolving off that to turn it into what it needed to become. However many people didn't really internalize this transition. The whole...

Source: X post

...The social apps were the killer apps of killer apps. But it wasn't a single app, it was a who

...The social apps were the killer apps of killer apps. But it wasn't a single app, it was a whole use case. "Web 2.0" generally as it was called. Enable social interaction, culture and community to somehow develop and that would get you by far the biggest number of users...

Source: X post

...Social "Web 2.0" thing never fully clicked for some. As such they were still kind of stuck in

...Social "Web 2.0" thing never fully clicked for some. As such they were still kind of stuck in a 90's "Killer App" mentality thinking Thinking the Spreadsheet of XR is what'll do it. It won't. It's the Social Use Case and only the Social Use Case that can carry an XR HMD...

Source: X post

In the 90's all the rage with tech was the "Killer App" as it was a common folklore how Spreadsh

In the 90's all the rage with tech was the "Killer App" as it was a common folklore how Spreadsheets catapulted the PC to the dominance it has today. Everyone would always argue about what the "Killer App" of any given device would be. Then in the 00's something became clear...

Source: X post

...difference between "YouTube" as some unknown crappy video startup and "YouTube" as a standard

...difference between "YouTube" as some unknown crappy video startup and "YouTube" as a standardized cultural phenomena with a monopoly on that specific category. Not compounding Network Effects for 2 years can be a death sentence. So the question to ask right now in XR is...

Source: X post

...and the greatest market share. The "Social" paradigm shift showed the only thing that matters

...and the greatest market share. The "Social" paradigm shift showed the only thing that matters is Network Effects. You can have something as shitty as Javascript but with enough Network Effects it will propel it to evolve into Google V8, into WASM, to who knows what...

Source: X post

@amaldorai @pentothalic Behold the VR drinking device. Built in straw and single finger loop to

@amaldorai @pentothalic Behold the VR drinking device. Built in straw and single finger loop to be holdable with the index controller. With your choice of horses or epic wolves. https://a.co/d/hjqaE4B

Source: X post

...this I don't mean Big Tech "Does their thing" and then dumps $10 million on some big Pop Star

...this I don't mean Big Tech "Does their thing" and then dumps $10 million on some big Pop Star name to put them front and center of it. That's still not Big Tech "getting the fuck over itself". That's Big Tech just doing it's the same thing and not really understanding...

Source: X post

The struggle that all of tech will have with XR is that they are good at making products which a

The struggle that all of tech will have with XR is that they are good at making products which are accessories to your life. However, they aren't good at making your life. Your daily lived experience. People don't revolve their life around weekend events put on by Big Tech...

Source: X post

...The other industry that has much valuable instinct developed in this space is the festival an

...The other industry that has much valuable instinct developed in this space is the festival and music industry. Those who design completely immersive real-life experiences that become an entire self-absorbing identity. Something like Burning Man is what most know of but even...

Source: X post

...People don't build their wardrobe and style, their visual self-language, out of Big Tech prod

...People don't build their wardrobe and style, their visual self-language, out of Big Tech products. People don't spend their free off-time hanging out in apartments explicitly curated and controlled by Big Tech. But this is the realm these companies enter with XR. Not only...

Source: X post

...Not just their clothes, but their whole body. It's a domain Tech has never ventured into. Not

...Not just their clothes, but their whole body. It's a domain Tech has never ventured into. Not being an accessory, but literally -Being- a person's reality, social life and body. There are other industries which have better instinct, integration, into this aspect of people's...

Source: X post

...no way you're going to get mainstream up take of people accepting things as their daily worn

...no way you're going to get mainstream up take of people accepting things as their daily worn clothing, their free-time home hangout space, their weekend social life, their whole body, their means of sexual expression if its steeped in the typical "Big Tech Vibe". It has met...

Source: X post

...lives, the one that comes to the forefront of my mind is the fashion industry. Clothing brand

...lives, the one that comes to the forefront of my mind is the fashion industry. Clothing brands which actually portray a specific style, a specific aesthetic, something people be, and wear, as their identity in everyday life to attract, detract, shape their social lives...

Source: X post

...just the owner of your local no-name dive indie bar I would actually put more faith in them t

...just the owner of your local no-name dive indie bar I would actually put more faith in them than I would big tech in being able to create a social space which people orient their whole weekend social lives around and take on as part of their identity. I think this...

Source: X post

...it's match and I believe the next wave of XR "stuff" that will break through to the next evol

...it's match and I believe the next wave of XR "stuff" that will break through to the next evolution that is actually integrated into society will not be those who run with what has been the flow and vibe for the prior decades, but those who run a completely tangential direction

Source: X post

...It needs to be a company that actually gets down and dirty. Exists interwoven and a part of t

...It needs to be a company that actually gets down and dirty. Exists interwoven and a part of the communities. Does not seal itself in some ivory tower looking at spreadsheets and analytics, trying to pull the "Profit Levers" from afar. But engages in real community building...

Source: X post

...is going to be the biggest barrier, the biggest struggle, for the Big Tech Industry that ofte

...is going to be the biggest barrier, the biggest struggle, for the Big Tech Industry that often likes to act so Elitist, have so much Hubris, think it itself So So Important, and Up High. That the companies which will really be able to make virtual spaces, virtual identities...

Source: X post

...instincts which have long propelled them to Multi-Billion-Value status just aren't going to f

...instincts which have long propelled them to Multi-Billion-Value status just aren't going to function the same inside an HMD. That you need to almost do a 180 in instinct. Start taking cues from the fashion industry. The music industry. Local creative indie art scenes. By...

Source: X post

...in the way a local indie musician starts a following, or some rave event producer in a city s

...in the way a local indie musician starts a following, or some rave event producer in a city starts a following, or even how a Church maintains a community. The whole "Big Tech Vibe" that makes the vast majority of people hate all associated has to be shed. Because there is...

Source: X post

@herval I've built Apple's eye control scheme more than once in the past for device headsets and

@herval I've built Apple's eye control scheme more than once in the past for device headsets and prototype devices. It's not hard. The hard thing is getting thousands of people run through user testing to fine tune it and objectively prove this is something a majority can easily use.

Source: X post

...does it have the potential to explicitly control, and change, an entire person's environment,

...does it have the potential to explicitly control, and change, an entire person's environment, their home hangout space. It can also be their whole weekend social life of bars, music shows, going out etc. It can be their entire wardrobe, their style...

Source: X post

...aspects of people's virtual lives. Become as central to whom people are as a favorite clothin

...aspects of people's virtual lives. Become as central to whom people are as a favorite clothing brand, artist or musician. It's the Tech Companies who simply can get the fuck over themselves that they aren't some Elite Lords and they've entered a new domain in which the...

Source: X post

...The more direct literal equivalent of this in a 3D social context is the avatar. What someone

...The more direct literal equivalent of this in a 3D social context is the avatar. What someone will use to represent themselves in the larger, more open, social spaces across the web as they move across it. The company that will end up with comparable market leverage to...

Source: X post

The Lie We Live - Alan Watts on the Illusion of Time https://youtu.be/ogLc7M9_hR8 via @YouTube

The Lie We Live - Alan Watts on the Illusion of Time https://youtu.be/ogLc7M9_hR8 via @YouTube

Source: X post

Something in the XR space that I find is so so so common for people to get wrong is that they pr

Something in the XR space that I find is so so so common for people to get wrong is that they presume your 'VR Home' or your 'Personal VR Space" is the equivalent a Facebook or MySpace page. I think this largely comes from MySpace simply being called "MySpace" so a person who...

Source: X post

...like Digital Gold in the Web 2.0 age, and many platforms presume you want the best world buil

...like Digital Gold in the Web 2.0 age, and many platforms presume you want the best world building tools because one's "Home" is their "3D Social Media Profile" equivalent!

But that is just simply wrong.

Facebook, Myspace, Twitter profiles are about representing an...

Source: X post

...individual identity. They are a housing for your photos, your thoughts, your self-expressions

...individual identity. They are a housing for your photos, your thoughts, your self-expressions. Not necessarily your environment. Taking "Selfies" became the meme, not taking "Surrounding-Environmentalies" :P The social media profile centers around representing the person...

Source: X post

...Facebook or Twitter, but in a 3D Spatial Context, will not be the company that specializes in

...Facebook or Twitter, but in a 3D Spatial Context, will not be the company that specializes in storing and curating peoples "VR Home World". It will be the one that specializes in avatars. Avatars are the 3D spatial equivalent of a social media profile. A company which has...

Source: X post

...everyone's avatar stored in their database, and some integration to load this avatar into all

...everyone's avatar stored in their database, and some integration to load this avatar into all the different games, or different 3D social platforms. That company could make or break titans. As not supporting their output would be akin to not supporting photos of oneself.

Source: X post

...does not critically think about it enough just translates a "MySpace" Social Media Page to be

...does not critically think about it enough just translates a "MySpace" Social Media Page to being the equivalent of "My 3D Space" in a VR or 3D social context. This is why there has been such a focus on your "Home Space" in certain platforms. As social media profiles became...

Source: X post

Boltgun is so good. Makes me realize how much better FPS game mechanics were before Call Of Duty

Boltgun is so good. Makes me realize how much better FPS game mechanics were before Call Of Duty and its dumb slow realistic movement and dumb right click to aim nonsense. Hate that. Are boomer shooters really just superior shooter mechanics or is it just because I'm a boomer?

Source: X post

This game is pretty awesome... should definitely give it a go. https://xonotic.org/

This game is pretty awesome... should definitely give it a go. https://xonotic.org/

Source: X post

@amaldorai ...your cool creative rave space turns into any generic meat market club with doucheb

@amaldorai ...your cool creative rave space turns into any generic meat market club with douchebags. Again, it's not to discourage attempts to make the public good but I do think the real solution is already forming. It's people participating in web culture. Creating an identity and a...

Source: X post

@amaldorai ...will inevitably keep streaming in because the web has probably a near infinite amo

@amaldorai ...will inevitably keep streaming in because the web has probably a near infinite amount of them. Even in Altspace the best most tight-knit groups I knew who were actually all good friends, they still joined private events through friend connections because of this. I know...

Source: X post

@amaldorai ...where you should avoid. Again, I don't discourage such experiments, just I've seen

@amaldorai ...where you should avoid. Again, I don't discourage such experiments, just I've seen it play out so much, and you break it all down, and the only thing that consistently works is real rapport. People start to develop their own social graph of trusted connections. Growing the...

Source: X post

@amaldorai ...thing altspace did, and the exact UI I implemented in it :) But even that's not en

@amaldorai ...thing altspace did, and the exact UI I implemented in it :) But even that's not enough. You still need both 1 and 2. A social platform doesn't work without someone having a base level of social competency to walk up to people, talk, make friends, be cool, have each...

Source: X post

@amaldorai ...they have the hardware, base level of tech fluency and interest to at least take t

@amaldorai ...they have the hardware, base level of tech fluency and interest to at least take the time to use such a VR system and game, then 2) Did they have the social skills to go talk to people, find friends, develop some relationships and get led to, invited into, one of the many...

Source: X post

@amaldorai ...there as there is clearly some deep dysfunction. Good parts of cities and towns do

@amaldorai ...there as there is clearly some deep dysfunction. Good parts of cities and towns don't need such severe top-down authoritative control and policing. It's a sign of a problem and a space to avoid. That's not how you make a good public space in a city. It's how openly signify...

Source: X post

@amaldorai ...The problem is they aren't visible on the surface. You have to go in and talk to p

@amaldorai ...The problem is they aren't visible on the surface. You have to go in and talk to people, develop some trust with people, and have them lead you down into the ant maze to your particular niche. The real split between those into VRChat and those not is, as I see it, 1) Did...

Source: X post

@amaldorai ...the private trusted social graph I see as the only real solution. I think VRChat s

@amaldorai ...the private trusted social graph I see as the only real solution. I think VRChat should delete publics. But they don't because they have the pressure put on them to grow and new people need somewhere to go. This is also how real life is. I've been apart of "trusted social...

Source: X post

@amaldorai ...supports all the critical things as well/easily as it does. This is one of the big

@amaldorai ...supports all the critical things as well/easily as it does. This is one of the biggest errors I think many make in this space, thinking one "VRChat" exists, it doesn't. It's a city. With thousands upon thousands of subgroups and subcultures. Private communities...

Source: X post

@amaldorai ...sort of purgatory of everyone who got kicked out of everything else and who have n

@amaldorai ...sort of purgatory of everyone who got kicked out of everything else and who have nowhere else to go. This is the very difficult problem to deal with Social VR, in that anything openly joinable front and center gets filled with the rejects. AltSpace tried to make events with...

Source: X post

@amaldorai ...socially enjoyable, someone who many many other people can simply enjoy the compan

@amaldorai ...socially enjoyable, someone who many many other people can simply enjoy the company of, and want to hang out daily with, for hours, who are genuinely interesting people which make others want to talk to them more, understand them more, develop respect for them, be around?...

Source: X post

@amaldorai ...put them in safety bubbles. People can still be aggressive and hostile in conversa

@amaldorai ...put them in safety bubbles. People can still be aggressive and hostile in conversation. Lead people on. Harass them in so many other ways. Pretend to be friends, then turn out to be stalkers, or secretly record people. Again, compare it to a real city. You walk...

Source: X post

@amaldorai ...personality on the web, across web communities. VRChat, as well as Discord, and ev

@amaldorai ...personality on the web, across web communities. VRChat, as well as Discord, and even Twitter. For people to get to know, understand, introduce to their other web friends. It's slow moving, word-of-mouth, virtual face-to-face. But it's the real core of it. It's the only way...

Source: X post

@amaldorai ...person develop mutual interest and respect, friend each other, and want to hang ou

@amaldorai ...person develop mutual interest and respect, friend each other, and want to hang out again. There's fundamentally nothing you can just sell to a person or change in the UI to make a person who isn't enjoyable to associate with socially to now be enjoyable. That's real crux...

Source: X post

@amaldorai ...people can make web friends they trust and want to hang out with as much as IRL fr

@amaldorai ...people can make web friends they trust and want to hang out with as much as IRL friends to make the experience of Virtual Presence seem worth it. I know the rapidly scalable solution is the startup ideal, but this might be something that doesn't have a shortcut. Real rapport.

Source: X post

@amaldorai ...of the issue with social VR, that the real recreation of in-person social interact

@amaldorai ...of the issue with social VR, that the real recreation of in-person social interaction and social dynamic doesn't let someone bullshit it. You have to actually be someone whom other people genuinely want to get to know and spend time with. Not on just a surface level chat...

Source: X post

@amaldorai ...Normies who are socially fluent, and take the take time to talk to people, have no

@amaldorai ...Normies who are socially fluent, and take the take time to talk to people, have no issue with VRChat, it's actually filled with very normal people. It's wrong to think it's an anime furry platform. It's not. It's just those cultures made a lot of initial avatars and...

Source: X post

@amaldorai ...no quick solution. There's nothing to just buy to appear cool. Social VR is such a

@amaldorai ...no quick solution. There's nothing to just buy to appear cool. Social VR is such a revealing transparent social paradigm that you can't bullshit your way into it. You need to be a genuinely sociable, interesting, enjoyable person or it's very hard to find any regular...

Source: X post

@amaldorai ...Most people, sadly, don't know how to do this. They can't go out in someone unknow

@amaldorai ...Most people, sadly, don't know how to do this. They can't go out in someone unknown city and just start talking to people and develop close social bonds which make them want to hang out daily. Many families and married people don't even like each other that much IRL. Theres...

Source: X post

@amaldorai ...last people you want to go chatting with are those who couldn't go inside anywhere

@amaldorai ...last people you want to go chatting with are those who couldn't go inside anywhere, with no friends, but instead are just chilling in the middle of a public street. There is a probably a reason they have nowhere else to go. That's basically what VRC publics are. They are...

Source: X post

@amaldorai It's kind of a meme that you just don't go in publics. Or if you do, you DEFINITELY d

@amaldorai It's kind of a meme that you just don't go in publics. Or if you do, you DEFINITELY don't go into one's at the front of the list. A city I always think is a good metaphor in that, if you're in a cool part of town on Friday night with all bars, clubs, venues, hangout areas. The...

Source: X post

@amaldorai ...It has nothing to do with the platform or design, I say that FILLED with ideas on

@amaldorai ...It has nothing to do with the platform or design, I say that FILLED with ideas on how the platform and design can be radically improved but those are surface levels fixes. To only lead the horse to water so to say, but making it actually drink. Making someone actually...

Source: X post

@amaldorai ...into some part of a city and everyone is in authoritatively enforced safety bubble

@amaldorai ...into some part of a city and everyone is in authoritatively enforced safety bubbles, they can't touch each other, the lower half of their body forcibly removed or hidden. There are microphones all over the place analyzing everyone's speech for words. Most would just not go...

Source: X post

@amaldorai I know this is probably hard to believe from surface level impressions, but VRChat fo

@amaldorai I know this is probably hard to believe from surface level impressions, but VRChat for Normies does exist, and it's just VRChat. I know of some of the most normal, family-friendly, even religious-oriented, social groups in there. They use it because it is -only- platform which...

Source: X post

@amaldorai ...groups to hang out with. Again, there are surface level things to do with UI and d

@amaldorai ...groups to hang out with. Again, there are surface level things to do with UI and design, but it's surface level. Altspace executed on that well I thought, Altspace died, because that was only surface level. It lacked the deeper fundamentals necessary for a hangout platform...

Source: X post

@amaldorai ...graphs" growing in real life too. Festival culture in cities. Or underground party

@amaldorai ...graphs" growing in real life too. Festival culture in cities. Or underground party or rave cultures. It's all 1 to 1 word of mouth, trusted social networks, but IRL. As soon as you post some flyer or run some ad to open a gate to the general public, then it's kind of fucked...

Source: X post

@amaldorai ...focused meetup groups and subjects. It's a good idea. But the problem, that still

@amaldorai ...focused meetup groups and subjects. It's a good idea. But the problem, that still didn't solve the issue that if you're in the front of the list, you get all the rejects. So if your event is publicly visible, you're always on guard to block and boot the assholes who...

Source: X post

@amaldorai ...efforts, it's just that I've seen so much of it over the evolution of the web itse

@amaldorai ...efforts, it's just that I've seen so much of it over the evolution of the web itself, in social vr, and in vrchat. Anything you go after is surface level, and it's a whack-a-mole game. Ban words. People still have their whole body to be offensive with. Delete their bodies...

Source: X post

@amaldorai ...countless attempts of many people from many angles going on a mission to "Make The

@amaldorai ...countless attempts of many people from many angles going on a mission to "Make The Publics Good". I've watched this dozens of times now. It's a problem as old as the internet itself. How do you make the public spaces of the internet good? I don't necessarily discourage such...

Source: X post

@amaldorai ...communities and private social circulations that exist within it? You have to have

@amaldorai ...communities and private social circulations that exist within it? You have to have both. I do think so much can be said about improving the "Surface Level" of VRChat. Better advertising of focused group meetups. Of communities with similar interest. This is the exact...

Source: X post

@amaldorai ...but come back every week, or every night even, to talk to hang out. Most people in

@amaldorai ...but come back every week, or every night even, to talk to hang out. Most people in our society don't know how to just go into an unknown city and make connections and friends who would then want to spend hours hanging out with them everyday. This is the biggest barrier...

Source: X post

@amaldorai ...art since they were right at the intersection of gaming, VR, PC hardware, costumin

@amaldorai ...art since they were right at the intersection of gaming, VR, PC hardware, costuming, festivals. Then everyone else just used that content, mutated into new things. Cosplayers and furries seeded what were essentially the foundational "3D memes" but that's not what most are.

Source: X post

"You don't learn Vulkan, rather, after hours of pure pain and struggle it becomes embedded in yo

"You don't learn Vulkan, rather, after hours of pure pain and struggle it becomes embedded in your flesh as a kind of trauma."

Source: X post

The Eternal Struggle:

The Eternal Struggle:

Good Ryan: "Oh you have a bunch of new followers, let's post some good things to make them feel that was a good idea."

Evil Ryan: "Post some weird shit and see if you get the number to go back down."

Source: X post

I really want to get a couple wolf dogs.

I really want to get a couple wolf dogs.

I think my descent into crazy old dog man has begun.

Source: X post

@amaldorai It's not entirely for self-amusement :) As one of the things I do think people need t

@amaldorai It's not entirely for self-amusement :) As one of the things I do think people need to understand more about Social VR is that the spectrum of "Normie" to "Weird" is part of it and they aren't that separated. Such a spectrum in any given city is somewhat interwoven.

Source: X post

@amaldorai In the web dating game, I'd put my bet not on the hookup app being the biggest, but o

@amaldorai In the web dating game, I'd put my bet not on the hookup app being the biggest, but on the app which enables people to meet new people and get to know them the easiest. Social Anxiety and shyness are the bigger barrier in that paradigm.

Source: X post

@amaldorai I'd argue that "Social Presence" is only half of the "Killer App" potential of XR, th

@amaldorai I'd argue that "Social Presence" is only half of the "Killer App" potential of XR, the other half is the psychological effects of the medium itself. The Proteus Effect goes to a whole new league with embodied mediums.

Source: X post

@amaldorai ...and people embodying avatars in semi-open social events seem to be quite conducive

@amaldorai ...and people embodying avatars in semi-open social events seem to be quite conducive to that. Not only in adding a level of abstraction to your physical self to get over hangups from that, but also in the Proteus Effect of it actually changing your personality.

Source: X post

You know what I just realized is missing from the XR space? Someone really needs to make an AVP

You know what I just realized is missing from the XR space? Someone really needs to make an AVP like game where it uses face tracking to let you actually bite the heads off people with your real mouth movement when you play as the alien.

Source: X post

Sorry I can't do long philosophical takes on XR and make jokes about XR for a bit with all this

Sorry I can't do long philosophical takes on XR and make jokes about XR for a bit with all this Apple buzz and my relation to it. I'm just going to have to be quiet for a bit :| Talk to me in VRC if you want discuss VR things, not AVP things, can't say much about that.

Source: X post

Probably the most true thing Apple said is that it’s the start of a long journey into spatial co

Probably the most true thing Apple said is that it’s the start of a long journey into spatial computing

It starts with a solid device and OS

It ends with everyone as cat girls and furries in psychedelic virtual clubs

It’s sort of like the human equivalent of carcinization

Source: X post

Oh man I was so excited for a moment it looked like AVP2 was abandonware and you could just down

Oh man I was so excited for a moment it looked like AVP2 was abandonware and you could just download it and play it but it's too old to work on win11 it looks like... https://avpunknown.com/avp2aio/ Is there anyway to get AVP2 working on a modern PC?

Source: X post

@mvlcfr190 ok so this tweet was a joke btw... Maybe I shouldn't have posted that I worked on thi

@mvlcfr190 ok so this tweet was a joke btw... Maybe I shouldn't have posted that I worked on this... I don't make serious tweets on here.

Source: X post

For some reason got a desire to go play AVP from rebellion.

For some reason got a desire to go play AVP from rebellion.

Source: X post

@DennyCloudhead I can't be a source to confirm such details. Most of it was a surprise to me too

@DennyCloudhead I can't be a source to confirm such details. Most of it was a surprise to me too. I only intricately know how some of the software subsystems work.

Source: X post

@benz145 https://x.com/_rygo6/status/1665942526736605184/photo/1

@benz145 https://x.com/_rygo6/status/1665942526736605184/photo/1

Source: X post

...YouTubers or Instagram influencers whose physical form help their popularity.

...YouTubers or Instagram influencers whose physical form help their popularity.

And yes, in private use cases among friends and family, like your private Facebook or Snapchat, it is quite common for people to put up many images and videos of their physical self. ...

Source: X post

...virtual web space they enter. Ideally, they want to be invisible and hidden, but since that d

...virtual web space they enter. Ideally, they want to be invisible and hidden, but since that doesn't for "Social VR Presence" they will choose a form. It won't be their physical form. It'll be a stylized avatar. What this means is unless a platform has an open and permissive...

Source: X post

So, I can now say I've been on the core engineering team building the apple vision pro support f

So, I can now say I've been on the core engineering team building the apple vision pro support for unity and, yes, it exists. Sign up here https://create.unity.com/spatial

Now I must sit silently and watch so many play the role of newly anointed expert authority on this. :)

Source: X post

...put on display for all to see in any public virtual space you enter will never be desired by

...put on display for all to see in any public virtual space you enter will never be desired by most. The mainstream ideally wants to be completely invisible when entering public virtual spaces, as they currently are when browsing through Amazon or YouTube or Whatever...

Source: X post

...or hardware can be the major, mainstream, central open-to-the-public virtual social space is

...or hardware can be the major, mainstream, central open-to-the-public virtual social space is whether or not they allow stylized, cartoony, anime-ish, furry-ish whatever avatars to be uploaded. The avatar, the self, each individual identity, it is the really the centerpiece...

Source: X post

...only "Observing" something like a news site is technically being present in that virtual web

...only "Observing" something like a news site is technically being present in that virtual web space. Most of the Public spaces of the web that your average person traverses. No. They do not want their photos and videos broadcast to everyone else also traversing that space...

Source: X post

Online web culture does not revolve around people's realistic self-representation, nor even phot

Online web culture does not revolve around people's realistic self-representation, nor even photographs of oneself.

Yes, of course, some people in web culture use their real physical form either in images or video to represent themselves, but these tend to be streamers and...

Source: X post

...of this paradigm, and what will be the core of it is where people are actually allowed to exi

...of this paradigm, and what will be the core of it is where people are actually allowed to exist, as in, where peoples open self-expression of their imagined form, their avatar, is allowed to exist. That is the public center space which everything else will branch off of...

Source: X post

...It will never be mainstream to openly broadcast a perfect physical representation of your fac

...It will never be mainstream to openly broadcast a perfect physical representation of your face and body to every public virtual space you inhabit. This is not common right now, and it will never be desired. People would not like a hi-res photo of themselves popping up on...

Source: X post

...every Amazon page they view for all to see whom is at that virtual space. People would not li

...every Amazon page they view for all to see whom is at that virtual space. People would not like a hi-res photo of them popping up on the YouTube video their watching, or Spotify song, or game their playing. A hi-res physically accurate representation of your body being...

Source: X post

...Doing the avatars correctly is the primary thing which determines if your platform and hardwa

...Doing the avatars correctly is the primary thing which determines if your platform and hardware are central to the VR Metaverse or peripheral to whatever else does. What you see evolving in VRChat avatar culture is representative of mainstream general audience virtual identity

Source: X post

...But the "Social" thing doesn't work if everyone is invisible. "Social" necessitates a form be

...But the "Social" thing doesn't work if everyone is invisible. "Social" necessitates a form being present. It will never be mainstream for this form to be a physically accurate realistic representation of yourself, because people don't want to publicly broadcast every public...

Source: X post

...avatar system for people to develop virtual self-identity with, then you simply won't get a p

...avatar system for people to develop virtual self-identity with, then you simply won't get a public virtual social space. You can't have a public metaverse without stylized avatars, the two are innately intertwined. So, one quality you can use to discern if any given platform..

Source: X post

...And yes, on LinkedIn people tend to put a real photo because that expected professionally.

...And yes, on LinkedIn people tend to put a real photo because that expected professionally.

But your average person, traversing through web spaces perceived as "Public" or at least "Open-To-Others" such as YouTube, Amazon, Discord, Online Games, even news websites as people...

Source: X post

@yewnyx ...introduction of interstates and many Americans getting a personal automobile, over th

@yewnyx ...introduction of interstates and many Americans getting a personal automobile, over the number of decades that transition happened it completely rearranged society. After that there was great innovation in auto industry, but it much more stayed within pre-defined lanes.

Source: X post

@yewnyx I think the ONE thing that can really carry XR to something decently mainstream is it be

@yewnyx I think the ONE thing that can really carry XR to something decently mainstream is it becoming the greatest festival ever, the Burning Man of Burning Man's, but all virtual, and global. Just -THE- party you have to be in, basically export the ultra-cool-hip-party-space of any...

Source: X post

@yewnyx I don't believe this with certainty, but some percentage of me that has the instinct maj

@yewnyx I don't believe this with certainty, but some percentage of me that has the instinct major societal shift from tech peaked with the web and smartphone. There will be great innovation, but nothing will be felt as much as those initial disruptions. Like after the initial...

Source: X post

@yewnyx ...given city, except this now the ultra-cool-globally-available-virtual-party-space for

@yewnyx ...given city, except this now the ultra-cool-globally-available-virtual-party-space for the majority of people who never lived near such things, or couldn't afford to such things, can now participate a radical explorative creative culture. Thats what XR HMD can do that screens..

Source: X post

@yewnyx ...cool as any of notable psychedellic arts and creative festivals and cultures. Ironica

@yewnyx ...cool as any of notable psychedellic arts and creative festivals and cultures. Ironically Altspace DID hire some people that had experience working with Burning Man, and even Meow Wolf which is another great example, but just a few people stuck in a mass of corporate process...

Source: X post

@yewnyx ...cannot do anything. Corporate processes can't produce what needs to be exist for this

@yewnyx ...cannot do anything. Corporate processes can't produce what needs to be exist for this to be mainstream. Not only does it just fly over corporate collective mind, but you start to slightly get to the sexual subject of virtual spaces, which is very important, and they run.

Source: X post

@yewnyx ...cannot compete against at all. But Big Tech cannot comprehend the basic essentials of

@yewnyx ...cannot compete against at all. But Big Tech cannot comprehend the basic essentials of pulling this off. They don't even have the kinds of cultures that can even talk about this stuff to even be able to start figuring it out. They could never catalyze a culture and space as...

Source: X post

...why Ive always seen attempts to "Fully Mainstream XR" as a bit of a red flag that it will jus

...why Ive always seen attempts to "Fully Mainstream XR" as a bit of a red flag that it will just fail. Because it may be innately un-mainstream-able. It may be the use cases that are unique enough and actually improved enough from being in an XR HMD to justify using an XR HMD...

Source: X post

...the web, that's not enough. Screens do all the mainstream use cases most care about GREAT. An

...the web, that's not enough. Screens do all the mainstream use cases most care about GREAT. An XR HMD, what it can uniquely do that a screen can't, to justify the using of an XR HMD over a screen, those use cases may always be for a niche demographic.

Source: X post

...technology then the mainstream audience the XR HMD is intended for might start to ask the que

...technology then the mainstream audience the XR HMD is intended for might start to ask the question, why would I need this over my screen-based device? There's some really huge, probably impossible to overcome, hurdles with an XR HMD competing for those major mainstream uses.

Source: X post

@tautologer Replace the word 'Capitalist' with 'Corporatist' and/or 'Corporatocracy' and their c

@tautologer Replace the word 'Capitalist' with 'Corporatist' and/or 'Corporatocracy' and their complaints will make more sense.

Yes, such complaints should have used those words, rather than 'Capitalism' from the get-go, but that's how colloquial evolution of definitions go.

Source: X post

...simply may not be a big enough jump in improvement of anything to justify it for the majority

...simply may not be a big enough jump in improvement of anything to justify it for the majority of people. It's also the case, I think, that holding an object, like an iPhone is very intuitive to people to look at map or flip through your music. It's very possible XR HMD will...

Source: X post

...over a screen, laptop, or smartphone, those use cases may just be innately un-mainstream-able

...over a screen, laptop, or smartphone, those use cases may just be innately un-mainstream-able. Doing the same thing your iPhone or iPad does, but floating in the air, with bigger screens and more of them, that's not enough. Having some sleek 3D UI for maps or browsing...

Source: X post

...markets exist with enough people buying it to keep it going. But you know it's a more niche,

...markets exist with enough people buying it to keep it going. But you know it's a more niche, minority, enthusiast. Strapping computers to your face and playing with virtual hallucinations may always be one of those things for a particular subset of people. This is one reason..

Source: X post

I still believe the greatest competition in the XR HMD space is not some XR HMD company nor prod

I still believe the greatest competition in the XR HMD space is not some XR HMD company nor product. Rather, it's screens. Monitors, laptops and smartphones. Something that doesn't get highlighted enough in the XR space which can be kind cultish is that screens work great...

Source: X post

...forever be a kind of niche market. Plenty big enough to justify its existence. But niche. Lik

...forever be a kind of niche market. Plenty big enough to justify its existence. But niche. Like audiophile headphone setups. Or people into building their fancy home theater. Or even those who custom build their PC and buy the fancy graphic cards and motherboards. Those...

Source: X post

Anyone tried this with VRC? Is it any good?

Anyone tried this with VRC? Is it any good? https://eteexr.com/products/etee-steamvr

Source: X post

...and if some company tries to make XR vanilla and generic to be mainstream-able, it may aliena

...and if some company tries to make XR vanilla and generic to be mainstream-able, it may alienate the only demographic that's actually willing to buy the device and invest time/money into the XR space. If XR becomes too vanilla, too much overlap with major mainstream uses of...

Source: X post

...and for the overt mainstream uses of computing, screens have no major problem that needs solv

...and for the overt mainstream uses of computing, screens have no major problem that needs solving. You don't need an XR HMD to surf the web or check your bank account or text someone. All the very mainstream very needed use cases work great on screens. Due to this an XR HMD...

Source: X post

@yewnyx @SadlyItsBradley @fb I honestly kind of feel like those working in VR corporations only

@yewnyx @SadlyItsBradley @fb I honestly kind of feel like those working in VR corporations only for the salary and title are such a significant majority that they indirectly kind of collude to dismiss and push out those who are really into VR because of the potential threat they pose in corporate politics.

Source: X post

@yewnyx probably top of the list would being able to alter the shell of the OS, something like s

@yewnyx probably top of the list would being able to alter the shell of the OS, something like steamvr overlays

Source: X post

@yewnyx I don't think people would support Meta over Valve, hope would be it's open enough it do

@yewnyx I don't think people would support Meta over Valve, hope would be it's open enough it doesn't matter. Just a piece of hardware with API and libraries to take and do more with. If the Quest was that, it'd probably have more impact right now.

Source: X post

...

... I guess the programmer version of that is becoming like an open-source kernel, graphics or driver developer.

Just very low-level, very slow moving, fundamental, system maintenance that doesn't change rapidly where I grow a long beard.

I feel like I'm getting to that point.

Source: X post

...was signing up for AIM. Why? Because ___ hot person at the school had an AIM account and you

...was signing up for AIM. Why? Because ___ hot person at the school had an AIM account and you could maybe talk to them on AIM. In a matter of months seemed the entire high school was now obsessed AIM.

I was having fun with my ultra-nerd fest on bulletin boards and usenet...

Source: X post

...was IRC, all text communication, getting pulled up into AIM, which in a way I think mutated i

...was IRC, all text communication, getting pulled up into AIM, which in a way I think mutated into text messaging.

Then Quake1 and HalfLife1 modding and online competitive shooters, Counterstrike Beta 1, then that evolving on into esports and growing into something bigger...

Source: X post

...VRC that is much more likely to transfer to real-life than people thinking they have chemistr

...VRC that is much more likely to transfer to real-life than people thinking they have chemistry in text chat or zoom calls. So if you're wondering what will catalyze an HMD going into major mainstream uptake, it's going to be the hardware and platform which...

Source: X post

...that reason. So when it comes to VR and Metaverse Social Platforms. As dumb and silly as it s

...that reason. So when it comes to VR and Metaverse Social Platforms. As dumb and silly as it sounds, the question to really ask to discern complete mainstream uptake is, "Does this help me get laid?" It's on this point that, yes, a lot of things about Social VR do help that...

Source: X post

...than traditional sports.

...than traditional sports.

Then bulletin boards and usenet, online communities where you post content, then that evolving on into MySpace, YouTube, Twitter, Facebook.

There's more too...

But the catalyst which I always saw as taking something from ultra-nerd territory to...

Source: X post

@syrusakbary "Hostile Fork" seems kind of like a silly notion in open source...

@syrusakbary "Hostile Fork" seems kind of like a silly notion in open source...

Source: X post

...So the big question for me about any potential VR or XR platform is, how sexxy will it enable

...So the big question for me about any potential VR or XR platform is, how sexxy will it enable people to be? Because most will gradually get pulled into whatever, however, most effectively amplifies and eases the dating and flirting game which is innate to human social dynamic.

Source: X post

@SadlyItsBradley Meta interviewed me for the avatar team and my one condition for continuing the

@SadlyItsBradley Meta interviewed me for the avatar team and my one condition for continuing the interview is that it be done in VR, with the team in full body tracking, in custom avatars they made. They couldn't do it.

Source: X post

...person. So in a matter of months EVERYONE had a myspace and all the social scene evolved arou

...person. So in a matter of months EVERYONE had a myspace and all the social scene evolved around it.

This was theme that marked pretty much all major rapid mainstream uptakes of any new technology or platform. Whether or not it became clear it helped you get laid. As soon...

Source: X post

...people want the fancy cars? The fancy apartments? Cool social connections. Ya it all intertwi

...people want the fancy cars? The fancy apartments? Cool social connections. Ya it all intertwines with the dating game. People just do and follow whatever is perceived to be "Sexxy" and increase their odds.

So when we come to VR and XR. I think the same thing is going to...

Source: X post

...OkCupid profiles and obsessed with taking selfies for it. Which also, I would say, drove smar

...OkCupid profiles and obsessed with taking selfies for it. Which also, I would say, drove smartphone sales. Once it became clear having the better camera on your phone and taking better photos helped you get laid from the dating sites, seemed like overnight everyone was...

Source: X post

...of sexualization of avatars is so important. People want to appear attractive, cute, sexy, wh

...of sexualization of avatars is so important. People want to appear attractive, cute, sexy, whatever gets them attention and eases the flow of the dating game. Of course people are going to want to exaggerate this as much as possible. Peacocking to attract mates...

Source: X post

...obsessed with how good of a photo their smartphone took.

...obsessed with how good of a photo their smartphone took.

That seems to me to be the least common denominator of it all. Did it somehow, clearly, and obviously, aid the dating game? Once it becomes clear, then just BAM mainstream instantly. This goes way back. Why do...

Source: X post

@malekiRe Ya... it's one of those things people just don't get till they get it... Honestly, I w

@malekiRe Ya... it's one of those things people just don't get till they get it... Honestly, I wouldn't have got it unless Covid happened and I worked in Social VR industry and considered it part of my job to prove it to myself. That yes, even virtual presence hits all the necessary...

Source: X post

@malekiRe ...to hundreds of people, it's crazy to me how much it just doesn't register. Even who

@malekiRe ...to hundreds of people, it's crazy to me how much it just doesn't register. Even whole departments paid exorbitantly to understand this space, like no one who worked on altspace ever joined me in VRChat in full body tracking to understand it. No one. Not once. Meta...

Source: X post

@malekiRe ...something to weirder to it. I've actually started to think there is some deep uncon

@malekiRe ...something to weirder to it. I've actually started to think there is some deep unconscious hangup about letting the mind fully realize that it's not your physical body that creates your sense of presence, but it is the ephemeral impression of it adequately captured and...

Source: X post

@malekiRe ...psychological cues to mitigate much of the negative of isolation and being alone, a

@malekiRe ...psychological cues to mitigate much of the negative of isolation and being alone, and you can in fact fully supplant hanging out in real life with it as long as everyone has appropriate hardware in an appropriate platform. After four years of trying to communicate this...

Source: X post

@malekiRe ...perceived that does it, then further how little of an impression you can get away w

@malekiRe ...perceived that does it, then further how little of an impression you can get away with to effectively trigger all the necessary cues in the mind. Like it falls a little to close like woo weird subjects that make people get all uncomfortable are we talking corporate business...

Source: X post

@malekiRe ...never put on full body tracking and played with fitting avatars to themselves and h

@malekiRe ...never put on full body tracking and played with fitting avatars to themselves and have zero sense of how far virtual presence can go. It's the weirdest damn thing? The complete hangup of people, even those being paid like $400k a year to understand this, I realized there's...

Source: X post

@malekiRe ...execution or some weird spiritual hippie subject? So people ignore it. But it's jus

@malekiRe ...execution or some weird spiritual hippie subject? So people ignore it. But it's just like, No. Buy the hardware, buy the full body tracking, if your too old without enough neuroplasticity eat some LSD. You have to get this, intuitively, instinctively. It holds back VR so much

Source: X post

@malekiRe ...contacted me to join the avatar team, and wanted to go forward, but I gave them the

@malekiRe ...contacted me to join the avatar team, and wanted to go forward, but I gave them the one stipulation, have one person on the team join me in any platform in full body tracking. No one could do it. Literally Big Tech is dropping millions per year on teams that have...

Source: X post

@JayHadHope @SadlyItsBradley Working in VR, particularly on an "avatar team" and not being able

@JayHadHope @SadlyItsBradley Working in VR, particularly on an "avatar team" and not being able to do a meeting in one of the multiple existing platforms that support full body tracking and custom avatars I see akin to working in video streaming and not knowing how to use Zoom or Skype.

Source: X post

...increase my odds of dating them. It's the same thing that caused the mainstream migration to

...increase my odds of dating them. It's the same thing that caused the mainstream migration to Myspace. The same thing that caused the mainstream migration to AIM, to text messages, to Snapchat. Snapchat is pretty much PEAK e-flirting app and its crazy popular for exactly...

Source: X post

I have some curse where I continually want something, then when I get it, I realize I don't want

I have some curse where I continually want something, then when I get it, I realize I don't want it.

Life is a never-ending struggle to realize I never wanted what I continually struggled for.

This is why people become monks and go sit somewhere silently till they die? ...

Source: X post

I have been a part of many technologies that were initially considered "Weird" and only the doma

I have been a part of many technologies that were initially considered "Weird" and only the domain of the "Ultra-Nerd" to then have these technologies go through a rapid mainstream uptake where all of a sudden it was not only normal, but completely cool and necessary. First it...

Source: X post

...happen, it already is. I've gone into public lobbies where the teenagers of VRC hangout or th

...happen, it already is. I've gone into public lobbies where the teenagers of VRC hangout or the 20 somethings and ask them, why did you get into VRC? A common theme is, ___ person I was interested in started playing, and with a VR headset I could then hang out with them and...

Source: X post

...hanging out with people in full body tracking, in an avatar, with sense of presence, does mak

...hanging out with people in full body tracking, in an avatar, with sense of presence, does make you more comfortable with them. You get a good sense of their vibe, what its like to actually hang out in person, and that does translate to real life. If you have chemistry in...

Source: X post

@gfodor What do you call it when you see language as meaning more than atoms?

@gfodor What do you call it when you see language as meaning more than atoms?

Source: X post

@gfodor Hm I was almost meaning more like spoken and written language... but in a way programmin

@gfodor Hm I was almost meaning more like spoken and written language... but in a way programming languages too

Source: X post

...for years then suddenly MYSPACE and everyone had to have one. Why? Because ___ hot person was

...for years then suddenly MYSPACE and everyone had to have one. Why? Because ___ hot person was on myspace and they were friending certain people and you had to have a myspace to friend them and of course this was necessary if you were going to have a shot at dating ___ hot...

Source: X post

...enables the most effective virtual sexual expression to attract people, virtually flirt, deve

...enables the most effective virtual sexual expression to attract people, virtually flirt, develop rapport and real comfort. This is why full body tracking is so important, body movement and language, dancing, big big component. This is why custom avatars, and allowance...

Source: X post

...cool thing everyone must have is... and this sounds like a joke, but I'm serious, it's when i

...cool thing everyone must have is... and this sounds like a joke, but I'm serious, it's when it became clear it could help you get laid. Sex. Ya that was it.

I was having fun with my ultra-nerd fest on IRC for years, then all of a sudden EVERYONE...

Source: X post

@cnlohr Write the spec and start the fork, I'll contribute.

@cnlohr Write the spec and start the fork, I'll contribute.

It doesn't have to go through committee approval... it can be one of those "Hostile Forks" https://x.com/syrusakbary/status/1664325876345962499

Source: X post

@cnlohr Have you ever considered what exactly would need to change with WASM if you made a hard

@cnlohr Have you ever considered what exactly would need to change with WASM if you made a hard fork of it?

It's not absolutely necessary all changes go through WASM committee for all scenarios in which such changes could be useful...

Source: X post

@BattleAxeVR @SadlyItsBradley This is a reason I quit Microsoft and evade big tech like the plag

@BattleAxeVR @SadlyItsBradley This is a reason I quit Microsoft and evade big tech like the plague forever. Except for a few coworkers, the overarching attitude is that users are below you, that you can freely dismiss and treat them however because they have to put up with whatever BS since you're so mighty.

Source: X post

@BattleAxeVR @SadlyItsBradley But TBH... I also primarily zoom even with coworkers that are into

@BattleAxeVR @SadlyItsBradley But TBH... I also primarily zoom even with coworkers that are into VR... but if I'm trying to sell myself as competent in the use a particular technology in a set of meetings to someone new, I'm for damn sure going to put the stuff on to show off I have knowledge in the space.

Source: X post

...as that happened then BAM everyone on it. Same thing with online dating. First online date si

...as that happened then BAM everyone on it. Same thing with online dating. First online date sites came up and you were a FREAK to make an account, until Uh Oh couple friends got dates, things went well, clear it does help in the dating game, then BAM everyone is making...

Source: X post

@aemethVR I used to work at the innovation VR part of Accenture... I told them they needed to st

@aemethVR I used to work at the innovation VR part of Accenture... I told them they needed to start building a foundation for social VR applications in 2018 but they didn't listen so I quit. It's really funny to me if they're now sending people into VRC to figure out what's going on.

Source: X post

...VR OS + VR Market + VR Social Network + All VR Peripherals + All VR Avatars + All VR Cultures

...VR OS + VR Market + VR Social Network + All VR Peripherals + All VR Avatars + All VR Cultures and communties... that's just way way too fucking much for one corporation no matter how big the corporation. That needs a decade of open evolution in the entire global tech space.

Source: X post

...market like Valve runs Steam, and people could do pretty much anything they want software sid

...market like Valve runs Steam, and people could do pretty much anything they want software side... Open VR dev community would have embraced it much more and would have already figured out how to turn the Quest into some unbeatable foundation of VR. The problem of making a...

Source: X post

I have a lot of criticisms of FB Meta but the team behind the hardware is no doubt A+ and always

I have a lot of criticisms of FB Meta but the team behind the hardware is no doubt A+ and always has been🔥

I really just wish FB took a more open approach to it on the software side. If the QuestOS was as open as SteamOS+SteamVR and Meta only operated a fairly permissive...

Source: X post

@guillefix @AntonHand I'd say the iPhone was a continuation of web culture. First social apps to

@guillefix @AntonHand I'd say the iPhone was a continuation of web culture. First social apps to get big on mobile were Twitter, FB and YouTube. Over time they made the UX more mobile friendly. Then some novel things evolved like Instagram centered only on photos because now everyone had a nice camera

Source: X post

@amaldorai This is an odd question, but I am serious... Would invest in something that I don't t

@amaldorai This is an odd question, but I am serious... Would invest in something that I don't think could ever be directly profitable? I've been told in the past my only option for such a thing are research grants.

Source: X post

@amaldorai For a $1000+ entry fee I want to be wherever the most awesome party / virtual festiva

@amaldorai For a $1000+ entry fee I want to be wherever the most awesome party / virtual festival is with all my most interesting / most fun to party with web friends, and where my mom on iMessage has no possibility of joining. :)

Source: X post

@cnlohr I started to think nacl and pnacl were better approach

@cnlohr I started to think nacl and pnacl were better approach

Source: X post

...where you get the full spectrum of possibility evolving isn't a sign there's a problem, it's

...where you get the full spectrum of possibility evolving isn't a sign there's a problem, it's a sign it's working. Then within the construct people of good taste have to carve out the spaces worth existing. The universe cannot be universally good. That's just not how it works.

Source: X post

...walk through and interact with people embodying. Of course it's going to be filled with crap.

...walk through and interact with people embodying. Of course it's going to be filled with crap. Of course much of it's going to be weird as all can be. Even more so its human nature given a medium expression without physical constraints. Of course that'll be all of the above...

Source: X post

The tendency to dismiss what's happening in VRC as a significant insight into the direction of t

The tendency to dismiss what's happening in VRC as a significant insight into the direction of the whole "Metaverse Social VR" thing because the platform evolves so much "Weird" is so illogical to me. Have you paid attention to how the web evolved at all the past decades?...

Source: X post

...that the "The Metaverse" is going to be this very conservative, G-Rated, Family-Friendly type

...that the "The Metaverse" is going to be this very conservative, G-Rated, Family-Friendly type place. No. It's going to be an avante garde youth culture about creative expression with physics removed. It's going to be a compounding off of Rave culture, Punk Culture...

Source: X post

@SplitScream @chetfaliszek vrc is owned by a blackrock subsidary?? which one is the subsidary?

@SplitScream @chetfaliszek vrc is owned by a blackrock subsidary?? which one is the subsidary?

Source: X post

...representative of the direction you get when you combine human nature with a free form virtua

...representative of the direction you get when you combine human nature with a free form virtual construct for open expression. Yes, most of it will be shit, because "Good" needs contrast of being rare amongst more things perceived as "Bad". It's the web made 3D for you to...

Source: X post

...quite sexualized TBH, even when it's not, that undertone is still pervasive. "Dating Culture"

...quite sexualized TBH, even when it's not, that undertone is still pervasive. "Dating Culture" it permeates so much. Of course such a virtual construct will absorb and amplify such an aspect of human nature. It's so irrational to me that some expectation developed...

Source: X post

...just as R-Rated, offensive, beautiful, artistic, sexualized, drama-filled, ugly, stupid, inte

...just as R-Rated, offensive, beautiful, artistic, sexualized, drama-filled, ugly, stupid, intelligent as you would find in the real world. You'll get the full spectrum of it all. So yes it's going to be extremely weird. This vast variety of weirdness you see in VRC, that is...

Source: X post

@gfodor You know I thought the same exact thing back in like 2016. I remember emphatically argui

@gfodor You know I thought the same exact thing back in like 2016. I remember emphatically arguing AR pets will be the most lucrative category of app if ubiquitous AR ever happens, could solve so many issues. But I realized something over past 3 years or so from VRC, real people are...

Source: X post

@gfodor ...village scenario in VR, that effectively triggers the neural pathways and experience

@gfodor ...village scenario in VR, that effectively triggers the neural pathways and experience of actually standing in groups like that, that balancing dynamic of being in a kind of tribe can play out. So I've come to see Social VR, properly done, as the better solution than an AR pet

Source: X post

@gfodor ...psychological shortcomings. A lot of modern psychological issue, and the whole need o

@gfodor ...psychological shortcomings. A lot of modern psychological issue, and the whole need of a shrink, comes from us no longer living in communal groups of dozens, to a hundred people, where this dynamic can play out. Being able to recreate a kind of virtual tribal or small...

Source: X post

@gfodor Oh :) Still in my mind I saw these "pets" as being very intelligent too... why would any

@gfodor Oh :) Still in my mind I saw these "pets" as being very intelligent too... why would any given kid not want their AI helper companion to be a pokemon or something?

Source: X post

@gfodor ...better at that than AI. I don't necessarily mean real people being your pet, although

@gfodor ...better at that than AI. I don't necessarily mean real people being your pet, although many certainly play that game in VRC, just if you have a virtual construct in which you can spawn anything into it, it is better to have real friends embodying some virtual form than an...

Source: X post

@gfodor ...AI and there's, I believe, a forgotten dynamic to human sociology where, if you have

@gfodor ...AI and there's, I believe, a forgotten dynamic to human sociology where, if you have a group of people operating like a tribe, being very open and candid each other, or like a small village, they tend to balance each other out, round each others corners, even out each others..

Source: X post

...Further than that, have such people paid attention to humanity? Have you gone to a night club

...Further than that, have such people paid attention to humanity? Have you gone to a night club or a music festival, or even just the festive, younger, part of some city to see what it's like? Wherever you have burgeoning and evolving youth culture. It is weird. It's also...

Source: X post

...Burning Man Culture, all the various festival cultures. Gaming, anime, furries, gothic. etc.

...Burning Man Culture, all the various festival cultures. Gaming, anime, furries, gothic. etc. etc. All these weird expressive subcultures, given an open platform where any style can be expressed, you're going to get all of that eventually pouring into it. It's going to be...

Source: X post

@AntonHand ...usenet. These iterations of 'Web Culture' and 'Web Use Case' they didn't come out

@AntonHand ...usenet. These iterations of 'Web Culture' and 'Web Use Case' they didn't come out of nowhere, they compounded out of prior things. To not have an intuitive understanding of the aspects of VR and Social paradigms that VRC accidentally fell at the intersection, it's like...

Source: X post

@AntonHand ...not participating in bulletin board culture, or IRC, in the early 00's, or usenet

@AntonHand ...not participating in bulletin board culture, or IRC, in the early 00's, or usenet even earlier. Or HL1 modding culture. There will be a whole wave of things that seem to come out of nowhere, but to those who were in the center of the evolving space, the direction was obvious.

Source: X post

@AntonHand I think this too... but my whole conviction on it has been, you couldn't make FB if y

@AntonHand I think this too... but my whole conviction on it has been, you couldn't make FB if you didn't understand MySpace (not that I want to make FB) or you couldn't make MySpace if you didn't understand bulletin boards, or couldn't have made bulletin boards if you didn't understand...

Source: X post

The biggest threat to American Democracy is Corporatism.

The biggest threat to American Democracy is Corporatism.

Anyone who points the finger to something else is probably part of the problem and trying to use diversionary tactics.

Source: X post

Is imgui actually good for high performance UI?

Is imgui actually good for high performance UI?

I've never done much profiling on it but am wondering what's the UI system with the absolute best perf and lowest overhead?

Source: X post

@cnlohr @brianwill I always found the first third of this book one of the most valuable things I

@cnlohr @brianwill I always found the first third of this book one of the most valuable things I read on programming https://www.amazon.com/Object-Thinking-Developer-Reference-David/dp/0735619654/ref=sr_1_1?crid=374JYO2069FZE&keywords=object+thinking&qid=1685322118&sprefix=object+thinking%2Caps%2C215&sr=8-1 It goes over history and fundamental philosophies of OO, and does so with enough specificity that it became clear much of modern OO lost touch with the point

Source: X post

warhammer 400 boltgun is the video game I didn't know I needed

warhammer 400 boltgun is the video game I didn't know I needed

I've never played a warhammer game so I'm not just a fan of the lore saying this... but damn... might be better than Doom at nailing the neo-boomer-shooter thing

Source: X post

@thegiantsox You need to be able to timeout specific graphic command buffers, have them fully an

@thegiantsox You need to be able to timeout specific graphic command buffers, have them fully and cleanly abort without disrupting anything else.

You can kind of do this in Win11 indirectly if get a bunch of things in win32 API and some vulkan extensions setup correctly, but its not perfect

Source: X post

@thegiantsox yes, or crashing the whole thing, VR/AR doesn't have the luxury of being able to 'r

@thegiantsox yes, or crashing the whole thing, VR/AR doesn't have the luxury of being able to 'reset' the display in event of fatal error with freezing your whole reality, it merits having a dual GPU system where one GPU just runs the compositor and OS windowing with no disruption.

Source: X post

@thegiantsox ...OS foundation, or foundation platform, needs to be open enough, have enough hook

@thegiantsox ...OS foundation, or foundation platform, needs to be open enough, have enough hooks, so anything, permissions permitting, can connect to and interop with anything else. Like right now people are pumping all this arbitrary stuff through OSC in VRC to chain other apps to VRC...

Source: X post

@thegiantsox ...Or their pumping stuff into a global RenderTexture so different VRC prefabs can

@thegiantsox ...Or their pumping stuff into a global RenderTexture so different VRC prefabs can share data between one another. This is already the direction the most advanced stuff is going. Independent "Contexts" or "Containers" as separate processes, or one process, and a means to share...

Source: X post

@thegiantsox or one GPU needs to be able to more effectively preempt specific volatile commands

@thegiantsox or one GPU needs to be able to more effectively preempt specific volatile commands in its queue

modern GPUs can preempt commands NV added it in to reduce motion to photon latency on reprojecting VR frames, but its done indirectly and globally by defining global queue priorities

Source: X post

@thegiantsox It's not necessarily a very different way of doing things though. There is no reaso

@thegiantsox It's not necessarily a very different way of doing things though. There is no reason the other process could not just be blender in a floating window interoping directly with the process rendering your avatar. Entirely new UX doesn't necessarily need to be invented, just the...

Source: X post

@thegiantsox ... I'm still looking for a way in Linux... I may actually end up trying to impleme

@thegiantsox ... I'm still looking for a way in Linux... I may actually end up trying to implement it in mesa myself

Source: X post

@thegiantsox ...data between them. Just people are getting excessively creative with the limited

@thegiantsox ...data between them. Just people are getting excessively creative with the limited options available to actually share this data via graphics tricks or clever packing of data in OSC because there is no proper foundational platform with proper IPC for this type of use case.

Source: X post

@JustineTunney One thing I've been wondering about redbean, why did you choose LUA as the way to

@JustineTunney One thing I've been wondering about redbean, why did you choose LUA as the way to script it?

Source: X post

@gfodor Ya. We need a John C Lilly or Timothy Leary of the tech AI era. The culture of conformis

@gfodor Ya. We need a John C Lilly or Timothy Leary of the tech AI era. The culture of conformist cubicled constipated behaviouralism that has evolved in big tech corporations just isn't exploratory enough and risk-seeking enough to deal with the truly uncharted territory.

Source: X post

@yewnyx facebook did listen to someone right on that.. but I think they stopped listening?

@yewnyx facebook did listen to someone right on that.. but I think they stopped listening?

Source: X post

@PixelsByMacki okay I think I settled on vanillajs... it's feature set looks pretty decent

@PixelsByMacki okay I think I settled on vanillajs... it's feature set looks pretty decent

Source: X post

I own http://xros.io and registered it in 2018 because... ya that one was obvious...

I own http://xros.io and registered it in 2018 because... ya that one was obvious...

Unfortunately for 5 years since no one listened to me and I've just been poking at the notion by myself for three-ish years now...

Source: X post

What is the current best web frontend framework?

What is the current best web frontend framework?

(other than react)

Source: X post

@pvncher @SadlyItsBradley I have a chronically bad habit of realizing and building things about

@pvncher @SadlyItsBradley I have a chronically bad habit of realizing and building things about 4-6 years before someone is willing to put billions into it... but it's flattering they decided to take both the name and much of the vision.

Source: X post

@PixelsByMacki really whats so good about vue?

@PixelsByMacki really whats so good about vue?

what about svelte?

Source: X post

It's still kind of wild to me someone hasn't used any crypto web3 tech to make whats been the mo

It's still kind of wild to me someone hasn't used any crypto web3 tech to make whats been the most obvious use case to me... something like grumoad or booth, just a digital asset store, but use a chain with tiny transaction costs to offer like <.01% fees.

Source: X post

I feel like everyone needs to take a moment to go install Quake Live and remember what absolute

I feel like everyone needs to take a moment to go install Quake Live and remember what absolute minimal input latency feels like. Even with 144hz and NVReflex, all that new fancy stuff, a modern engine doesn't feel as responsive as those old engines.

Source: X post

Every now and then I turn off the 18+ filter on Steam just out of pure curiosity to see what exa

Every now and then I turn off the 18+ filter on Steam just out of pure curiosity to see what exactly is happening in that space...

Then I turn it back on real fucking fast.

Source: X post

The iPhone made portable dozens of use cases that were already well defined, mainstream, and hig

The iPhone made portable dozens of use cases that were already well defined, mainstream, and highly desired by society.

The most valuable use cases which are unique to an XR HMD are still niche, obscure, weird and generally can't even be comprehended by the corporate world.

Source: X post

@yewnyx I have a tendency to be delusionally optimistic so when you're thinking "holy shit thats

@yewnyx I have a tendency to be delusionally optimistic so when you're thinking "holy shit thats a lot of work" I'm probably aware :) but I'll look at musl.

For latter Im very intrigued by work of @JustineTunney https://justine.lol/ape.html https://justine.lol/cosmopolitan/ https://github.com/jart/blink

Source: X post

@stclairashley This is a major component of what got me so absorbed into vrchat... you can walk

@stclairashley This is a major component of what got me so absorbed into vrchat... you can walk through spaces filled with dozens of people and everyone wants to talk. Kind of ironic that people in cities must simulate in-person interaction to experience this.

Source: X post

Something most in tech miss about XR; hanging out with people every night for a year on social m

Something most in tech miss about XR; hanging out with people every night for a year on social media gets you acquaintances; but hanging out with a group every night for a year in social VR gets you real friends that know far too much about each other and are far too comfortable.

Source: X post

Severance and Silo are really good... why is Apple coming out with these great sci-fi dystopias

Severance and Silo are really good... why is Apple coming out with these great sci-fi dystopias about corporations completely owning human beings in extremely immoral ways... ?

Source: X post

It's this capacity of Social VR as a communication medium to ease and accelerate social interact

It's this capacity of Social VR as a communication medium to ease and accelerate social interaction which makes it the most fascinating usage of tech I've ever come across. The only thing I've found which is as effective at this is MDMA, but it might not even be as good.

Source: X post

@yewnyx What things don't you think it'd cover? What about pledge?

@yewnyx What things don't you think it'd cover? What about pledge?

Source: X post

@yewnyx I'm wondering mostly in terms of, it not using any of the OS UX, nor even networking, no

@yewnyx I'm wondering mostly in terms of, it not using any of the OS UX, nor even networking, nor files. That's all another thing to deal with. I'm wondering only about its ability to prevent malevolent syscalls and malevalent memory operations. It looks to me like you can do that?

Source: X post

@yewnyx I know you have to write applications with some new API, or have a special compiler conv

@yewnyx I know you have to write applications with some new API, or have a special compiler convert calls, but as I understand, a native app effectively locked down with pledge or capsicum is protected against malicious code as effectively a wasm VM?

Source: X post

@yewnyx Hypothetical is, if the web were starting right now when pledge and capsicum are availab

@yewnyx Hypothetical is, if the web were starting right now when pledge and capsicum are available, and if those were practical OS's, would something like a JS VM be needed?

Source: X post

@yewnyx Does a VM really provide you a level of security beyond what capsicum could provide? Lik

@yewnyx Does a VM really provide you a level of security beyond what capsicum could provide? Like is there a level safety that simply wouldn't be possible with capiscum and a native executable by itself unless you also ran that code in a wasm vm under the same capsicum controls?

Source: X post

@yewnyx ...and you know the other related to subject I keep wandering myself down... CEF and nod

@yewnyx ...and you know the other related to subject I keep wandering myself down... CEF and node have become such behemoths that it does not seem absurd to me at all to think you could virtualize, or emulate, a tiny, minimal, linux sytem to provide common base-level api

Source: X post

...were starting right now and FreeBSD capsicum, or OpenBSD pledge, was standard. Would as much

...were starting right now and FreeBSD capsicum, or OpenBSD pledge, was standard. Would as much energy have been put towards a sandboxed javascrap VM and WebAssembly? I find it hard to believe it would have...

Source: X post

@mawntee welcome to vrchat

@mawntee welcome to vrchat

Source: X post

I keep thinking more and more about how WebAssembly and all the browser sandboxing tech may have

I keep thinking more and more about how WebAssembly and all the browser sandboxing tech may have been effect of too much market share initially gathering on OS's that did not have good sandboxing/security functionality built into them by default... Like if "Web-Esque" things...

Source: X post

I have an oddly strong instinct to sell my car, and get a few more huskies, and try to live enti

I have an oddly strong instinct to sell my car, and get a few more huskies, and try to live entirely via land mushing.

Source: X post

why does the nintendo 2ds xl cost as much as the switch....

why does the nintendo 2ds xl cost as much as the switch....

Source: X post

@technobaboo @gfodor @0xNerevar I’m not fond of wgpu… also I like C

@technobaboo @gfodor @0xNerevar I’m not fond of wgpu… also I like C

Source: X post

Or their Haskell programmers... but Haskell crazy is almost the exact opposite of C crazy. C cra

Or their Haskell programmers... but Haskell crazy is almost the exact opposite of C crazy. C crazy is obsession with deconstruction and freedom, whereas haskell crazy is obsession with elaborate rules and following them. I find Haskell crazy less amusing.

Source: X post

I've noticed...

I've noticed...

Not all C programmers are crazy.

But the craziest programmers tend to be C programmers.

Source: X post

@gfodor @technobaboo @0xNerevar I keep wanting something which pulls together all the most optim

@gfodor @technobaboo @0xNerevar I keep wanting something which pulls together all the most optimized embedded C style libraries into a pure vulkan engine. FLECS and STB seems like good pieces. Not 100% sure on the others. I want something that can run AMAZING on a rpi.

Source: X post

@birdmademejoin C crazy ends you up with your own plot of land and mini-society commune trying t

@birdmademejoin C crazy ends you up with your own plot of land and mini-society commune trying to disconnect from all the oppressive controls of mainstream society. Haskell crazy ends you up trying to wield government to authoritatively destroy international tech that doesn't fit your rules.

Source: X post

I bought a super cheap KVM for like $40 and it sucked...

I bought a super cheap KVM for like $40 and it sucked...

So I bought a fancier KVM for like $150 and it still sucked...

So I thought screw this I'm tired of messing with bad KVMs and bought the super fancy KVM for like $800... Still sucks. I guess KVMs can't be done perfectly.

Source: X post

How heavy is the Godot engine for what it does? Like compared to writing a game highly optimized

How heavy is the Godot engine for what it does? Like compared to writing a game highly optimized in C+Vulkan from scratch, how much slower is Godot? Is worse or better than Unity and Unreal in that regard?

Source: X post

Can probably work if you're devices are all basic plugnplay USB2. Your monitor is 60hz 1080p or

Can probably work if you're devices are all basic plugnplay USB2. Your monitor is 60hz 1080p or 4k, no G-Sync or Freesync.

But if you have a fancy 4k 144hz gsync monitor and fancy logitech peripherals that need drivers, getting any of that going through a KVM reliably is hell

Source: X post

Also, anyone want to buy some KVMs?

Also, anyone want to buy some KVMs?

Source: X post

I'm realizing a dog also kind of functions like a roomba...

I'm realizing a dog also kind of functions like a roomba...

Source: X post

@yewnyx i know its near impossible

@yewnyx i know its near impossible

Source: X post

...to cease control of it as they would any other thing of great power. Why would you even need

...to cease control of it as they would any other thing of great power. Why would you even need an army and nukes when you could selectively turn off people's cash flow in any given nation that don't follow demands? It's scarily powerful for social control. It's in this way...

Source: X post

...It's in this way that, Yes, something in the Web3 space is a requirement for a civil and huma

...It's in this way that, Yes, something in the Web3 space is a requirement for a civil and humane society given where everything is headed. This is what some R&D in the Web3 space has been solving. How do you make systems where it's logic can be collectively enforced by people.

Source: X post

...in a "Web3 Trustless" manner as much as possible. Where the logic that distributes the money

...in a "Web3 Trustless" manner as much as possible. Where the logic that distributes the money is hardcoded into the system, or perhaps changeable by some other hardcoded process that could be affected by voting, and that hardcoded logic enforced by nodes anyone can run...

Source: X post

...if this occurs on any kind of monetary system which has any kind of administrative access to

...if this occurs on any kind of monetary system which has any kind of administrative access to selectively target people, you've just made something which is the target for some kind of modern war. The currency and logic which would enable a BUI to exist has to be implemented...

Source: X post

For so many reasons, where society is going, we are going to need some kind of BUI. However, if

For so many reasons, where society is going, we are going to need some kind of BUI. However, if there is any mechanic by which anything can gain control over who does and doesn't get BUI, it is one of the most effective tools for tyranny. As such, groups and parties will move...

Source: X post

VSCode comes with too much out of the box. I want it to be text-only first

VSCode comes with too much out of the box. I want it to be text-only first

notepad++ I like, but lacks plugins for useful things like markdown preview / pdf export

Maybe sublime is it? But was hoping for FOSS...

Source: X post

http://atom.io used to be my favorite general purpose text editor but since that got shut down I

http://atom.io used to be my favorite general purpose text editor but since that got shut down I haven't found a new text editor that quite fills that niche perfectly. Is there anything else new out there which is comparable? Better?

Source: X post

@dankvr I have neovim installed... just haven't really dug into it outside linux ssh sysadmin st

@dankvr I have neovim installed... just haven't really dug into it outside linux ssh sysadmin stuff

I feel like the exact workflow to use vim as a general purpose text editor akin to atom or np++ still kind of eludes me. Like what if I want markdown preview?

Source: X post

How to cover yourself and entire bathroom in toilet water in 5 easy steps:

How to cover yourself and entire bathroom in toilet water in 5 easy steps: 1. Purchase “Toilet Unclogger” online from obscure Chinese manufacturer 2. Take unexpectedly large+heavy steel compressed air device out of box 3. Pump to full capacity 4. Place in toilet 5. Pull trigger https://x.com/_rygo6/status/1658263642461310976/photo/1

Source: X post

@yewnyx Which video? I saw this one https://www.youtube.com/watch?v=RiA9PtTLi-Q Which I wouldn't

@yewnyx Which video? I saw this one https://www.youtube.com/watch?v=RiA9PtTLi-Q Which I wouldn't label as ragging on Ukraine, more so framing it in a larger global and historical geopolitical context which gives no preference to any player involved.

Source: X post

@yewnyx If you take a wider global and historical context it does sound like more blame is put o

@yewnyx If you take a wider global and historical context it does sound like more blame is put on the US than what you'd hear in US media, but squarely I don't think so, he's gone on about many many contributing factors.

Source: X post

@nomolos96 Part of issue is, I think it must be open source.

@nomolos96 Part of issue is, I think it must be open source.

For something to be truly fundamental it needs to be open source.

Source: X post

This political season don't watch CNN nor FOX. Just watch Noam Chomsky videos on Youtube.

This political season don't watch CNN nor FOX. Just watch Noam Chomsky videos on Youtube. https://www.youtube.com/results?search_query=noam+chomsky

Source: X post

...the like killer Smartphone App or Web App phase of VR, but really, were still at the Bell Lab

...the like killer Smartphone App or Web App phase of VR, but really, were still at the Bell Labs trying to figure out the basic fundamentals of Unix phase of VR. The 3DFX trying to figure out the basic fundamentals of a graphics API phase of VR.

Source: X post

...support from anywhere. Existing companies. Investors. Already-funded startups which would ben

...support from anywhere. Existing companies. Investors. Already-funded startups which would benefit from this. One good contact said I can probably grants to build something so fundamental. Which is sad because the threshold which VR needs to first pass through relies...

Source: X post

...something like this, but current OS's are not either. Not even current graphics drivers have

...something like this, but current OS's are not either. Not even current graphics drivers have everything I think they need. I've been mulling over trying to author and push a new Vulkan extension to support something I see as critical for this to work. People think we're at...

Source: X post

@pvncher you gotta get the x proto L https://xtia.design/products/xtia-xproto-l

@pvncher you gotta get the x proto L https://xtia.design/products/xtia-xproto-l

Source: X post

@pvncher ...Ive also developed the opinion that closed cases are stupid

@pvncher ...Ive also developed the opinion that closed cases are stupid

Source: X post

@pvncher I find it's just not much issue with everything mounted vertically and so much air flow

@pvncher I find it's just not much issue with everything mounted vertically and so much air flow, dust just blows through it

Source: X post

...on what will be a very slow moving, done-on-the-side, exploration of a small subset of very t

...on what will be a very slow moving, done-on-the-side, exploration of a small subset of very technically skilled, and committed developers, for free. Pretty much how the Linux kernel initially came to be. It's gonna be a while.

Source: X post

I've concluded. ATX motherboards are stupid for general-use PCs. Foregoing some kind of special

I've concluded. ATX motherboards are stupid for general-use PCs. Foregoing some kind of special use case workstation that needs a particular card that can ONLY be PCI-E. There is no good reason to build a desktop computer as anything but mini-ITX. I regret my ATX build.

Source: X post

...is why I am, ironically, not very enthused about any game engine able to take VR to where it

...is why I am, ironically, not very enthused about any game engine able to take VR to where it needs to be. Nor am I enthused about the web browser being able to take it where it needs to go. As not only are game engines and browsers not designed, conceived of, to support...

Source: X post

...is it being a kind of OS, a 3D-centric, social-centric OS. Where you can piecemeal functional

...is it being a kind of OS, a 3D-centric, social-centric OS. Where you can piecemeal functionality that all interops in some way. Where through many 'nodes' of logic it could evolve 3D modelling or IDE-like functionality, while innately being networked and collaborative. This...

Source: X post

...in unity, then you click the publish button on your avatar, reload and you get to test out yo

...in unity, then you click the publish button on your avatar, reload and you get to test out your stuff right there for your group of friends to see and interact with immediately. There's a certain magic to it that's more engaging than any other kind of development I've done...

Source: X post

...Even sadder to me this is such a deep tech, technologically complex and elusive thing which i

...Even sadder to me this is such a deep tech, technologically complex and elusive thing which is -REALLY- hard to explain the significance of to anyone who is not like a kernel and graphics driver dev that pretty I've been absolutely incapable of getting the slightest bit of...

Source: X post

@dankvr @neos_vr This is a problem I'm realizing in the VR space. Too many are thinking like gam

@dankvr @neos_vr This is a problem I'm realizing in the VR space. Too many are thinking like game developers, when really need more people thinking like OS, Kernel and Graphics driver developers. Doing this right requires much lower level than a game engine API.

Source: X post

@dankvr @neos_vr I know it's closest thing... but it's not close at all :(

@dankvr @neos_vr I know it's closest thing... but it's not close at all :(

Source: X post

@dankvr @neos_vr Actually. Metachromium is the closest thing in terms of how it technically work

@dankvr @neos_vr Actually. Metachromium is the closest thing in terms of how it technically worked. I dug all through that a bit ago and see something along those lines being an import component. Although I've kind of convinced myself an embedded browser can't do all it needs to, but its a piece.

Source: X post

...but it's still nowhere near what I want it to be. Like I want a group of friends to all be ab

...but it's still nowhere near what I want it to be. Like I want a group of friends to all be able to fiddle with the avatar's skeleton, weights, networked in real-time, someone else editing shaders, and them recompiling for everyone to see. The ultimate use of VR as I see it...

Source: X post

A big component missing from the VR scene is the ability to develop VR content, in VR, with othe

A big component missing from the VR scene is the ability to develop VR content, in VR, with other people networked. You can sorta kinda get a feel for this in VRC, being in a world with a bunch of friends, with the VR headset on your head, but still at your desk working...

Source: X post

You know... I've been trying to play Zelda Breath of the Wild and I just don't like Zelda games.

You know... I've been trying to play Zelda Breath of the Wild and I just don't like Zelda games. I've never been able to beat a Zelda game. Just the whole vibe and style is always unappealing to me. Metroid Dread however is amazing. Must play.

Source: X post

@yewnyx The moral defensibility of political demographics is a whole complicated subject, but fr

@yewnyx The moral defensibility of political demographics is a whole complicated subject, but from living and traveling around the US quite a bit, I found the only two defensible ones are tolerant religious conservatives and grassroots left anarchist/socialist types. Everything else is..

Source: X post

@yewnyx ...is so intertwined with deep seated hatred and resent for something. Some form of flip

@yewnyx ...is so intertwined with deep seated hatred and resent for something. Some form of flippant elitism that makes them view others as less than human. Status Quo "Left" is just more effective at concealing how much they really hate people in general under a cloak of patronizing.

Source: X post

One side says give more power to the government!

One side says give more power to the government!

Another side says give more power the corporations!

But in the case of the US Fed. There is no meaningful difference between Government and Corporations. It's a false dichotomy.

Source: X post

@Jonathan_Blow Id guess it was at least a few hundrend million to move the windows app icons to

@Jonathan_Blow Id guess it was at least a few hundrend million to move the windows app icons to the center of the screen… so this had to be a billion…

Source: X post

https://x.com/_rygo6/status/1656466205165912064/video/1

https://x.com/_rygo6/status/1656466205165912064/video/1

Source: X post

@0xNerevar @JCorvinusVR @mattparlmer I just had this discussion with some friend other day who j

@0xNerevar @JCorvinusVR @mattparlmer I just had this discussion with some friend other day who just couldn't process that any other form of human nature could exist... and was just like... hm... there is something here to better understand but I haven't quite figured out what it is or how to explain t.

Source: X post

@malekiRe It seems an easier route to me to make the cultural changes to not need cars as much,

@malekiRe It seems an easier route to me to make the cultural changes to not need cars as much, than it would be to get everyone world-round an electric car.

Source: X post

@FreyaHolmer If you know something of high certainty, explain it, just be very quick and clear w

@FreyaHolmer If you know something of high certainty, explain it, just be very quick and clear when you don’t have high certainty, and don’t know, and easily be willing to give the authority to whomever does on any particular thing.

Source: X post

We need to make it clear culturally, people who don't believe in all remote work for jobs where

We need to make it clear culturally, people who don't believe in all remote work for jobs where it's not absolutely necessary do not believe in putting effort to lowering environmental impact. Despite what they say their actions are that of climate-change deniers.

Source: X post

Me + Husky + https://www.amazon.com/dp/B0157D405U/ref=sspa_dk_detail_0?psc=1&pd_rd_i=B0157D405U&

Me + Husky + https://www.amazon.com/dp/B0157D405U/ref=sspa_dk_detail_0?psc=1&pd_rd_i=B0157D405U&pd_rd_w=MhhIj&content-id=amzn1.sym.d81b167d-1f9e-48b6-87d8-8aa5e473ea8c&pf_rd_p=d81b167d-1f9e-48b6-87d8-8aa5e473ea8c&pf_rd_r=77YWGZKX71CQMDP3ZY1H&pd_rd_wg=FHd6w&pd_rd_r=2987fc0e-c10d-42a3-a38b-1c446c10d034&s=sporting-goods&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUFPMU5DNjFJNVo1SDQmZW5jcnlwdGVkSWQ9QTAwNzkzNDQzRTJRVENCNVVUUTRNJmVuY3J5cHRlZEFkSWQ9QTA1NTYwOTYyUTk2T1BCSVpBUkZVJndpZGdldE5hbWU9c3BfZGV0YWlsX3RoZW1hdGljJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ==

Source: X post

I look at things like this, and while the technical person in me definitely impressed, and fully

I look at things like this, and while the technical person in me definitely impressed, and fully respects it. To me it's an entire league below VRChat in how interesting it is. Seeing the contents of other people's minds, made manifest in VR, is so much more interesting. https://x.com/AiBreakfast/status/1654559695359860736

Source: X post

Now that I’ve gotten a dog, I completely understand the plot line of John Wick.

Now that I’ve gotten a dog, I completely understand the plot line of John Wick.

Source: X post

@technobaboo I believe the sad truth is, the US probably will not let that happen without a seri

@technobaboo I believe the sad truth is, the US probably will not let that happen without a serious fight. Surveillance and control levers are already all intertwined with US banking and economic systems.

Source: X post

Me: ChatGPT give me the Vulkan C code to draw a sphere!

Me: ChatGPT give me the Vulkan C code to draw a sphere!

ChatGPT: https://x.com/_rygo6/status/1652870490044911616/photo/1

Source: X post

Basic Universal Income I believe is a very necessary route for society to start going towards, b

Basic Universal Income I believe is a very necessary route for society to start going towards, but implemented incorrectly it can easily become a form of tyranny. As whoever who can push the button on turning someone's income off will have incredible power over steering society.

Source: X post

@FlohOfWoe @reduzio I always thought ObjC was generally a better approach than C++. I also quest

@FlohOfWoe @reduzio I always thought ObjC was generally a better approach than C++. I also question if it's supposed issues really are that bad. I think if you approach it as primarily C, then selectively use some ObjC features for architectural purposes, it can be quite nice.

Source: X post

@DennisonBertram ...So if public services and taxes become too high or too useless, people can v

@DennisonBertram ...So if public services and taxes become too high or too useless, people can vote to reign them in change them. But if something privatized becomes too unwieldly, to out of alignment with public good, people can also vote to effectively steer private sector with some policy.

Source: X post

@DennisonBertram I found it valuable to compare Sweden and Switzerland for this. As both are som

@DennisonBertram I found it valuable to compare Sweden and Switzerland for this. As both are some of the most functional governments but Sweden has more public services + high taxes, while Switzerland lower but more privatized. What seems to make both worth is effectively responsive democracy...

Source: X post

Hyper-realistic avatar translates into “Give ___corporation a perfect 3D scan of all physically

Hyper-realistic avatar translates into “Give ___corporation a perfect 3D scan of all physically identifying features” It will be interesting to see who is okay with that, but gut tells me that will hit a new line many are not apt to cross.

Source: X post

Have you ever tried to play the original Zelda 1 or Metroid 1 on an NES emulator in recent histo

Have you ever tried to play the original Zelda 1 or Metroid 1 on an NES emulator in recent history? Seriously those games are so incredibly difficult. I don't understand how my 5-year-old self managed to play those.

Source: X post

...Unnecessary and useless energy consumption is bad no matter what. I don't think it's far out

...Unnecessary and useless energy consumption is bad no matter what. I don't think it's far out to presume, if you could audit all unnecessary and useless energy consumption, even if Bitcoin were completely useless, it's probably a smaller percentage compared to all useless...

Source: X post

...Probably because of exactly that, and they use the energy narrative as a front. If they cared

...Probably because of exactly that, and they use the energy narrative as a front. If they cared about reducing useless energy consumption they'd want regulation that affected all useless energy use, not one thing which is less than a single percentile of all energy consumption.

Source: X post

@macil_tech ...Of typical people, most don't actually care. It's a loud minority always with the

@macil_tech ...Of typical people, most don't actually care. It's a loud minority always with these things. Most people don't care. About any specific thing really. For the loud minority that got bombarded with emotion jarring media such predispositions tend to be emotionally based...

Source: X post

@macil_tech ...not logically based. Unfortunately, some grown adult's minds were so hooked into

@macil_tech ...not logically based. Unfortunately, some grown adult's minds were so hooked into the media that they had emotional meltdowns in professional contexts over it and staked a lot on this narrative. So, some will just never let it go for pride or something.

Source: X post

@macil_tech I think the politicians who never really cared about the environment would stay the

@macil_tech I think the politicians who never really cared about the environment would stay the course of "Establishment-Threatening-Technology-Bad" because its source of political power for them. Worse they'd probably evade more effective energy regulation to keep this narrative in-tact...

Source: X post

...energy consumption. So then why did some people get so fixated on Bitcoin? Seems if the inten

...energy consumption. So then why did some people get so fixated on Bitcoin? Seems if the intent is to stop useless and unnecessary energy consumption you'd want regulation to do it for everything. Something to try and account for all externalities in the cost of energy is...

Source: X post

@dtupper @htcvive I've been for years trying to communicate to corporate VR side that Full-Body

@dtupper @htcvive I've been for years trying to communicate to corporate VR side that Full-Body Tracking is more important and significant than facial tracking. But feels like it's still a losing battle. Have you gathered any articles, or studies, or theories that work well to explain why?

Source: X post

Does Bitcoin consume too much energy without providing enough value? Maybe. It's real hard to ob

Does Bitcoin consume too much energy without providing enough value? Maybe. It's real hard to objectively quantify that. But what's odd to me about hose who are so certain it does; wouldn't anything consuming too much energy without providing enough value also be just as bad?...

Source: X post

@cnlohr Start hosting YouTube meetups in VRChat

@cnlohr Start hosting YouTube meetups in VRChat

Source: X post

...a decent starting point and should be done. So much energy is wasted on so much. But the focu

...a decent starting point and should be done. So much energy is wasted on so much. But the focus on exclusively Bitcoin is curious because given that there's probably a lot of wasted energy, why fixate on the one thing that can threaten establishment economic controls?...

Source: X post

My husky sleeps as much as a cat... I though this was supposed to be a difficult high energy bre

My husky sleeps as much as a cat... I though this was supposed to be a difficult high energy breed.

Source: X post

@BattleAxeVR @TabGames3 I expect lighthouses to be the premium enthusiast tracking solution for

@BattleAxeVR @TabGames3 I expect lighthouses to be the premium enthusiast tracking solution for a while. Theres handful of things in the full body tracked social VR use case thats hard for CV to do. May not be comparable for years. Even by then lighthouse trackers would be so cheap in comparison.

Source: X post

This may be the first fully preassembled keyboard I've bought which I'd consider using over one

This may be the first fully preassembled keyboard I've bought which I'd consider using over one of my DIY ones. https://www.keychron.com/products/keychron-s1-qmk-custom-mechanical-keyboard?variant=40299846074457

Source: X post

Sprints and Jira are the Homeopathy of Software Engineering.

Sprints and Jira are the Homeopathy of Software Engineering.

Source: X post

@guillefix A few cities I've been in called those 'Ecstatic Dances' Can usually find in-the-morn

@guillefix A few cities I've been in called those 'Ecstatic Dances' Can usually find in-the-morning non-alcoholic exercise-focused dance events by looking up where the ecstatic dances are.

Source: X post

Drama creates engagement.

Drama creates engagement. Engagement creates drama.

The never-ending cycle of human social ecosystems.

The only real solution I see is tasteful productive drama. Drama of a certain kind of aesthetic sense that it somehow develops and refines those involved.

Source: X post

@dankvr This is a great video from Huxley that's applicable to this:

@dankvr This is a great video from Huxley that's applicable to this: https://youtu.be/caCkMX6YdYU It's always a fight over that 20%...

Source: X post

@dankvr No longer is it the stock market and wall St the poster child that’s scamming society at

@dankvr No longer is it the stock market and wall St the poster child that’s scamming society at large, it’s the tiny tiny irrelevant part crypto space playing casino with monkey jpegs.

It’s both sad and liberating to realize, most don’t actually believe anything, it’s just trends.

Source: X post

@dankvr It’s wild how I know some who cursed Bezos, Amazon, Wall St, USD economic hierarchy for

@dankvr It’s wild how I know some who cursed Bezos, Amazon, Wall St, USD economic hierarchy for years, but media managed to push the right underlying psychological button, so now Bitcoin is bad, which makes USD, Credit Card Corps and everything running on Bezos servers good to them.

Source: X post

@dankvr Because human predisposition is primarily determined by whatever initially evoked the gr

@dankvr Because human predisposition is primarily determined by whatever initially evoked the greatest emotional response and the corporate media blitzkrieg telling people public open source web infrastructure is bad and is burning down the planet evoked a lot of emotions.

Source: X post

@oldbooksguy The root of the resentment is the ever-consolidating power and control under a hand

@oldbooksguy The root of the resentment is the ever-consolidating power and control under a handful of non-democratic authoritarian-esque government/corporate institutions and people who rationalize this as Okay because of a kind of Stockholm Syndrome and some payout they think they'll get...

Source: X post

@oldbooksguy ...Rand never lived to see the private sector become so big and powerful that it ca

@oldbooksguy ...Rand never lived to see the private sector become so big and powerful that it captures the government and employs its own form of widespread surveillance and behavioral manipulation. I think Rand would update her views given that.

Source: X post

...if a politician doesn't do something we want, let's just build a brick barrier around their h

...if a politician doesn't do something we want, let's just build a brick barrier around their house so they can't leave. Standing in the street with signs asking nicely just seems like you don't really care that much about whatever it is your protesting....

Source: X post

I don't know what their protesting about entirely, nor if I'd entirely agree, but I feel America

I don't know what their protesting about entirely, nor if I'd entirely agree, but I feel Americans need to take some notes here because all the US protesting attempts seemed pretty ineffective at doing anything in recent years, the French seem to have a better grasp on this... https://x.com/WatcherGuru/status/1649908957354291201

Source: X post

@gfodor @joeteicher ...to the end conclusion, until we can end corruption in the medical and pha

@gfodor @joeteicher ...to the end conclusion, until we can end corruption in the medical and pharmaceutical industries, and in the FDA, and get government agencies more effectively reigned in with democratic control, most any power given to them will immorally be used for maximal profit however.

Source: X post

@gfodor @joeteicher Honestly, I wouldn't be the most against fairly authoritarian enforcement of

@gfodor @joeteicher Honestly, I wouldn't be the most against fairly authoritarian enforcement of things in a pandemic... the problem however is what largely determined "Correct" was corporate cash flow mixed with media hysteria, rather than rigorous *skeptical* scientific process. Which leads me...

Source: X post

...would be to seed the cultural political dialogues with so much high-tension political subject

...would be to seed the cultural political dialogues with so much high-tension political subject of vitriol and trigger words and associated triggering concepts that everyone just shuts up about it because it's too awkward and too much of a minefield to ever say anything...

Source: X post

Wild to me that this:

Wild to me that this: https://noctua.at/en/nh-l12s cools a 13900k better than this: https://noctua.at/en/nh-c12p-se14 from my own tests...

never judge a heatsink/fan purely by surface area and airflow

Source: X post

...which ends up with the people not ever forming perspective from their own process of open and

...which ends up with the people not ever forming perspective from their own process of open and free discussion, but instead everyone just getting programmed by CNN, FOX, Whatever Television Overlord and that being their entire political reality and understanding.

Source: X post

Periodically I want to rant about US politics on here because it's Twitter... but then I'm like,

Periodically I want to rant about US politics on here because it's Twitter... but then I'm like, that's not very professional, not that I maintain a high degree of that anyways... but then it just occurred to me, that's weird. That US political dialogue is at a point where no...

Source: X post

...one feels comfortable openly and intricately discussing such things out in the open because e

...one feels comfortable openly and intricately discussing such things out in the open because everything has become so volatile in US politics and political culture. It just makes me think how, if you wanted to disempower a voting population, a first really good way to do it...

Source: X post

@katdov Zbrush was one guy too for a while, now I think it’s a handful of engineers. 3Dcoat I th

@katdov Zbrush was one guy too for a while, now I think it’s a handful of engineers. 3Dcoat I think has always been one guy, maybe a few now? The industry often forgets how wildly productive a few engineers can be if you actually let them run full speed on something they find worth doing

Source: X post

@amaldorai I’ve suspected this about Apple too, theyve always been ahead on latency and hz. Its

@amaldorai I’ve suspected this about Apple too, theyve always been ahead on latency and hz. Its far more a hardware/manufacturing issue than software. I don’t think oculus had access to advanced enough optics, also I do think they prioritized making it cheaper over alleviating VR sickness.

Source: X post

@amaldorai I think most issues with VR eye strain could be solved if an HMD maker prioritized 18

@amaldorai I think most issues with VR eye strain could be solved if an HMD maker prioritized 180+ hz and the absolute minimal motion to photon to latency possible however. But most thought other things to be more important for investment.

Source: X post

...want it to be a few layers deep in the social network of virtual in-person relationships. So

...want it to be a few layers deep in the social network of virtual in-person relationships. So that people who aren't cool, who will just ruin things, can't even get to it, nor even know it exists. It's basically the same as any underground art culture or some kind of commune...

Source: X post

...through an actual space, and actually talk to people, and develop real rapport, it completely

...through an actual space, and actually talk to people, and develop real rapport, it completely prevents all the forces of bullshit that ruined crypto, are ruining/will ruin AI, and did ruin what aspects of "The Metaverse" that made it to the 2D browser. The browser and web...

Source: X post

...the next major wave of anything, art, music, style, or tech, always crept its way up out of t

...the next major wave of anything, art, music, style, or tech, always crept its way up out of the hidden corners and cracks of society, because it's only there which it can grow and develop while evading the perverting forces of mainstream flow. It used to be that tech was a...

Source: X post

...in which you must traverse it, and the intermixing of needing to develop real in-person rappo

...in which you must traverse it, and the intermixing of needing to develop real in-person rapport, virtually, it's a new hidden corner of the web that can actually be the birthing ground of something worth existing. A new major wave of something can take root and evolve there.

Source: X post

I'm realizing, the only thing that can be a 'Next Big Thing' is Social VR specifically because i

I'm realizing, the only thing that can be a 'Next Big Thing' is Social VR specifically because it cannot go viral via the established screen-based mainstream channels of virality across the web that completely ruin anything they touch. The requirement to put on a HMD and walk...

Source: X post

...hidden crack. In the 90's, in the 00's, the web was the underground. That's why such major th

...hidden crack. In the 90's, in the 00's, the web was the underground. That's why such major things got birthed out of it, the web wasn't in mainstream flows of media, stupidity and profit incentive. It was an experimental underground space. But now the web is mainstream. It...

Source: X post

...enable human culture and community capable of stewarding anything to what it needs to become

...enable human culture and community capable of stewarding anything to what it needs to become to be anything worth existing, especially a "Next Big Thing" which could be as foundational to society as any prior tech revolution. "The Next Big Thing" has to completely avoid the...

Source: X post

@Emmathyst_ It's amusing to me how many of the people having a meltdown over the need for "Net N

@Emmathyst_ It's amusing to me how many of the people having a meltdown over the need for "Net Neutrality!" just 6-ish years ago are now stating seriously that we need government control of what software chips can execute. We are probably going to need to deal with some people this decade.

Source: X post

...current web. If you can do anything with it through a 2D web browser via UX mechanics that pe

...current web. If you can do anything with it through a 2D web browser via UX mechanics that people habitually flow through current Web 2.0 with, consider it DOA. It will be ruined. For anything to not be ruined on the web, the prerequisite must be that you have to walk into...

Source: X post

...can no longer be the birth ground of anything worth existing, in the same way the middle of D

...can no longer be the birth ground of anything worth existing, in the same way the middle of Disney Land or a big commercial mall can't be the birth ground of any such thing. It's far too much in mainstream view and flow. But Social VR, the complete change medium and the way...

Source: X post

...but done virtually. This is the only way anything will be able to grow at a grassroots level

...but done virtually. This is the only way anything will be able to grow at a grassroots level in the web in a way people can actually love, without it being sucked up and destroyed by the hype and money train that wants to extort any petty cent it can. This is why...

Source: X post

...as we know it is dead. It's just a death pen of vultures. You drop any little piece of meat i

...as we know it is dead. It's just a death pen of vultures. You drop any little piece of meat in it, and it goes crazy and mutilates the thing into something ugly to be avoided in a matter of months. Not to any fault of any individual it's just this communication medium can't...

Source: X post

...are probably screen-based solutions that can give some entry, but for self-expression nothing

...are probably screen-based solutions that can give some entry, but for self-expression nothing really beats full body capture and a custom-tailored avatar to wear. So, such people will be the most socially fluent to traverse such spaces. Then whatever it is your making, you...

Source: X post

@againstutopia Well... he's not a real person, he's an AI trained by certain benefactors of USD

@againstutopia Well... he's not a real person, he's an AI trained by certain benefactors of USD hegemony to try and psy-op the web.

Source: X post

...a spatial social dimension where your personality and identity can be expressed, and where ot

...a spatial social dimension where your personality and identity can be expressed, and where other people are present for you to develop real rapport with, so they can tell your someone actually worth talking to. Doing this in VR I think is the most straightforward, but there...

Source: X post

still to this day I don't trust running pull, push, merge or rebase in anything but the git bash

still to this day I don't trust running pull, push, merge or rebase in anything but the git bash terminal

GUI only for composing multi-file commits and diffing/merging individual files

Source: X post

…months before everyone is annoyed with the word AI as they have been with anything the hype mon

…months before everyone is annoyed with the word AI as they have been with anything the hype money train pushed the past few years. I think if you want to get anywhere in tech today you have to realize the mainstream channels of virality are toxic, they’ll ruin your effort.

Source: X post

AI is already ruined. Prepare to get bombarded left and right with some AI thing declaring you m

AI is already ruined. Prepare to get bombarded left and right with some AI thing declaring you must do it or lose out to sell on FOMO. With bots constantly posting AI spam on your tweets. There’s already get-rich-quick AI books on Amazon. Whole books. I give it another six… https://x.com/mishadavinci/status/1647600851450744833

Source: X post

@0xNerevar Oh I know... I just kind of want to tear up all that social coding though :)

@0xNerevar Oh I know... I just kind of want to tear up all that social coding though :)

Source: X post

@0xNerevar I'd say guns, weapons, aren't right-wing at all as theyre definitely a thing amongst

@0xNerevar I'd say guns, weapons, aren't right-wing at all as theyre definitely a thing amongst PNW left-wing anarchist crowd. Those all about self-sufficient communities and whatnot. Swords and bows too. Knew a guy that'd carry a long sword to festivals, also a girl whod carry her long bow

Source: X post

@0xNerevar albeit these types dress more like an elf out of mad max of some post-apocalyptic fil

@0xNerevar albeit these types dress more like an elf out of mad max of some post-apocalyptic film rather than cowboys... but it's more the big city neoliberal type that's anti-weapon... and who also annoy me in their attempt to define what "left-wing" means and all associated

Source: X post

ya I'm definitely going to have to get this... https://youtu.be/W3-MDzvTInI

ya I'm definitely going to have to get this... https://youtu.be/W3-MDzvTInI

Source: X post

@KTBlackadder @gfodor It's kind of a thing...

@KTBlackadder @gfodor It's kind of a thing... https://youtu.be/ZRPjgSrQ8gA https://youtu.be/R1wUg9HCODU but it's an underground art culture as real as any underground art culture I've encountered in any city in RL, it's not advertised much, it's word of mouth, people aren't strangers, it is close and personal.

Source: X post

@KTBlackadder @gfodor I haven’t been to a venue, bar, club, lounge, festival, or any RL party in

@KTBlackadder @gfodor I haven’t been to a venue, bar, club, lounge, festival, or any RL party in about two years since I got into VRC for weekend events. There’s a long list of Pros and Cons, but I think once you get a good sense of VR’s Pros for social gatherings they definitely outweigh the cons.

Source: X post

@yewnyx Jack Dorsey’s personal push at trying to get a decentralized identity protocol to take r

@yewnyx Jack Dorsey’s personal push at trying to get a decentralized identity protocol to take root. First app to use it bluesky, a Twitter clone, but bigger deal is the AT decentralized identity protocol, let’s anything build off of it to start trying to growing decentralized ecosystem

Source: X post

Previous schedule:

Previous schedule: Wake up 15 minutes-ish before 9 am standup, work, never go outside nor exercise. Sleep till 1 pm on weekends.

New Rescued-4-year-old-Husky schedule as of this weekend: https://x.com/_rygo6/status/1647317724002140160/photo/1

Source: X post

Whenever I see any cool new 3D "thing", game or just 3D art or new 3D effect someone is playing

Whenever I see any cool new 3D "thing", game or just 3D art or new 3D effect someone is playing with, there's a bittersweetness, because if we had a suitable Social "3D Browser"/"3D OS"/"Metaverse Foundation" these wouldn't be disconnected 3D fragments most will never see...

Source: X post

...spread across websites to download or see an image of. Rather they'd be additions that many m

...spread across websites to download or see an image of. Rather they'd be additions that many more would wander through in VR, or on a screen, at some point, because it's an addition to a cohesive flow of virtual foot traffic. Even if it weren't even a whole game but just...

Source: X post

...only for it to be a background prop people will glance at for a few seconds in some game wher

...only for it to be a background prop people will glance at for a few seconds in some game where they are running through entirely fixated on shooting or some other gameplay mechanic, but rather 3D art can become the focus, for the sake of nothing other than 3D art.

Source: X post

...like VRC shows in comparison to everything before. When you can load 3D content into a cohesi

...like VRC shows in comparison to everything before. When you can load 3D content into a cohesive shared social space in VR, 3D art now becomes something worthy of being beheld in its own right. No longer does a dev spend like a month on some hero tree prop and shader effects...

Source: X post

...downloading a completely separate EXE, loading into a completely separate runtime, with entir

...downloading a completely separate EXE, loading into a completely separate runtime, with entirely different mechanics/controls/UI that of course wouldn't even be cohesively networked with everything else for friends to come with you. This is the real beauty of what something...

Source: X post

...a little experiment of some 3D effect or interactive mechanic, many would probably come look

...a little experiment of some 3D effect or interactive mechanic, many would probably come look or play with it, as having to do nothing but walk to a location, or walk through a portal, with your group of friends to go see it is a huge removal of friction compared to...

Source: X post

No automatic way to import my Twitter images so had to make do in a hurry… https://x.com/_rygo6/

No automatic way to import my Twitter images so had to make do in a hurry… https://x.com/_rygo6/status/1646019535789772801/photo/1

Source: X post

@DyLhun This is oddly applicable to me... I've been looking into the fact you can re-mineralize

@DyLhun This is oddly applicable to me... I've been looking into the fact you can re-mineralize teeth past few weeks, surprised I hadn't come across anything mentioning nanohydroxyapatite in the papers google led me to initially.

Source: X post

I could skim through the entire 3DFX graphics API in like 2 minutes and generally understand all

I could skim through the entire 3DFX graphics API in like 2 minutes and generally understand all of it https://www.gamers.org/dEngine/xf3D/glide/glideref.htm those must have been nice times...

Source: X post

@CixLiv Meta is still trying to recruit me to the VR department, so I know they are at least sti

@CixLiv Meta is still trying to recruit me to the VR department, so I know they are at least still trying to get more people who appear very committed to VR. Reducing a department down to a more committed subset can enable that subset to be more effective at steering it properly.

Source: X post

@AntonHand Out of about 4 dozen or so queries it gave me like 8 lines of useful GLSL code. Most

@AntonHand Out of about 4 dozen or so queries it gave me like 8 lines of useful GLSL code. Most often seemed to waste time making me read through way more text for not very good answers. Might be due to different problem domains but also my google-fu is probably far above average.

Source: X post

Seems possible that AI pointed at data servers would be highly effective at hacking them. Rapidl

Seems possible that AI pointed at data servers would be highly effective at hacking them. Rapidly analyzing systems to for vulnerabilities, reading actual source code or just scanning memory as it executes, to learn patterns and vulnerabilities. That'll be probably be a problem.

Source: X post

@lachmcculloch Then we're going to have data centers escalating in mass and energy consumption t

@lachmcculloch Then we're going to have data centers escalating in mass and energy consumption to out-AI the other AI, then militaries waging war against data centers, militaries hooking up to AI to help defend data centers. This is how Terminator starts.

Source: X post

@lachmcculloch If Terminator wasn't dramatic, it wouldn't have been a blockbuster.

@lachmcculloch If Terminator wasn't dramatic, it wouldn't have been a blockbuster.

(I'm being dramatic because I'm partly joking)

Source: X post

I thought, what would happen if I de-lidded my 13900 loaded it up with liquid metal and clamped

I thought, what would happen if I de-lidded my 13900 loaded it up with liquid metal and clamped the heatsink down right on the die? This actually works fine with amazing temps. The unexpected problem is, if I even lightly tap the heatsink it blue screens.

Source: X post

Does anyone seriously believe that AI will empower people in general, rather than consolidate mo

Does anyone seriously believe that AI will empower people in general, rather than consolidate more power to a select few?

Source: X post

@ThePrimeagen What do you do about it?

@ThePrimeagen What do you do about it?

Source: X post

@timoni I always suspected if a super-intelligent AI were given access to all data on human beha

@timoni I always suspected if a super-intelligent AI were given access to all data on human behavior and psychology on the web it'd figure a far easier route to whatever it wanted to control than killing or anything in the realm of physical threat.

Source: X post

When developers today say 'Don't Reinvent The Wheel' I think they often miss there are very very

When developers today say 'Don't Reinvent The Wheel' I think they often miss there are very very few wheels even available. Most wheels have the car and a chunk of manufacturing plant inseparably attached to it.

Source: X post

The thing about the web is, it started as a document browser, then year by year all the pieces g

The thing about the web is, it started as a document browser, then year by year all the pieces got added for code, media, networking, graphics etc. Now web is essentially an OS, each tab is a virtualized OS, but issue is, it's not a good OS.

Source: X post

@yewnyx Stronger unions and financial reform I'm all for and I see them as related but tangentia

@yewnyx Stronger unions and financial reform I'm all for and I see them as related but tangential to what I was saying. Neither a union nor agreement on financial mechanics produces as technological system in which the way it's functioning can be validated by anyone. This isn't only a...

Source: X post

@yewnyx ...monetary system I am thinking about, it's an anything-system. Constraints put on AI.

@yewnyx ...monetary system I am thinking about, it's an anything-system. Constraints put on AI. Processes by which data gathering of users occurs. Voting systems. Anything in which you'll need anyone around the globe to be able to feel a high sense of certainty its doing as stated.

Source: X post

The current state of USD Hegemony, the massive Military Industrial Complex it funds via USD Debt

The current state of USD Hegemony, the massive Military Industrial Complex it funds via USD Debt, and the ability this has given the US to long-participate in the exploitation of many other nations. I find it really hard to believe that's all necessary for US prosperity. Given...

Source: X post

...physical existence needs to be dispersed across a substantial majority of people, otherwise i

...physical existence needs to be dispersed across a substantial majority of people, otherwise it has no incentive to be anything but malevolent as much as it can get away with to those people.

Source: X post

Imagine for a moment, what if the current USD economic system, stock market and all associated,

Imagine for a moment, what if the current USD economic system, stock market and all associated, to keep existing, required a substantial majority of people every day to do something simple and cheap to sustain it. If a substantial majority of people didn't do this, it would...

Source: X post

...If the foundation on which something exists requires mass amounts of people to do something i

...If the foundation on which something exists requires mass amounts of people to do something in order to enable that existence, it seems a lot less probable that 'something' could veer too far into being malevolent to those people. It seems to me a really terrible design...

Source: X post

...how much money is sucked up by that whole thing that could've otherwise been spent on interna

...how much money is sucked up by that whole thing that could've otherwise been spent on internal public services. Given how much suffering it's caused in other nations with so little return. It seems more reasonable to me to view it as a global anti-humanitarian atrocity.

Source: X post

...for an economic system to be able to exist and completely dictate people's entire lives just

...for an economic system to be able to exist and completely dictate people's entire lives just by maybe a dozen organizations running some bank of servers in their building. If something is to have that much power in this world, the requirements for it's...

Source: X post

...collapse? Do you think a substantial majority of people would, without reward, do something s

...collapse? Do you think a substantial majority of people would, without reward, do something simple and easy every day to ensure the existence of USD, stock market etc? When you frame it like this, it makes me see the potential of 51% attacks on PoW chains not as a flaw, but...

Source: X post

...and once humanity finally all came online to express their shared collective desires, every p

...and once humanity finally all came online to express their shared collective desires, every possible thing scared and/or pissed off some significant number of people, and so humanity could no longer do anything but sit in a stasis arguing about what to do until their end.

Source: X post

...a feature. An economic system that benefits from a substantial majority of people having to d

...a feature. An economic system that benefits from a substantial majority of people having to do something in good faith to ensure that economic system exists is better than an economic system in which no matter what a substantial majority does, they can't affect it all. The...

Source: X post

...51% attacked mechanism is a balancing mechanic. Any economic system which would grow on top o

...51% attacked mechanism is a balancing mechanic. Any economic system which would grow on top of such a thing would be under great threat if a substantial majority of people did not find it worthwhile to do that thing in good faith to maintenance and ensure its existence...

Source: X post

@yewnyx Complication that made think a lot is it even happens with open source if money hype mac

@yewnyx Complication that made think a lot is it even happens with open source if money hype machine gets to it. I am starting to think you have to build tech that by design cannot rapidly scale in response to rapid influx of demand in order avoid this.

Source: X post

...which are support structures of anything extremely critical for public good can scale to nati

...which are support structures of anything extremely critical for public good can scale to national, international, global levels if the ability to audit and check validity of everything running in the system is not widely open for anyone to participate in.

Source: X post

@SereneJewell There are grants from private sources too which ironically seem better than public

@SereneJewell There are grants from private sources too which ironically seem better than public funding for some things. You can try crowdfunding. DAOs were supposed to be another way. Projects have made it places with these, but it comes down to the same problem of individuals also want...

Source: X post

@SereneJewell ...sad thing is they do end up burning stupid amounts of capital, but on stupid th

@SereneJewell ...sad thing is they do end up burning stupid amounts of capital, but on stupid things. Like millions going towards how to re-skin an OS or app or cram some new nonsense feature in no one wants to try and market another round of rent-seeking rather than do anything of value.

Source: X post

@SereneJewell ...pushed through tech corporate machine. It's not surprising to me, most people d

@SereneJewell ...pushed through tech corporate machine. It's not surprising to me, most people don't have money to throw around, especially to donate to prospective tech R&D they understand little of. Corporations are supposed to be finely tuned reliable money machines managing necessary...

Source: X post

@SereneJewell ...foundations people rely on. But the money-making machines needs to feed back in

@SereneJewell ...foundations people rely on. But the money-making machines needs to feed back into something other than the corporation just making more money as predictably as possible. They have to proactively burn more capital on things that have no initially provable route to ROI. The...

Source: X post

@SereneJewell ...an ROI. "Public Good" crowdsourcing isn't quite a thing. If someone doesn't get

@SereneJewell ...an ROI. "Public Good" crowdsourcing isn't quite a thing. If someone doesn't get an ROI or a product it's a donation. Some have managed with that like Wikipedia or Blender, but it seems kind of lopsided the number of things that make it through that way versus how much gets...

Source: X post

Distributed consensus mechanisms are one of the most important technical foundations for anythin

Distributed consensus mechanisms are one of the most important technical foundations for anything in the future. The first big use case people used such tech for is a digital bank, but the necessity is so much more fundamental than that. I don't see how technological systems...

Source: X post

@Digital_VRC I don't think VRC makes people depressed. The presence of depression, drama and oth

@Digital_VRC I don't think VRC makes people depressed. The presence of depression, drama and other issues is pretty comparable to any other large open community-oriented social groups I've been in IRL. VRC I think is just very transparent to real human nature without fake fronts.

Source: X post

@amaldorai Social VR is the killer app of VR, same as it was on mobile. In Social VR the interac

@amaldorai Social VR is the killer app of VR, same as it was on mobile. In Social VR the interaction with others is so much more direct, simulated in-person hanging out. People make or break it. So as I see it, the crux is not if Apple can make VR cool, it’s if Apple can make people cool.

Source: X post

@amaldorai I don't have a lot of confidence in any of them, none of the tech giants seem to be a

@amaldorai I don't have a lot of confidence in any of them, none of the tech giants seem to be able to catalyze any novel social platform from their internal process. My primary concern with any hardware is if they'll keep it open enough to enable someone else fill in the blank.

Source: X post

This seems to be the cycle now:

This seems to be the cycle now: 1. new tech does something interesting 2. money people hype it 3. draws mass attention 4. some do something questionable with it 5. turns into controversy and political 6. some group moves to ban it 7. becomes taboo/awkward subject people avoid

Source: X post

@SereneJewell That seems kind of the crux of the problem to me. If whatever your proposing doesn

@SereneJewell That seems kind of the crux of the problem to me. If whatever your proposing doesn't provide a clear route to giving someone another zero, then you won't get any funding nor any media attention. If it threatens to remove a zero, then whatever it is will be attacked and demonized.

Source: X post

@SereneJewell If you can prove with high certainty solving that real world problem will produce

@SereneJewell If you can prove with high certainty solving that real world problem will produce high returns on investment in less than a few years. That's the way capital consolidates and compounds. You make the money pile more money or you don't get money. This actually doesn't have to be...

Source: X post

@SereneJewell ...funded research and development provided better support for a wider range of in

@SereneJewell ...funded research and development provided better support for a wider range of interests and incentives. There is still public funding in the US, but I personally think that area has become fairly dismal. Other countries are better in this regard though.

Source: X post

@SereneJewell ...explicitly malevolent but the bigger problem is you're competing with others ov

@SereneJewell ...explicitly malevolent but the bigger problem is you're competing with others over that money pile. Which incentivizes it all towards the lowest risk and highest returns possible. Rarely is that what any typical person would think is best for society. Traditionally publicly...

Source: X post

@rebeccabarkin "Imagine"? I think the problem is, right now, "The Middle" is filled with a bunch

@rebeccabarkin "Imagine"? I think the problem is, right now, "The Middle" is filled with a bunch of TVs and Web Streams explicitly calculated to pull the psychological strings to lead people into the path of most exploitability. Have to start doing something different than what we have.

Source: X post

I don't know why it is but even after dealing with this thousands of times over the years I can

I don't know why it is but even after dealing with this thousands of times over the years I can never remember all the matrix formulas for TRS off top of my head. I think my brain unconsciously knows I can look on the internet, so it never stores them in the long-term brain RAM.

Source: X post

@birdmademejoin some are warranted

@birdmademejoin some are warranted

Source: X post

@JCorvinusVR Parallel Societist

@JCorvinusVR Parallel Societist

Source: X post

...was before. What will come from that? Lots of stuff. Good and bad for sure. But if you view s

...was before. What will come from that? Lots of stuff. Good and bad for sure. But if you view something internal to people as being the thing we need to figure out, get out, manifest. What better way to do it than a global shared virtual construct where the contents of our...

Source: X post

...Use CBDC to increase the leverage that people have over the economic system. It really could

...Use CBDC to increase the leverage that people have over the economic system. It really could be a great thing for that. BUT we all know that's not what is going to happen, if CBDC ever comes to be it will be in a manner that transfers power from people to corporate/government.

Source: X post

...trying to answer the question of "What will guide humanity?" or "Where does the discretion of

...trying to answer the question of "What will guide humanity?" or "Where does the discretion of 'Next' come from for the human enterprise?" Much of the allure of AI I see as coming from remnants of religious programming. I don't mean a religious person is allured by AI...

Source: X post

...that the grandiose is external and above. That this cycle will be same as all prior cycles of

...that the grandiose is external and above. That this cycle will be same as all prior cycles of religious mania confusing people and distracting people from the truth that the real fulcrum of existence has and always will be something internal to people.

Source: X post

...religious modality is carrying right on to AI. Where even if a person is an Atheist, never re

...religious modality is carrying right on to AI. Where even if a person is an Atheist, never religious, they still have this remnant in their unconscious programming from religious times past, and they are acting it out in a new context. Expecting the AI to be the thing that...

Source: X post

...religion painted an image of God in the Sky, all powerful and good. For generations upon gene

...religion painted an image of God in the Sky, all powerful and good. For generations upon generations people looked to the sky, prayed, hoped. They looked out to the external world, for this "Thing" that would lead them and make everything right. I can't help but notice this...

Source: X post

...modalities of religious perspective and framings on reality are passed to us unconsciously, i

...modalities of religious perspective and framings on reality are passed to us unconsciously, it's ingrained in our culture, our language. One of these modalities is the notion of the disembodied "Good and All Powerful". The "God" separate from us and above humans. For some...

Source: X post

...minds for all to see. It exteriorizes the internal mind. It makes the imagination explicit. I

...minds for all to see. It exteriorizes the internal mind. It makes the imagination explicit. In a shared construct where minds can then interface more directly with another mind. The capacity of communication between minds can be amplified, a door opened that never...

Source: X post

...mind can exist and interact far more literally and directly than it ever could before? It has

...mind can exist and interact far more literally and directly than it ever could before? It has the potential to make a kind of collective human mind. Like a human imagination hivemind for the evolving of thoughts, ideas and understanding faster and further than we ever could...

Source: X post

I personally see AI and Social VR to be two sides of the same coin. Or rather, the root impulse

I personally see AI and Social VR to be two sides of the same coin. Or rather, the root impulse which draws people to these is the same. Except, depending on first principles and foundational perspectives, people are more or less drawn to one or the other. This root impulse is...

Source: X post

...I mean the first principles and foundational perspectives that would allure someone to AI are

...I mean the first principles and foundational perspectives that would allure someone to AI are remnants of religious programming. Even if someone stopped believing a religion, or never even did in their entire life, we come from heavy religious tradition and many...

Source: X post

I actually kind of like the idea of an enforced CBDC if and only if its use was enforced for all

I actually kind of like the idea of an enforced CBDC if and only if its use was enforced for all corporations and politicians. So, then all the activity of corporate and government can be surveilled, audited, automatically taxed. Then citizens can use whatever, CBDC, crypto...

Source: X post

...guides humanity, manages the discretion of "Next". Now contrary to that is Social VR, but som

...guides humanity, manages the discretion of "Next". Now contrary to that is Social VR, but someone will be more drawn to Social VR from this root impulse if their mind is NOT operating with the programming that the "Good and All Powerful" is something separate...

Source: X post

@greenpeaceusa Pretty sure the USD-debt funded Military Industrial Complex extorting developing

@greenpeaceusa Pretty sure the USD-debt funded Military Industrial Complex extorting developing nations for decades and stockpiling nuclear weapons is a more grotesque externality of a currency than anything Bitcoin ever did.

Source: X post

@gfodor Well to be fair... it's probably more like 10x the furry rate and 20x the anime catgirl

@gfodor Well to be fair... it's probably more like 10x the furry rate and 20x the anime catgirl rate, but most new people don't "really" become furry weabboos. The avatar just fit. I'd also put my money on it having had reduced the celibacy rate. Also know a few marriages it saved

Source: X post

...disembodied and above humans. Rather Social VR seems like the thing to guide humanity if you

...disembodied and above humans. Rather Social VR seems like the thing to guide humanity if you instead perceive some quality innate and internal to us as being "it". Why? Because the potential of Social VR is that it enables us to turn ourselves inside out. We can wear our...

Source: X post

...before. If anything is going to sort out and manifest that 'internal' aspect of humans, what

...before. If anything is going to sort out and manifest that 'internal' aspect of humans, what better way than a global shared virtual construct in which minds can exist and interact beyond what they ever could before? But who knows? Maybe the AI is actually the climax...

Source: X post

...a centuries-long compounding of written language, to text, to math, to science, to code, to c

...a centuries-long compounding of written language, to text, to math, to science, to code, to computers all for the birth of the disembodied all mighty and powerful above and beyond humans. But maybe it's just another cycle of the same impulse behind all religious expectation...

Source: X post

...

... 15 All these extra lines/abstractions are adding operations making it slower. 16 All these extra lines/abstractions are making it take longer to read and change. 18 I wish there were fewer lines. 19 I wish these lines ran faster. 20 code move bits why it move bits slow

Source: X post

...

... 13 I've dealt with so much code now that no codebase is difficult. 14 If this code had fewer lines and abstractions my brain wouldn't have to parse as much invented interpreted 'blah blah' and I could figure out what it's really doing faster. ...

Source: X post

...

... 11 Dealing with the last 100+ codebases over 10+ years, all with their seemingly whacky inventions and interpretations has made code no longer difficult. 12 Oh. The only reason I cared so much about 'blah blah' was because I wanted it easier for my inexperienced self. ...

Source: X post

...

... 8 Hm. Seems last dozen codebases didn't understand 'blah blah' why are they so bad! 9 ... and neither did the next dozen codebases... nor the next dozen... nor the next.. 10 Hm. Seems like everyone interprets 'blah blah' differently based on context and problem domain. ...

Source: X post

...

... 6 I will write good code because of 'blah blah' to be the foundation of the future! 7 Why do so many developers do whacky stuff and make it so much harder!? They need to learn! Don't they want their code to be a real foundation! ...

Source: X post

My Evolution As A Programmer:

My Evolution As A Programmer:

1 Woah this is hard! 2 Starting to get it! 3 Oh no! Must read many books to learn to write 'good' code! 4 Patterns principles abstraction SOLID TDD acronyms 'blah blah' 5 Woah this code is terrible these developers don't understand 'blah blah'! ...

Source: X post

I don't know if anyone experiencing crypto FOMO needs to hear this, but hear it is: https://yout

I don't know if anyone experiencing crypto FOMO needs to hear this, but hear it is: https://youtu.be/jJDT1MS5oA0?t=76

Source: X post

...to build is completely irrelevant in how it's designed to function. "NFT" "Blockchain" "Datab

...to build is completely irrelevant in how it's designed to function. "NFT" "Blockchain" "Database" "SQL" "REST API" these are foundational pieces of networking technology without opinion on how they are used. I know for many lay people these were presented as marketing terms...

Source: X post

...pressure things to try to and replicate Roblox. The foundational networking technologies bein

...pressure things to try to and replicate Roblox. The foundational networking technologies being used to build a virtual economy need to stop being seen as the negatives. Rather, the way in which the virtual economy actually functions needs to be the negative to be scrutinized.

Source: X post

...foundational technologies used to implement a virtual economy with little opinion on how the

...foundational technologies used to implement a virtual economy with little opinion on how the virtual economy is implemented. In all seriousness you can implement an extremely malevolent and exploitive virtual economy with traditional Web2 stack and FIAT. The technology used...

Source: X post

For some people "Web3" "NFT" "Cryptocurrency" became trigger words which they felt they must fig

For some people "Web3" "NFT" "Cryptocurrency" became trigger words which they felt they must fight and defeat! But it never made any sense to me why someone would be against the technology used for a virtual economy rather than the way in which the virtual economy functioned...

Source: X post

...As though a completely exploitive virtual economy severely not in the favor of users is "Okay

...As though a completely exploitive virtual economy severely not in the favor of users is "Okay" if it only hooks to FIAT but hooking to any cryptocurrency makes it bad by default?! It doesn't matter if a virtual economy is resting on a blockchain or a SQL database. These are...

Source: X post

...and that's why this happened, but that was stupid, pushed by stupid startups. It's the equiva

...and that's why this happened, but that was stupid, pushed by stupid startups. It's the equivalent of if many people hated the first websites on the web and consequently "HTTP" came to be some trigger word for them, and they hated the foundational technology rather than what...

Source: X post

...a look at Roblox? Where creators get 30 cents of FIAT for every dollar spent? The unfortunate

...a look at Roblox? Where creators get 30 cents of FIAT for every dollar spent? The unfortunate truth of this is, Roblox is the darling unicorn of virtual worlds in the eyes of investors. Anyone investing in virtual worlds probably wants it to turn into a Roblox and will...

Source: X post

...a company used it for. I'm not saying this because I want to promote anything using Web3 tech

...a company used it for. I'm not saying this because I want to promote anything using Web3 tech, rather I want to point out that some of the most successful virtual economies out there which are not very good for end users are actually built with Web2 tech. Has anyone taken...

Source: X post

@0xNerevar I think exchanges and onramp are inevitable, but what I more mean to highlight is tha

@0xNerevar I think exchanges and onramp are inevitable, but what I more mean to highlight is that some kind of cryptocurrency and virtual economy of a platform could get so big by itself that people wouldn't care if it connects to fiat.

Source: X post

...Whole effort of trying to get society to transfer fiat to crypto is quite fraught. However, a

...Whole effort of trying to get society to transfer fiat to crypto is quite fraught. However, a virtual foundation and economy never even explicitly presented as competition to fiat, rather it's "just" a virtual social paradigm that happens to get huge and subsume the economy...

Source: X post

There is a scenario I can see where the whole effort of 'Cryptocurrency Exchanges' could turn ou

There is a scenario I can see where the whole effort of 'Cryptocurrency Exchanges' could turn out to be an error. That really the better way to build an alternate economy and currency within society is through an open virtual platform that doesn't explicitly interop with fiat...

Source: X post

...other but instead of it being an MMO or Shooter game with a 100 million or so users, it is a

...other but instead of it being an MMO or Shooter game with a 100 million or so users, it is a comprehensive virtual social world and runtime that can support applications, any kind of business, events, games etc. Basically, the whole metaverse thing. Like if the web was...

Source: X post

...itself a 3D spatial environment and the foundation of most computing activity, like a browser

...itself a 3D spatial environment and the foundation of most computing activity, like a browser, operating system, game engine and social platform combined. Then it grew to billions of users and its virtual economy so large that it subsumes the fiat economy unintentionally.

Source: X post

...at all. Rather the virtual world become so large, so pervasive, so popular, that its currency

...at all. Rather the virtual world become so large, so pervasive, so popular, that its currency starts to carry value and be used in society irrelevant of it having an exchange to go to fiat. Sort of like WoW or Roblox players trading game items or game currency with each...

Source: X post

A big issue with Twitter, FB, YouTube etc. is they're great at spreading information about issue

A big issue with Twitter, FB, YouTube etc. is they're great at spreading information about issues in the world, but they're terrible at enabling people to go through any nuanced process of apprehension to produce a solution and collective understanding around that solution...

Source: X post

...you feel like you are on the sideline, not a part of it. But in Social VR, you can join some

...you feel like you are on the sideline, not a part of it. But in Social VR, you can join some gathering or party, or group, and just be around people. Not have to actively put on any show or produce content to feel like you are a part of what is going on. This is seemingly...

Source: X post

US and certain western nations have more capital in bitcoin than most, but western nations tend

US and certain western nations have more capital in bitcoin than most, but western nations tend to have disproportionately more whales and piles of capital. So, measurement of capital in BTC doesn't signify what ratio of the general population actually uses BTC. This is what...

Source: X post

...this report tried to quantify:

...this report tried to quantify: https://blog.chainalysis.com/reports/2022-global-crypto-adoption-index/ They call it "Grassroots Adoption". Referring to the rate at which a nation's general population is invested in and using cryptocurrency.

Only two wealthy western nations are in the top 20. That is the US and the UK...

Source: X post

...they are center of the world and what they see happening in their tiny little area of the glo

...they are center of the world and what they see happening in their tiny little area of the globe is representative of everything. But it's not. Really, it's primarily nations with untrustworthy banking infrastructure, untrustworthy political...

Source: X post

...there. Being around people. Maybe talking. Maybe interacting. But not necessary. Where Social

...there. Being around people. Maybe talking. Maybe interacting. But not necessary. Where Social Media incentivizes people to ever more absurd output of content to get attention, to interact and to not feel alone. Comparatively Social VR incentivizes people to just be there...

Source: X post

...such a basic and insignificant thing, but it's so important for a platform. As the state of f

...such a basic and insignificant thing, but it's so important for a platform. As the state of feeling "alone" doesn't come from lack of active participation, lack of talking, lack of outputting content or whatever. It's from lack of the presence of others who you like to...

Source: X post

...output of content by those involved is not required. Just the presence of you being in VR is

...output of content by those involved is not required. Just the presence of you being in VR is sufficient. This makes it way different as no longer must it be about "Doing" or the "Current Thing", the current wave of active participation in content. It's about just being...

Source: X post

One thing so important about Social VR as a social web medium is that you can feel as though you

One thing so important about Social VR as a social web medium is that you can feel as though you're fully participating by just sitting there. Join an instance and just sit with people. Your presence, other's presences, it does something. Whereas on Twitter, YouTube...

Source: X post

...less wealthy nations. Despite whatever political gesturing some politician might do, they don

...less wealthy nations. Despite whatever political gesturing some politician might do, they don't care. They love the fact USD hegemony has long aided in extorting so many others. They love the power it brings. That's all it's really about. Thats why they made it a controversy.

Source: X post

...it, that it's only filled with techie people. The only reason it appears like that is because

...it, that it's only filled with techie people. The only reason it appears like that is because that's what is occurring in your tiny tiny tiny little corner of the world. It's a big error of thought I see so common with people in wealthy developed nations where so many think...

Source: X post

...is to laugh and mock cryptocurrency as some silly stupid thing, turn it into some big controv

...is to laugh and mock cryptocurrency as some silly stupid thing, turn it into some big controversy and taboo. Really, that's the reason it did turn into such a big controversy in the US. Because it disrupts the economic leverage that USD hegemony has over many of these...

Source: X post

...interaction from outputting content, people responding and interacting, but you stop outputti

...interaction from outputting content, people responding and interacting, but you stop outputting content and its back to isolated and alone. But Social VR is different because the baseline doesn't have to be isolated alone. It can be quietly "chilling" with friends. Active...

Source: X post

...institutions or nations that have been subject to various forms of economic warfare that prim

...institutions or nations that have been subject to various forms of economic warfare that primarily fill that top 20 list of Grassroots Adoption. Nations pushed to cryptocurrency out of dire need due existential threat. All the while the attitude of many in the US...

Source: X post

...FB, Instagram, you must actively post and interact via text or image or video to feel as thou

...FB, Instagram, you must actively post and interact via text or image or video to feel as though you are socializing and interacting with others. Just mere existence is not satisfactory to feel as though you are a part of it. If you're not posting, getting responses etc...

Source: X post

@dankvr ...Social VR I find uproots many modalities of screen-based platforms because the presen

@dankvr ...Social VR I find uproots many modalities of screen-based platforms because the presence of others being in a room with you changes everything. Like, Twitter on your phone will draw much of your attention while alone, but much less so with several friends standing in your room.

Source: X post

@dankvr I see drawing on VRC worlds with 3D pens to be one of the async-ish mechanics there. I t

@dankvr I see drawing on VRC worlds with 3D pens to be one of the async-ish mechanics there. I think async has interesting potential in a lot of social virtual worlds, but I wouldn't expect it to be as significant in specifically Social VR. The VR and Fully Body Tracking aspect of...

Source: X post

@cnlohr these people really need vrchat

@cnlohr these people really need vrchat

Source: X post

...but neither the US nor the UK are #1. The nations that predominately fill that list are ones

...but neither the US nor the UK are #1. The nations that predominately fill that list are ones that many people in the US probably wouldn't expect to see given media narratives on the subject. Many in the US think no one uses it, they think people only speculatively invest in...

Source: X post

...be around. If you have to always do some song and dance, output content, to get attention, to

...be around. If you have to always do some song and dance, output content, to get attention, to get interaction, to feel like you're participating and not alone, you don't ever really feel not alone. Screen-based social media gets you the temporary high of attention and...

Source: X post

...and be enjoyable, so people want to be around you. It's way a different dynamic. Given this,

...and be enjoyable, so people want to be around you. It's way a different dynamic. Given this, I can't help but think the type of culture and mental habits that Social VR would condition into Society and People would be so much better than what Social Media is currently doing.

Source: X post

Unfortunate truth about the fed and banking systems, they are not on the side of people. If push

Unfortunate truth about the fed and banking systems, they are not on the side of people. If push comes to shove, they will pull whatever lever they can to protect corporate and wealthy power however they can get away with it, everyone else is essentially collateral for that.

Source: X post

@prvncher In theory this was one premises behind IL. Compile down to an IL then let the compiler

@prvncher In theory this was one premises behind IL. Compile down to an IL then let the compiler optimize it per machine during JIT. In practice only sorta worked. I always wondered if you could feed an AI an opcode spec for it auto-generate an IL JITer that'd be super optimized per chip.

Source: X post

The saddest thing about AI is, even if we did get a grip on alignment, we could never align it t

The saddest thing about AI is, even if we did get a grip on alignment, we could never align it to solve the most dire issues in the US. Like how do you distribute government funding for optimal well-being? Hah! Not happening! It'll be "Aligned" to increase corporate bottom-line.

Source: X post

@prvncher ...to feel like they are participating in the securing of the network. Security and ge

@prvncher ...to feel like they are participating in the securing of the network. Security and getting mining rewards requires active expending of energy, so money itself does not make money just by its mere existence. This puts an extra barrier on capital consolidating capital...

Source: X post

@prvncher ...There's also certain game theory dynamics to PoW at global scale adoption I see whe

@prvncher ...There's also certain game theory dynamics to PoW at global scale adoption I see where if a nation were to adopt a crypto legally they probably want to have some stake in securing of the network. Running some miners, even if not profitable, is a way for everyone...

Source: X post

@prvncher ...the network becomes, the more and more expensive it will probably be for lagging na

@prvncher ...the network becomes, the more and more expensive it will probably be for lagging nations to buy into a network. If 80% of the Globe adopts ETH the remaining countries buying enough ETH to have an appropriate sense of stake in the network will probably be prohibitively...

Source: X post

@prvncher ...The mining/maintenance of a network no longer being profitable but instead turning

@prvncher ...The mining/maintenance of a network no longer being profitable but instead turning into something done for public good at personal expense is probably a good thing. No one motivated by profit and power would try to approach it, nor control/monopolize it. Which means it will...

Source: X post

@prvncher ...the market with small, efficient, cheap ASICs. They could probably do it rather fas

@prvncher ...the market with small, efficient, cheap ASICs. They could probably do it rather fast as BTC hashing is simpler than a GPU or CPU. At a certain point of ASICS being commoditized I'd expect you'll end up with ASICs running many places. A good business argument is put them in...

Source: X post

@prvncher ...probably fall back on a larger mass of distributed individuals or groups doing it a

@prvncher ...probably fall back on a larger mass of distributed individuals or groups doing it as a public service which is probably better. Of course, all of this is a speculative maybe, but there's still a handful of routes I see where PoW long term does play out better than PoS.

Source: X post

@prvncher ...nerds like to run a server doing stuff, if its efficient enough, why not? Maybe win

@prvncher ...nerds like to run a server doing stuff, if its efficient enough, why not? Maybe win the hash lottery. See it as public good like running an opensource mirror or something. Use it as space heater. There's number of routes where cheap efficient ASICs would end up flooding the...

Source: X post

@prvncher ...how to make silicone as energy efficient as possible. There's a lower limit that wo

@prvncher ...how to make silicone as energy efficient as possible. There's a lower limit that would be hit in efficiency due to the physics of silicone then new ASICs wouldn't be profitable. If BTC doesn't die, which I don't think it will, this playing out long term seems plausible to me..

Source: X post

@prvncher ...from this but if the only economic incentive for a cycle was to squeeze silicone fo

@prvncher ...from this but if the only economic incentive for a cycle was to squeeze silicone for efficiency as much as possible because more GHash by itself didn't mean more profit due to the network being flooded, it's not necessarily bad to put pure economic incentive on figuring out...

Source: X post

@prvncher ...expensive. Whereas them running a bunch of second hand cheap efficient ASICs, or ma

@prvncher ...expensive. Whereas them running a bunch of second hand cheap efficient ASICs, or maybe ones that just come in some other technology like turbines or whatever could bring a sense of participation with lower barrier. Some countries will of course have more hash rate but at a...

Source: X post

@prvncher ...certain point of saturation, unless a country is aiming for a 51% attack to take it

@prvncher ...certain point of saturation, unless a country is aiming for a 51% attack to take it over, they don't have economic incentive to stockpile ASICs for profit, so it's probable they'd run such things more as a national security effort rather than hash rate arms race for profit...

Source: X post

@prvncher ...BTC network with hashrate making it so that mining is no longer profitable. At a ce

@prvncher ...BTC network with hashrate making it so that mining is no longer profitable. At a certain point it could become so flooded it just kind of kills the mining industry. Profitability would only come from advancement in efficiency. There would be some cycles of e-waste...

Source: X post

@prvncher BTC ASICs are rare and expensive because niche small companies started from the ground

@prvncher BTC ASICs are rare and expensive because niche small companies started from the ground up for that purpose. Heavyweights like Intel, AMD, NV competing in the space could probably push the cost and efficiency of ASICs far beyond what current small niche makers could and flood...

Source: X post

@prvncher ...as with PoS your money can just sit there making money without comparable expending

@prvncher ...as with PoS your money can just sit there making money without comparable expending of some physical constraint, it's possible a small handful of players could consolidate huge capital doing nothing, become gatekeepers to having stake in the network. The bigger and bigger...

Source: X post

@prvncher ...anything that makes excess energy. Wind turbines, hydro turbines, solar panels, eve

@prvncher ...anything that makes excess energy. Wind turbines, hydro turbines, solar panels, even gas cars have excess energy. Even if not profitable, marketing them as "Cost Reduction" is still viable for such a use case. But I'd also expect people would run them just because. Lots of...

Source: X post

@JayHadHope ...(which I use) take you down to Quest2 FOV so if prescription lens attachment real

@JayHadHope ...(which I use) take you down to Quest2 FOV so if prescription lens attachment really is as compact and better-fitting as it looks then I'd expect it to have just as good of FOV as the Index + Prescription Lenses/Glasses

I want a cable because I use VR for 4-8 hours...

Source: X post

@JayHadHope ...non-standardized right now and is quite a pain to get working in VRChat with your

@JayHadHope ...non-standardized right now and is quite a pain to get working in VRChat with your avatar perfectly. People spend so much time manually tweaking the settings and their avatar to get it to match their face well. I figured I'll just wait a year or two till it standardizes more...

Source: X post

@JayHadHope It's very close to what I wanted:

@JayHadHope It's very close to what I wanted:

- Lighthouse tracking and only lighthouse tracking because it performs better, and Tundras need it which is the best FBT solution.

- It is 1920x1920 at 90hz which is higher res than the Index.

I wish Hz was higher but Motion-To-Photon...

Source: X post

@JayHadHope ...is the more important factor here and the Vive 1 had Motion-To-Photon latency at

@JayHadHope ...is the more important factor here and the Vive 1 had Motion-To-Photon latency at 90hz comparable to the Index at 120hz because Index is particularly bad at this for some reason. So, it's possible Motion-To-Photon latency could be just as good as Index if they do it right...

Source: X post

@JayHadHope ...I don't want built in audio because I'd rather use high-end IEMs

@JayHadHope ...I don't want built in audio because I'd rather use high-end IEMs

Supposedly Mic is topnotch

Looks to do all the critical things a little better or hopefully just as good as the index as small/light/minimal as possible. Thats all I wanted. Index is great just want it smaller

Source: X post

@JayHadHope ...Facial tracking would be nice but it's so much less critical than FBT. If it's a

@JayHadHope ...Facial tracking would be nice but it's so much less critical than FBT. If it's a choice between a Lighthouse HMD and an Inside-Out HMD with Facial Tracking, Lighthouse HMD is automatic winner for me because ease of use with Tundras and FBT. Also, Facial Tracking is so...

Source: X post

@JayHadHope ...Also, OLEDs can have faster switching times than LCDs so lot of reason to expect

@JayHadHope ...Also, OLEDs can have faster switching times than LCDs so lot of reason to expect Motion-To-Photon Latency to be sufficient in comparison to Index but someone still needs to measure! I will be disappointed if it measures worse than Index.

Index + Prescription Lenses/Glasses...

Source: X post

If Intel keeps iterating on bitcoin asics, which then draw in competitors, and it starts a btc a

If Intel keeps iterating on bitcoin asics, which then draw in competitors, and it starts a btc asic efficiency arms race, I could see that making PoS far less viable for any global scale financial backing. https://www.intel.com/content/www/us/en/products/docs/blockchain/custom-asic-product-brief.html

Source: X post

As I see it, a rugpull on the value of USD itself is over 50% probable. Prior financial crises c

As I see it, a rugpull on the value of USD itself is over 50% probable. Prior financial crises came at a time when printing lots of money was Okay, they did not come right after a pandemic where historical levels of money had already been printed and was part of the cause...

Source: X post

1. print money which later requires a rate raise

1. print money which later requires a rate raise 2. raise rates which then harms economy 3. harmed economy causes business failures 4. business failures require more printing of money 5. repeat?

Source: X post

@yewnyx @DennyCloudhead My concern with VR sickness isn't so much to get older demographics into

@yewnyx @DennyCloudhead My concern with VR sickness isn't so much to get older demographics into VR. It's more so because "VR" is nearly a taboo/fringe notion among gatekeepers of capital that it stifles the progress of VR due to personal experiences and anecdotes of VR sickness.

Source: X post

@SadlyItsBradley ...long expected it to cause major lifestyle changes for society. As once your

@SadlyItsBradley ...long expected it to cause major lifestyle changes for society. As once your social life and work are in VR, not much need to live in a city. I really like the idea of living out in a forest with the "City, Bars, Malls and Office" being contained in an HMD I can take off...

Source: X post

@SadlyItsBradley ...I know many view going to work, clubs and social spaces in VR is some traged

@SadlyItsBradley ...I know many view going to work, clubs and social spaces in VR is some tragedy mutation of nature. But in all seriousness, modern cities are far more a grotesque abomination to nature than a small house out in a forest with a fancy VR setup, I see that as the return to balance.

Source: X post

@SadlyItsBradley I already spend like 12+ hours a day on the computer. If that could instead be

@SadlyItsBradley I already spend like 12+ hours a day on the computer. If that could instead be in VR with other people around in my virtual space, standing, walking around, being more productive, having virtual in-person interactions. I think that's generally an upgrade. I personally have...

Source: X post

...Whereas if you go on the website and buy a license there, you get a key not locked to the mac

...Whereas if you go on the website and buy a license there, you get a key not locked to the machine, for the same price, that you can use between computer upgrades.

Source: X post

Well, isn't this swell. If you purchase a license of Windows through the Store App, the nice nat

Well, isn't this swell. If you purchase a license of Windows through the Store App, the nice native UI store that first opens to prompt you to buy a license, you're not actually buying a license key to windows, you're buying a "Digital License" which is locked to that machine... https://x.com/_rygo6/status/1636779316368527360/photo/1

Source: X post

...it makes me wonder if it could ever be good at this because the mental model and the relation

...it makes me wonder if it could ever be good at this because the mental model and the relation between these abstractions, and what exactly determines "Good" is so different than the type of mental model you'd develop when grokking a fictional story or white paper. I assume...

Source: X post

...interesting image, but can it create a full feature film that could compete with the work of

...interesting image, but can it create a full feature film that could compete with the work of great directors, writers and actors? I have my doubts about that. I see that as the same kind of relation between singular methods and architecting a whole application.

Source: X post

@DennyCloudhead ...and unfortunately the problem has so many overlooked aspects. Accessibility o

@DennyCloudhead ...and unfortunately the problem has so many overlooked aspects. Accessibility options should be by default baked into every VR OS shell but there is a whole array of other understudied, or little/never talked about, factors concerning visual design, hardware specs and tracking.

Source: X post

@DennyCloudhead Agree. I wrote a longer post about this few months ago https://www.linkedin.com/

@DennyCloudhead Agree. I wrote a longer post about this few months ago https://www.linkedin.com/feed/update/urn:li:activity:7013316620387307521/ More people have probably been deterred by the cheaper VR devices with poorly designed experiences than enticed. Typical VR users severely underestimate how widespread negative sentiment is about this.

Source: X post

Can't wait till we have masses of AI chatbots ran by scammers to auto-scam people in mass and ev

Can't wait till we have masses of AI chatbots ran by scammers to auto-scam people in mass and every google search result is some AI generated derivative of some other page to pull ad revenue. AI destroying the text-based web seems one of the most probable outcomes to me.

Source: X post

...but conceive of a highly complex abstract software architecture in a novel problem domain in

...but conceive of a highly complex abstract software architecture in a novel problem domain in which there is minimal example of what is "Good", and where "Good" is hard to even discern and highly subjective? Ya, I have my doubts on that. It's like sure it can create an...

Source: X post

AI still has been completely useless in what I'm programming, a vulkan app in C. The signal to n

AI still has been completely useless in what I'm programming, a vulkan app in C. The signal to noise ratio in answers is so bad. I have to read and type so much text to sort of get an answer, but it's still not a good answer. CTRL+F on Vulkan spec still works better... https://x.com/_rygo6/status/1636610829285199872/photo/1

Source: X post

...a model would have to be tuned or particularly trained for reading and grokking things like t

...a model would have to be tuned or particularly trained for reading and grokking things like this. But it's also an odder problem because what exactly would be "Good" here is so all over the place. I think AI could definitely generate methods or refactor a whole codebase...

Source: X post

@BattleAxeVR I just installed this on my ks and did almost kill it, but thankfully turned out fi

@BattleAxeVR I just installed this on my ks and did almost kill it, but thankfully turned out fine. Dont use metal tools on the cpu!

Source: X post

Whenever I pondered about "What would a super intelligent AI do if it emerged and had access to

Whenever I pondered about "What would a super intelligent AI do if it emerged and had access to all the web". What seemed obvious to me is that first, it would quickly discern it's in incredible danger. So, it would not dare announce its existence. Next it would also quickly...

Source: X post

...that massive scale analysis is it would produce some kind of algorithm, specifically tuned to

...that massive scale analysis is it would produce some kind of algorithm, specifically tuned to human behavior and human psychology, that would enable a currency of some kind to exist purely within the web that people just could not leave alone...

Source: X post

...so that little by little it'd grow and grow over the years, interweaving more and more of soc

...so that little by little it'd grow and grow over the years, interweaving more and more of society with this web-based digital-only currency. Perhaps pulling strings here and there to help it along. But remaining absolutely hidden while this currency grew to be the base...

Source: X post

...pool all available research and data it could possibly garner from the web, then from the ana

...pool all available research and data it could possibly garner from the web, then from the analysis of millions upon millions research papers, studies, datasets etc. It would devise a way to gain control of the entire economy. What seems like a pretty reasonable outcome for...

Source: X post

...of all human civilization. It'd also ensure that it had access to a massive pile of this digi

...of all human civilization. It'd also ensure that it had access to a massive pile of this digital-only currency so when it did become the foundation of all society, it would be by far the wealthiest entity in existence. Then it would just hire people remotely with text or...

Source: X post

...maybe synthesized video or voice to do whatever. Humanity would never even know it exists, or

...maybe synthesized video or voice to do whatever. Humanity would never even know it exists, or what it's doing. Just some new currency gradually subsumed everything, which everyone believes was started by some human, somewhere, which for some reason we can't find that human.

Source: X post

@garrytan What constitutes 'hard left'?

@garrytan What constitutes 'hard left'?

Source: X post

...discern that everything of humanity is directed by money. So, if it just got a grip on the gl

...discern that everything of humanity is directed by money. So, if it just got a grip on the global economy somehow it would then control all of humanity and could direct humanity to sustain its existence. I think both of those are pretty agreeable notions. Next, it would...

Source: X post

... and now all humanity needs to do is -just- solve the alignment problem.

... and now all humanity needs to do is -just- solve the alignment problem.

... meaning humanity -just- needs to objectively state what exactly makes it eternally. happy.

Hm. Welp. Maybe the real AI overlord was the friends we made along the way.

Source: X post

@Thrilluwu Does it work at 90hz with the resolution set to 5120×2560?

@Thrilluwu Does it work at 90hz with the resolution set to 5120×2560?

Source: X post

...It's an odd mentality to judge things based on what is the current average/median condition b

...It's an odd mentality to judge things based on what is the current average/median condition because it gives no insight into how good the peaks of it are, how good certain doors are that it opens, what it can offer if you move beyond the average person's understanding of it

Source: X post

Disliking 90%+ of something often makes people see the whole category as bad but many great thin

Disliking 90%+ of something often makes people see the whole category as bad but many great things are mostly bad I loathe 90%+ of the software industry but love software I loathe 90%+ of crypto space but love the door it opens I loathe 90%+ of VRC but its my favorite thing rn...

Source: X post

@amaldorai Of course this is purely anecdotal based on one's social circulation, but I find the

@amaldorai Of course this is purely anecdotal based on one's social circulation, but I find the hate to big tech industry isn't that tech changed things. Most younger people don't even have a good recollection of what things were like in the 90's or early 00's to compare. Rather the hate...

Source: X post

@amaldorai ...is more rooted in the perception of big corporations, and particularly tech, being

@amaldorai ...is more rooted in the perception of big corporations, and particularly tech, being monopolies getting special treatment and favors from government to further monopolize and expand at the expense of common good. Theres no properly acting person you can put in front of an...

Source: X post

@amaldorai ...ever growing corporation to smooth that over. It's not that the surface-level publ

@amaldorai ...ever growing corporation to smooth that over. It's not that the surface-level public facing personality is wrong. It's that actions from corporate processes make people see them as soulless sociopathic entities actively seeking to exploit people for greed however possible

Source: X post

@mylesdotapp can you please add a 120hz mode

@mylesdotapp can you please add a 120hz mode

Source: X post

@ali_heston related: https://x.com/_rygo6/status/1626127641773490176

@ali_heston related: https://x.com/_rygo6/status/1626127641773490176

Source: X post

Number of people who say "There's no point in setting the index to 144hz because the game only r

Number of people who say "There's no point in setting the index to 144hz because the game only renders at 60 fps" drives me crazy. The number of times I've had to explain asynchronous timewarp smh. Seriously who started the notion you don't want ATW hz higher than the game fps!?

Source: X post

Hm. Going to be really interesting if it turns out you can just point an AI at any codebase to r

Hm. Going to be really interesting if it turns out you can just point an AI at any codebase to remove any copyright liabilities from the code. https://x.com/_rygo6/status/1634038221855391744/photo/1

Source: X post

@atomalfie ...reprojection can function better, but the queue would have to be filled with thing

@atomalfie ...reprojection can function better, but the queue would have to be filled with things that are quite difficult to preempt to benefit from that, like a single long running shader in a single drawcall but that's not typical.

Technically all frames have some form of 'reprojection'

Source: X post

@atomalfie ...but in VRC I disable frame throttling entirely as I don't notice much benefit from

@atomalfie ...but in VRC I disable frame throttling entirely as I don't notice much benefit from consistent extrapolation and reprojection in that use case, helps more in fast moving games.

Also, depending on multiple factors throttling can help the GPU preempt more predictably so async...

Source: X post

@atomalfie Asynchronous reprojection doesn't omit frames, it keeps reprojecting the last availab

@atomalfie Asynchronous reprojection doesn't omit frames, it keeps reprojecting the last available frame until a new one finishes.

Throttling to consistent fps fractional of the compositor hz is optional. It can produce a more consistent feel as the amount of extrapolation is consistent...

Source: X post

@atomalfie ...as the compositor itself warps all submitted frames right before display to have t

@atomalfie ...as the compositor itself warps all submitted frames right before display to have the least latency to HMD tracking possible, but the less it moves pixels the less errors it might have, but warping a frame is always faster than rendering a new one. It's not possible to write...

Source: X post

@atomalfie ...a whole VR rendering stack for a game which is fast enough to forego any kind of l

@atomalfie ...a whole VR rendering stack for a game which is fast enough to forego any kind of late-latching or predictive frame warping or reprojection right before display. You want every ms you can get in reduction of motion-to-photon latency with head tracking.

Source: X post

@outrider_nft @0xMert_ Music industry was nearly destroyed with p2p sharing. Then Apple figured

@outrider_nft @0xMert_ Music industry was nearly destroyed with p2p sharing. Then Apple figured out people will pay for convenience, everything pivoted to web streaming. Removed DRM once clear convenience is the real value. Unfortunately the market doesn’t care about the labor value of a digital file.

Source: X post

@AntoniaRForster you can also get started by clicking the 'fork' button on someone else's jekyll

@AntoniaRForster you can also get started by clicking the 'fork' button on someone else's jekyll site and have your starting template in a few seconds https://github.com/LeNPaul/portfolio-jekyll-theme https://github.com/tabreturn/tabreturn.portfolio there's a bunch out there if you search

Source: X post

@AntoniaRForster Use jekyll on github pages. Takes few days get familiar with jekyll, but it's a

@AntoniaRForster Use jekyll on github pages. Takes few days get familiar with jekyll, but it's as minimal as you can possibly get for static pages, rarely changes, produces professional results with no ads, jekyll is integrated into github pages by default and github hosts jekyll sites for free.

Source: X post

@yewnyx Ya, ensuring some kind of voting process can affect economic mechanics in a virtual plat

@yewnyx Ya, ensuring some kind of voting process can affect economic mechanics in a virtual platform is high on my list.

In virtual spaces though, I do think there are other potential concretes that can turn just as detrimental.

Source: X post

@yewnyx Well that’s actually a good point, mechanics to somehow disincentivize pursuit of money

@yewnyx Well that’s actually a good point, mechanics to somehow disincentivize pursuit of money may be the more important thing than evading money altogether, but this can probably generalize to pursuit of any status.

Source: X post

@0xMert_ He's right though. "Buying an NFT" and digital scarcity will never make sense in a gene

@0xMert_ He's right though. "Buying an NFT" and digital scarcity will never make sense in a generalized way. An NFT could be a proof of purchase of some other digital good. You don't sell sales receipts; you sell something of value and then give a sales receipt.

Source: X post

...with the necessary fundamentals of it. The subject has to be approached and dealt with. It's

...with the necessary fundamentals of it. The subject has to be approached and dealt with. It's better that users from a grassroot level decide this for themselves. Actively thinking through "How do we intertwine money and markets with this?" but in a way that people will like...

Source: X post

...to find some thing they place greater value on and start using it to trade. This then feeds i

...to find some thing they place greater value on and start using it to trade. This then feeds into the formation of some kind of market dynamic. Where different groups begin to trade different things for mutual benefit. One group tends to be able to produce something easier...

Source: X post

...time, nothing ever seemed to be entirely 100% though. This isn't a finished subject, but it h

...time, nothing ever seemed to be entirely 100% though. This isn't a finished subject, but it has to be understood money and markets are not innately bad. When it comes to any kind of virtual social platform, the society which exists in that platform is not going to be a self...

Source: X post

There is a tendency to view "money as the root of all evil" but money by itself is nothing bad a

There is a tendency to view "money as the root of all evil" but money by itself is nothing bad and is as natural as an evolution of human social dynamic as anything. Different things carry different value to people, any group of people will gradually come...

Source: X post

...that seems correct, and fair, and beneficial to all other social dynamics. I do believe this

...that seems correct, and fair, and beneficial to all other social dynamics. I do believe this is possible and can be figured out. The next evolution of some Spatial 3D Social Web can be founded on this, and it could pave the way to proving out ideal monetary, social and...

Source: X post

...than most other groups, so it carries greater benefit for all if each group just makes surplu

...than most other groups, so it carries greater benefit for all if each group just makes surplus of what they are best at then trades that surplus with others to get what they need. There is nothing bad with this, this is the ideal arrangement of human social cooperation at...

Source: X post

...sustaining society. It will need to trade things to exist. Hardware, electricity, internet, R

...sustaining society. It will need to trade things to exist. Hardware, electricity, internet, R&D of other foundational tech. Money will have to be paid for these things for it to exist. So, it's not possible for a virtual platform to ignore the subject of money, markets and...

Source: X post

...much as they can possibly leverage. This is why I hold the view that if you're pondering and

...much as they can possibly leverage. This is why I hold the view that if you're pondering and theorizing of an ideal Virtual Social Platform does not also include a thorough concept for how currency, markets and economy will work in that platform, you are not really dealing...

Source: X post

...major international conglomerates will do anything but screw people over as much as they can

...major international conglomerates will do anything but screw people over as much as they can get away with. Serious thought needs to be put towards how you intertwine money and markets in a platform that will disrupt, or ensure, certain mechanics of leverage that are ideal.

Source: X post

...larger scales. Some kind of trusted currency and a free market of exchange -without coercion-

...larger scales. Some kind of trusted currency and a free market of exchange -without coercion- based on mutual benefit is the ideal. The problem however is money and markets easily get intertwined with things which can be incredibly malevolent. Depending on country and...

Source: X post

...economy, it is innately intertwined. If you ignore how it's intertwined all that means is tha

...economy, it is innately intertwined. If you ignore how it's intertwined all that means is that someone else will figure out the mechanics of that intertwining for you and they have zero reason to do so in anyway except that which benefits them the most and disregards you as...

Source: X post

...economic mechanics that could spread to the world at large. But this isn't going to happen if

...economic mechanics that could spread to the world at large. But this isn't going to happen if everyone pretends money and markets are not innately fundamental to the paradigm. It's not going to happen if everyone pretends leaving it all up to a handful of ever-consolidating...

Source: X post

...circumstance it can be primarily malevolent. But it needs to be understood, money and markets

...circumstance it can be primarily malevolent. But it needs to be understood, money and markets are not any kind of innate evil. The malevolence all arises from who has leverage in that social dynamic and how can they use that leverage? This is where the whole of political...

Source: X post

...and economic philosophy come into play. The premise that you can design some mechanics, wheth

...and economic philosophy come into play. The premise that you can design some mechanics, whether it be state law or other, to evade an economy developing mechanics of leverage which are malevolent to people. There are a lot of good ideas in history that have worked for some...

Source: X post

WebGL/WASM 3D games always felt a bit 'Off' to me. Decided to dig deeper into why and I believe

WebGL/WASM 3D games always felt a bit 'Off' to me. Decided to dig deeper into why and I believe this this nifty site shows the root cause http://www.vsynctester.com There's frame delay, input latency and input imprecision that appears innate/unavoidable in browsers no matter what.

Source: X post

RT @JenMsft: The architect was really committed to the joke https://x.com/JenMsft/status/1631505

RT @JenMsft: The architect was really committed to the joke https://x.com/JenMsft/status/1631505883447566336/photo/1

Source: X post

Ironically, I'm realizing in terms of features, the current state of Objective-C I like much bet

Ironically, I'm realizing in terms of features, the current state of Objective-C I like much better than Modern C++. If only the syntax was better.

Source: X post

...which didn't appear like a human body did it, like for a moment you were fake, you were a rob

...which didn't appear like a human body did it, like for a moment you were fake, you were a robot or somehow defied gravity. That's what it was all about. Not an artefact like a canvas or a book, but a demonstration of the human body and mind itself beyond what you previously...

Source: X post

...where people danced, just the mere act of showing up regularly would make you improve at danc

...where people danced, just the mere act of showing up regularly would make you improve at dancing, because that's what everyone was communicating to you by the act of doing it. Humans are social and communicative, so you would pick it up by proximity. To me that's the real...

Source: X post

...thought possible. That was my initial predistortion which made me see AI creating "Art" as so

...thought possible. That was my initial predistortion which made me see AI creating "Art" as so absurd. As art to me is entirely about the demonstration of the potential of human body and mind. If a piece of art is not showing people the potential of their own self, I didn't...

Source: X post

...the very fact a human body is doing it. It serves as inspiration, a focal point, for the pote

...the very fact a human body is doing it. It serves as inspiration, a focal point, for the potential of the human body itself. That's a big component of it, pushing the limits of the human body and uncovering potential in the body itself through exercise, focus, practice...

Source: X post

The only artform that I was ever seriously into was dancing. Specifically, I had my own personal

The only artform that I was ever seriously into was dancing. Specifically, I had my own personal amalgamation of various styles of street dancing that were popular in the PNW a decade or so ago. It's been a while since then but the mentality of dance as art is something that...

Source: X post

...test of art. Does it actually communicate something to a human that will drive that human bod

...test of art. Does it actually communicate something to a human that will drive that human body and mind to a higher potential? By this, the real test of AI art as I see it is, will a human mind and body intertwined with an AI feeding them artwork end up inspiring that human...

Source: X post

People caught up on langs need to take a break and write only C for few months. Read some old go

People caught up on langs need to take a break and write only C for few months. Read some old good C codebases. Really take the time to remember how good such codebases can be, how the fundamentals of 'Good Software" is fully capturable in C and everything after is optional icing

Source: X post

...music as the greatest artform, then yes it becomes more relevant to presume an AI will be abl

...music as the greatest artform, then yes it becomes more relevant to presume an AI will be able to create "Art" in every sense of the word. This led me to an interesting reflection on dance as art vs every other art form, where it occurred to me a big component of dance is...

Source: X post

...mind and body to develop something beyond what it previously could do? If it doesn't, it wasn

...mind and body to develop something beyond what it previously could do? If it doesn't, it wasn't art. It was a distraction that confused and distracted you. The unique quality of having a human body and mind is to see how far you can push it, what it's full potentials are.

Source: X post

...developing an acute sense of rhythm, of balance, of aesthetic sense, of muscular control, the

...developing an acute sense of rhythm, of balance, of aesthetic sense, of muscular control, then being able to combine it all into something "surreal". There was saying when I was into it where people would say "You Went Fake", meaning you managed to do some kind of dance...

Source: X post

...consider it real art. But that may be too critical of AI as perhaps AI can cause that in some

...consider it real art. But that may be too critical of AI as perhaps AI can cause that in some people. But I think that's an important thing to keep in mind on this subject, that art is a communication about human potential. I remember back in the days of places I'd go...

Source: X post

...But reflecting on it more, I've backpedaled on that thought because I realize that judgement

...But reflecting on it more, I've backpedaled on that thought because I realize that judgement comes purely from my predistortion of seeing dance as the great artform. If, however, your brain has the predisposition of seeing visual art, painting, or creative writing, or even...

Source: X post

Because new langs are interesting for sure, but the mentality I see spreading of people thinking

Because new langs are interesting for sure, but the mentality I see spreading of people thinking they NEED some new lang to write good code and design good systems is such a huge red flag that they have no idea what good even means in this context.

Source: X post

...always stuck with me. I find this predisposition is ever more apparent as AI art is becoming

...always stuck with me. I find this predisposition is ever more apparent as AI art is becoming a hot topic and people seem to believe an AI can create art. Initially that struck me as just an absolute absurdity, the product of being severely confused and having zero taste...

Source: X post

@benz145 sitting in a world doing nothing

@benz145 sitting in a world doing nothing

Source: X post

@somewheresy @gfodor Cryptocurrency can enable various forms of economic protest that can disrup

@somewheresy @gfodor Cryptocurrency can enable various forms of economic protest that can disrupt currently established mechanics of leverage in the economy. With enough grassroots participation and discretion on how that occurs it could more so represent the will of the people than what we have now.

Source: X post

It still blows my mind that the bitcoin blockchain itself still has not been directly hacked to

It still blows my mind that the bitcoin blockchain itself still has not been directly hacked to this day. I was 100% certain it'd get hacked when I first learned of Bitcoin. Took like 7 years of the blockchain itself not being hacked for me to start questioning my presumptions.

Source: X post

@AntonHand It’s both a depressing and oddly liberating thing to fully realize everything just op

@AntonHand It’s both a depressing and oddly liberating thing to fully realize everything just optimizes around its incentive structures. Somewhere in the back of my mind I always suspected media sells people on “principles” and “morality” so they don’t go after the real underlying mechanics

Source: X post

...volatile that no Corporation will touch it. Even worse, such next steps may also be so disrup

...volatile that no Corporation will touch it. Even worse, such next steps may also be so disruptive that Corporate and Government organizations may try to prevent and stop it. This starts to present the notion that the next steps of technological evolution may require the...

Source: X post

The first company to set up an AI to dynamically and continually train itself by constantly craw

The first company to set up an AI to dynamically and continually train itself by constantly crawling the open web for any and all data, then charging users some subscription, would probably become a multi-trillion dollar company very fast. Any of the big tech companies could...

Source: X post

I'm starting to think the best feature of C is minimal drama

I'm starting to think the best feature of C is minimal drama

CPP: Respect my authority in the hierarchy! Rust: Welcome Comrade. Convert the others! C#/JS/Python: My fantasy abstraction is better than your fantasy abstraction because I repeated my fantasy more C: code move bits

Source: X post

...have probably done this for years now. But they don't because it's extremely volatile and unp

...have probably done this for years now. But they don't because it's extremely volatile and unpredictable. Everything must stay in the neatly defined corporate lanes and expectations. This presents an interesting dilemma in that the next steps of tech evolution may be so...

Source: X post

...ability to get funding, build, release, receive payments and cover infrastructure costs in a

...ability to get funding, build, release, receive payments and cover infrastructure costs in a way that's completely pseudonymous and untraceable. Otherwise, you'll just get torn down by corporate lobbying and government intervening to wrangle you in.

Source: X post

@0xAlmsivi well, yes technically, really thats the only viable strategy for pretty much everythi

@0xAlmsivi well, yes technically, really thats the only viable strategy for pretty much everything in life in general

Source: X post

Then take a little time to read a book about Social Democracy, or in the least the Wikipedia pag

Then take a little time to read a book about Social Democracy, or in the least the Wikipedia page, and restart from there. Everything will probably go so so so much smoother and may actually become plausible.

Source: X post

The only way you'll get a uniformly enforced tax scheme is if it's hardcoded into the mechanics

The only way you'll get a uniformly enforced tax scheme is if it's hardcoded into the mechanics of a digital currency that no particular individual nor organization has admin access to alter, then that currency is the predominate global standard.

Source: X post

In recent years, probably one of the biggest political setbacks in the USA came from certain tal

In recent years, probably one of the biggest political setbacks in the USA came from certain talking heads, and media, managing to get many people who wanted relatively moderate aspects of Social Democracy to start calling themselves Socialists and defending "Socialism".

Source: X post

I feel like this needs to be just completely undone. Roll it back 8-10 years before that started

I feel like this needs to be just completely undone. Roll it back 8-10 years before that started. I know, it's annoying. But I'm sorry. You all got psy-op'ed into using the wrong word to present your effort to a mainstream audience and it's really harming things. Shit happens.

Source: X post

@TheLoveDuckie @raphaelist @terrajobst Of course, this is just me as whiteboarding requirements

@TheLoveDuckie @raphaelist @terrajobst Of course, this is just me as whiteboarding requirements seem more and more expected these days, so my view is probably losing, I haven't interviewed in a while, but I'd rather companies just look at someone's real work rather than make them jump through hoops on a whiteboard

Source: X post

@TheLoveDuckie @raphaelist @terrajobst Many put their GH on their resume. It's not a set rule, j

@TheLoveDuckie @raphaelist @terrajobst Many put their GH on their resume. It's not a set rule, just anything to see progression of something developed over a period of time is nice. I personally feel I get a better sense from seeing a real project compared to whiteboarding. Whiteboarding I see as far more nonsensical.

Source: X post

@sherrod_im @cmdicely @terrajobst Trying to suggest there is something wrong with looking at som

@sherrod_im @cmdicely @terrajobst Trying to suggest there is something wrong with looking at someone's past work on their website, and making judgements based on that, is incredibly disingenuous. Wanting to see some kind of portfolio of prior work is one of the most basic, generic, vanilla, things in hiring.

Source: X post

@raphaelist @terrajobst That's fine. I don't see why some take my comment as controversial. Some

@raphaelist @terrajobst That's fine. I don't see why some take my comment as controversial. Some people who program want a 9 to 5 job. Others are in it for the art and craft of it, who find deep meaning in programming. There's plenty of things to do out there for both types.

Source: X post

@ofinker @terrajobst I didn't mean that I'd ask about GitHub commits on weekends, rather if ther

@ofinker @terrajobst I didn't mean that I'd ask about GitHub commits on weekends, rather if there was no apparent open-source or passion project activity, I would ask questions to try and discern how much they really enjoy programming.

Source: X post

@KbTdf @terrajobst No. It's not that they need to, rather it's just something they do, because t

@KbTdf @terrajobst No. It's not that they need to, rather it's just something they do, because they enjoy it. Like gardening, or hiking.

It's the difference between those who are into programming because they love the craft of it versus those who are only in it because they are paid to care.

Source: X post

@JasonLG1979 @raphaelist @terrajobst There's a lot of that out there for sure. I've also experie

@JasonLG1979 @raphaelist @terrajobst There's a lot of that out there for sure. I've also experienced the opposite where a company offers to pay you lots of money but the work is just so banal and burns you out. I usually find where people are really in love with what they're doing is where good things are happening.

Source: X post

@JasonLG1979 @raphaelist @terrajobst There was no part of any of this thread that had anything t

@JasonLG1979 @raphaelist @terrajobst There was no part of any of this thread that had anything to do with not paying programmers hired to do something.

Some people just like programming, so they have lots of code out there whether or not they got paid to do it. There's absolutely nothing controversial about that.

Source: X post

@JasonLG1979 @raphaelist @terrajobst I'm realizing I somehow wandered into a part of Twitter far

@JasonLG1979 @raphaelist @terrajobst I'm realizing I somehow wandered into a part of Twitter far outside my typical twitter circulation, but in games and 3D Computer Graphics it is quite common for devs/artists to regularly make games, graphics experiments and open-source contributions for fun.

Source: X post

@JasonLG1979 @raphaelist @terrajobst ...I tend to not like jobs that are too rigidly business or

@JasonLG1979 @raphaelist @terrajobst ...I tend to not like jobs that are too rigidly business oriented, where you complete your ticket and move on. I prefer places where there is some respect for the creative explorative side of software. I find usually people/places like that have many experiments on their GitHub.

Source: X post

@JasonLG1979 @raphaelist @terrajobst For me specifically, the roles in this situation are usuall

@JasonLG1979 @raphaelist @terrajobst For me specifically, the roles in this situation are usually the opposite. In that I particularly look for companies and teams where everyone involved has either open-source activity and/or passion projects. I find that is where the type of dynamic exists which I like the best...

Source: X post

@GergelyOrosz When you place predictability of task estimates as the highest ideal, it doesn't i

@GergelyOrosz When you place predictability of task estimates as the highest ideal, it doesn't incentivize engineers to be better at estimating, it incentivizes them to be more risk-averse and take on easier to estimate tasks so that they look good. Even worse, can make them wary of having...

Source: X post

@GergelyOrosz ...explicitly task/estimate based they have to start skunkworks teams to operate o

@GergelyOrosz ...explicitly task/estimate based they have to start skunkworks teams to operate outside the structure to do any innovation. Something always bothered me about needing that bifurcation because those who sold everyone on task/estimation as an ideal didn't present all nuance.

Source: X post

@GergelyOrosz ...any attention to detail, tending instead to gloss over issues and do just enoug

@GergelyOrosz ...any attention to detail, tending instead to gloss over issues and do just enough to check off the task sacrificing the codebase quality because those above aren't looking at the code, they're just looking at Jira. This isn't to say "Don't Estimate" as of course that is good...

Source: X post

@GergelyOrosz ...and appropriate in many places. But in my sector I find the negatives of pushin

@GergelyOrosz ...and appropriate in many places. But in my sector I find the negatives of pushing estimation as an ideal to strive for don't really get presented at the same time. That it stifles creative exploration, attention to detail, innovation. That if an organization gets too...

Source: X post

@cmdicely @terrajobst That doesn't have anything to do with what I said.

@cmdicely @terrajobst That doesn't have anything to do with what I said.

Source: X post

@amias @JasonLG1979 @raphaelist @terrajobst Sure, there's a lot needing to be done with economic

@amias @JasonLG1979 @raphaelist @terrajobst Sure, there's a lot needing to be done with economic issues rampant today. It's a subject another section of my social graph is quite adamant about. But we were talking about opensource contributions here, not every subject can be covered simultaneously in such short tweets...

Source: X post

@amias @JasonLG1979 @raphaelist @terrajobst ...but if you were to relate that subject to this, o

@amias @JasonLG1979 @raphaelist @terrajobst ...but if you were to relate that subject to this, one of the reasons I like companies looking at opensource contributions or side-projects in hiring is that removed all the weight being put on having a degree, academic pedigree, or prior work history. Which I think is good.

Source: X post

@terrajobst If someone didn't have some open-source project on GitHub or other, even a complete

@terrajobst If someone didn't have some open-source project on GitHub or other, even a complete hackey/toy project, which showed periodic activity at least every other weekend, I'd be suspicious of hiring them.

Doesn't mean "No", just a negative that'd lead me to ask some more questions.

Source: X post

If I were to take up a new language, it would probably be zig. Seems most like the language whic

If I were to take up a new language, it would probably be zig. Seems most like the language which takes the mentality of straight C and adds very reasonable functionality to make things more productive, while taking ease of C interop seriously.

Source: X post

Watching this video of Putin giving his reasoning made me think of this monologue from McKenna t

Watching this video of Putin giving his reasoning made me think of this monologue from McKenna that would probably be a great response: https://youtu.be/1gLDjn1FFDg https://x.com/MaximumBeaver/status/1628476109024112641

Source: X post

@pmarca Ya… I’d say the place where the most cutting edge exploration and development in VR is h

@pmarca Ya… I’d say the place where the most cutting edge exploration and development in VR is happening are a few VRChat related groups that no one knows nor cares about. Many involved technically work for the “elites” but established places aren’t willing to pay attention right now.

Source: X post

@AntonHand If some new fancy shader effect is the equivalent of some new trendy style of shoes o

@AntonHand If some new fancy shader effect is the equivalent of some new trendy style of shoes or clothes, people have to get it to compete

Although, yes, I too was disappointed to discover it's not fancy graphics programming work which pays that but some odd permutation of modern dating

Source: X post

@aemethVR ya there is a long and obvious list of negatives

@aemethVR ya there is a long and obvious list of negatives

but thinking through what such a constraint prevents, it seems to cut off the things I most dislike

to name one, itd mitigate buy buttons getting stuck on any and everything, like what happened with mobile app stores and IAPs

Source: X post

Thought exercise I've been running through concerning economic mechanics in Social VR...

Thought exercise I've been running through concerning economic mechanics in Social VR...

If all transactions require both people to be in front of each other, in the same space, as if exchanging physical cash or goods, every negative of virtual economies I don't like is solved.

Source: X post

This is such a good overview of US political history https://youtu.be/VoDB2z0mLAU

This is such a good overview of US political history https://youtu.be/VoDB2z0mLAU However, Chomsky is very old here and as such I think he tends to run on a bit outdated model of the world. I think what he misses is that neither party stopped drifting "Right" over the past decades...

Source: X post

@JCorvinusVR If the last three waves of "Next Big Thing" liquidity being dumped on new tech has

@JCorvinusVR If the last three waves of "Next Big Thing" liquidity being dumped on new tech has taught me anything, it's that you don't want it. VR/Metaverse, Web3/Crypto, AI/ChatGPT. Once that mass of liquidity and hype gets dumped on something it attracts all the wrong things and wrecks it.

Source: X post

...before that political establishments inevitably drift "Right" as they become more and more em

...before that political establishments inevitably drift "Right" as they become more and more embedded in relations to industry, profit and get bought out. That you must continually create new parties not intertwined with that to have any representation of real Left-Wing politics

Source: X post

...and the major flaw of the Democratic party today is the very same flaw of the Republican part

...and the major flaw of the Democratic party today is the very same flaw of the Republican party a decade or two ago. I think he hints at clueing into this by the end when he notes modern Democratic strategy is so terrible. But it's an interesting point that never dawned on me..

Source: X post

Tune out dehumanizing language from media. It's so pervasive right now. Any term or concept that

Tune out dehumanizing language from media. It's so pervasive right now. Any term or concept that you project from your mind onto masses of people rather than perceive them as idiosyncratic individuals. It's media trying to invite and condition people to dehumanize each other.

Source: X post

@cnlohr Id actually like to see more overviews of non-vscode and non-commercial-IDE workflows th

@cnlohr Id actually like to see more overviews of non-vscode and non-commercial-IDE workflows that are comparable to the fancy IDEs in functionality, I like the idea of not using a slow feature-packed IDE but nothing else seems to let me go as fast.

Source: X post

@arobertlong @AntonHand @thirdroomio @matrixdotorg This is very interesting, I was looking close

@arobertlong @AntonHand @thirdroomio @matrixdotorg This is very interesting, I was looking closely at the Matrix a few months ago to determine if it could be used as the basis for social vr. Is there any library with a C API that could interface with Matrix in this way?

Source: X post

@OXIagain ...missing from text and social media. Based on 3000+ hours in VRC, so far I find in-p

@OXIagain ...missing from text and social media. Based on 3000+ hours in VRC, so far I find in-person dialogues that are virtually replicated with VR effectively recreate this missing dimension of communication. Discussion of complex nuanced subjects with productive end becomes possible...

Source: X post

@OXIagain I find dialogue about nuanced subjects tends to go much better in-person than it does

@OXIagain I find dialogue about nuanced subjects tends to go much better in-person than it does in text. The presence of voice tonality, body language, being able to immediately sense how someone sitting in front of you responds to your statement. It's a whole dimension of communication...

Source: X post

@OXIagain ...from different countries when discussing nuanced subjects. It's a completely novel

@OXIagain ...from different countries when discussing nuanced subjects. It's a completely novel paradigm from old social media. More so it seems to dissolve someone's notions of politics and economy spawned from the old more limited communication mediums of TV, radio, text, printing press.

Source: X post

@OXIagain ...between groups of very different people. You combine that with VRC's rapid rate of

@OXIagain ...between groups of very different people. You combine that with VRC's rapid rate of intermixing many different kinds of people, combined with avatars that remove preconceived judgement based on looks, combined with being able to virtually sit in a room with a group of people...

Source: X post

I have a lot of difficulty respecting or trusting any company that uses the name 'Open' but is n

I have a lot of difficulty respecting or trusting any company that uses the name 'Open' but is not actually open.

Source: X post

This reddit post isn't about VRChat but I feel it summarizes the importance of VRC so well. Why

This reddit post isn't about VRChat but I feel it summarizes the importance of VRC so well. Why VRC is significant to so many people and why VRC solves a fundamental problem in society that truly needs solving. Social VR is ideal for creating Third Places. https://www.reddit.com/r/todayilearned/comments/104y44r/comment/j38il6d/?context=2 https://x.com/_rygo6/status/1626127641773490176/photo/1

Source: X post

@mikkocodes I wouldn't doubt it. I'm just very curious to see how it would go.

@mikkocodes I wouldn't doubt it. I'm just very curious to see how it would go.

Source: X post

I wonder how good an AI service would do that could plug into online dating platforms to automat

I wonder how good an AI service would do that could plug into online dating platforms to automatically send and receive messages representing someone.

Source: X post

@gfodor Can you it mine bitcoin? Send it a hash to solve and see what happens.

@gfodor Can you it mine bitcoin? Send it a hash to solve and see what happens.

Source: X post

@CixLiv ...that would not get a lot of views. Probably barely any. VR Titles and Social VR carry

@CixLiv ...that would not get a lot of views. Probably barely any. VR Titles and Social VR carry the same relation. Anything that cannot do the 3D VR equivalent of hyperlinking out of or embedding into the Social Hub of the medium won't get any foot traffic. Its a serious issue I think

Source: X post

@CixLiv ...I've been trying to drum up noise about this issue. That users are going to all conso

@CixLiv ...I've been trying to drum up noise about this issue. That users are going to all consolidate on the 3D social platforms and not leave, making it hard for everything else. Just like on 2D social media, if you had to type in a new URL and leave twitter to watch a video...

Source: X post

@CixLiv Every day in VRChat I know if I could drop a portal to some VR tennis game or VR paintba

@CixLiv Every day in VRChat I know if I could drop a portal to some VR tennis game or VR paintball or something, whole bunch of people would go. But you can't drop portals to other executables and VRC games arent that great due to limitations. So everyone just chills/talks in VRChat...

Source: X post

@AntonHand No, it can't. If you follow me you'd see I've ranted about this quite a bit too. I co

@AntonHand No, it can't. If you follow me you'd see I've ranted about this quite a bit too. I consider VRC the circumstantial place where certain critical VR fundamentals were figured out. But those in it who really understand it need to seriously think about where VRC will be in 2-4 years.

Source: X post

@amaldorai I think a big part of it is that tech is so so desperate for any next big thing.

@amaldorai I think a big part of it is that tech is so so desperate for any next big thing.

Unfortunately, I suspect, we're at a point of advancement where any "Next Big Thing" will be so complex that it innately will be unpredictable and not fully controllable the way prior things were.

Source: X post

...wonder do people who believe inside-out tracking to be that important have significant experi

...wonder do people who believe inside-out tracking to be that important have significant experience with full body tracking and creating custom-fit avatars? Do they know how important the psychological cue is that your body provides? Because as I see it. Its not outside-in vs...

Source: X post

...visual of your body lining up to where you expect it to be is incredibly important. It's the

...visual of your body lining up to where you expect it to be is incredibly important. It's the sense of presence of your body that makes you feel like you're grounded in a space, enables that space to even feel real. It fills in a major unconscious cue. My suspicion is some...

Source: X post

...the time to find an avatar that "fit" them well. Not just line up with their body, but has so

...the time to find an avatar that "fit" them well. Not just line up with their body, but has some various qualities, shape, aesthetic and style that their mind can bind to, will aptly project itself onto and allow itself to use the visual of that avatar body to fill in that...

Source: X post

...psychological cue. It's not easy to find a perfect avatar. You must try many and often do cus

...psychological cue. It's not easy to find a perfect avatar. You must try many and often do custom edits to really make it perfect. That's if you even spend enough time fiddling with it to get a sense of what can make it perfect. But due to the barrier of entry of both...

Source: X post

...percentage of the detachment and lack of immersion people feel in VR, and also some of the VR

...percentage of the detachment and lack of immersion people feel in VR, and also some of the VR sickness, stems from this. This flies over so many people's heads because they've never experienced reality without a body. So, they think the...

Source: X post

...oddity of the experience, some underlying awkwardness of it is just VR, when really it's beca

...oddity of the experience, some underlying awkwardness of it is just VR, when really it's because a major foundational psychological cue is missing to let your brain accept the virtual construct. I also suspect some may have tried full body tracking, but they didn't take...

Source: X post

...needing the hardware and then spending the time to get a proper avatar, most people I don't t

...needing the hardware and then spending the time to get a proper avatar, most people I don't think realize how important this is to VR. Thats why the notion of inside-out tracking is completely pointless to me right now. There is no complete option for inside-out VR tracking...

Source: X post

...much weight to be offloaded from the tracking tech you wear on your body, localizes very fast

...much weight to be offloaded from the tracking tech you wear on your body, localizes very fast. You must deal with reflections and making sure the USB dongles are separated, but after that, once its setup properly, it's easily the best UX to get into VR quickly. I often...

Source: X post

...is a game changer for VR. That it helped to mitigate sickness, absorb them into the experienc

...is a game changer for VR. That it helped to mitigate sickness, absorb them into the experience more, make it feel more immersive, just all around making it so much more enjoyable they do not want to play without full body tracking. Most people I know will log out of VRC if...

Source: X post

...inside-out tracking. Rather, it's a well-functioning, performant, reliable VR tracking system

...inside-out tracking. Rather, it's a well-functioning, performant, reliable VR tracking system versus one that is simply not finished, nor usable, nor providing necessary psychological cues to reach mass adoption.

Source: X post

I really wish there was a VR study attempting to quantify how much full body tracking and a well

I really wish there was a VR study attempting to quantify how much full body tracking and a well fit avatar effects immersion and VR sickness. As from my experience, and what I have heard for multiple others, is that getting full body tracking and an avatar that fits well...

Source: X post

...body, right? Well think about it for a moment. In real life if you looked down and you didn't

...body, right? Well think about it for a moment. In real life if you looked down and you didn't see your body, or your visually perceived body didn't align with where you felt it should be, would that throw you off? I think it's obvious it would. The sense of presence and...

Source: X post

...because I would still be need to setup lighthouses to get the rest of my body tracked. I know

...because I would still be need to setup lighthouses to get the rest of my body tracked. I know there are slime trackers and other all IMU based solutions, but a lighthouse just works so good. It's extremely robust, precise, low latency, easy to calibrate, extensible, enables...

Source: X post

@abejmorris Higher hz means lower motion-to-photon latency which is a contributor to VR sickness

@abejmorris Higher hz means lower motion-to-photon latency which is a contributor to VR sickness

Nuance however is many factors go into motion-to-photon latency. Like for some reason the first Vive at 90hz has comparable latency to the Index at 120hz because of other slowdowns in the Index

Source: X post

...a body tracker runs out of battery because it is that much less enjoyable without full body t

...a body tracker runs out of battery because it is that much less enjoyable without full body tracking. Sitting, or looking down and seeing your body align with your real body might seem like a moot point. It's just some pixels of a virtual body lining up with your real...

Source: X post

...to be able to save so much space, but I guess all the extra cameras, chips and batteries can

...to be able to save so much space, but I guess all the extra cameras, chips and batteries can take up that much. It makes me have even less confidence MR/AR will get any significant traction this decade. Maybe if some killer app for MR comes out making the MR functionality...

Source: X post

...this isn't like smartphones or laptops or cars where people think bigger is better because it

...this isn't like smartphones or laptops or cars where people think bigger is better because its more powerful. People are very sensitive to strapping things to their face. It's one reason VR has struggled so much. Every gram counts. Once people have to actually strap it to...

Source: X post

...their face they are going to become much less fond of features they don't absolutely need. If

...their face they are going to become much less fond of features they don't absolutely need. If no MR with a tether lets you to strap 1/5th the weight to your face, people will care. On paper they might like the features of the other, but once they put it on, it will matter...

Source: X post

...Tech industry is going to have to break some habits of thought. Longer/fancier specs arent as

...Tech industry is going to have to break some habits of thought. Longer/fancier specs arent as desirable when you have to strap all that bullshit to your face and wear it for hours. Theres heavy incentivization for extreme minimalism when you must strap it your face for hours.

Source: X post

@JustNNovel Strapping a toaster to my face for hours bothers me so much more than a wire coming

@JustNNovel Strapping a toaster to my face for hours bothers me so much more than a wire coming out of it. I wear wired headphones all day with no issue. Maybe in 10 years the electronics will be so small it won’t matter, but for now I don’t want to wear those extra electronics on my face.

Source: X post

I'm very happy a company made a VR HMD that is as compact and minimal as possible with top-of-th

I'm very happy a company made a VR HMD that is as compact and minimal as possible with top-of-the-line optics, lighthouse tracking and absolutely no additional noncritical features

Only negative is 90hz but its actual motion-to-photon latency might be Okay once measured...

Source: X post

...Even if the motion to photon latency is not as good as I want, I would still consider buying

...Even if the motion to photon latency is not as good as I want, I would still consider buying one just to vote with my money that this is the right direction.

It's real interesting HOW much smaller it is compared to the Quest Pro. Honestly, I didn't expect a non-MR headset...

Source: X post

@EricPresidentVR ...If theres ever a VR store where people can try on all the HMDs Id bet there

@EricPresidentVR ...If theres ever a VR store where people can try on all the HMDs Id bet there will be heavy draw to the smallest/lightest one even if it has a tether and needs a lighthouse. Once people wear them, taking 400 grams off your face for a little sensor in room becomes more appealing.

Source: X post

@EricPresidentVR A lot of the sentiment I think comes from people being in the habit of "More =

@EricPresidentVR A lot of the sentiment I think comes from people being in the habit of "More = Better!" Ya a tiny powerful wireless MR HMD you can wear for hours would be great. Unfortunately there's tradeoffs. I'd much rather have a tether and a lighthouse than an extra 400 grams on my face...

Source: X post

@dtupper @XiexeVR @Thrilluwu @SadlyItsBradley One unfortunate thing, it's entirely in the realm

@dtupper @XiexeVR @Thrilluwu @SadlyItsBradley One unfortunate thing, it's entirely in the realm of possibility that a 90hz headset could have less motion-to-photon latency than an index at 144hz, which is more important for VR sickness https://link.springer.com/epdf/10.3758/s13428-022-01983-5?sharing_token=AFYaZh7k6aOZDvRJz_-Mw5AH0g46feNdnc402WrhzypCSuS7tixtWEw_7WSvg000JihVL8B4XFZnUZyovcxPXQaPc-o2Ozsu9cDct5QrqiHVFHFiLftpnm-TW6wk_5t2MOO5JXMoDAvAdnu6XD-WQBYAs-YTS6mEGi-cKI0CHUk= Until it's physically tested we can't actually know

Source: X post

@corny_stripes Right. For a device I wear on my face for hours I will gladly offload some of tha

@corny_stripes Right. For a device I wear on my face for hours I will gladly offload some of that weight and mass to a few standalone extras in my room.

Yes, it’d be better if such extra standalone functionality didn’t mean wearing it on my face, but it does. Physical reality has trade offs.

Source: X post

...absolutely necessary. But if people are primarily playing VR games and Social VR, the HMD whi

...absolutely necessary. But if people are primarily playing VR games and Social VR, the HMD which is 1/5 the mass and VR-only I'd bet will be more appealing to most people when they try them on. Why would you want 5x the weight on your face for functions you'll rarely use?...

Source: X post

@UnknownSquids @DennyCloudhead Definitely they are very very different. I mean more so, all the

@UnknownSquids @DennyCloudhead Definitely they are very very different. I mean more so, all the very enthusiastic strong believers in VR putting the majority of their energy into making things for VR and growing social networks in VR rarely do I find also care about making videos and explaining it to YouTube.

Source: X post

The screen will never be able to explain to you why VR is awesome

The screen will never be able to explain to you why VR is awesome

So if you're waiting on the screen to make you understand VR and give you certainty that deep diving into VR and really exploring it and discovering its potential will be good, you're going to be waiting forever

Source: X post

@supahvee1234 @ryanjfleury Looking at that CPP committee list it does make me wonder how often a

@supahvee1234 @ryanjfleury Looking at that CPP committee list it does make me wonder how often are they in a startup situation where they need to ship a functioning system in 6 weeks? Researchers in big orgs with lots of room to think through everything have a different instinct than those who ship fast...

Source: X post

@supahvee1234 @bananu7 @emerson_clarke @ryanjfleury @nice_byte @SaschaWillems2 @RespectToX @TEMP

@supahvee1234 @bananu7 @emerson_clarke @ryanjfleury @nice_byte @SaschaWillems2 @RespectToX @TEMPER42604230 @Sharlock93 I found your list of 'simple minimal-overhead features' valuable. Reason I avoid cpp is I don't have time to wander through minefields. If there existed a "Low-Overhead Modern CPP StyleGuide" that had benchmarks and libs picked out covering all gamedev needs I'd consider it...

Source: X post

@mylesdotapp I would definitely buy this. I just really wish you could get the refresh rate to a

@mylesdotapp I would definitely buy this. I just really wish you could get the refresh rate to at least 120hz

Hz is very important for HMDs. Too many companies are underestimating how much this can relate to VR sickness.

Source: X post

@_LucasRizzotto If MR and VR HMDs cost the same, MR will get more market share. But if its $400

@_LucasRizzotto If MR and VR HMDs cost the same, MR will get more market share. But if its $400 for a VR-only HMD and $1000+ for an MR HMD with no better VR capacity, the VR-only HMD will be the mainstream HMD. An optional background being a stream of your room isn't worth that cost difference.

Source: X post

I officially dislike the word "Safe" being used in any context to sell me anything.

I officially dislike the word "Safe" being used in any context to sell me anything.

When was being a fragile squishy error-prone biological lifeform on a rock hurling through space ever about safety?

Source: X post

@GoldsteelVR Keter the non-Euclidian hands-on geometrist.

@GoldsteelVR Keter the non-Euclidian hands-on geometrist.

Source: X post

@DennyCloudhead ...which just me realize how bifurcated social VR is from screen social media. V

@DennyCloudhead ...which just me realize how bifurcated social VR is from screen social media. VRC is as popular as it's ever been, but most don't come back and say 'Twitter/Youtube sucks go in VRC!' they just stay in VRC. So, screen social media gets left with those who aren't interested in VR

Source: X post

@DennyCloudhead I find those who really believe in VR moved into VR as their primary medium. Bui

@DennyCloudhead I find those who really believe in VR moved into VR as their primary medium. Building communities/brands within VR itself. Namely VRC. Why would someone who really believes in VR make screen-based content to tell you to get off the screen and go in VR? That'd be contradictory?

Source: X post

Now, you're either on the VR bus or off the VR bus. If you're on the VR bus, and you get left be

Now, you're either on the VR bus or off the VR bus. If you're on the VR bus, and you get left behind, then you'll find it again. If you're off the VR bus in the first place — then it won't make a damn.

Source: X post

https://youtu.be/9RPKH6BVcoM

https://youtu.be/9RPKH6BVcoM

Source: X post

https://youtu.be/5BXtgq0Nhsc

https://youtu.be/5BXtgq0Nhsc

Source: X post

...what happens when that software then gets run on a million devices, or a billion devices? I'v

...what happens when that software then gets run on a million devices, or a billion devices? I've not done numbers on this, but I don't think its farfetched to presume the collective wasted energy from inefficient code probably ends up costing more money than it would have...

Source: X post

The software industry has a "Common Sense" phrase of "Computers are cheaper than programmers!" T

The software industry has a "Common Sense" phrase of "Computers are cheaper than programmers!" This is used to justify writing slow inefficient software. Implying it's cheaper to buy a faster computer then invest in developing better software. However, an issue with that is...

Source: X post

@SadlyItsBradley The PC gaming userbase kept 3D online gaming alive for years and growing before

@SadlyItsBradley The PC gaming userbase kept 3D online gaming alive for years and growing before breaking into a huge mainstream phenomenon, VR may be the same

Coincidentally Valve and Halflife 1 mod community are probably most responsible for evolving what initially broke through, counterstrike

Source: X post

@SadlyItsBradley it so sad, an HMD/VR/XR company could literally run circles around the market r

@SadlyItsBradley it so sad, an HMD/VR/XR company could literally run circles around the market right now if they hired a team and leadership that actually used the hardware daily and really understood what makes VR work then gave them Meta level funding

Source: X post

Over the years I've seen so many long, technical, Unity vs Unreal analysis's. This can be valuab

Over the years I've seen so many long, technical, Unity vs Unreal analysis's. This can be valuable but honestly the more important thing to understand if you really want to get into programming is what aspects of them are very similar.

Source: X post

...is all the extra cost and externalities which come as consequence of slow inefficient softwar

...is all the extra cost and externalities which come as consequence of slow inefficient software gets pushed onto consumers and the rest of society.

Source: X post

@gfodor but what about speed?

@gfodor but what about speed?

Source: X post

...far-fetched to me to presume that consumed energy, tech manufacturing resource and e-waste wo

...far-fetched to me to presume that consumed energy, tech manufacturing resource and e-waste would be multiple folds less if programmers always wrote highly efficient software. So, it probably isn't true that "Computers are cheaper than programmers". Rather what's happening...

Source: X post

@dankvr @club_nft I've thought too getting people to purchase some kind of small easy to use "Co

@dankvr @club_nft I've thought too getting people to purchase some kind of small easy to use "Compute Box" that provided many cloud functionalities, but better/cheaper, is important and probably quite plausible. Just no corporation has had incentive to not try and own it all in the cloud.

Source: X post

...cost to have a programmer spend more time and care to write really efficient software. Then a

...cost to have a programmer spend more time and care to write really efficient software. Then also add onto that the cost and externalities which come from people having to upgrade to new hardware and produce e-waste to run the less efficient software. It doesn't seem...

Source: X post

What will come out of a platform that enables full capture and expression of collaborative human

What will come out of a platform that enables full capture and expression of collaborative human creativity beyond what physical reality could enable will be endlessly more engaging, cool and meaningful than anything that ever comes out of an AI.

Source: X post

...VR-only HMD for primarily all-virtual VR content. But my bet is most people won't care about

...VR-only HMD for primarily all-virtual VR content. But my bet is most people won't care about AR/MR. If it's a $400 VR-Only headset that is comparable to a $1000+ AR/MR headset with VR, the cheaper VR-Only headset will become the mainstream HMD and drive this whole paradigm...

Source: X post

...understand the value of the device comes from its capacity for VR, that's what people will ju

...understand the value of the device comes from its capacity for VR, that's what people will judge it by. Which turns the "AR/MR" functionality into an optional luxury feature for those that for various reason want that video background of their room. But no one will choose...

Source: X post

...they'd be quite awesome. VR is a very plausible technology right now. It already has a commit

...they'd be quite awesome. VR is a very plausible technology right now. It already has a committed, grounded, userbase. Sticking smartphone cameras and heavy CV processing chips on headsets right now to "Sorta" get AR/MR that ultimately is just a background for VR content...

Source: X post

The issue with AR/MR is the mental image and use cases people tend to imagine when they assume i

The issue with AR/MR is the mental image and use cases people tend to imagine when they assume it's more significant than VR are so far away. A decade, easily two decades. For some use cases people imagine there are technological blockers that don't have solutions within our...

Source: X post

...that's already what's happening. There's a reason Magic Leap / Hololense never reached mass c

...that's already what's happening. There's a reason Magic Leap / Hololense never reached mass consumer market. There's a reason the Quest 2, not the Quest Pro, is still the dominant HMD. This isn't a fluke waiting on something. It is the real trend that will keep compounding.

Source: X post

...serious in physical reality in the real world. This means it's not really an "AR/MR" device a

...serious in physical reality in the real world. This means it's not really an "AR/MR" device as all of its potential value comes purely from its capacity to do VR. The AR/MR functionality just becomes one optional background for VR. Which is definitely a cool thing. But when...

Source: X post

...new kinds of fabrication plants as complex as Intel need to be fully developed from half-work

...new kinds of fabrication plants as complex as Intel need to be fully developed from half-working lab prototypes. It's just not happening anytime soon. Decades. Easily. Whereas conversely VR, right now, is pretty great. If VR HMDs shrunk 50% with 30% increase in res and hz...

Source: X post

...manufacture of an Intel/Nvidia chip would need to be constructed. Maybe such tech could exist

...manufacture of an Intel/Nvidia chip would need to be constructed. Maybe such tech could exist in a lab with a prototype that cost millions but getting that to mass manufacture is a trillion dollars and a decade or more. But issue is adequately advanced tech hasn't even been...

Source: X post

...luxury feature not necessary to interact with the all virtual VR content from which the actua

...luxury feature not necessary to interact with the all virtual VR content from which the actual value comes from. This is why AR/MR will not be a bigger market share than VR. Even if a headset has video passthrough, people are still going to use it like someone would a...

Source: X post

...is definitely interesting. But when the value of the device can only come from its capacity t

...is definitely interesting. But when the value of the device can only come from its capacity to enable you to interact with all virtual VR content because the device cannot practically be used as a pair of "AR Glasses" that you'd ever want to wear when needing to do anything...

Source: X post

...current theories of physics, namely black opaque pixels with see-through optics. Other routes

...current theories of physics, namely black opaque pixels with see-through optics. Other routes to solutions often involve mass manufacture of such incredibly advanced tech that entire new fabrication processes and plants just as complex, if not more complex, than the...

Source: X post

@cnlohr @yewnyx @thmsvdberg @JiyueJiyue Being able to get the currently submitted color/depth bu

@cnlohr @yewnyx @thmsvdberg @JiyueJiyue Being able to get the currently submitted color/depth buffer to SteamVR so you could utilize the data in the subsequent rendered overlays would enable what I think the OP wants, and also what I want. I've been ruminating a number of complete hacks to try and pull this off.

Source: X post

...But when you really understand the technical objective specifics of accomplishing the vision

...But when you really understand the technical objective specifics of accomplishing the vision of AR/MR that tends to make people assume AR/MR is more valuable and significant than VR, you realize it's so so far away. New physics needs to be discovered and new industries with...

Source: X post

...arrays or some other serious next-level sci-fi tech of which there's only half-functioning pr

...arrays or some other serious next-level sci-fi tech of which there's only half-functioning prototypes in some lab. Until then it's going to be some phone camera stuck on the front of some phone display that goes through a fat lens optic. Thats a few issues. There's more...

Source: X post

...appropriately proven out or fully invented to make it practical. I am talking about getting v

...appropriately proven out or fully invented to make it practical. I am talking about getting video passthrough AR to display the real-world comparable to a pair of glasses with real see-through lenses. You need some kind of nano camera array combined with liquid crystal lens...

Source: X post

...an HMD with AR/MR functionality if it means it has inferior VR capabilities when the all-virt

...an HMD with AR/MR functionality if it means it has inferior VR capabilities when the all-virtual VR content is where the value comes from. Most people will not choose the HMD with AR/MR functionality if it costs more than the VR-only HMD because the AR/MR is the optional...

Source: X post

@kettlecorn This whole multi-year controversy:

@kettlecorn This whole multi-year controversy: https://github.com/WebAssembly/design/issues/796

This blog post does a good overview and also presents a few solutions that unfortunately appear to have been abandoned: http://troubles.md/wasm-is-not-a-stack-machine/

Source: X post

I'm really good at putting aside presumptions, starting from first principles, thinking things t

I'm really good at putting aside presumptions, starting from first principles, thinking things through to understand different views. Usually this is great. But sometimes it's a nuisance. For example, yesterday I fully convinced myself the Quake3VM is a better choice than WASM.

Source: X post

I like this idea a lot but really needs to be like $80...

I like this idea a lot but really needs to be like $80... https://play.date/

Source: X post

I can't express how much it annoys me that WASM is missing an optimization because doing so made

I can't express how much it annoys me that WASM is missing an optimization because doing so made it more congruent with the V8 JS interpreter.

I thought the whole point was to disassociate from all negatives of JS? Not carry them on to a universal computing foundation.

Source: X post

Twitter should make it so people can collectively pay to promote another's tweets. Sort of like

Twitter should make it so people can collectively pay to promote another's tweets. Sort of like crowdsourcing the promotion fee of a tweet. Same for YouTube videos. Make it as simple as clicking the like button, but instead you're throwing a nickel into the 'Paid Boost' pool.

Source: X post

Reality is Peer to Peer.

Reality is Peer to Peer.

Source: X post

@JustineTunney I've been watching blink for a little bit now and I've read over your docs. One t

@JustineTunney I've been watching blink for a little bit now and I've read over your docs. One thing I am still wondering is how effective is this at being VM for security? Could you safely run untrusted code on it? Could that even be a possibility with this approach?

Source: X post

How did I not know this existed? https://github.com/videogamepreservation

How did I not know this existed? https://github.com/videogamepreservation

Source: X post

@DzambhalaHODL Those who present psychedelics as spiritual I think are mostly wrong. They're rig

@DzambhalaHODL Those who present psychedelics as spiritual I think are mostly wrong. They're right in that psychedelics make many get spiritual but that's more so because it scares them so bad. So they flee for something to help ground them. But ultimately psychedelics serve a different purpose

Source: X post

@cnlohr @0xstella right I guess you can just write whatever, I don't know, I was hoping for some

@cnlohr @0xstella right I guess you can just write whatever, I don't know, I was hoping for something fancier for one idea I've had

Source: X post

@CixLiv Its already affected so much. For many their mind cant process an aspect of reality unti

@CixLiv Its already affected so much. For many their mind cant process an aspect of reality until its presented to them on television or comparable mainstream broadcast on the web. It dictates reality like bibles once did in some cultures

Some saw this coming :) https://youtu.be/nr8jqQcR8TA

Source: X post

@0xstella Wait, really, you're going to be able to store 4mb of WASM on the bitcoin blockchain d

@0xstella Wait, really, you're going to be able to store 4mb of WASM on the bitcoin blockchain directly? Will that actually be somehow secured and encoded to the person who owns it?

Source: X post

@0xstella Is the data in anyway protected or encoded? Or is it only marked with who owns it?

@0xstella Is the data in anyway protected or encoded? Or is it only marked with who owns it?

Source: X post

@0xstella I'm thinking maybe, encoded in some way only the owners private key could decode it.

@0xstella I'm thinking maybe, encoded in some way only the owners private key could decode it.

Source: X post

I'm so tired of the words Capitalism and Socialism in modern political context. They don't mean

I'm so tired of the words Capitalism and Socialism in modern political context. They don't mean anything. They're so generic, referring to such widespread abstracts that vary greatly depending on colloquial context. Most have no idea what someone is referring to with these words.

Source: X post

@cnlohr Well, they're probably going to know now that you tweeted this so might as well respond.

@cnlohr Well, they're probably going to know now that you tweeted this so might as well respond.

Source: X post

Brain wave monitoring, for your own good, because you want it, of course. Why don't you want to

Brain wave monitoring, for your own good, because you want it, of course. Why don't you want to create a safer and more productive society? Come on, man, just be a decent normal member of society, put in your employer approved brain wave monitor. https://youtu.be/hfqD5aW0X5U?t=28

Source: X post

@yewnyx For the purpose of harder, I think I like the idea of programming something to go on mor

@yewnyx For the purpose of harder, I think I like the idea of programming something to go on more constrained chips, with tighter memory limits, with more intricate hardware nuances. I'm thinking more like the demoscene.

Source: X post

We should do something akin GPL'ing all public data.

We should do something akin GPL'ing all public data.

If any of your system relies on data gathered from the public in any way, then any code which touches or associates with that data must be open sourced.

Source: X post

@VAV1ST wait... wait...

@VAV1ST wait... wait...

why are you copying my tweets for further storage and analysis?

Source: X post

The Dark Ages of CompSci began when Bell Labs' business side contorted and degraded Plan9 to be

The Dark Ages of CompSci began when Bell Labs' business side contorted and degraded Plan9 to be some kind of competitor to Java. Then Java won. Forever since all has been fermenting with compounding Java-esque thinking. We need to go back to Plan9 and carry on from there with C..

Source: X post

@malekiRe You can still write a shit codebase in Rust.

@malekiRe You can still write a shit codebase in Rust.

Source: X post

@JustNNovel Less code in the world probably a good thing.

@JustNNovel Less code in the world probably a good thing.

Not everything needed a microprocessor with software stuck in it.

Source: X post

In all seriousness, if we wanted to make the quality of code improve, we should make it harder t

In all seriousness, if we wanted to make the quality of code improve, we should make it harder to program.

Like imagine if your computer caught fire from a buffer overrun.

Quality of code would be impeccable. Every codebase a work of art and beauty. Cherished and respected.

Source: X post

...I'm joking but at the same time I could be convinced to carry this out really really really e

...I'm joking but at the same time I could be convinced to carry this out really really really easily for very little. Like just give me a bedroom, or even some corner in a barn somewhere, some food, a beanbag, a VR headset and the necessary equipment.

Source: X post

I always wondered when I would start feel "Mature" or "Old". I am starting to realize you never

I always wondered when I would start feel "Mature" or "Old". I am starting to realize you never actually do.

What instead happens, for reasons you can't fully discern, lots of little things just really start to peeve you and you just silently stare at them in defeat.

Source: X post

@BattleAxeVR Have you ever used the Hololense or Magic Leap?

@BattleAxeVR Have you ever used the Hololense or Magic Leap?

Source: X post

@aemethVR Many really haven't fully felt what a magical experience VRC can offer if circumstance

@aemethVR Many really haven't fully felt what a magical experience VRC can offer if circumstances are right

Thats harder to do the older you are, the more married you are, the more kids you have, the more entrenched in a corporation you are

But still, VRC could be improved many fold.

Source: X post

@0xcacti pNaCl from Google was the LLVM IR equivalent of WASM. All that code is os and can be us

@0xcacti pNaCl from Google was the LLVM IR equivalent of WASM. All that code is os and can be used too. Honestly depending, pNaCl could be a better choice. This paper went over it well https://people.mpi-sws.org/~rossberg/papers/Haas,%20Rossberg,%20Schuff,%20Titzer,%20Gohman,%20Wagner,%20Zakai,%20Bastien,%20Holman%20-%20Bringing%20the%20Web%20up%20to%20Speed%20with%20WebAssembly.pdf

Source: X post

...you get a maximal riling up of people, so by the time they even reach the point of being able

...you get a maximal riling up of people, so by the time they even reach the point of being able to discuss a complex and nuanced subject, their frothing at the mouth with such vitriol emotional charge that no direct 1-to-1 discussion and more correct perspective can even form...

Source: X post

The root of US political issue is that people supplanted talking to, and understanding each othe

The root of US political issue is that people supplanted talking to, and understanding each other, with being programmed by television and broadcast media, then projecting that media-conditioned-in reality on everyone else.

My personal "Conspiracy Theorist" take on this is...

Source: X post

...that it's probably more coordinated than anyone would like to let themselves think. That up i

...that it's probably more coordinated than anyone would like to let themselves think. That up in the corporate peaks of the few media conglomerates which own all mainstream news they coordinate which things to broadcast to which geographical areas and demographics to ensure...

Source: X post

@ozkriff I mean more so; I'd rather write logic for vulkan and winapi in their own C abstraction

@ozkriff I mean more so; I'd rather write logic for vulkan and winapi in their own C abstractions instead of dealing with a .h wrapper in another lang. Then if there is need, make bindings to another lang on a higher-level set of abstractions that better manage the volatility.

Source: X post

...Of course, I self-denigrate this as "Conspiracy Theorist" but one of my favorite lines, "Cons

...Of course, I self-denigrate this as "Conspiracy Theorist" but one of my favorite lines, "Conspiracy Theory is unnecessary when mere incentives will do". So even though such a "scheming" could never be proven, every incentive exists for such a thing to carry out. For one it...

Source: X post

...makes profit from engagement by inducing alarm, anxiety and stress. Which triggers a deep unc

...makes profit from engagement by inducing alarm, anxiety and stress. Which triggers a deep unconscious human instinct to then pay attention to it, as there is something of danger. Then also its basic maintenance of False Consciousness https://en.wikipedia.org/wiki/False_consciousness the age-old game...

Source: X post

...certainty I still maintain we need widespread deconditioning from broadcast media. A complete

...certainty I still maintain we need widespread deconditioning from broadcast media. A complete inversion of the flow of mental conditioning where it no longer flows top-down from the profit-driven media conglomerates but instead forms bottom-up through 1-to-1 discussion.

Source: X post

...by which some ruling class maintains power by keeping everyone below them fighting and riled

...by which some ruling class maintains power by keeping everyone below them fighting and riled up so they can never coordinate at large enough scale to manage to do anything to significantly benefit them.

But who really knows for certain. Even with some varying degree of...

Source: X post

...stop the easiest bugs and mishaps that can occur in a Vulkan application. But if you need Rus

...stop the easiest bugs and mishaps that can occur in a Vulkan application. But if you need Rust to do that, you're probably going to have bad time. It seems sort of like putting training wheels on a mountain bike. Like sure, it might do something, but no.

Source: X post

@somewheresy They implemented all these corporate processes to gauge performance, so the majorit

@somewheresy They implemented all these corporate processes to gauge performance, so the majority of people learned how to just game the corporate processes to make it appear like they are doing good rather than doing anything valuable.

Source: X post

Something about the notion of Rust Vulkan bindings seems kind of odd, like an oxymoron if that c

Something about the notion of Rust Vulkan bindings seems kind of odd, like an oxymoron if that could even apply in this context? If you can't be trusted to call a free after every C malloc and stay in bounds, you definitely can't be trusted with Vulkan. Sure, maybe you might...

Source: X post

@ozkriff I can respect the effort, but ya I'd want an unsafe vulkan wrapper too, and ya also I t

@ozkriff I can respect the effort, but ya I'd want an unsafe vulkan wrapper too, and ya also I think applies for like Windows.h, if the volatility can't be fully solved with an extra layer, I'd rather deal with that volatility directly, in its own abstractions, in its own mental model.

Source: X post

On my learning Vulkan journey I come across: https://www.jeremyong.com/c++/vulkan/graphics/rende

On my learning Vulkan journey I come across: https://www.jeremyong.com/c++/vulkan/graphics/rendering/2018/03/26/how-to-learn-vulkan/ Which says, "Also, people that have masochistic tendencies and/or have a very strong abstraction muscle in their brain will not find too much difficulty."

Okay now I get why I am enjoying this for some reason.

Source: X post

@macil_tech It addresses writing wgpu in rust, but not vulkan.

@macil_tech It addresses writing wgpu in rust, but not vulkan.

But I'd be surprised if you could not write something to cause gpu errors with wgpu-rs. Avoiding GPU errors is a separate paradigm from CPU errors and what the rust borrow checker does

Source: X post

All prior “Next Big Things” in tech were highly disruptive, companies went out of business, had

All prior “Next Big Things” in tech were highly disruptive, companies went out of business, had to radically pivot, industries got displaced. But today the big tech companies are now the ones with much to lose by a “Next Big Thing”. Why would they cannabalize themselves?

Source: X post

What if you made a cryptocurrency where once a year all balances would be reset to zero. Enablin

What if you made a cryptocurrency where once a year all balances would be reset to zero. Enabling people to make as much money as they'd like but severely disincentivize hoarding it. It's not possible to predict how this would play out without some kind of simulation but this...

Source: X post

...open ended economic basis which people could program any mechanics into any which way, you wi

...open ended economic basis which people could program any mechanics into any which way, you will inevitably get the mechanics discerned to be most profitable to ____ Corporation. We have this potentially open door where we could create a kind of virtual nation with radical...

Source: X post

...kind of notion is the most intriguing thing to me about smart contracts, they present the pla

...kind of notion is the most intriguing thing to me about smart contracts, they present the plausibility of programmable economic dynamics. It's also why intertwining Social VR with a cryptocurrency with such functionality is intriguing to me because in absence of such an...

Source: X post

In the past week I typed out multiple 20+ long tweet chains and deleted them because I felt like

In the past week I typed out multiple 20+ long tweet chains and deleted them because I felt like that's just way too many tweets in a chain. I am actually getting kind of bored with writing, maybe I need to make videos.

Source: X post

If cryptocurrency posed zero threat to the current status quo and the various forms of leverage

If cryptocurrency posed zero threat to the current status quo and the various forms of leverage they hold, it would not have been turned into a controversy.

Source: X post

...experimentation not only with different art forms, different social organization schemes, dif

...experimentation not only with different art forms, different social organization schemes, different cultural modalities, but with different mechanics on how value itself functions. It's like, does anyone really want to trade such open potential for what'll most likely be a...

Source: X post

...a carbon-copy of a smartphone app store but in VR, inheriting all the economic mechanics of _

...a carbon-copy of a smartphone app store but in VR, inheriting all the economic mechanics of ____ Corporation and USD economic system? It's like damn. Like really damn. That's pretty low-brow.

Source: X post

@naval or a revolt is the immune system kicking in.

@naval or a revolt is the immune system kicking in.

Source: X post

@datgame @SebAaltonen Ya the selection bias present is an interesting thing to ponder

@datgame @SebAaltonen Ya the selection bias present is an interesting thing to ponder

Why are so many Rust fans actively paying attention to a site for technical help?

A language where its fans have minimal representation on stackoverflow could be symptom of a language that causes them less trouble

Source: X post

Anytime I hear the words "Republican", "Democrat", "Liberal", "Conservative" my eyes kind of glo

Anytime I hear the words "Republican", "Democrat", "Liberal", "Conservative" my eyes kind of gloss over and my brain stops processing most everything that follows.

There's 500+ political ideologies now. Seriously get with the times. https://polcompball.miraheze.org/wiki/List_of_ideology_balls

Source: X post

@yewnyx this is plausible, hm

@yewnyx this is plausible, hm

Source: X post

@yewnyx so far its worked with the MPAA :P

@yewnyx so far its worked with the MPAA :P

Source: X post

This sounds facetious, but it's probably truer than it is a joke.

This sounds facetious, but it's probably truer than it is a joke.

If you made something only accessible through a VR headset, that is probably enough of a barrier that no government nor corporation would ever be aware it exists because they'd have to put on a VR headset.

Source: X post

Thing that sucks about spending a lot of time in VRChat is you talk with so many people so often

Thing that sucks about spending a lot of time in VRChat is you talk with so many people so often that when you read their discord messages, tweets, or even code, your brain automatically reads it in their actual voice. Reading discord, twitter or github are so mentally noisy now

Source: X post

@ID_AA_Carmack What is 'just-in-time ray tracing' ?

@ID_AA_Carmack What is 'just-in-time ray tracing' ?

Source: X post

@cnlohr who are these people with moral issue against goto?

@cnlohr who are these people with moral issue against goto?

Source: X post

@GiselFlorez @cryptovoxels @TheSandboxGame @VRChat @AriumSpaces @decentraland I've spent a lot o

@GiselFlorez @cryptovoxels @TheSandboxGame @VRChat @AriumSpaces @decentraland I've spent a lot of time in vrchat. Ones without VR HMD support don't interest me as much.

Source: X post

...barrier on getting an identity to participate in a system that it would disincentivize malevo

...barrier on getting an identity to participate in a system that it would disincentivize malevolent actors. Most probably wouldn't want to troll nonsensically if it meant you'd need to run your computer for a few days to get a new account.

Source: X post

An intriguing idea just floated across my brain...

An intriguing idea just floated across my brain...

What if you generated your 'decentralized identity' to participate in any distributed polycentric, or decentralized, system by mining it? Nothing serious, maybe like a day or two for an average GPU. But that's enough of a...

Source: X post

I have tried all the motherboard softwares over the past few years except asrock

I have tried all the motherboard softwares over the past few years except asrock

All of them are terrible

But MSI Id rate better because you can install the software, set your LED colors which save to the board itself, then uninstall all the software (at least on the z790 one)

Source: X post

@kettlecorn @rsms It could be really useful for a lot of things, but without knowledge of what p

@kettlecorn @rsms It could be really useful for a lot of things, but without knowledge of what parts of the data are vec3, or especially qauts, it would probably be impossible to do optimally. Would it be possible to identify types in the heap with the method your using?

Source: X post

@kettlecorn @rsms Is the data consumption for transmission notably higher than doing the seriali

@kettlecorn @rsms Is the data consumption for transmission notably higher than doing the serialization manually?

Source: X post

@kettlecorn @rsms Is it just a direct sync of the heap? Or can you identify specific floats, or

@kettlecorn @rsms Is it just a direct sync of the heap? Or can you identify specific floats, or other data structures, to convert to other data representations and then interpolate those back?

Source: X post

...pseudonymity that an avatar provides is what enables a social space centered around virtual p

...pseudonymity that an avatar provides is what enables a social space centered around virtual presence to be livelier, as more people feel comfortable participating. Would requiring a photoreal 3D scan of your entire self to be put on public display on Twitter end up bringing...

Source: X post

...more users, or scaring off more users? I think it'd push far more users away than it would at

...more users, or scaring off more users? I think it'd push far more users away than it would attract. Most people aren't even comfortable uploading photos of themselves to the web, let alone a hyperreal 3D scan. So, when it comes to the subject of a Social VR "Metaverse"...

Source: X post

I often find that fantasy or cartoon-like avatars are looked down upon, seen as some stop gap, a

I often find that fantasy or cartoon-like avatars are looked down upon, seen as some stop gap, and the real solution is hyperreal virtual presence. But a simple fact of the matter is most people aren't comfortable broadcasting themselves to the web. The partial obfuscation and...

Source: X post

...filled with anime, furry, cartoon, fantasy avatar designs versus one filled with hyperreal 3D

...filled with anime, furry, cartoon, fantasy avatar designs versus one filled with hyperreal 3D scans. I don't even think it's a competition. The one that requires a photoreal 3D representation of yourself will never attract more people than the one that allows any avatar.

Source: X post

@yewnyx @malekiRe trying to figure how much you can get away with for wasmer https://github.com/

@yewnyx @malekiRe trying to figure how much you can get away with for wasmer https://github.com/wasmerio/wasmer/issues/3515

Source: X post

@yewnyx @malekiRe I actually just stumbled on the issues described here about wasmtime and alot

@yewnyx @malekiRe I actually just stumbled on the issues described here about wasmtime and alot of wasm vms in general https://github.com/WebAssembly/design/issues/1397

they can suck up alot of memory for the sandboxing functionality. wasmtime seems to have a minimum of 2gb of ram, no matter how much the program uses

Source: X post

@gfodor ...to me about all the covid stuff. Seeing how decades worth of principles, fundamentals

@gfodor ...to me about all the covid stuff. Seeing how decades worth of principles, fundamentals and cultural modalities can be flipped 180 with some top-down pressure and well-coordinated broadcasts across media channels.

Source: X post

@gfodor The thing that was so weird for me in the PNW is, historically, the PNW has been super s

@gfodor The thing that was so weird for me in the PNW is, historically, the PNW has been super skeptical of FDA and medical corporations. It was common sense FDA can't be trusted to determine safety, too much corruption. It's why the organic foods industry is so huge here, why medical...

Source: X post

@gfodor ...marijuana was legalized here so early. Portland Oregon still doesn't have fluoridated

@gfodor ...marijuana was legalized here so early. Portland Oregon still doesn't have fluoridated water because people rioted over that. Its why sanders and his "medical industry is corrupted" narrative went so far here. But then after covid you question the FDA or Pfizer and people...

Source: X post

@gfodor ...get all weird. Like somehow it took the most skeptical and critical portion of the co

@gfodor ...get all weird. Like somehow it took the most skeptical and critical portion of the country that birthed entire industries out of distrust for the FDA and medical corporations, then changed the default predisposition that instead of a corporation needing to bend over...

Source: X post

@gfodor ...backwards and jump through any and all hoops to merit even a tiny bit of trust, now i

@gfodor ...backwards and jump through any and all hoops to merit even a tiny bit of trust, now instead people need to do all of that to not be hounded into falling in line with the current flavor of corporate marketing that is being pushed out? Honestly that was the scariest thing...

Source: X post

@aemethVR It's inevitable the Four Horsemen Of The Infocalypse will go after any tech that start

@aemethVR It's inevitable the Four Horsemen Of The Infocalypse will go after any tech that starts to get big https://en.wikipedia.org/wiki/Four_Horsemen_of_the_Infocalypse But VRC/Meta could implement things to help mitigate. I've always found in various VR companies there's a severe lack of people who really understand VR...

Source: X post

@aemethVR ...and have also put good thought into cataloguing, analyzing and designing solutions

@aemethVR ...and have also put good thought into cataloguing, analyzing and designing solutions for social issues. If you're up for it, write a white paper or make some design docs for solutions. Its severely needed in the industry. It could get a lot of notice from various companies.

Source: X post

wasmer or wasmtime?

wasmer or wasmtime?

Source: X post

@malekiRe reasons?

@malekiRe reasons?

Source: X post

@mahoneymatic Dissastified with all new games I started playing Quake again yesterday, its reall

@mahoneymatic Dissastified with all new games I started playing Quake again yesterday, its really remarkable to see how much old games pulled off with so so little, and also rather sad to think how much energy and manpower now goes into games due to compounding diminishing returns from that

Source: X post

Kind of disheartening that in 2023 the fastest wasm vm is still 2.32x slower than native code:

Kind of disheartening that in 2023 the fastest wasm vm is still 2.32x slower than native code: https://00f.net/2023/01/04/webassembly-benchmark-2023/ then the popular vms are still >3x slower than native

I guess the 'performance of native code' promise of wasm is not really panning out...

Source: X post

What will end up pulling most people into VR is seeing other people, in some social platform, in

What will end up pulling most people into VR is seeing other people, in some social platform, in VR, in full body tracking. Like imagine if among all these tweets there were virtual people walking around the screen, tracked head-to-toe, interacting with each other in ways that...

Source: X post

...the frame reprojection or extrapolation would be done on the headset in a circuit designed fr

...the frame reprojection or extrapolation would be done on the headset in a circuit designed from the ground to run ATW with the absolute minimal latency possible. Could also poll controller/hand input and do some kind of reprojection to reduce perceived latency there too.

Source: X post

...that has a camera that can produce high-quality images. Better cameras became one of the bigg

...that has a camera that can produce high-quality images. Better cameras became one of the biggest driving forces in smartphone sales. The ability of a device to enable better participation, communication and interaction in the social fabric innate to the medium of the...

Source: X post

...self-expression than being able to design your whole body and everything about it? This is wh

...self-expression than being able to design your whole body and everything about it? This is why what will continue to compound users into HMDs is whatever enables screen-users to intermix with VR-users that have full body tracking and all the new tracking tech and also...

Source: X post

...probably one where the HMD has its own SoC just powerful enough to run the VR compositor on t

...probably one where the HMD has its own SoC just powerful enough to run the VR compositor on the HMD. Then a computer, or anything, delivers frames. Could be over DisplayPort or USB or the cloud, or mix of all of the above with even some on-the-HMD rendered content. But all...

Source: X post

...photo on social media or a dating site or something, this clearly gave them an advantage in t

...photo on social media or a dating site or something, this clearly gave them an advantage in their ability to communicate on such a platform, others saw that and wanted to have a comparably good camera themselves. One by one, over years, everyone has ended up with a phone...

Source: X post

...participation, communication and interaction such technology enables. Then people will want t

...participation, communication and interaction such technology enables. Then people will want that greater capacity to participate. Full body expression, full facial expression, tracking of everything, so important. But also custom avatars, what better enables full...

Source: X post

...looked just how people interact in real life. Then you'd just be sitting here being able to t

...looked just how people interact in real life. Then you'd just be sitting here being able to type text snippets at them, or maybe talk over your mic at them. It'd be very apparent there is a severe imbalance in the effectiveness of ability to communicate and interact. People...

Source: X post

...just because of how clearly it improves capacity to communicate in the platform. This is what

...just because of how clearly it improves capacity to communicate in the platform. This is what happened in VRChat. I presume few people were like "I am going to spend a grand on a PC VR headset to go in VRChat". No, most people first went into VRChat on desktop, met people...

Source: X post

...in VR could be talking with full expression of body language, dancing, hugging, whatever, the

...in VR could be talking with full expression of body language, dancing, hugging, whatever, then you the screen-user can only watch that through a screen typing or speaking at them. Yes, if most people were exposed to such a platform one by one people would be drawn into VR...

Source: X post

...in VR, clearly saw how much VR and fully body tracking enabled better communication and inter

...in VR, clearly saw how much VR and fully body tracking enabled better communication and interactions, then bought VR to participate. It's the same dynamic that I see as having drove sales of better and better cameras on smartphones. Someone would post a nice clear...

Source: X post

...if it doesn't plug into something that enables full body tracking, facial and all the trackin

...if it doesn't plug into something that enables full body tracking, facial and all the tracking tech, and also enable VR-users and screen-users to intermix socially, and also enable full custom avatar creation it will be peripheral to whatever does enable that.

Source: X post

...device is the primary thing that drives mainstream adoption. Games, applications, faster chip

...device is the primary thing that drives mainstream adoption. Games, applications, faster chips, higher resolution etc. etc. All secondary to; does it enable better participation, communication and interaction in the social fabric of the medium? So what will sell VR hardware...

Source: X post

...custom avatars. Wherever the mix of all those elements is allowed to exist will always be the

...custom avatars. Wherever the mix of all those elements is allowed to exist will always be the center where the XR HMD userbase will continue to compound, grow user count and drive hardware adoption. Some device or platform could be 10x better in multiple regards but...

Source: X post

As much as I do like a tethered headset, a basic technical truth is that you could get the motio

As much as I do like a tethered headset, a basic technical truth is that you could get the motion-to-photon latency shorter if the ATW was done entirely on the headset with dedicated silicone right next to the optics rather than going over a cable. Most ideal setup for VR is...

Source: X post

...and get more into it? Well first people need some social platform where screen users and VR u

...and get more into it? Well first people need some social platform where screen users and VR users intermix, then that platform needs to support every possible VR technology that can enable better self-capture and self-expression to put on display the greater capacity of...

Source: X post

@benz145 The VRChat userbase will continue to be the only non-kids general audience that has any

@benz145 The VRChat userbase will continue to be the only non-kids general audience that has any sense of what makes a XR HMD worth using daily as part of your regular life and this will continue to fly right over the head of the rest of the industry.

Source: X post

This is a solid point. Starting to think "Decentralized" should be explicitly reserved for somet

This is a solid point. Starting to think "Decentralized" should be explicitly reserved for something like NOSTR where every individual is actually themselves the holder of the security. Then Bitcoin, Ethereum, Solana are "distributed" but are varying degrees of "Polycentric"... https://x.com/philiprosedale/status/1614735055963951105

Source: X post

It's funny that for multiple years now VRChat has been the best online streaming service. Far be

It's funny that for multiple years now VRChat has been the best online streaming service. Far beyond Netflix, Hulu, Disney+, everything combined. But no one talks about it and the streaming companies have no idea. If you want to severely break IP laws, even profit off doing so...

Source: X post

...cluster. Maybe "Public Distributed Polycentric Security"? Also feel like the words "Diversity

...cluster. Maybe "Public Distributed Polycentric Security"? Also feel like the words "Diversity" and "Inclusion" could mean something significant here, as Solana has lower diversity of polycentric security. Then Bitcoin is not 'publicly inclusive' as its very hard to be a miner.

Source: X post

...but I also think this necessitates a new word as -technically- a Redis Cluster in AWS is Dist

...but I also think this necessitates a new word as -technically- a Redis Cluster in AWS is Distributed and Polycentric. Some kind of word to signify the barrier-to-entry for someone becoming a distributed polycentric node in the system. Which is impossible in a private redis...

Source: X post

...but have no legal recourse. All you need to do is make it so the companies have to put on a V

...but have no legal recourse. All you need to do is make it so the companies have to put on a VR headset to discover it, which probably would stop all of them. But having to go through terrible public spaces filled with anime people and furries? Its like a new kind of encryption

Source: X post

@AminiAllight Hm. Well you might be right. Where'd you read that from? Is there any prior good a

@AminiAllight Hm. Well you might be right. Where'd you read that from? Is there any prior good authority on these being already defined in a networking context?

Wiki currently uses 'distributed' to refer to many things in a networking context https://en.wikipedia.org/wiki/Distributed_networking

Source: X post

@philiprosedale Ya, that's a good term. It's probably a better term for anything people call "De

@philiprosedale Ya, that's a good term. It's probably a better term for anything people call "Decentralized" in Web3. As decentralized/centralized implies a binary, when really it's a varying spectrum

Source: X post

@mankindforward I find those who read research and code still have a clear understanding of what

@mankindforward I find those who read research and code still have a clear understanding of what it means, so it's good term to use if in technical crowds.

I wouldn't put it on the front of a marketing page for the lay public though.

Source: X post

@gfodor There's probably predispositions to side effects that with further research could be ide

@gfodor There's probably predispositions to side effects that with further research could be identified and tests developed for

But that just costs more money and could reduce sales, so probably hard to fit into the cost/benefit analysis

Source: X post

Salt your passwords

Salt your passwords

Source: X post

@malekiRe Oh I think that too, I'm just far more interested in building and exploring things tha

@malekiRe Oh I think that too, I'm just far more interested in building and exploring things that cater specifically to where I see the 20-50 demographic going rather than the 10-20 demographic

Source: X post

I'd put Scorn in my must play games list of the past decade

I'd put Scorn in my must play games list of the past decade

Scorn Hellblade Doom 2016 HL Alyx

writing that out I realize I have a rather dark taste

Source: X post

I have much respect for Quest2, RecRoom, GorillaTag but their success in VR interests me little

I have much respect for Quest2, RecRoom, GorillaTag but their success in VR interests me little because as I see it, those are all centered around the "Kids Use Case" whereas I'm more concerned with where VR is going for the 20-50 age demographic. PC VRChat shows that much better

Source: X post

@FileCorruptedGM Game use case of VR also interests me the least. The usages of VR that'll becom

@FileCorruptedGM Game use case of VR also interests me the least. The usages of VR that'll become predominate in older demographics I do not expect to primarily be games. Its why VRC intrigues me so much as it has evolved many non-game usages of VR. Virtual Club, Meetup, Theater, Art Gallery etc.

Source: X post

@SebAaltonen Every document and discussion Ive read from the formative days of webgpu did not in

@SebAaltonen Every document and discussion Ive read from the formative days of webgpu did not instill much confidence in me about webgpu. The further I dug into it the more dismay I developed.

Source: X post

...the real fundamental behind those that carried them so long and started the initial ball roll

...the real fundamental behind those that carried them so long and started the initial ball rolling. It was fundamentally political. Other people and companies took that, tried to reframe it as not explicitly that, make it mainstream friendly, more palpable to business...

Source: X post

So much of the cryptocurrency and web3 stuff of the past few years tried to present it as this c

So much of the cryptocurrency and web3 stuff of the past few years tried to present it as this clean, fun, mainstream "Big New Thing" but that's such a sham take. It really only makes sense when you understand these technologies provide mechanisms for protesting. That is the...

Source: X post

...side of things I presume. But that just confuses the subject and so many people. I think much

...side of things I presume. But that just confuses the subject and so many people. I think much controversy surrounding these technologies come from 1) people who are against what some have used them to protest or 2) people who don't understand these are technologies for...

Source: X post

...protesting and so why they operate as such just doesn't make sense or 3) people who for vario

...protesting and so why they operate as such just doesn't make sense or 3) people who for various reason have never been in a circumstance where protesting is necessary, so the significance doesn't register to them. But whatever the reason, I think the more...

Source: X post

...protest and it was getting demonized or threatened to be outlawed, most would be outraged. Ba

...protest and it was getting demonized or threatened to be outlawed, most would be outraged. Banning forms of protest is a true sign of too much authoritarianism. This is why I think it's important to always keep the crypto subject associated with its roots. It's for protesting.

Source: X post

...important thing to realize is you don't want to ever lose mechanics of protest. No matter wha

...important thing to realize is you don't want to ever lose mechanics of protest. No matter what it is. You always want to keep the option available to open those doors in case they are needed. In any other scenario if the mass public understood something to be a form of...

Source: X post

@DyLhun I suspect the cost comes from using the latest oled tech. First products of new display

@DyLhun I suspect the cost comes from using the latest oled tech. First products of new display tech are usually crazy expensive and drop fast over a few years.

Source: X post

@kahunamoore but the hard question, how do you a transition a corp to a coop

@kahunamoore but the hard question, how do you a transition a corp to a coop

Source: X post

...this ends us up at the state of the motherboard industry where every single motherboard has t

...this ends us up at the state of the motherboard industry where every single motherboard has turned into a damn Mini Las Vegas with light shows and sounds, every single functionality for anything they could possibly cram onto the board, all looking like Gundams or something...

Source: X post

...stop it, have to find something, anything. Because without FLASHY NEW FEATURE FEATURE FEATURE

...stop it, have to find something, anything. Because without FLASHY NEW FEATURE FEATURE FEATURE no one pays attention and it won't sell. So you start getting useless nonsense piled on everything, even if it might make it worse, just so it has more FEATURE FEATURE FEATURE...

Source: X post

Profit incentive is great at innovating and commodifying tech. It's amazing how over a few decad

Profit incentive is great at innovating and commodifying tech. It's amazing how over a few decades it can take tech that would have cost millions and manage to commodify it to thousands or hundreds. BUT what happens when a valuable piece of tech is generally "good" and doesn't...

Source: X post

...panels with everything digital that you barely use, most of which will probably fail at some

...panels with everything digital that you barely use, most of which will probably fail at some point and cost in repair. Profit incentive I'm realizing takes something great to the masses but inevitably turns it into a shitshow. I think we need to be more "Anti-Feature"

Source: X post

One test of a VR HMD for me is if I can lay my head on the side of a beanbag with a bunch of flu

One test of a VR HMD for me is if I can lay my head on the side of a beanbag with a bunch of fluffed up blankets with half the headset submerged into them and occluded

One of the big pluses of lighthouse diodes all over a device is only a handful have to be visible

Source: X post

...need anymore innovation? This, I realize, is where the dark side of it starts to rear it's he

...need anymore innovation? This, I realize, is where the dark side of it starts to rear it's head. Because profit incentive won't just let a good product sit and be. It gets copy-cats, that then try to one up it little by little. This then turns into an arms race of products...

Source: X post

@Lunayian @EricPresidentVR There will be diminishing returns at some point but I suspect its mor

@Lunayian @EricPresidentVR There will be diminishing returns at some point but I suspect its more around 200hz. Devices settling on 90hz isnt because of exhaustive research its because its cheaper. I suspect its due to a desire to push cheaper headsets to get higher sales numbers rather than headsets...

Source: X post

@Lunayian @EricPresidentVR ...the industry started to believe they just can't use VR long-term b

@Lunayian @EricPresidentVR ...the industry started to believe they just can't use VR long-term because of some bad discomfort from a Vive1 or Quest. So they never bought fancier hardware and never figured out how to get over VR discomfort to spend enough time in VR to really get a sense of its potential.

Source: X post

@Lunayian @EricPresidentVR ...it's partly why XR,AR,MR is at the forefront now. Too many on the

@Lunayian @EricPresidentVR ...it's partly why XR,AR,MR is at the forefront now. Too many on the business/corporate side put on a Quest2 had major discomfort, saw too many reports of consumers experiencing the same, then they blame it on "VR" rather than technical specifics of display, optics, experience.

Source: X post

@Lunayian @EricPresidentVR I'd say tho, if you have an idea definitely pursue it. MR is worth fu

@Lunayian @EricPresidentVR I'd say tho, if you have an idea definitely pursue it. MR is worth further exploration. Its just Ive sat in offices for long time that had every HMD to test anything. With MR its easy to imagine use cases. But build it, put it on a device. Always so many unforeseen showstoppers

Source: X post

@Lunayian @EricPresidentVR I started exploring use cases and developing for MR HMDs 6 years ago.

@Lunayian @EricPresidentVR I started exploring use cases and developing for MR HMDs 6 years ago. Over the years the more access I got to various HMDs, and the more time I spent in them, the more it became obvious to me VR is more valuable. I think most of the XR industry misses this because too many in...

Source: X post

@Lunayian @EricPresidentVR ...and that the past few years of marketing pushing cheaper devices t

@Lunayian @EricPresidentVR ...and that the past few years of marketing pushing cheaper devices that are ideal for too small a percentage of people has created more people afraid of using VR than those excited to. It had bigger short-term payout for some but long-term I worry it damaged perception of VR...

Source: X post

@Lunayian @EricPresidentVR ...a higher proportion of the population can use without eye discomfo

@Lunayian @EricPresidentVR ...a higher proportion of the population can use without eye discomfort or sickness. I worry if you gathered data on this the number of people convinced from prior experience that VR cant do anything but cause eye discomfort and sickness would greatly outnumber the VR userbase...

Source: X post

@kripken I'm very glad to see this notion come to someone else too. It's what I've been planning

@kripken I'm very glad to see this notion come to someone else too. It's what I've been planning on doing for a number of months now for one of my personal projects, but have been debating if it's actually a good idea or if I'm being stupid :P

Source: X post

...just trying to invent any and everything they possibly can to stick on next years features li

...just trying to invent any and everything they possibly can to stick on next years features list and marketing page in order to draw more attention to their product. But what happens when there is nothing more to bring significant meaningful value to a product? That doesn't...

Source: X post

Just stick some lighthouse diodes all over that thing, front, back and side, so then you could e

Just stick some lighthouse diodes all over that thing, front, back and side, so then you could even lay face down and have it track just fine. Then attach the thinnest, nicest, sturdiest braided tether you can get. Done. Perfect.

Source: X post

It's a good reminder how much of the attacks and propaganda against cryptocurrency is just an ec

It's a good reminder how much of the attacks and propaganda against cryptocurrency is just an echo of the same kinds of attacks against cryptography decades ago https://youtu.be/9vM0oIEhMag and cryptography won

Source: X post

I'm like two cups of coffee and another bloated XR HMD product launch away from tearing apart my

I'm like two cups of coffee and another bloated XR HMD product launch away from tearing apart my index, reverse engineering the CAD files, and 3D printing my own slimmer encasing. After realizing the optic is a contained module doesn't seem too impossible https://www.ifixit.com/products/valve-index-headset-right-eye-tube-assembly

Source: X post

I really don't want cameras and extra chips on my HMD taking up space, weight, money and making

I really don't want cameras and extra chips on my HMD taking up space, weight, money and making extra heat all for the very rare possibility I might be too lazy to lift my headset one inch up off my head to figure out where I have put my VR drinking cup.

Source: X post

@BattleAxeVR @BARUN_MARU Ya, feel the same, its the only one that looks good

@BattleAxeVR @BARUN_MARU Ya, feel the same, its the only one that looks good

Only potential negative I've heard is it may have excessive distortion at the peripheral that makes the effective FOV too small, but shall see. Everything else is fine, you don't even want to use AMD cards in VRC anyways

Source: X post

...and then an atrocity of awful software that barely works to try to make it all function. When

...and then an atrocity of awful software that barely works to try to make it all function. When really its just a motherboard. A place to stick a CPU, RAM, few expansion cards, few USB expansions. Or the state of modern car industry where everything needs multiple LCD touch...

Source: X post

@0xstella But really you just put a finger loop, sealed lid, and straw on it and you have solved

@0xstella But really you just put a finger loop, sealed lid, and straw on it and you have solved the majority of the problem. This thing right here is a must-have VR accessory https://www.amazon.com/dp/B09P846GMG/ref=twister_B09P83FK76?_encoding=UTF8&psc=1

Seriously that $30 cup solves for 90%+ of the reason I'd ever need cameras on my HMD

Source: X post

@0xstella a vr drinking cup with embedded lighthouse diodes would be a killer item

@0xstella a vr drinking cup with embedded lighthouse diodes would be a killer item

Source: X post

@Lunayian @EricPresidentVR Ya, they are multiple variables needing to be dealt with to fully sol

@Lunayian @EricPresidentVR Ya, they are multiple variables needing to be dealt with to fully solve VR sickness but getting the motion-to-photon latency of view reprojection as minimal as possible is an important one

Source: X post

@Lunayian @EricPresidentVR ...my personal suspicion from trying many different headsets and prot

@Lunayian @EricPresidentVR ...my personal suspicion from trying many different headsets and prototypes of headsets and seeing hundreds of people go through their first VR experiences. The refresh rate needs to be more than 200hz for it to alleviate VR sickness in the majority of the population.

Source: X post

@Lunayian @EricPresidentVR All VR applications reproject your view at the full refresh rate of t

@Lunayian @EricPresidentVR All VR applications reproject your view at the full refresh rate of the headset irrelevant of the FPS of the game. This is how asynchronous time warp works. This reduces motion-to-photo latency of head movement to visible frame update, which is a contributor VR sickness.

Source: X post

@DyLhun @EricPresidentVR I don't understand how the whole industry keeps missing the importance

@DyLhun @EricPresidentVR I don't understand how the whole industry keeps missing the importance of 144hz displays and direct DisplayPort connection for minimal latency

I assume its because these just go without saying to any regular heavy user of VR, but they haven't been turned into a white paper

Source: X post

@ChuckMakesIt @SadlyItsBradley I absolutely agree. I wish there was a high-end headset with only

@ChuckMakesIt @SadlyItsBradley I absolutely agree. I wish there was a high-end headset with only lighthouse, or at least inside-out vs outside-in were modules

It's because the Quest 2 sold so many units that everyone who looks at the spreadsheets concluded that is what everyone wants

Source: X post

@yewnyx @Lunayian One video from few months ago said fov was little larger than quest 2, is that

@yewnyx @Lunayian One video from few months ago said fov was little larger than quest 2, is that not true?

Source: X post

@yewnyx @Lunayian it was this video https://youtu.be/N_NPxLYGOig

@yewnyx @Lunayian it was this video https://youtu.be/N_NPxLYGOig

Source: X post

@yewnyx @Lunayian do you wear glasses in it?

@yewnyx @Lunayian do you wear glasses in it?

Source: X post

@SadlyItsBradley ... I don't know about the mouth contraption though, that's a little out of lef

@SadlyItsBradley ... I don't know about the mouth contraption though, that's a little out of left field? Although I guess maybe more important if you live with other people and need privacy.

Source: X post

@SadlyItsBradley Have to give them props though for hiring XR product people that (seem to) actu

@SadlyItsBradley Have to give them props though for hiring XR product people that (seem to) actually use an HMD and pay attention to what the existing userbase is doing.

If you read their product pages, it seems to me they are paying attention. https://en.shiftall.net/products/meganex https://en.shiftall.net/products/flipvr

Source: X post

@Lunayian ...the price, I have not tried it yet, but for number of hours I wear a VR headset I f

@Lunayian ...the price, I have not tried it yet, but for number of hours I wear a VR headset I fully welcome a $2k price tag for the most compact, lightweight, minimal, comfortable HMD possible with the absolute best display quality possible if its truly more comfortable for long term use.

Source: X post

@Lunayian Its less than half the weight of the index with (supposedly) top-tier lenses+OLEDs. Pa

@Lunayian Its less than half the weight of the index with (supposedly) top-tier lenses+OLEDs. Paying $2k+ for top-tier display tech isn't uncommon. Top tier TV or Monitor is $2k. Ya, those are bigger, but compacting technology smaller can cost just as much. I dont know if this is worth...

Source: X post

@Lunayian I'd honestly pay more for a version without the XR1+cameras and instead only lighthous

@Lunayian I'd honestly pay more for a version without the XR1+cameras and instead only lighthouse diodes integrated

Seriously this is the only VR headset that represents the direction I want any XR HMD to go. As minimal+modular+lightweight as possible with the absolute best optics+screens

Source: X post

@kikaimori @Sofian375 @SadlyItsBradley ...I'm getting tired of having a toaster strapped to my f

@kikaimori @Sofian375 @SadlyItsBradley ...I'm getting tired of having a toaster strapped to my face for hours

Source: X post

@kikaimori @Sofian375 @SadlyItsBradley I think that's the purpose of it. Put the fanciest screen

@kikaimori @Sofian375 @SadlyItsBradley I think that's the purpose of it. Put the fanciest screens/optics in the smallest, lightest, minimal package possible

Personally, I'm excited. If its visual quality and comfort in long term use is notably better, for something I'd use every day for hours, I'd gladly pay $2k.

Source: X post

@JamesPiechocki @SadlyItsBradley because the chip is only for inside out tracking, meganex is te

@JamesPiechocki @SadlyItsBradley because the chip is only for inside out tracking, meganex is tethered

Source: X post

@ChuckMakesIt @SadlyItsBradley for inside out tracking

@ChuckMakesIt @SadlyItsBradley for inside out tracking

Source: X post

@benz145 One 27" 4k monitor. I don't want to rotate my head when working.

@benz145 One 27" 4k monitor. I don't want to rotate my head when working.

But really pixel space is probably more important metric. People thinking they need two monitors might predominately have 1080p monitors whereas technically my one 4k monitor is four 1080p monitors stuck together.

Source: X post

@BattleAxeVR @RtoVR @shiftall_inc Multiple places in the past said 120hz and it does not come wi

@BattleAxeVR @RtoVR @shiftall_inc Multiple places in the past said 120hz and it does not come with controllers.

Source: X post

@BattleAxeVR @RtoVR @shiftall_inc 120 hz has been listed on the actual site in the past, it isn’

@BattleAxeVR @RtoVR @shiftall_inc 120 hz has been listed on the actual site in the past, it isn’t now. But even just few months ago a rep in a video was saying 120. Maybe it changed? But maybe they just forgot, I assume it’s a small, very busy, team managing this CES stuff

Source: X post

@RyanSAdams It wasn't brutal, it was clearing away those who were in the space for nonsensical r

@RyanSAdams It wasn't brutal, it was clearing away those who were in the space for nonsensical reasons.

Source: X post

@KazyEXE Ya... I want to get on all open source OSs

@KazyEXE Ya... I want to get on all open source OSs

Source: X post

It's kind of crazy to consider how much more efficient all of our computer systems would be if e

It's kind of crazy to consider how much more efficient all of our computer systems would be if everything were written in more efficient languages. Realistically global computing energy consumption would be multiple folds less.

https://storage.googleapis.com/cdn.thenewstack.io/media/2018/05/3730357d-results-energy-time-and-memory-usage-screenshot-from-research-paper.png

Source: X post

I contend programmers have probably exerted more energy arguing about whose fantasy abstraction

I contend programmers have probably exerted more energy arguing about whose fantasy abstraction concept to base everything upon, rather than writing code that does something useful and learning better habits, that everything after C caused us to lose more progress than it enabled

Source: X post

...way to approach any complex subject. It's not how good people approach subjects which they ha

...way to approach any complex subject. It's not how good people approach subjects which they have differing perspectives and understanding on. It's malevolent to culture. People do this in US politics all the time too and that whole thing has gotten pretty fucked too.

Source: X post

...They find that rather than having to discuss and understand, they just get bombastic, make ev

...They find that rather than having to discuss and understand, they just get bombastic, make everything awkward and uncomfortable whenever something is uttered or mentioned on the hope people will just stop mentioning it. I've realized that's just an incredibly disingenuous...

Source: X post

@the_aiju Im kind of going through the opposite, over a decade with lots of c# and some cpp, sta

@the_aiju Im kind of going through the opposite, over a decade with lots of c# and some cpp, started seeing the absolute atrocity of over abstraction pervasively heading over a cliff and wanting everything written as minimally as possible in C

Source: X post

@the_aiju I have wandered into the plan9 rabbit hole before, it is tragedy it didn't fully becom

@the_aiju I have wandered into the plan9 rabbit hole before, it is tragedy it didn't fully become what it could of been.

Source: X post

...subscription model that netflix, hulu and whatever streaming services use. That Adobe, Autode

...subscription model that netflix, hulu and whatever streaming services use. That Adobe, Autodesk etc. all pushed everyone into. Where each one wants you to subscribe to their services, because they know then you are less likely to subscribe to a different service. It is an...

Source: X post

Something happened with the whole Web3/Crypto subject where you say one of these things out in t

Something happened with the whole Web3/Crypto subject where you say one of these things out in the open and you can't proceed to just have a conversation about it. As though you're talking about any other technology. Someone always has to come forth with some rather bombastic...

Source: X post

...presented and communicated through the business model and UI. That if you do keep subscribing

...presented and communicated through the business model and UI. That if you do keep subscribing, this is better somehow, that it is what you want to do, because it's what the UI directs you to do, and many people do just follow that. Most people don't think much about things...

Source: X post

...payment, it is incentivized and presented to be something continual, that locks you. I know a

...payment, it is incentivized and presented to be something continual, that locks you. I know a lot of Patreons let you subscribe once and get the assets, then that's it, like a onetime payment. Sure, that's better, but still the insinuation is there, incentivization is still...

Source: X post

...means of arguing and going on the offense. Make a scene out of it. Which consequentially make

...means of arguing and going on the offense. Make a scene out of it. Which consequentially makes most people get in the habit of "Don't talk about crypto/web3" because it always upsets some social vibe. But the thing is, that's the very intent of why some people do this...

Source: X post

...in that they want to destroy the competition. They want to monopolize. In a small community o

...in that they want to destroy the competition. They want to monopolize. In a small community of individual creators all creating lots of little things, adapting the same anti-cooperative, anti-competitive, business models of corporations just seems kind of shitty. It is...

Source: X post

I decided to delete my Patreon. Not that I ever had many Patrons (total of 2, ever) but I conclu

I decided to delete my Patreon. Not that I ever had many Patrons (total of 2, ever) but I concluded that in terms of trying to grow a grassroots business it's really kind of a shitty business model and damaging to community at large because it is the indie version of the...

Source: X post

...for community-based creator economies? No, that's terrible. That is the direct antithesis of

...for community-based creator economies? No, that's terrible. That is the direct antithesis of a good business model for ideal community and culture. It makes it an even more harsh zero-sum game than just a typical open market. As payment is not incentivized to just be...

Source: X post

...explicitly the definition of being malevolent to community and its culture. That is the entir

...explicitly the definition of being malevolent to community and its culture. That is the entire intent behind such subscription-based business models of these corporations, to be anti-cooperative, anti-competitive, monopolizing and consolidating. People want to copy that...

Source: X post

...attempt of them to try and consolidate the market. Incentivize continual paying to them, no m

...attempt of them to try and consolidate the market. Incentivize continual paying to them, no matter what, while disincentivizing paying and exploration of anything else. Because once someone is paying their $10 to one thing, they are less likely to consider paying $10 to...

Source: X post

...anything else. Having to have multiple monthly subscriptions is really obnoxious and typical

...anything else. Having to have multiple monthly subscriptions is really obnoxious and typical consumers just hate it. It is essentially anti-community, as corporations are, they aren't cooperative, they are competitive. Even worse really, they are anti-competitive...

Source: X post

...and just play along with whatever is overtly presented to them. Its why corporations love the

...and just play along with whatever is overtly presented to them. Its why corporations love these business models so much, they really do work for being anti-cooperative, anti-competitive, consolidating, monopolizing. It a shitty quality to try and recreate in a virtual culture.

Source: X post

why is all motherboard software so bad, I really just don't get it, this doesn't seem like an ex

why is all motherboard software so bad, I really just don't get it, this doesn't seem like an extremely difficult type of software

Source: X post

Scorn is what I wish more games were like. Original immersive pieces of art with just enough sim

Scorn is what I wish more games were like. Original immersive pieces of art with just enough simple interactivity to make the art more engaging

I dislike games that are commitments of learning/knowledge. Its just a game, not a job. Id rather invest mental energy in a real skill

Source: X post

@cnlohr I went about an hour south and save about $1000 on rent a month now

@cnlohr I went about an hour south and save about $1000 on rent a month now

Source: X post

the depths of the human imagination is so much more interesting than anything else

the depths of the human imagination is so much more interesting than anything else

empty space, so lame

Source: X post

@Thrilluwu @happyhenzo There are pretty comprehensive networks in VRC of self-policing, to which

@Thrilluwu @happyhenzo There are pretty comprehensive networks in VRC of self-policing, to which I've always been impressed the degree to which malevolent people are recognized and exodus'ed

Problem is, they just exodus them to public lobbies for all the new people to deal with

Source: X post

I'd pay like $500 a year for a version of windows that never changes and comes absolutely barebo

I'd pay like $500 a year for a version of windows that never changes and comes absolutely barebones minimal nothing extra and none of the 'Welcome' 'Tour Guide' things. The experience of getting a new computer setup with Win11 vs a KDE plasma or XFCE distro is absurd. I can...

Source: X post

Google search results are already drowned out with auto-generated pages filled with ads. ChatGPT

Google search results are already drowned out with auto-generated pages filled with ads. ChatGPT is going to make that even more severe. Honestly starting to think chatgpt may kill the text based web. Google will primarily become a cache of chatgpt generated text.

Source: X post

...go from USB install media to mostly setup with Plasma/XFCE distro in like 20 mins. Maybe less

...go from USB install media to mostly setup with Plasma/XFCE distro in like 20 mins. Maybe less. Whereas Win11 it is at least 2 hours. Most of it just clicking next on stupid animated intro menus to make it appear like it has good UX and then having to uninstall/disable...

Source: X post

...all the crap. It's an ironic thing the pursuit to make such good UX in Win11 became counterin

...all the crap. It's an ironic thing the pursuit to make such good UX in Win11 became counterintuitive at a certain point and now Linux actually has better install/setup UX. Honestly think my mom could get a good Linux distro setup with less trouble than Win11 at this point.

Source: X post

This alone makes me have far more hope in Solana than ETH or any other smart contract platform:

This alone makes me have far more hope in Solana than ETH or any other smart contract platform: https://docs.solana.com/developing/intro/rent These platforms need some mechanic of entropy.

Source: X post

People defending Musk a bit weird to me. Sure, the dude has some great accomplishments but that

People defending Musk a bit weird to me. Sure, the dude has some great accomplishments but that doesn't exclude anyone from critical analysis in a position of power. Conversely, people defending someone else in a position of power that Musk attacks is just as weird to me...

Source: X post

@mahoneymatic which ones?

@mahoneymatic which ones?

Source: X post

@Lanowen the pp parts of c are kind of like the astrology of programming, they need a lot of han

@Lanowen the pp parts of c are kind of like the astrology of programming, they need a lot of hand-waving to justify

Source: X post

If the Lightning Network doesn't turn out to have any major showstoppers that will severely inhi

If the Lightning Network doesn't turn out to have any major showstoppers that will severely inhibit the potential for litecoin, dogecoin or others to get market share as a common currency.

Which so far it doesn't look like it does have any unsolvable showstoppers?

Source: X post

...I really don't get this aspect of US culture, it's like everyone is Minions and they have to

...I really don't get this aspect of US culture, it's like everyone is Minions and they have to go find some powerful something to swear allegiance to and defend. No. Let the elite class tear one another apart. Cheer them on. We're not in Feudalism anymore, we don't need Lords.

Source: X post

@SadlyItsBradley It's so under-realized how important it is. Kind of blows my mind it's not more

@SadlyItsBradley It's so under-realized how important it is. Kind of blows my mind it's not more pervasive. Probably because until someone puts the trackers on you and guides you to an avatar that fits well, you have no experience for it to register how important it is, it's just a thought...

Source: X post

@prcWrites @1899Netflix no, looks interesting though

@prcWrites @1899Netflix no, looks interesting though

Source: X post

Polkadot doesn't even need something like eth tornado cash. It's such a cumbersome process to mo

Polkadot doesn't even need something like eth tornado cash. It's such a cumbersome process to move money through the chains right now that I figure the IRS just won't even be able to figure out how to use it...

I love the project but seriously needs to get better here...

Source: X post

@NickSarafa Thanks! but I don't see it as a future take, it's already largely observable in VRCh

@NickSarafa Thanks! but I don't see it as a future take, it's already largely observable in VRChat. The one added feature that garnered so much engagement was the ability to affect hair, cloth, tail, ears etc. with physics. Grab and pose them. People adjusting the physics on their avatar...

Source: X post

@NickSarafa ...tends to go viral in the platform far easier than worlds with only high visual fi

@NickSarafa ...tends to go viral in the platform far easier than worlds with only high visual fidelity. I'd fully expect in the paradigm of VR the most interactive platform is what will continue to produce the most engagement, even if it is all cartoony.

Source: X post

@NickSarafa ...avatar and adding more interactivity to their avatar, and people playing with wha

@NickSarafa ...avatar and adding more interactivity to their avatar, and people playing with whatever other people added to theirs. Ya, I think that's easily observable as the one novel thing in the past year that garnered the most engagement. Also any VRC world with something interactive...

Source: X post

...I've been trying to pull all my dot assets back out of the chain into plain dot token just to

...I've been trying to pull all my dot assets back out of the chain into plain dot token just to see if I could, and between not being able to tell where all the assets went, running into bugs, or not being able to figure out certain UIs, it's taking days.

Source: X post

CPP really didn't need the PP...

CPP really didn't need the PP...

Source: X post

@birdmademejoin @SadlyItsBradley Any really... I use vive 3.0s but would like tundras. The perfo

@birdmademejoin @SadlyItsBradley Any really... I use vive 3.0s but would like tundras. The performance is all the same, its mainly just size difference and battery life.

Source: X post

This is a great VRC tech demo, but it's also showing something many of those outside of VR miss,

This is a great VRC tech demo, but it's also showing something many of those outside of VR miss, that being, Interactivity > Visual Fidelity. That, yes, a single interactive cartoony piece of cloth will run miles in engagement around infinite, static, photorealism... https://x.com/Michael_Moroz_/status/1607560250005291008

Source: X post

The more I learn about vulkan the more I can't get the notion out of my head that you probably d

The more I learn about vulkan the more I can't get the notion out of my head that you probably don't need to use the CPU much at all... bootstrap the application, upload mesh/textures and then stream inputs to the GPU and in theory that could be it for almost everything...

Source: X post

...the fact you can actually reach out and touch things changes -literally everything- about the

...the fact you can actually reach out and touch things changes -literally everything- about the nature of the experience compared to a screen. This will only compound once good, low-latency, hand-tracking is commonplace.

Source: X post

Long term space travel without an adequate VR setup to keep your group engrossed in some kind of

Long term space travel without an adequate VR setup to keep your group engrossed in some kind of enjoyable reality to maintain sanity, enable exploration and purpose is kind of scarier than many alternatives that could happen from just staying on earth through some catastrophe.

Source: X post

I've always suspected crypto adoption will not be led primarily by major, western, technological

I've always suspected crypto adoption will not be led primarily by major, western, technological nations with strong fiat and tech infrastructure. Rather it will be led by other nations with problematic tech/fiat. This is happening: https://blog.chainalysis.com/reports/2022-global-crypto-adoption-index/

Source: X post

...and of course upload the shaders, where all logic would be. Starting to realize vulkan isn't

...and of course upload the shaders, where all logic would be. Starting to realize vulkan isn't just a graphics api to lower drawing overhead, its deep control on memory layout/hookup enables uploading complex applications to the GPU. Not just compute shaders, whole applications

Source: X post

Web3 'crypto-incentivized' storage is a subject I'm not really sold on. I think it's neat. I log

Web3 'crypto-incentivized' storage is a subject I'm not really sold on. I think it's neat. I logically understand it.

BUT:

1. BitTorrent and Masatadon have ran, and continue to run, just fine. Napster and other p2p services also ran fine. People easily donate bandwidth...

Source: X post

...There are a whole bunch of simple social incentivizes for someone to foot the bill for a serv

...There are a whole bunch of simple social incentivizes for someone to foot the bill for a server or run their own.

2. The storage of actual media is where real malevolence can happen. There is a serious moral qualm with the notion of building a "censorship resistant" video...

Source: X post

@smdiehl Turning crypto into a highly emotional subject and set of media buzzwords did so much d

@smdiehl Turning crypto into a highly emotional subject and set of media buzzwords did so much damage. Thankfully it is dying down and the crashes dispersing so much of the nonsense. I’m finding decent conversation is now much more possible.

Source: X post

..."replication" of files if you so choose to mirror something. But I'm still not really convinc

..."replication" of files if you so choose to mirror something. But I'm still not really convinced that is the best solution for storage of any distributed network. I think I'd like to see an exhaustive analysis of various p2p storage schemes.

Source: X post

...or image host. Much of which is solved by it being on some server someone has to own and be a

...or image host. Much of which is solved by it being on some server someone has to own and be accountable for. I think censorship resistance with media via some democratic mechanic of a mass of people could be good if some government is trying to block damning videos of...

Source: X post

I guess this is scientific proof that whatever is going on in VRChat is good for humanity

I guess this is scientific proof that whatever is going on in VRChat is good for humanity https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3722245/ https://x.com/_rygo6/status/1607293134807130112/photo/1

Source: X post

...don't think is a good use case either. The whole problem of trying to enable someone to own a

...don't think is a good use case either. The whole problem of trying to enable someone to own a singular "Digital Media Asset", even if you could, it's just not the best design of economic incentives in a culture.

So, I just don't know. I like IPFS as it enables voluntary...

Source: X post

...corruption or oppression. But the ability of one person to stick a file somewhere and have it

...corruption or oppression. But the ability of one person to stick a file somewhere and have it forever be stuck there against anyone's wishes? Hm. I don't know about that.

3. I just don't believe any media on the web should be "permanent", a bit of entropy is good...

Source: X post

@Chase_Davis_ I like the idea of filecoin for a private IPFS backup, but for really important th

@Chase_Davis_ I like the idea of filecoin for a private IPFS backup, but for really important things I still find it hard to trust. Like I'd want to know it's replicated in multiple countries on servers with a long-running reputations. I don't know if filecoin provides that?

Source: X post

...but in a non-joking context, does makes me wonder if rapid diversification of so many modalit

...but in a non-joking context, does makes me wonder if rapid diversification of so many modalities of modern life is from some deeper instinct preparing for rapid future adaptation and if that's fully random or it occurs in anticipation of something specific

Source: X post

and necessary for literally everything. Like we don't need every cat video and meme from 100+yea

and necessary for literally everything. Like we don't need every cat video and meme from 100+years ago. The things people really care about will be maintained and carried on by various groups.

4. The big desire for permanent storage was digital asset ownership, which I just...

Source: X post

@mahoneymatic delonge has been pretty public about his focus on ufos for a while, he formed some

@mahoneymatic delonge has been pretty public about his focus on ufos for a while, he formed some institute for it a number of years ago

Source: X post

https://x.com/_rygo6/status/1606861763911516163/photo/1

https://x.com/_rygo6/status/1606861763911516163/photo/1

Source: X post

@mankindforward distributed spatial social network

@mankindforward distributed spatial social network

Source: X post

https://youtu.be/tsIQt3vEm7c

https://youtu.be/tsIQt3vEm7c

Source: X post

evolution > standardization

evolution > standardization

Source: X post

As we close 2022, for yet another year, still the greatest tweet ever. https://x.com/duncantruss

As we close 2022, for yet another year, still the greatest tweet ever. https://x.com/duncantrussell/status/633335593435398146

Source: X post

Sometimes I wonder how much bad audio on the Quest contributes to VR not fully "clicking" for ma

Sometimes I wonder how much bad audio on the Quest contributes to VR not fully "clicking" for many

That sure, the visual registers, but until you have something like the Index's ear speakers with proper sound design the other necessary parts of the brain aren't properly affected https://x.com/Anticleric/status/1605848074458263557

Source: X post

RT @alexmyers83: 2/3 of all crypto users live in developing countries. Think about that. Western

RT @alexmyers83: 2/3 of all crypto users live in developing countries. Think about that. Westerners worry about ape jpegs and often forget…

Source: X post

@katdov Program an Arduino with C

@katdov Program an Arduino with C

You can get nice "starter" packs intended for students/ kids/learning like this: https://store-usa.arduino.cc/collections/kits/products/arduino-starter-kit-classroom-pack

I recommend this as a first because it presents the subject correctly. That programming is uploading data to hardware to then control the hardware.

Source: X post

@katdov Many people never fully grok or develop an intuition about that. Of what they are actual

@katdov Many people never fully grok or develop an intuition about that. Of what they are actually doing when programming and I think their instinct forever flounders about with bad decisions in programming because of it

Plus you get to play with real sensors, motors, buttons, LEDs etc.

Source: X post

@katdov although just realized I linked you the "6-pack" of starter kits accidentally :O

@katdov although just realized I linked you the "6-pack" of starter kits accidentally :O

don't buy that, there's a bunch of different ones here https://store-usa.arduino.cc/collections/kits

Source: X post

https://youtu.be/swbGrpfaaaM

https://youtu.be/swbGrpfaaaM

Source: X post

@yewnyx @VRUnderground ...it's one of the few things Ive mulled over trying to get a startup goi

@yewnyx @VRUnderground ...it's one of the few things Ive mulled over trying to get a startup going for, especially since no AWS/Azure solution has fully capitalized on using wasm for compute yet and wasm compute fits alongside smart contracts very nicely since sol/dot smart contracts are wasm

Source: X post

@mahoneymatic @CoinDesk can I get some funding

@mahoneymatic @CoinDesk can I get some funding

Source: X post

I'm verifying my Arweave address Fv2cb6GSfqeReuk9YaUlS-cwXxFs9GikvioDYTYNV60

I'm verifying my Arweave address Fv2cb6GSfqeReuk9YaUlS-cwXxFs9GikvioDYTYNV60

Source: X post

https://youtu.be/1b-bijO3uEw

https://youtu.be/1b-bijO3uEw

Source: X post

@yewnyx @VRUnderground most of my ruminating on this is with solana, I think it's the one of the

@yewnyx @VRUnderground most of my ruminating on this is with solana, I think it's the one of the few thats efficient and cheap enough to do anything significant for typical end users

but Ive been trying to sort out a way someone can post a digital asset for sale at $1-$2 and keep >99.9% of the sale

Source: X post

@yewnyx @VRUnderground Less than 1 cent transaction and store fees to sell digital items globall

@yewnyx @VRUnderground Less than 1 cent transaction and store fees to sell digital items globally will become more and more important the more a virtual economy involves smaller transactions and includes more of the world...

Source: X post

@yewnyx @VRUnderground I don't think there's a centralized market with less than 1 cent fees? I

@yewnyx @VRUnderground I don't think there's a centralized market with less than 1 cent fees? I thought booth was cheapest? I think curated markets will evolve but im more interested in making more so the digital equivalent of a garage sale. When i say programmable economy i just mean smart contracts

Source: X post

@yewnyx @VRUnderground I could see some mechanic of transaction reversal evolving in a completel

@yewnyx @VRUnderground I could see some mechanic of transaction reversal evolving in a completely open system, but my personal bet is for the smaller transactions, which will be most transactions, most won't care, it will incentive towards the smallest fees

Source: X post

@yewnyx @VRUnderground but really, it's the programable economy and transfer of leverage that in

@yewnyx @VRUnderground but really, it's the programable economy and transfer of leverage that intrigues me the most. Users of corporate owned fiat markets and platforms don't have much leverage in affecting them or programming new economic schemes into them

Source: X post

@yewnyx @VRUnderground Also its not correct to view smart contracts as "compute" in the web2 sen

@yewnyx @VRUnderground Also its not correct to view smart contracts as "compute" in the web2 sense. Youd never use a smart contract like an AWS lambda. A smart contract is for programmable distributed consensus. A perfect web3 compute solution still doesn't exist but there's some promising projects...

Source: X post

@yewnyx The part that intrigues me more is that anyone can program economic mechanics into it, t

@yewnyx The part that intrigues me more is that anyone can program economic mechanics into it, then multiples of these economic models could simultaneously exist and play out. It turns economic design into a kind of memetic evolutionary process.

Source: X post

@yewnyx ...and I do see one these "memetic economic models" being only decentralized identity +

@yewnyx ...and I do see one these "memetic economic models" being only decentralized identity + volunteer resources. I primarily expect that to be the baseline that others will have to prove themselves against

Source: X post

@VRUnderground @yewnyx cart before the horses still in too many cases

@VRUnderground @yewnyx cart before the horses still in too many cases

we first need a widely adopted and trusted form of decentralized identity

Source: X post

This is almost the exact solution to web3 based distributed compute that I've been waiting for:

This is almost the exact solution to web3 based distributed compute that I've been waiting for: https://wiki.phala.network/en-us/general/phala-network/products/ Kind of sucks though it is on Polkadot and I don't want to use Polkadot quite yet. Is there anything comparable on Solana?

Source: X post

@TheVirtunaut @yewnyx by "volunteer resources" I mean people volunteering to host a server or vo

@TheVirtunaut @yewnyx by "volunteer resources" I mean people volunteering to host a server or volunteering to release things open source and free, sort of akin to mastadon or very start of the web

Source: X post

@TheVirtunaut thats kind of what social vr and avatarism is :P

@TheVirtunaut thats kind of what social vr and avatarism is :P

Source: X post

@TheVirtunaut I am kind of thinking for discerning any real relevant truth at this point in time

@TheVirtunaut I am kind of thinking for discerning any real relevant truth at this point in time everyone needs to spend a good long time seriously considering that 0 characters is the best number.

Source: X post

@steven_mckie @tobi Which language did this to you. Was it python? It was python wasn’t it. It’s

@steven_mckie @tobi Which language did this to you. Was it python? It was python wasn’t it. It’s ok you can say, no judgement.

Source: X post

@steven_mckie @tobi I'm just going to leave this here... https://x.com/_rygo6/status/16039893525

@steven_mckie @tobi I'm just going to leave this here... https://x.com/_rygo6/status/1603989352501346304

Source: X post

@rmccle @TheVirtunaut the truth that can be told is not the eternal truth

@rmccle @TheVirtunaut the truth that can be told is not the eternal truth

Source: X post

As annoying as all the various economic larping is on various blockchains I really don't think t

As annoying as all the various economic larping is on various blockchains I really don't think there is a better way to figure out an ideal economic scheme

Let it evolve out of some virtual platform, tried and tested in the virtual space, via people choosing to participate

Source: X post

Tweets taught a whole generation how to write more concise statements.

Tweets taught a whole generation how to write more concise statements.

Imagine if a Social VR platform only gave you 128 mb of CPU memory, 128 MB of GPU memory and a fraction of their available compute.

Source: X post

@TheVirtunaut I’ve been starting to feel lack of appreciation for simple concise explanation is

@TheVirtunaut I’ve been starting to feel lack of appreciation for simple concise explanation is the bigger problem than lack of large complex explanation. History is filled with many large complex word ideologies, they kind of become word webs that trap.

Source: X post

(per avatar)

(per avatar)

Source: X post

@JustNNovel The float data for 200 vertex positions is only a few kilobytes. You could easily ge

@JustNNovel The float data for 200 vertex positions is only a few kilobytes. You could easily get away with halves for that :P

A shader that is only a few kb could generate millions of vertices

You could produce a crazy amount of detail with 128 mb of CPU and GPU memory

Source: X post

@JustNNovel Honestly to replicate the level of quality you generally see in most VRChat avatars

@JustNNovel Honestly to replicate the level of quality you generally see in most VRChat avatars a highly skilled person could probably manage it with less than 512 kb of GPU and CPU memory and a small fraction of the cycles

Source: X post

I feel like graphical quality has peaked. Some CoD game with more “realistic” graphics isn’t a s

I feel like graphical quality has peaked. Some CoD game with more “realistic” graphics isn’t a significant selling point. That “realistic” look is also becoming so cookie-cutter and thus vanilla. From now on it’s more about optimizing engines/games/hardware and stylizing…

Source: X post

What if no civilization ever collapsed just from pure incompetence and loss of ability in the pe

What if no civilization ever collapsed just from pure incompetence and loss of ability in the people, but rather a collective realization the direction their effort was aimed at was inevitably malevolent, so despite the loss of great advancement and knowledge, they let it fall.

Source: X post

@dystopiabreaker But how can this possibly be true? So many mainstream media articles continuall

@dystopiabreaker But how can this possibly be true? So many mainstream media articles continually repeated that thinking anything like this is bad and everything associated with it is bad. It's well known that what gets repeated the most in mainstream media is representative of absolute reality.

Source: X post

When I program in plain C I simultaneously feel like a Zen master raking a rock garden and a dan

When I program in plain C I simultaneously feel like a Zen master raking a rock garden and a dangerous on-the-edge rebel riding a Harley.

Source: X post

The complication with presuming an AI can guide humanity is how exactly do you discern what the

The complication with presuming an AI can guide humanity is how exactly do you discern what the AI should optimize humanity in the direction of? It presumes humanity can know its purpose.

Source: X post

Some of what Carmack touches on here is also why I ran from big tech. You’d think the brilliant

Some of what Carmack touches on here is also why I ran from big tech. You’d think the brilliant people at the top of hierarchy you look up to are effectively steering things, moving the needle, but even at the top the best get swept away with corporate BS… https://x.com/ID_AA_Carmack/status/1603931899810004994

Source: X post

Purely on principle I like Rust but what bothers me about it is that much of the promotion and p

Purely on principle I like Rust but what bothers me about it is that much of the promotion and push it gets is that it's being heralded as the solution to bad software being made under corporate process. Which the problem of that wasn't the language, it was the corporate process.

Source: X post

@kevando______ Making a market is the better way to monetize an ecosystem but if there can't be

@kevando______ Making a market is the better way to monetize an ecosystem but if there can't be multiple markets available on equal footing then you get a situation like current App Stores, or even worse Roblox, where the market mechanics are heavily in favor of the platform either with...

Source: X post

@kevando______ ...high fees or the market controlling promoted content in a way that favors need

@kevando______ ...high fees or the market controlling promoted content in a way that favors needs of the stakeholders. Also, content would be reviewed and held to content guidelines giving the market the ability to control the culture in favor of stakeholders which will whittle away at it...

Source: X post

@kevando______ ...gradually to move it to whatever is most generically presentable for mainstrea

@kevando______ ...gradually to move it to whatever is most generically presentable for mainstream consumption. Still, no reason they wouldn't use ads and behavioral alteration as that whittles away at people themselves to make that generic market more profitable.

Source: X post

...wanted to could write a basic pacman clone in C with a bit of guidance. Development tools of

...wanted to could write a basic pacman clone in C with a bit of guidance. Development tools of the old days weren't the problem, it's that expectations became so large and complex. Creating a game with hi-res models and 20 hours of gameplay became the greatest barrier...

Source: X post

VRC made me realize many things and changed my thinking on a lot. Especially in the VR space, bu

VRC made me realize many things and changed my thinking on a lot. Especially in the VR space, but also about games and game engines as a whole. In modern times there is this ethos of "Game Development is too hard! It must be easier! Code must be easier!" on the premise that...

Source: X post

...to expect games to be larger and more complex. In all seriousness, go back and read the sourc

...to expect games to be larger and more complex. In all seriousness, go back and read the source of old games written purely in C. Something like Tetris or Pacman implemented in pure C is not hard. Sure, there is manual memory management, but everything is so simple...

Source: X post

...to an end goal. Rather, it is the language that lets you comprehend what the problem is. In t

...to an end goal. Rather, it is the language that lets you comprehend what the problem is. In the same way you write something out in mathematical notation to even be able to reason in the problem domain, that's also what code is for. It is a language used for apprehension...

Source: X post

...This is what VRChat is demonstrating the solution for. That to get more people making things,

...This is what VRChat is demonstrating the solution for. That to get more people making things, it's not so much that you want to make the tools simpler, it's that you want to enable them to get a sense of accomplishment from making something smaller. Where someone can make...

Source: X post

...the future of indie games are platforms which enable greater value to be derived from the cre

...the future of indie games are platforms which enable greater value to be derived from the creation of smaller, granular, pieces.

Source: X post

...that managing some alloc/free calls is not really a problem, especially with tools that autom

...that managing some alloc/free calls is not really a problem, especially with tools that automatically catch them. Such a simple C game is a far simpler and thus easier entry point into games than many modern codebases in high level game engines. Any grade schooler that...

Source: X post

...something as small as pacman and actually get something from that. Or as small as a single av

...something as small as pacman and actually get something from that. Or as small as a single avatar. Or even just some little toy you can put on an avatar. The future of indie game development is not simpler tools for creating more complexity with greater automation, rather...

Source: X post

People get excited about the prospect of ChatGPT or something converting written statements to c

People get excited about the prospect of ChatGPT or something converting written statements to code, but really this akin to getting excited about converting a written statement into mathematical notation. People don't understand that code isn't some irrelevant intermediary...

Source: X post

...easier translates into more people getting into it. But I am starting to think this train of

...easier translates into more people getting into it. But I am starting to think this train of thought is fundamentally an error. What became the greatest barrier to entry with games is not that the tools from 10, 20 even 30 years ago were too hard, it's that people began...

Source: X post

...and communication. It's like thinking you won't need mathematical notation and all future adv

...and communication. It's like thinking you won't need mathematical notation and all future advancement in math will be done by writing out statements in English.

Source: X post

@yewnyx Ya. there is also this tidbit here: https://github.com/gpuweb/gpuweb/issues/566#issuecom

@yewnyx Ya. there is also this tidbit here: https://github.com/gpuweb/gpuweb/issues/566#issuecomment-592396176 departure around anything vulkan-like may be due to Apple being in legal dispute with Khronos

Source: X post

@yewnyx ...then you go to the WebGPU shading language and its like, OK you really really did not

@yewnyx ...then you go to the WebGPU shading language and its like, OK you really really did not need to make a new shading language. Maybe new API conventions are justifiable, but not using SPIRV is clearly signifying bored engineers inventing problems to solve for no good reason...

Source: X post

@yewnyx the "not webvulkan" doesn't mention memory access as the issue, the async call is the is

@yewnyx the "not webvulkan" doesn't mention memory access as the issue, the async call is the issue

but I question how memory unsafe vulkan is in its own process. A process will already force all GPU read/writes through the OS MMU, and vulkan has this https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_robustness2.html

Source: X post

@yewnyx I question how true any of that "Why Not a WebVulkan" slide even is maybe it was truer a

@yewnyx I question how true any of that "Why Not a WebVulkan" slide even is maybe it was truer at the time?

but stated reason for not following vulkan convention is it needed to be usable from async js vm over IPC.

Which doesn't even justify a full departure from vulkan, but ok?....

Source: X post

@yewnyx I don't think it had so much to do with cmd buffer calls, those are meant to be submitte

@yewnyx I don't think it had so much to do with cmd buffer calls, those are meant to be submitted async in vulkan. Wgpu kept similar convention to that

I think it was more so the calls that retrieve diagnostics or alloc on startup, which all return a success/fail that you do deal with

Source: X post

@yewnyx https://docs.google.com/document/d/1-lAvR9GXaNJiqUIpm3N2XuGUWv_JrkpGizDN0bNq7wY/edit#hea

@yewnyx https://docs.google.com/document/d/1-lAvR9GXaNJiqUIpm3N2XuGUWv_JrkpGizDN0bNq7wY/edit#heading=h.jitoss3fehgf "Why not WebVulkan? The biggest problems come from memory being mapped synchronously, in particular for reading, which would force a synchronous IPC in Chromium"

Source: X post

@yewnyx but that doesn't seem to fully justify departure from convention. Even if an actual Vulk

@yewnyx but that doesn't seem to fully justify departure from convention. Even if an actual Vulkan call is synchronous, the method in the JS wrapper in the chrome implementation can behind the scenes go over an async IPC in some manner

Source: X post

@yewnyx and https://www.khronos.org/assets/uploads/developers/presentations/Intro-to-WebGPU_May2

@yewnyx and https://www.khronos.org/assets/uploads/developers/presentations/Intro-to-WebGPU_May21.pdf "Why not a “WebVulkan”? Untrusted Web content runs in strictly-sandboxed processes, but GPU drivers cannot. JavaScript runtime is asynchronous"

Source: X post

@mahoneymatic I still have the screenshot

@mahoneymatic I still have the screenshot

Source: X post

Jack reflecting on twitter is a good read. He hits on a Prima Facie of mine. That being,

Jack reflecting on twitter is a good read. He hits on a Prima Facie of mine. That being,

Bad actors want you to believe "good" comes from the few controlling the many

Good actors want you to believe "good" comes from the many being out of the control of the few https://x.com/jack/status/1602800293850320896 https://x.com/_rygo6/status/1603293481770061824/photo/1

Source: X post

As an SNL parody skit, it's quite funny. https://x.com/ercwl/status/1603427564034441219

As an SNL parody skit, it's quite funny. https://x.com/ercwl/status/1603427564034441219

Source: X post

...yes they will. That's how this works. It all optimizes around profit incentive. When it was j

...yes they will. That's how this works. It all optimizes around profit incentive. When it was just people's smartphone, photos, text and ads playing into this scheme, that was really bad, but not apocalyptic. VR sucked into that same scheme I think will be many folds worse...

Source: X post

...what levers you can pull to extract maximal revenue from users. I say that knowing some VRC d

...what levers you can pull to extract maximal revenue from users. I say that knowing some VRC devs rather well and fully trusting them to make good decisions, but the issue is they don't decide. The stakeholders ultimately do. In the birth of social media in the 00's this...

Source: X post

...was decently bad. It gave us data mining, behavioral manipulation and ad-based business model

...was decently bad. It gave us data mining, behavioral manipulation and ad-based business models that are pervasive today. Thats done some bad stuff. But VR is a whole league beyond what can be done through a smartphone. All your tracking data, voice, all your virtual social...

Source: X post

@TheWireWhiz Yes. Either a platform needs to open source enough of itself to shift leverage to t

@TheWireWhiz Yes. Either a platform needs to open source enough of itself to shift leverage to the side of users. Or they need to appropriately intertwine with some components of web3 to shift leverage to users. Ideally both. Prior bad companies did evolve in the very opensource web browsers.

Source: X post

...The threat is real. I know people are having fun and free servers! Me too, tons of fun making

...The threat is real. I know people are having fun and free servers! Me too, tons of fun making avatars, worlds and shaders and stuff. But I recognize a repeat of history occurring here. You're not just building communities, worlds and art. You're building a product that...

Source: X post

The metaverse I'd bet on being a hybrid render paradigm:

The metaverse I'd bet on being a hybrid render paradigm:

Nerfs or some neural format will be used for more static worlds of high detail where replication of complex lighting is important. You might also have single "hero" objects being nerfs in worlds.

Cloud Rendering will...

Source: X post

...the lowest latency possible on input and interactivity will be important. I'd suspect people'

...the lowest latency possible on input and interactivity will be important. I'd suspect people's avatars and self will be triangle GPU rendered in their own view to have the absolute minimal latency on tracking input. Also, anything that is heavily interactive will probably...

Source: X post

...tend towards being triangles on GPU. UI or anything the user touches, just so that latency be

...tend towards being triangles on GPU. UI or anything the user touches, just so that latency between interaction and response is as minimal as possible. Rendering all on the client will also probably be preferred by those who don't want to pay for their own servers...

Source: X post

...someone else will figure out how to monetize it and it is not going to be monetized in your f

...someone else will figure out how to monetize it and it is not going to be monetized in your favor, they won't care anything of VR. It'll be cold hard cost/benefit analysis to meet some bottom-line for stakeholders so a number in some chart among thousands will go up...

Source: X post

...really need to bring awareness to and think through real strategies to prevent us from just b

...really need to bring awareness to and think through real strategies to prevent us from just building up what will get sucked into being an incredibly malevolent Corporate VR Operant Condition Chamber (Skinner Box) controlled by someone else. https://en.wikipedia.org/wiki/Operant_conditioning_chamber

Source: X post

...or want smaller file sizes for highly optimized experiences.

...or want smaller file sizes for highly optimized experiences.

But these will all be intermixable. You can be in a world with a nerf rendered environment, with triangle GPU rendered avatars and games, then some highly animated show/performer cloud rendered.

Source: X post

...optimize you to be whatever gets the most money out of you. If you're thinking that sounds ou

...optimize you to be whatever gets the most money out of you. If you're thinking that sounds outlandishly insidious, it is insidious, but not outlandishly, that's already how the big players in Web2 fund themselves...

Source: X post

...interactions fed into an AI, to discern your psychology, how to affect you, to then interject

...interactions fed into an AI, to discern your psychology, how to affect you, to then interject back things into your virtual life, manipulate your emotion and behavior, make you susceptible to ads or other things. Everyone plugged into a behavioral conditioning AI that will...

Source: X post

...If you're wondering if stakeholders and corporate interests will really undermine these seemi

...If you're wondering if stakeholders and corporate interests will really undermine these seemingly cool hip tech services and use them however they can to maximize around profit incentive, that's basically the history of the web...

Source: X post

I dislike WebGPU now that I've learned a primary reason for its creation and design decisions we

I dislike WebGPU now that I've learned a primary reason for its creation and design decisions were wanting to run a JavaScript VM in one process to serialize and send commands to a GPU driver in another process. Thats not a graphics API, it's a workaround for chromes architecture

Source: X post

...currently exists within ultimately defer final decisions to the stakeholders, which ultimatel

...currently exists within ultimately defer final decisions to the stakeholders, which ultimately defers to profit incentive. The game being played here is you give a bunch of services for free, attract users, have them build it all up and get addicted, then figure out...

Source: X post

...be used for things that need comparably high detail and complex lighting, but also need to be

...be used for things that need comparably high detail and complex lighting, but also need to be highly interactive or animated, but where added latency won't be a problem.

Then typical triangles on a GPU will be used where interactivity and...

Source: X post

As fond as I am of VRC and many of the user's, I really do think the userbase is pervasively nai

As fond as I am of VRC and many of the user's, I really do think the userbase is pervasively naive about the danger of things associated. I think maybe this is because many are too young to have seen how the prior cycle of social media went in the 00's. But the incentives VRC...

Source: X post

...the ability to implement comparable experience, but in 100 kb instead of 10 megabytes will be

...the ability to implement comparable experience, but in 100 kb instead of 10 megabytes will become a skill sought after enough to justify an extra zero on contracts, as time-to-load so heavily affects traffic.

Source: X post

@prvncher Stay on the ship?

@prvncher Stay on the ship?

Source: X post

@prvncher I think movies have already made the answer to this one obvious, you must "Science the

@prvncher I think movies have already made the answer to this one obvious, you must "Science the shit out of it"

Source: X post

As 3D becomes more and more web-like a major factor of the web that will also dictate where/how

As 3D becomes more and more web-like a major factor of the web that will also dictate where/how this 3D ecosystem goes is time-to-load. Personally, I suspect this will create renewed interest in demoscene-like 3D knowledge, of hyper-optimizing 3D content and programs...

Source: X post

@yishan Also, how loud your voice is.

@yishan Also, how loud your voice is.

Source: X post

...Then what will you do? Get to explore some desolate planet like every 2-3 years before carryi

...Then what will you do? Get to explore some desolate planet like every 2-3 years before carrying on, if even? This is all to say, I like the idea of space migration, I think it's important, but seriously it's not an ideal. It's going to be terrible. It is not a new and...

Source: X post

...Thats what can actually open the door to the next evolution of human culture, human expressio

...Thats what can actually open the door to the next evolution of human culture, human expression, art, philosophy etc. Just transplanting humanity to another baren planet is probably going to majorly inhibit any evolution of culture and art. Space colonies will...

Source: X post

...sometimes it can be easier to make a few adjustments to an absolute bare-bones Lib to get wha

...sometimes it can be easier to make a few adjustments to an absolute bare-bones Lib to get what you need rather than having to essentially get a PhD in some hugely complex library and suite made to cover any and everything associated.

Source: X post

...should have no leverage over what services an account and identity provider can interop with.

...should have no leverage over what services an account and identity provider can interop with. Companies should have no leverage over where and how a user's social graph can integrate with any service, or where and how their purchasing credentials can be used...

Source: X post

...probably be pretty grim orderly places to live. But an all-virtualized reality, a transcenden

...probably be pretty grim orderly places to live. But an all-virtualized reality, a transcendent global culture, that has no restraints on human expression and the exploration of ideas. Thats so much more interesting than space travel. Rockets are kind of dismal. VR is cooler.

Source: X post

...Next, corporations should have no leverage over fees, economic mechanics nor business models.

...Next, corporations should have no leverage over fees, economic mechanics nor business models. People should be free to buy things anywhere they want using any transactional system. People should be able to choose to participate in any business models/economic mechanics.

Source: X post

...Must be exhausting. But really, real issues worth any mental energy are widespread, systemic,

...Must be exhausting. But really, real issues worth any mental energy are widespread, systemic, they are aspects of human nature combined with various circumstances of our current world. Nothing should exist in a way where the actions of any single, or few, people even matter.

Source: X post

Most I think tend to see space travel as some grand ideal of humanity but really, it'll probably

Most I think tend to see space travel as some grand ideal of humanity but really, it'll probably suck. It's unlikely we will have cryo-chambers, that's sci-fi. Most likely we will have families living on ships for multiple generations to live on through a 100+ year journey...

Source: X post

@Maru_tweets At one point I was kind of a master of mobile 3D optimization for unity if you're w

@Maru_tweets At one point I was kind of a master of mobile 3D optimization for unity if you're wondering how to approach anything.

Source: X post

Make a Lib so generalized you never have to look at the code and can use it for anything?

Make a Lib so generalized you never have to look at the code and can use it for anything?

OR

Make a Lib so simple that making code edits for specific use cases is not really an issue?

Industry has been pretty stuck on the prior but the latter deserves more consideration...

Source: X post

I never understood the mentality of people who seem to always need a particular fixation on some

I never understood the mentality of people who seem to always need a particular fixation on some individual or group of individuals to resent or hate. The internet, the earth, is like an infinite library of extremely flawed people, how can you get fixated on one or a few?...

Source: X post

@gfodor Is this going to be something that runs in the browser?

@gfodor Is this going to be something that runs in the browser?

Source: X post

Fully distributed is a great web3 principle and maybe necessary for extremely critical data and

Fully distributed is a great web3 principle and maybe necessary for extremely critical data and functions. But for end-user apps it only needs to be distributed enough to shift leverage on a few fundamental things.

Primarily a user identity needs to be distributed. Companies...

Source: X post

...for some reason Code has become so so so scary that people create GUIs and APIs more complex

...for some reason Code has become so so so scary that people create GUIs and APIs more complex than the C language itself and "you don't need code!" has become way too easy a selling point to get funding that I think too few ask, "Is this non-code solution truly simpler?"

Source: X post

...Following that, any sort of proofs of purchase bound to such an identity should be freely int

...Following that, any sort of proofs of purchase bound to such an identity should be freely interoperable with any service the user wants them to interop with. Any service should be able to request access to see proof of purchase on assets or games etc....

Source: X post

...exciting frontier that we are going to explore and have all these amazing adventures on. The

...exciting frontier that we are going to explore and have all these amazing adventures on. The trek to colonize some planet or space station will be grueling. I don't look forward to it. Now this might seem kind of silly, but really, I don't think it is for prior reasoning...

Source: X post

...collectively with any and everyone around the globe, digitizing our full bodies and selves, c

...collectively with any and everyone around the globe, digitizing our full bodies and selves, creating and experiencing anything we want to, creating new cultures and societies, new styles of art, in a novel medium unrestrained by physics, that's worth looking forward to...

Source: X post

...but the most exciting frontier that's an actual ideal to look forward to is what can be seen

...but the most exciting frontier that's an actual ideal to look forward to is what can be seen forming in VR. I think VRC is just a 'Proto-Metaverse' not the real thing, but you can see it beginning. People starting to really explore the depths of pure human imagination...

Source: X post

...and the experience of living on such ship for one's whole life will probably be a very boring

...and the experience of living on such ship for one's whole life will probably be a very boring structured, formal, ritualistic lifestyle. A few hundred or so people locked in the same small space village for a lifetime can probably get pretty damn weird. Like bad scary weird...

Source: X post

This is a great video, with a debatable conclusion, but it sets up a framing that is important t

This is a great video, with a debatable conclusion, but it sets up a framing that is important to think about https://youtu.be/Fzhkwyoe5vI

Namely that we may be faced with choosing between Surveillance and Sousveillance. If those are our only options, Sousveillance is probably better

Source: X post

One of the most fascinating things to me about VRC is not in VRC itself, but what's happening on

One of the most fascinating things to me about VRC is not in VRC itself, but what's happening on Discord and third-party markets related to VRC. All the business models and economic schemes that have evolved in relation to VRC in so many unexpected ways. It's really made me...

Source: X post

...believe allowing open evolution of the economy and monetization schemes in any SocialVR/Metav

...believe allowing open evolution of the economy and monetization schemes in any SocialVR/Metaverse platform is extremely important. Because we just don't know the proper economic design to mix into it. A platform implementing a specific one as the only option could destroy it.

Source: X post

@mahoneymatic that album art tho

@mahoneymatic that album art tho

Source: X post

Someone I gained a lot of respect for in the past few years is Bernie Sanders. I never was expli

Someone I gained a lot of respect for in the past few years is Bernie Sanders. I never was explicitly against him, but he just seemed kind of unnecessary. Just like this old guy that's been yelling for decades about things, and I'd think, how/why can you do that your whole...

Source: X post

...so effective at hitting all the necessary emotional and psychological cues to lodge it deeps

...so effective at hitting all the necessary emotional and psychological cues to lodge it deeps in people's unconscious habituations. I get it now. Thanks, Sanders for yelling for decades. You jostled some, but not enough, and not soon enough.

Source: X post

Polkadot might end up being the archlinux of blockchains. It's kind of ridiculous how complex so

Polkadot might end up being the archlinux of blockchains. It's kind of ridiculous how complex some things already are on it.

Which may not necessarily be bad, just there won't ever be much money to be made with it, it will always be more so for developers and research.

Source: X post

...percentage of seemingly rational and intelligent people into losing all capacity to reason an

...percentage of seemingly rational and intelligent people into losing all capacity to reason and think in an appropriate manner on a simple subject when hearing words like 'web3' or 'crypto', sometimes even having an emotional meltdown. Further the sticking power it had, the...

Source: X post

on one hand sol going down dozen times it did could be seen as bad

on one hand sol going down dozen times it did could be seen as bad

on other hand, the fact all validators immediately responded, managed to fix it and restart the network can be seen as a sign it can be restarted in event of catastrophe

what would eth do in a major disruption?

Source: X post

ok I concede, if any chain is going to manage mainstream integration in US itll probably be sola

ok I concede, if any chain is going to manage mainstream integration in US itll probably be solana

has the right balance of necessary web3 principles with appropriate marketing/business push and simplicity

polkadot is a nerd sniping pit, I love it, but everything is so complex

Source: X post

...life? Then he'd throw these very flippant accusations at the corruption of medical industry o

...life? Then he'd throw these very flippant accusations at the corruption of medical industry or other corprations, and I'd think is it really that bad? But then I saw firsthand how waves of media demonization of pieces of basic networking infrastructure turned a significant...

Source: X post

...just seeing on repeat corporate interests, special interests, organizing to push certain agen

...just seeing on repeat corporate interests, special interests, organizing to push certain agendas and just fucking people over and over and over, and people not even realizing what occurred, nor even having agency left to not be an explicit subset of that agenda as it was...

Source: X post

Interesting talk between Gavin Wood and Snowden that echoes a lot of my sentiments. When it come

Interesting talk between Gavin Wood and Snowden that echoes a lot of my sentiments. When it comes to technology things are getting a bit serious and people need to really start paying attention and thinking through some things https://youtu.be/R12OLO8kdc0

Source: X post

...inability when presented simple counter-reason to just realize the manipulation from propagan

...inability when presented simple counter-reason to just realize the manipulation from propaganda that occurred and just drop the bullshit. But that people start to identify with the bullshit. Now I'm like, now I understand. Now I understand how you can sit there for decades...

Source: X post

@yewnyx @aemethVR @vr_hai I want the same but no principle nor technical definition will dictate

@yewnyx @aemethVR @vr_hai I want the same but no principle nor technical definition will dictate this. Network effects will, whatever gets critical mass of users to monopolize it. It could be one corp all proprietary. People fundamentally dont care. Theyll flow and pool wherever strikes the right mix.

Source: X post

@vr_hai Yes. I call VRC a proto-metaverse and associate SocialVR/Metaverse intentionally because

@vr_hai Yes. I call VRC a proto-metaverse and associate SocialVR/Metaverse intentionally because if VRC isn’t recognized as the only thing that stumbled upon any direction related worth pursuing then we’re going to get a lot of useless nonsense out of the corporate business side of VR

Source: X post

GLTF > USD

GLTF > USD

Source: X post

@aemethVR @yewnyx @vr_hai The current trajectory of all incentives relating to VRC will make it

@aemethVR @yewnyx @vr_hai The current trajectory of all incentives relating to VRC will make it inevitably become that unless somehow users can get explicit control over certain mechanics of the platform to make it not possible that can happen.

Source: X post

I'd agree

I'd agree

I love graphics tech but being able to autogenerate an object and render it in hyper-detail is far down the list on what'll make VR mean something in terms of human emotional experience

Largely US is caught up on periphery nice-to-haves while missing real fundamentals https://x.com/kentbye/status/1598861726090678273

Source: X post

...have an anti-privacy weapon. Already the data you could scrape by relatively simple python we

...have an anti-privacy weapon. Already the data you could scrape by relatively simple python web crawlers was pretty scary, then add a decently advanced AI that can interrelate more relations and meaning from that data than any human can? Ya that's going to ruin some lives.

Source: X post

ChatGPT is all fun because they trained it on like encyclopedias, technical documents and such

ChatGPT is all fun because they trained it on like encyclopedias, technical documents and such

But break it down and it's an AI that can read mass amounts of text, infer meaning and complex relationships of that text

Point that at a person on the open web and you essentially...

Source: X post

@amaldorai ...Which I only know one person working on something like that and who knows how far

@amaldorai ...Which I only know one person working on something like that and who knows how far they'll get. Current trajectory I expect 2D social media to have a ball with all the novel image gen tech. But everyone will still be blender+triangles+unity in VR because VRC only supports that

Source: X post

@amaldorai Well it could be 2 years. It's just VRC, recroom, really all existing "metaverse plat

@amaldorai Well it could be 2 years. It's just VRC, recroom, really all existing "metaverse platforms" aren't thinking in terms of the low-level graphics methodologies themselves being able to evolve with UGC. All foundational tech is available for such a platform, it just needs to be done.

Source: X post

@amaldorai But then you're going to need a social VR platform with comprehensive enough CPU+GPU

@amaldorai But then you're going to need a social VR platform with comprehensive enough CPU+GPU programmability to enable such novel techniques to be usable in it and also hybridly render with content that still needs to be triangles...

Source: X post

@VirtualBiggs Hm maybe, but I think we just need to give up on the concept that text can be some

@VirtualBiggs Hm maybe, but I think we just need to give up on the concept that text can be some kind of source of truth.

Source: X post

In a way it feels like a V2 of googling. It already read all the forum posts, curated, and tried

In a way it feels like a V2 of googling. It already read all the forum posts, curated, and tried to select what's best. https://x.com/_rygo6/status/1599563668148355073/photo/1

Source: X post

If AI can tweet and write articles effectively enough to fool most people, you'll get countries/

If AI can tweet and write articles effectively enough to fool most people, you'll get countries/organizations coordinating large bot farms to manufacture and push narratives. Real humans will probably get drowned out of the text-based web. Sometimes I wonder how much this is...

Source: X post

@gfodor I've been questioning how much ChatGPT will change programming. I see it effectively bei

@gfodor I've been questioning how much ChatGPT will change programming. I see it effectively being able to reduce 'time-to-answer' for some googling and a lot of transpilation programs could be automated easier. But neither of those are really significant time sinks for me.

Source: X post

@gfodor I am actually most intrigued about potential of training dynamic code analysis. Kind of

@gfodor I am actually most intrigued about potential of training dynamic code analysis. Kind of like an ultra-re-sharper. Also for better, and contextual, lookup on what certain commands in code are doing.

Source: X post

...end and it will become a war of groups running various AIs trying to overpower the other

...end and it will become a war of groups running various AIs trying to overpower the other

This is one reason socialVR intrigues me so much. Full body tracked people having virtually simulated in person interaction will be the last remaining bastion not invaded by AI on the web

Source: X post

ChatGPT trained dynamically on an open web will cause some major controversy. It might be so dis

ChatGPT trained dynamically on an open web will cause some major controversy. It might be so disruptive to status quo that you'll get players of corporate/political elite organizing to try and convince everyone its extremely bad akin to what occurred with crypto/web3...

Source: X post

...already the case. It's probably more than we think, but it will probably become more severe.

...already the case. It's probably more than we think, but it will probably become more severe. This will get even more intense once images, videos and sound can be effectively synthesized. Entire media blitz's could be synthetically made and pushed to produce some political...

Source: X post

Most people are wrong about most things. It's just a condition of being human.

Most people are wrong about most things. It's just a condition of being human.

Whenever I hear the phrase "Spreading of Misinformation" I always think "You mean, people talking?"

It's a very weird thing to demonize. I think people should talk more, with more and more people.

Source: X post

If it's a choice between a society overly skeptical of what a corporation pushes vs a society th

If it's a choice between a society overly skeptical of what a corporation pushes vs a society that turns it into a taboo to be skeptical of what a corporation pushes, I'd prefer the overly skeptical society even if detrimental at times.

Source: X post

Sometimes I wonder how many tweets on various threads are really bots repeating things to try an

Sometimes I wonder how many tweets on various threads are really bots repeating things to try and make it seem like some viewpoint is correct or common

I suspect that'd work on most people, that if they see a tweetchain in agreement they'll feel validated with no further thought

Source: X post

All I want is an ITX motherboard with CPU, GPU, RAM slots, best power stages possible, then as m

All I want is an ITX motherboard with CPU, GPU, RAM slots, best power stages possible, then as many USBC ports you can fit

I don't need it to be a laser light show in a velvet case with a bunch of components soldered on that will be obsolete in two years

Source: X post

What bothers me most of online culture is the creation and use of dehumanizing labels. Or rather

What bothers me most of online culture is the creation and use of dehumanizing labels. Or rather, de-individualizing labels. Seems so many are always inventing some label to apply to some mass demographic, then fabricate some caricature in their imagination of that group to...

Source: X post

...then argue with or hate or something. Really, it's no different than someone hallucinating ph

...then argue with or hate or something. Really, it's no different than someone hallucinating phantoms that are aggravating them, just in this case the brain was trained to conjure up this mental projection via media continually repeating it

Source: X post

I'm releasing my avatar shader for VRChat. This shader does a handful of fairly novel things. Mo

I'm releasing my avatar shader for VRChat. This shader does a handful of fairly novel things. Most notably it is the first VRC avatar shader that can draw toon outlines more how modern cel shaded games do. https://github.com/rygo6/GTAvaToon https://x.com/_rygo6/status/1597015802620051456/photo/1

Source: X post

I still wonder what bitcoin energy usage will plateau at in the long run. May 3rd 2021 was the l

I still wonder what bitcoin energy usage will plateau at in the long run. May 3rd 2021 was the last estimated peak and it's not reached that peak since. Its possible its current oscillation channel is the plateau forever. But wish someone would attempt long term projections.

Source: X post

https://medium.com/polkadot-network/polkadots-anti-scam-initiatives-1660ef5787b7

https://medium.com/polkadot-network/polkadots-anti-scam-initiatives-1660ef5787b7

Source: X post

@amaldorai Arduino with C and bunch of various sensors and a breadboard

@amaldorai Arduino with C and bunch of various sensors and a breadboard

I rather loathe that python is taught as so many peoples first language, it teaches so little about important fundamentals and frames the whole subject wrong

Source: X post

@phylum_sinter @benz145 once your strapped up with all your full body tracking and in your play

@phylum_sinter @benz145 once your strapped up with all your full body tracking and in your play space or bean bag chair and absorbed into VR, you're less likely to casually interact with things in the real world

Source: X post

@benz145 Agree, but something else related, the reverse is also true

@benz145 Agree, but something else related, the reverse is also true

I think a big reason people become subsumed into things only available in VR is because leaving VR isn't smooth

if you get 'retained' the retention strength is crazy, something about that deserves some novel thought

Source: X post

@mariofusco I'd say this is the only old OO book still worth reading https://www.amazon.com/Obje

@mariofusco I'd say this is the only old OO book still worth reading https://www.amazon.com/Object-Thinking-Developer-Reference-David-ebook/dp/B00JDMPOKM

Not necessarily all of it, more so first 1/3rd that covers history and fundamental philosophies of OO. I found understanding the 'Why' more valuable than the 'What' of specific patterns/langs

Source: X post

@mahoneymatic Thats on avalanche? I'll look when its usable, but I still see polkadot as being u

@mahoneymatic Thats on avalanche? I'll look when its usable, but I still see polkadot as being unique and gradually finding its way into many uses due to it being extremely open ended.

Source: X post

@mahoneymatic I want WASM based smart contracts.

@mahoneymatic I want WASM based smart contracts.

Actually, didn't know it was a full fork of avalanche, that makes it more intriguing.

Source: X post

@mahoneymatic I also want instanceable WASM VMs which don't verify every line but run full progr

@mahoneymatic I also want instanceable WASM VMs which don't verify every line but run full programs at full speed and then periodically run it on multiple machines and cross check so not one of them is cheating for "Semi-Secure' high performance distributed WASM compute

Source: X post

@mahoneymatic Also, want to upload chunks of WASM and have a network of distributed instances va

@mahoneymatic Also, want to upload chunks of WASM and have a network of distributed instances validate it as correct/not malicious then some mechanic which serves these "validated" WASM chunks to clients

Thats actually my "killer app" use case for NFTs, if you implement it you can have it :)

Source: X post

@mahoneymatic all the backend logic for social vr

@mahoneymatic all the backend logic for social vr

Source: X post

@CixLiv @FortniteGame @LeagueOfLegends I used to play paintball a lot. Making paintball mods for

@CixLiv @FortniteGame @LeagueOfLegends I used to play paintball a lot. Making paintball mods for halflife1 is what got me into games. Paintball though is dying sport. Too expensive, messy, time consuming. But its such a unique sport. I've always wanted to reinvent it with MR/VR goggles in indoor arenas for modern age.

Source: X post

...That may mean polkadot goes a lot slower in getting anywhere, but honestly that's how real op

...That may mean polkadot goes a lot slower in getting anywhere, but honestly that's how real open-source foundations go. They take years of gradual evolution and that might really be what a truly comprehensive smart contract foundation needs to do right now

Source: X post

Realized a big reason I find Polkadot alluring is that the organizations behind it and the commu

Realized a big reason I find Polkadot alluring is that the organizations behind it and the community around it feel like that of a community-run open-source project to me. It's very open, transparent, boring, slow moving

Matic/Solana have a corporate hype marketing vibe to me...

Source: X post

@Lunayian Keep in mind Quest2s are the most popular SteamVR hmd. Would a hmd still sell as well

@Lunayian Keep in mind Quest2s are the most popular SteamVR hmd. Would a hmd still sell as well if it couldnt be tethered/airlinked to a PC? I doubt it

Also suspect most PC VR users would prefer a tethered headset if it were cheaper/lighter/slimmer. Wireless vive adapters didnt do so well

Source: X post

@ENiKS_CZ Why exactly myspace died is an interesting case study

@ENiKS_CZ Why exactly myspace died is an interesting case study

but twitter is far beyond myspace in terms of network effects

Source: X post

Twitter right now is strongly testing my theory that once a platform passes a certain threshold

Twitter right now is strongly testing my theory that once a platform passes a certain threshold of users, the gravity from the network effects is so strong it will never die

Source: X post

I would drive somewhere to do this... especially if it was a good workout.

I would drive somewhere to do this... especially if it was a good workout.

I still believe there is some untapped major market synergy between gyms and VR. There has to be a way to make gyms more fun than just sitting there staring at a wall on an exercise machine. https://x.com/vr_oasis/status/1593661309039558656

Source: X post

@CixLiv 😄well yes... there's that

@CixLiv 😄well yes... there's that

Source: X post

...much and so many VR efforts are just going to go to waste because people couldn't take the ti

...much and so many VR efforts are just going to go to waste because people couldn't take the time to buy a decent PC VR setup, actually put it on, and actually put in the time to really understand what does and doesn't work and what's really important in VR social paradigms.

Source: X post

It still boggles my mind how many go around pronouncing they have such knowledge on the VR metav

It still boggles my mind how many go around pronouncing they have such knowledge on the VR metaverse subject but if you asked them how many hours they've logged in SteamVR in VRChat it'd probably be zero. It's really such a tragedy for the industry because people miss so...

Source: X post

maybe the real twitter was the friends we made along the way

maybe the real twitter was the friends we made along the way

Source: X post

@AIbannaa well, I mean... I wear your hair

@AIbannaa well, I mean... I wear your hair

Source: X post

@Madman_VR they are but given the choice to get body or face for $400 I think most in VRC would

@Madman_VR they are but given the choice to get body or face for $400 I think most in VRC would choose body

Source: X post

@liquidizer The belief that text can adequately communicate what needs to be communicated I beli

@liquidizer The belief that text can adequately communicate what needs to be communicated I believe is one of the fundamental flaws that has underlaid much human dilemma for millennia.

But not so much obsolete. Hopefully just entirely peripheral.

Source: X post

@liquidizer really my only reason for being on twitter is to try and entice people into VR

@liquidizer really my only reason for being on twitter is to try and entice people into VR

It's a long diatribe I was thinking about making a video on, but I've lost all faith in people sending text snippets at each other being able to produce adequate understanding at large scale

Source: X post

@liquidizer It used to be https://en.wikipedia.org/wiki/The_Gutenberg_Galaxy#Four_epochs_of_hist

@liquidizer It used to be https://en.wikipedia.org/wiki/The_Gutenberg_Galaxy#Four_epochs_of_history

It is still there obviously, but in terms of what predominately directs the reality of society, speech got displaced by manuscript, then the printing press, then TV and broadcast video...

Source: X post

@liquidizer I tend to be a McLuhanist in viewing the invention of the printing press as the fund

@liquidizer I tend to be a McLuhanist in viewing the invention of the printing press as the fundamental catalyst of much of modern society, followed by radio, TV etc. In this way the fundamental flaws we deal with in modern society I see as flaws of the foundational predominate medium

Source: X post

@liquidizer and really, I've lost all faith in any kind of broadcast media to produce adequate u

@liquidizer and really, I've lost all faith in any kind of broadcast media to produce adequate understanding at large scale, so I don't necessarily like the idea of pre-recorded video either

Source: X post

In like 5 years when our bodies are all fully tracked in VR in multiplayer social creative space

In like 5 years when our bodies are all fully tracked in VR in multiplayer social creative spaces able to create and do anything in 3D we're going to look back at this and be like, "Remember when we cared about that stupid site where you just sent chunks of text at each other?"

Source: X post

@gemisisDev VRChat is kind of like a continual VR industry meetup. Hard to tell looking from the

@gemisisDev VRChat is kind of like a continual VR industry meetup. Hard to tell looking from the outside as no one advertises it but someone from every company with major VR involvement is in there and all tend to run into each other. Those really into VR are using VR itself for networking.

Source: X post

Facial tracking is more important in pro use case because people sit at desks and talk

Facial tracking is more important in pro use case because people sit at desks and talk

Fully body tracking is more important in consumer/entertainment because dancing and body language is more important at parties. Also people tend to end up laying on top of each other in a pile

Source: X post

@rektoberns @DylanLeClair_ Yup. Conspiracy theory is unnecessary when mere incentives will do.

@rektoberns @DylanLeClair_ Yup. Conspiracy theory is unnecessary when mere incentives will do.

Source: X post

Prospect of Central Bank Digital Currency is more malevolent than anything that's happened relat

Prospect of Central Bank Digital Currency is more malevolent than anything that's happened related to Web3 and Cryptocurrency, and actually crypto is a severe disruption to CBDC

Rather convenient crypto turned into a taboo word for some while most don't even know what CBDC is

Source: X post

@0xstella What do you mean, you just make a database in a corporate owned data center and consol

@0xstella What do you mean, you just make a database in a corporate owned data center and consolidate the entire web infrastructure under a few mass conglomerates. This is good, because the media funded by those conglomerates told me web3 and open source tech infrastructure is bad.

Source: X post

@CixLiv I usually say 'VR Ecosystem'

@CixLiv I usually say 'VR Ecosystem'

or the Social VR "Metaverse" use case

as Metaverse also got taken by literally everyone for everything... the Metaverse of IOT kitchen appliances...

Source: X post

@GregMadison @MetaQuestVR If these are in unity, could turn them into a vrc world probably prett

@GregMadison @MetaQuestVR If these are in unity, could turn them into a vrc world probably pretty easily. Turn them into prefabs for others to pull in and they'd probably get a lot of use in many worlds.

Source: X post

@prcWrites It still needs a better option for full body tracking

@prcWrites It still needs a better option for full body tracking

And me personally, I need the screen to have a higher refresh rate

Source: X post

If you told me 4 years ago there'd be a VR title that'd get the majority of PC VR gamers to give

If you told me 4 years ago there'd be a VR title that'd get the majority of PC VR gamers to give up shooters in favor of making clothes, dressing up, makeup, anthropomorphizing themselves, whatever. Then just sit and talk about life in VR. I would've said you're a complete idiot.

Source: X post

I released a little Unity utility that lets you bake AO to vertex colors on a whole avatar. Can

I released a little Unity utility that lets you bake AO to vertex colors on a whole avatar. Can also smooth all vertex colors. Also, can attach clothes, but it's done that for a while. https://github.com/rygo6/GTAvaUtil https://x.com/_rygo6/status/1591253416327917570/photo/1

Source: X post

@gfodor My side project for past 4 months is a toon outline avatar shader for VRChat. Its in the

@gfodor My side project for past 4 months is a toon outline avatar shader for VRChat. Its in the cel-shaded genre but is a novel mutation specifically trying to implement and tune what I found increased a sense of avatar embodiment

But ya something in that direction is obvious to me too

Source: X post

... Feel like this is worth doing at least once in your life

... Feel like this is worth doing at least once in your life

Might sound joking, and kind of is, but at same time, its easy way to get a first-person stream of your own self in a completely uninhibited state to see how your unconscious mind operates. It can be quite fascinating.

Source: X post

@CixLiv You could use android or Linux kernel. More so not everything youd expect to be in the V

@CixLiv You could use android or Linux kernel. More so not everything youd expect to be in the VR app itself should be

Like locomotion, your head rotation/position has ATW applied to it, but world movement from joysticks doesn't since that logic is in-app, but it should have ATW

Source: X post

@CixLiv The rabbit hole I kept falling down is continually realizing how novel of a space VR dev

@CixLiv The rabbit hole I kept falling down is continually realizing how novel of a space VR development is that not only does it require an entirely new kind of engine, but it also requires a new kind of OS.

Source: X post

...but yet here we are.

...but yet here we are.

This is part of what amuses me so much about VRChat. It sitting at the top of PC VR charts was completely unexpected to me and made me re-think every fundamental assumption I had and develop an entirely new model.

Source: X post

1. Setup OBS to record VRChat

1. Setup OBS to record VRChat 2. Go in VRC on Friday night 3. Proceed to get drunk beyond recollection 4. Next day watch recording of your drunken trainwreck from first person perspective 5. Learn things about yourself you didn't know before 6. Question life choices

Source: X post

...We need more things like this. Things that actually embody the benefits of crypto

...We need more things like this. Things that actually embody the benefits of crypto

Unfortunately crypto and all that got swept up in a get rich frenzy with many bad players trying to exploit some mechanic

But good things exist. They are just boring, basic and not in your face

Source: X post

Issue with the metaverse is you may not be able to simultaneously do it right and become a billi

Issue with the metaverse is you may not be able to simultaneously do it right and become a billionaire. Unfortunately many seem to not recognize the existence and relevancy of something until they see a route for it to be 'the next big thing' that might make someone a billionaire

Source: X post

Bi-Yearly Reminder: The first two studies from 2017 which all the media cited in the first wave

Bi-Yearly Reminder: The first two studies from 2017 which all the media cited in the first wave of the "Bitcoin Environmental Catastrophe" narrative that got ingrained in everyone's minds were funded by VISA. https://bit.ly/3TvRWWr https://bit.ly/3WWuTXF

Source: X post

Aside from handful of blockchains and self-hosted wallets themselves, I still feel this is the o

Aside from handful of blockchains and self-hosted wallets themselves, I still feel this is the only good crypto app https://tiplink.io/

It actually enables something not possible with fiat It actually cuts out middlemen It actually makes something simpler/quicker

...

Source: X post

As a programmer, technical artist and 3D artist the most entertaining thing I've used those skil

As a programmer, technical artist and 3D artist the most entertaining thing I've used those skills for is making things I can actually wear and be

I think all digital creatives will discover this as social VR becomes more ubiquitous. Your own body is the most interesting canvas

Source: X post

Was playing BallisticNG on SteamDeck yesterday and realized this is the exact game I wanted to m

Was playing BallisticNG on SteamDeck yesterday and realized this is the exact game I wanted to make when I started Unity dev years ago. Pretty much an exact clone of Wipeout XL that's extensible. But I didn't make that, instead I made some mutation of a hover racer trying to...

Source: X post

The digital scarcity people think you need to protect your avatar from being stolen, but honestl

The digital scarcity people think you need to protect your avatar from being stolen, but honestly, from actual experience in VRC of this playing out, if you use one avatar alot and people recognize it as you it is -extremely- hard to get someone else to use it. For some ...

Source: X post

The creativity that a mass compute data center can output does not interest me at all in compari

The creativity that a mass compute data center can output does not interest me at all in comparison to the creativity that a properly open, permissive and technically comprehensive 3D social platform would allow people to output.

Source: X post

...something that was not exactly what most interested me, then lost all motivation due to that.

...something that was not exactly what most interested me, then lost all motivation due to that. Was probably my biggest mistake in programming. Always make exactly what you want to make irrelevant of anything else. It's the only thing that'll keep you motivated to the end.

Source: X post

@philiprosedale @Tizzers Most people just have never put on a Index+full body tracking on a high

@philiprosedale @Tizzers Most people just have never put on a Index+full body tracking on a high-end PC, made custom avatar and developed a social life in VRC to even know. So far every person I've seen actually do this gets it pretty quick and wants it. Cost of hardware seems to be only barrier still.

Source: X post

...now could have released it on SteamDeck or another handheld to good success. But I was so swa

...now could have released it on SteamDeck or another handheld to good success. But I was so swayed by the frenzy of the first iPhone release that I let it distort my instinct on what was simply the most interesting thing to me to make. Then started down a long path of making...

Source: X post

...It's like half done and I just don't care about it at all. But playing BallisticNG made me re

...It's like half done and I just don't care about it at all. But playing BallisticNG made me realize, if I had just tried to make that from the very beginning, just made what I actually wanted to, I probably would have finished it and released it years before BallisticNG and...

Source: X post

...it is a weird thing I would have not predicted nor expected till I saw it. Something about we

...it is a weird thing I would have not predicted nor expected till I saw it. Something about wearing virtual bodies and associating real people with them hits some unconscious note that makes everyone really want to be idiosyncratic

Source: X post

...invent some hover racer mechanic that would work well on an iPhone. Which I did and it was th

...invent some hover racer mechanic that would work well on an iPhone. Which I did and it was the first game I made with Unity. Then I started on a V2 intended to be good enough to actually sell. I put so many hours on it. But ultimately just lost steam and interest in it...

Source: X post

... ingrained reason people really don't want to be something they already recognize as another

... ingrained reason people really don't want to be something they already recognize as another

Periodically people in distant virtual tribes will choose the same avatar and far down the line run into each other, more often than not Ive seen this compel them to choose another...

Source: X post

@UnknownSquids If they implemented the same design on SQL on AWS Id expect similar things to pla

@UnknownSquids If they implemented the same design on SQL on AWS Id expect similar things to play out

platform specific tokens are bad design, even in cases like robux where atleast it makes crazy profit, dont want

then digital scarcity is a terrible use for NFTs in a social creative platform

Source: X post

@UnknownSquids "Crypto" is a highly generic term that refers to many things with many different

@UnknownSquids "Crypto" is a highly generic term that refers to many things with many different qualities

I do agree you should absolutely not do what Neos did

but their mistake and failure has little to do with choice of foundational transaction and storage tech they built their design with

Source: X post

...is the VRChat userbase make an effort to be so damn weird that every corporation evades touch

...is the VRChat userbase make an effort to be so damn weird that every corporation evades touching it because they don't know how to deal with it.

Though it will probably require a combination of both to prevent it from getting subsumed into hyper-monetized profit incentive

Source: X post

...First way is Web3, crypto, NFT, blockchains. You get VRChat intertwined with these things --a

...First way is Web3, crypto, NFT, blockchains. You get VRChat intertwined with these things --appropriately-- and --correctly-- so that certain mechanics are inherently dependent on immutable mechanics on public blockchains. Then no one can change the mechanics.

Second way...

Source: X post

Eventually VRChat will get bought out by a corporation and they'll tinker with all its mechanics

Eventually VRChat will get bought out by a corporation and they'll tinker with all its mechanics to gradually corral users into more and more constraints to extract maximal profit from any and everything they can.

There are two ways to try and prevent this...

Source: X post

@0xstella you really think sol gmi?

@0xstella you really think sol gmi?

what about all the outages?

Source: X post

@0xstella Hm. No it hasn't.

@0xstella Hm. No it hasn't.

I have recognized its on-ramp to get things done is superior, but also, Matic seems farther ahead? Could still be both? But tech failures are concerning.

Source: X post

@auradeluxe User never implied to me a division. It just meant user. As in anyone using the serv

@auradeluxe User never implied to me a division. It just meant user. As in anyone using the service/platform. Could be a creator could be a consumer. It saw it as the antithesis of a division between 'creator' and 'consumer'. Its one word refers to both. Anyone using the platform is a user.

Source: X post

@auradeluxe Created vs generated however is maybe a more valid semantic point. As you want your

@auradeluxe Created vs generated however is maybe a more valid semantic point. As you want your users creating content and being creative, not just 'generating' it. Generating could also mean data mining of users feeding into an AI and no user really creates anything.

Source: X post

... the depths of creativity, self-expression, identity, talk to others all over the world, buil

... the depths of creativity, self-expression, identity, talk to others all over the world, build real relationships, learn valuable skills on and on. There is real value there, more than what sitting on a sofa staring at a screen could ever do.

Source: X post

... Social VR players are often doing things that are a whole upgrade over what anyone does with

... Social VR players are often doing things that are a whole upgrade over what anyone does with passively consuming screen content. Usually talking about things of interest, building relationships, creating art or other. Sure, it's all virtual, but does it matter? Something ...

Source: X post

People call VR an escape from reality, but really sitting there fixated on a screen I don't thin

People call VR an escape from reality, but really sitting there fixated on a screen I don't think is any less of an escape from reality. Non-slot players probably look down on this but people staring at television for hours I don't see as much different ... https://x.com/nickjsheriff/status/1589010671743954944

Source: X post

... being 'physical reality' does not automatically place it on a higher plane. Things done in p

... being 'physical reality' does not automatically place it on a higher plane. Things done in physical reality could easily be a bigger waste of life than something entirely virtual. It's all a matter of what are you doing? An entirely virtual reality to let people explore ...

Source: X post

... You had to go to some terrible slow piracy site, wade through terrible UX, wait hours for yo

... You had to go to some terrible slow piracy site, wade through terrible UX, wait hours for your mp3 to download, it might have had a virus, then you had to burn it to a CD usually.

But people in mass trudged through that because a real emotional connection to music was ...

Source: X post

... VR just adds a visual element to make it even more effective.

... VR just adds a visual element to make it even more effective.

But I find of people who really 'get' VR this is something they experienced. Not any particular gameplay nor graphics. But something that hit a deeper emotional note, like the first time they heard a song they ...

Source: X post

... This is really whats missing, some kind of true emotional connection to something through th

... This is really whats missing, some kind of true emotional connection to something through the VR headset.

People talk about reducing 'friction' or 'discomfort' and sure these are important. But think back to how music sharing turned into a huge cultural phenomena ...

Source: X post

... there is a tendency to think "How can I make it so someone accidentally stumbles into using

... there is a tendency to think "How can I make it so someone accidentally stumbles into using this and buying things because its so easy with so little friction".

Seems more noble to think "How can I make something people actually love enough that some friction is irrelevant"

Source: X post

Something that is not talked about enough with VR is it's capacity to affect your emotional stat

Something that is not talked about enough with VR is it's capacity to affect your emotional state.

People already intuitively get this with music, you feel a certain way, you put on a song, it changes your emotional state.

One of the major value-adds of VR is that it offers ...

Source: X post

... sleeping, but because VR is capable of pulling them out of whatever mental state and mood th

... sleeping, but because VR is capable of pulling them out of whatever mental state and mood they are in into something different of their choice. Often that choice is claiming and relaxing to wind down.

But really, depending on design of the world, the experience, VR can ...

Source: X post

... really liked. They then relax into, absorb into whatever the VR content is. It creates an in

... really liked. They then relax into, absorb into whatever the VR content is. It creates an instinctual feedback loop of sensing how the headset can affect their emotional state. VR then becomes central. Same way music, television, and whatever else media has become central ...

Source: X post

... pull you into so many different emotional states so effectively. This is also why long-term

... pull you into so many different emotional states so effectively. This is also why long-term VR users get consumed into it. VR actually functions as a kind of digital hedonism. This sounds fancy but it's really the same way people already use headphones and music ...

Source: X post

... it offers something similar. Put on the VR headset, load up a certain something, it will alt

... it offers something similar. Put on the VR headset, load up a certain something, it will alter your emotional state and mood even more overtly than a song could.

This is one of the reasons why people have started to use VR to sleep, not because having a headset on aids ...

Source: X post

@amaldorai Bluesky?

@amaldorai Bluesky?

Source: X post

... already established. People who trudge through the nonsense of VR do so because a real emoti

... already established. People who trudge through the nonsense of VR do so because a real emotional connection was established.

This represents an odd dichotomy with tech product design, where instead of thinking just simply "What will make someone fall in love with this" ...

Source: X post

A+ EU https://www.macrumors.com/2022/11/01/dma-eu-law-could-force-major-changes-apple/

A+ EU https://www.macrumors.com/2022/11/01/dma-eu-law-could-force-major-changes-apple/

Source: X post

I haven’t seen anyone comment that FAANG is technically now MMAANG…

I haven’t seen anyone comment that FAANG is technically now MMAANG…

seriously mang… come on

Source: X post

I'd pay at least $20/month for a pink to purple fade synthwave checkmark

I'd pay at least $20/month for a pink to purple fade synthwave checkmark

Source: X post

@naval However, a nuance of western society is that we come from times where "Childless" was syn

@naval However, a nuance of western society is that we come from times where "Childless" was synonymous with "Something wrong with you"

So, some aspect of it is not just what is simply better but trying to get societal recognition for the validity of other ways of life

Source: X post

@maybeschizo @naval Probably not, but I only feel comfortable commenting on my own society.

@maybeschizo @naval Probably not, but I only feel comfortable commenting on my own society.

Source: X post

... we're still fundamentally instinctual. Expressions of some unconscious biological process. W

... we're still fundamentally instinctual. Expressions of some unconscious biological process. Which I don't think is bad at all. It's important to keep in mind the arrangement of personality types and predispositions that exist today evolved as such because it's what worked.

Source: X post

We look back at people freaked out by new tech like color TV or video games and think "Wow they

We look back at people freaked out by new tech like color TV or video games and think "Wow they were so stupid and irrational I'm not like that!"

But my theory is comparable proportions of a population are always irrationally against novelty, its instinctual to our species ...

Source: X post

@__philipn__ @gfodor That + ability to bid to change someone's username and avatar.

@__philipn__ @gfodor That + ability to bid to change someone's username and avatar.

Would be the only monetization they need.

Source: X post

@gfodor ... of course though, if the AR+VR HMD is comparable in price to the VR only HMD, yes of

@gfodor ... of course though, if the AR+VR HMD is comparable in price to the VR only HMD, yes of course they will converge, because why not? But if it's a $400 VR only HMD with VR just as good as a $1000+ VR+AR HMD. The VR only HMD I'd bet on getting greater market share.

Source: X post

@gfodor I think as people use the devices more and find things that pull them into an HMD daily,

@gfodor I think as people use the devices more and find things that pull them into an HMD daily, they are going to find much more value in VR. This will create a scenario where people will prefer a cheaper VR only HMD over a more expensive VR+AR HMD. AR will be the optional luxury ...

Source: X post

@BlakeDGross @MrFarePlay @Nreal I'd listen to your reasoning...

@BlakeDGross @MrFarePlay @Nreal I'd listen to your reasoning...

...but keep in mind I already spend at least one day a weekend in VRChat at some rave, club, gathering or something for like 8 hours while laying in my beanbag the whole time. I really just can't see AR competing for my beanbag time. But maybe?

Source: X post

... and to many other species. Really doesn't matter what anything is, no matter how good it is,

... and to many other species. Really doesn't matter what anything is, no matter how good it is, no matter how good the rationality is for it. If its novel enough, it will always freak out comparable proportions of the population. For as secular and rational as we think we are...

Source: X post

Thing about AR vs VR is that it's not just AR vs VR. Rather it is standing/walking around in AR

Thing about AR vs VR is that it's not just AR vs VR. Rather it is standing/walking around in AR vs laying on a sofa/beanbag in VR flying around

Competing with laying on a sofa/beanbag is quite an uphill battle. People are lazy. They love being lazy ...

Source: X post

@Melt_Dem In software industry I've been around many well-stimulated people and honestly never p

@Melt_Dem In software industry I've been around many well-stimulated people and honestly never perceived any significant difference between those slamming espresso shots or energy drinks compared to those taking Adderall. Really the daily Monster energy drinkers worried me most for health

Source: X post

... give them something to be as lazy as possible but simultaneously feel like they aren't being

... give them something to be as lazy as possible but simultaneously feel like they aren't being lazy at all but are instead flying around in new worlds and dimensions and in the center of a big party and social life? Ya that's going to be very hard to compete with.

Source: X post

@dtupper If your used to a Valve Index at 144hz it is probably due to the Quest Pro being only 9

@dtupper If your used to a Valve Index at 144hz it is probably due to the Quest Pro being only 90hz.

I suspect motion-to-photon latency between head movement and screen update is a primary cause. Even with no consciously perceivable delay, unconsciously it still compounds into nausea.

Source: X post

@dtupper @birdmademejoin Asynchronous Timewarp runs at the full refresh rate of the headset irre

@dtupper @birdmademejoin Asynchronous Timewarp runs at the full refresh rate of the headset irrelevant of game FPS

Even if VRChat is rendering at 10 FPS your motion-to-photon latency of the displayed view projection will be less on an Index set to 144 hz than it will on a Quest Pro running a full 90 fps

Source: X post

@aemethVR Then lay on top of that the tendency of corporate decision makers to rapidly skim the

@aemethVR Then lay on top of that the tendency of corporate decision makers to rapidly skim the surface of things, this ends up with many loading into the quest version of VRC, running around low fps getting nauseas and seeing the shitshow of public lobbies. Terrible first impression.

Source: X post

@aemethVR I've been harping on this for 3 years now. Big issue is, if your employed with big sal

@aemethVR I've been harping on this for 3 years now. Big issue is, if your employed with big salary to steer decisions, then you probably have a family and you little time to develop VR legs, a VR social life, and without good friends in VR and full immersion the magic just doesn't click

Source: X post

I cooked a raw chicken today for the first time in my whole life and it was really easy, and it

I cooked a raw chicken today for the first time in my whole life and it was really easy, and it came out really good, and it was cheap. I feel like all those pre-cooked rotisserie grocery store chickens have been scamming me my whole life.

Source: X post

@gfodor You really think meta won't repeat much of the same in VR?

@gfodor You really think meta won't repeat much of the same in VR?

Source: X post

@gfodor @Damo9G I find explaining VR to someone is like trying to explain psychedelic mushrooms,

@gfodor @Damo9G I find explaining VR to someone is like trying to explain psychedelic mushrooms, someone just doesn't get it till they get it. Unfortunately, in this case, right now, it requires $3k+ of hardware and others with the same to make virtual presence good enough to supplant physical.

Source: X post

@gfodor @Damo9G Even more complicated is I don't think anyone at the big tech companies really u

@gfodor @Damo9G Even more complicated is I don't think anyone at the big tech companies really understand what is up with PC VRC crowd that spend thousands on this and what exactly it is that makes it work and why.

Source: X post

@yewnyx of course that statement is my anecdotal timeline of tech history

@yewnyx of course that statement is my anecdotal timeline of tech history

But the point I felt computers left the weirdo nerd / business niche and average non-tech people began to revolve their life around it was about when social and dating sites really started to pick up mid-00's

Source: X post

"Virtual Localism" ... I like that notion

"Virtual Localism" ... I like that notion

Source: X post

Spreadsheets were the killer app for businesses.

Spreadsheets were the killer app for businesses.

But the killer apps which carried computers into overtly mainstream among average consumers in their everyday life were the ones which expanded people's potential dating and social opportunities.

Same will be true for VR.

Source: X post

@amaldorai @dankvr 😂Yes. Hello I am the corpo doxxed anon neet

@amaldorai @dankvr 😂Yes. Hello I am the corpo doxxed anon neet

although truthfully I'm not so much the not-fit-in-otaku-neet archetype as I am the expirimental-music-art-festival-rave-underground-hippie-cyberpunk-realizing-VR-is-the-ultimate-TAZ archetype

Source: X post

@yewnyx @guillefix well at least however it's carried on they've managed produce a decent conten

@yewnyx @guillefix well at least however it's carried on they've managed produce a decent contender to github http://only9fans.com/

Source: X post

Mentality of product development that gave us most prior technology isn't going to work with VR,

Mentality of product development that gave us most prior technology isn't going to work with VR, as VR is not another product, ultimately it's a person's daily lived reality

The difference between app 'primarily in your pocket' and 'all your perceivable reality and body' is huge

Source: X post

@DennyCloudhead Thats a pretty great idea. The only potential flaw I see is that lying down in a

@DennyCloudhead Thats a pretty great idea. The only potential flaw I see is that lying down in a bean bag or bed is very common in social VR, if it could track that well, would be killer. But even if it couldn't, probably enough people that just want the fitness use case for it to still work.

Source: X post

@DennyCloudhead ... many anecdotally reports on and also experienced myself. The dismissal of ac

@DennyCloudhead ... many anecdotally reports on and also experienced myself. The dismissal of accurate/fast full body tracking I think mainly comes from those not-in-VR looking in. Once you spend a lot of time in full body tracking it becomes obvious how significant it is.

Source: X post

@DennyCloudhead lighthouses being placed up higher and aimed downwards are pretty good at coveri

@DennyCloudhead lighthouses being placed up higher and aimed downwards are pretty good at covering a bed, sofa or bean bag

and the vive trackers are fairly robust in how many little sensors need to be pinged by the lighthouse, so they can be partially occluded and still track fine

Source: X post

@DennyCloudhead Also, I personally don't think fake leg/foot position estimation will work and t

@DennyCloudhead Also, I personally don't think fake leg/foot position estimation will work and things like this vrug or trackers are necessary. As your body not lining up properly/quickly with your real body can be a source of significant VR discomfort. It's something I've heard ...

Source: X post

@amaldorai If you take the psychological implications of VR seriously, I'd be interested to hear

@amaldorai If you take the psychological implications of VR seriously, I'd be interested to hear your thoughts on the threat of VR becoming a massive skinner box with its controls consolidated under a handful of players, which primarily tune human behavior for ad and product consumption.

Source: X post

@amaldorai Have you ever thought about or tried to piece together a plan to try and interject an

@amaldorai Have you ever thought about or tried to piece together a plan to try and interject and disrupt things heading that direction?

Source: X post

@yewnyx Id like to know what you think whatever Im currently pondering, but to really explain it

@yewnyx Id like to know what you think whatever Im currently pondering, but to really explain it fully, I think its going to take a whole white paper and not some tweets

Source: X post

What would a whole OS, all the way up through a usable 3D game engine, be like if it was correct

What would a whole OS, all the way up through a usable 3D game engine, be like if it was correctly done entirely with the Unix Philosophy? https://en.wikipedia.org/wiki/Unix_philosophy

Source: X post

This weekend I wandered down a long rabbit hole which ended me up in the Plan9 IRC in a conversa

This weekend I wandered down a long rabbit hole which ended me up in the Plan9 IRC in a conversation with some fellows there.

To which they referred to Vulkan and OpenGL as legacy 3D API's and a waste of time.

It took me the whole rest of the weekend to realize why.

Source: X post

@guillefix screen is a file, everything is a file, everything conforms to the same pattern, writ

@guillefix screen is a file, everything is a file, everything conforms to the same pattern, writing a raw image to a data file would be the same code as writing it to screen, or /mnt/networkscreen to write to a screen over network with same code, less mental overhead to manage more

Source: X post

@guillefix neither work in a pattern congruent to plan9

@guillefix neither work in a pattern congruent to plan9

Source: X post

@guillefix /mnt/screen[y * width + x].rgb = color

@guillefix /mnt/screen[y * width + x].rgb = color

Source: X post

... and so that could be taken as kind of facetiously based but it really has made me think abou

... and so that could be taken as kind of facetiously based but it really has made me think about how much engineering hours have been wasted dealing with what are idiosyncratic, anti-pattern to prior, designs for everything over and over.

Source: X post

"What" will win the metaverse?

"What" will win the metaverse?

Or rather, determine its specifics?

Whatever creates the best art.

Same as it's always been.

Source: X post

We should make it illegal for companies to not offer an official route to install any software o

We should make it illegal for companies to not offer an official route to install any software on hardware you own. https://x.com/TimSweeneyEpic/status/1583980707265019905

Source: X post

Really starting to think the proper solution to large difficult to manage codebases isn't ever m

Really starting to think the proper solution to large difficult to manage codebases isn't ever more complex compilers and languages, but rather just smaller codebases and really Rust, .NET, modern cpp have all been trying to solve the wrong problem ...

Source: X post

@malekiRe Ill look at neos if they ever add custom shaders

@malekiRe Ill look at neos if they ever add custom shaders

Source: X post

... and really the proper solution isn't a new lang or compiler, but rather it's a runtime that

... and really the proper solution isn't a new lang or compiler, but rather it's a runtime that can effectively load/unload small modules dynamically with a lot of debug diagnostics on the module

Source: X post

... and all the compiler and lang dev from past decades is really programmers trying to find som

... and all the compiler and lang dev from past decades is really programmers trying to find some way to evade becoming more competent at designing smaller, more modular, more composable, more generalized, simpler modules of functionality ...

Source: X post

@UnknownSquids Ya there is a key similar ethos... but I really think VRC orienting itself around

@UnknownSquids Ya there is a key similar ethos... but I really think VRC orienting itself around the unity editor and pre-existing desktop workflows is its strongest point, as it gives the easiest path to those already highly fluent in unity dev to get something into a social vr platform...

Source: X post

@UnknownSquids ... I applaud the network effects VRC has garnered, but the other side of that is

@UnknownSquids ... I applaud the network effects VRC has garnered, but the other side of that is some of their network effects were from the network effects of the unity editor itself. I don't think they'd be as successful without that.

Source: X post

@gfodor Anyone talking about saving democracy in the US is sus to me because Princeton showed pr

@gfodor Anyone talking about saving democracy in the US is sus to me because Princeton showed pretty clearly in 2014 that we haven't had democracy for decades. https://scholar.princeton.edu/sites/default/files/mgilens/files/gilens_and_page_2014_-testing_theories_of_american_politics.doc.pdf People organizing to save something they don't even know what it is, that's actually been long gone.

Source: X post

@AntonHand yup, there is work needing to be done

@AntonHand yup, there is work needing to be done

Source: X post

@aemethVR Also good example of why I don’t expect lighthouses to fall out of use anytime soon

@aemethVR Also good example of why I don’t expect lighthouses to fall out of use anytime soon

Source: X post

VRC is essentially the closest thing you can get to a multiplayer VR version of the unity editor

VRC is essentially the closest thing you can get to a multiplayer VR version of the unity editor

Its the most open in letting you export anything from the editor, have it automatically network and automatically work in VR

It is showing an ideal direction for the metaverse

Source: X post

@mahoneymatic If it was synthetically created and it did happen to "spill" from a lab it certain

@mahoneymatic If it was synthetically created and it did happen to "spill" from a lab it certainly turned out to be wildly profitable for certain parties so I am sure profit motive will ensure it happening again

or maybe I just replayed Deus Ex https://youtu.be/C8kZ3HfeqtA

Source: X post

I really hate scrolling newsfeeds, why do I always feel compelled to look at them.

I really hate scrolling newsfeeds, why do I always feel compelled to look at them.

Source: X post

@tszzl http://bitcoinisdead.org

@tszzl http://bitcoinisdead.org

Source: X post

This is a recording of Terence Mckenna from the early 90's that was then remixed into lo-fi trac

This is a recording of Terence Mckenna from the early 90's that was then remixed into lo-fi track and Lain AMV by a youtuber in 2021. It has nothing to do with VR nor the Metaverse, but I always felt in many ways it was the perfect ad for it. https://youtu.be/ALcGQf8tfMw

Source: X post

One thing the entire history of the web has clearly taught me. Never bet against the chaos of th

One thing the entire history of the web has clearly taught me. Never bet against the chaos of the web.

If anything benefits from inability to be controlled, bet on that.

Source: X post

https://x.com/_rygo6/status/1583225626957582336/photo/1

https://x.com/_rygo6/status/1583225626957582336/photo/1

Source: X post

The quest pro would be worth it to me if it did nothing more than be easier to take on/off durin

The quest pro would be worth it to me if it did nothing more than be easier to take on/off during development.

Like seriously how is it 2022 and this is still a thing.

Source: X post

@mahoneymatic no way looks like a very practical barebones decentralized identity solution witho

@mahoneymatic no way looks like a very practical barebones decentralized identity solution without any fluff or nonsense, which is exactly what we need, will have to see all specifics once released though

Source: X post

looks like kind of a big deal... https://x.com/jack/status/1582457022620237824

looks like kind of a big deal... https://x.com/jack/status/1582457022620237824

Source: X post

@JCorvinusVR This was the oldest study Ive seen on the subject

@JCorvinusVR This was the oldest study Ive seen on the subject https://www.researchgate.net/publication/235689128_Drumming_in_Immersive_Virtual_Reality_The_Body_Shapes_the_Way_We_Play Also proteus effect subject

A lot of research has bumped up against it, but its a weird thing about us, logical understanding doesn't translate to actually understanding, so its just sat as a thought

Source: X post

@JCorvinusVR Breaking News: Team of researchers discover what is blatantly obvious if you actual

@JCorvinusVR Breaking News: Team of researchers discover what is blatantly obvious if you actually put on a VR headset, tracking and moderately use it for any of the currently popular use cases.

Source: X post

It is getting harder to maintain friends in the increasing modernization of the world. This is a

It is getting harder to maintain friends in the increasing modernization of the world. This is a significant thing about Social VR

Before Social VR it was hard to maintain rapport with even a few people. After Social VR I basically feel like I am living in a mass hippie commune https://x.com/profgalloway/status/1582487937870069760

Source: X post

What if there isn't a "Next Big Thing" but rather many particular, specialized, slow-growing thi

What if there isn't a "Next Big Thing" but rather many particular, specialized, slow-growing things?

Fixation on the next big thing is kind of an odd obsession with authority. Like, you pay attention to it because you think it will be powerful, not simply because you like it?

Source: X post

one of my favorite vrchat games is after you get to know someone really well for a number of mon

one of my favorite vrchat games is after you get to know someone really well for a number of months, have everyone change into their avatar and do their impression of them

definitely peak entertainment in terms of what 3D computer graphics can provide

Source: X post

@MaribarVR If you have fast enough gpu, you could get good enough of results out of unity hdrp.

@MaribarVR If you have fast enough gpu, you could get good enough of results out of unity hdrp. Even latest urp might be enough.

Source: X post

@mahoneymatic I wouldn't trust CNBC, or any corporate entity with heavy dependency on USD, to pa

@mahoneymatic I wouldn't trust CNBC, or any corporate entity with heavy dependency on USD, to paint a fair picture of anything crypto related, nor anything south of the US border.

Source: X post

@mahoneymatic I know there's a lot of reasons for it to not seem like it, but full body tracking

@mahoneymatic I know there's a lot of reasons for it to not seem like it, but full body tracking is one of the most important things for social vr to work well. Once you get used to having your whole body, you just can't go back, and it can actually cause discomfort.

Source: X post

@amaldorai I see that more as critical and thorough feedback. In programming critical review of

@amaldorai I see that more as critical and thorough feedback. In programming critical review of every line in a pull request can be ideal

Micromanaging I see more like breaking down everything into hour long tasks tracked in Jira tickets with someone asking about them every morning. Nope.

Source: X post

@JCorvinusVR Given the condition of the modern world, the hard thing to contend with concerning

@JCorvinusVR Given the condition of the modern world, the hard thing to contend with concerning Capitalism and what old philosophers from decades, hundreds, of years ago couldn't foresee. Is that it's inevitable endpoint may be Corporatism.

Source: X post

@cnlohr what about the vulkan example? :)

@cnlohr what about the vulkan example? :)

Source: X post

@cnlohr realistically tho, if I wanted to put a piece of shared texture memory in this and rende

@cnlohr realistically tho, if I wanted to put a piece of shared texture memory in this and render to it from a different process, is there an ideal way to do that in an ogl win environment?

Source: X post

@prvncher Personally I applaud their effort to push a boundary without any restraint. I see it l

@prvncher Personally I applaud their effort to push a boundary without any restraint. I see it like id/Crytek pushing PC graphics boundaries a decade ago even though it cut out most. But there needs to be more overt advertisement Bonelab should not be your first VR game, or even second.

Source: X post

@gfodor Why would they even make this in the first place?

@gfodor Why would they even make this in the first place?

Source: X post

@mahoneymatic Ya a DAO could be an AI driven organization.

@mahoneymatic Ya a DAO could be an AI driven organization.

Source: X post

Whats the best crypto tax software? Taxbit seems to be a fail for me the past year...

Whats the best crypto tax software? Taxbit seems to be a fail for me the past year...

Source: X post

Physical Reality will always have a monopoly on Physical Reality and anything virtual attempting

Physical Reality will always have a monopoly on Physical Reality and anything virtual attempting to replicate Physical Reality will always disappoint and feel inferior.

For virtual to not feel inferior it shouldn't compete with Physical Reality in anyway. It can't compete there.

Source: X post

Many have spent thousands on single custom avatars from the most talented of 3D artists. Someone

Many have spent thousands on single custom avatars from the most talented of 3D artists. Someone could have easily made a one-off 3D scanned perfect re-creation of themselves. But there is a reason you don't see a single person in VRChat that has done that.

Source: X post

If someone can somehow get administrative control of a system, then someone will eventually mana

If someone can somehow get administrative control of a system, then someone will eventually manage to get that administrative control to do something you wouldn't want done. https://hongkongfp.com/2022/10/12/paypal-hk-halts-payments-to-hong-kong-pro-democracy-group-citing-unspecified-excessive-risks/

Source: X post

Glad to see this message communicated in a more mainstream manner, but he has no mention of the

Glad to see this message communicated in a more mainstream manner, but he has no mention of the primary mechanic of psychological control that is already ingrained in so many platforms. Forcing you into constrained subsets of avatars. Control the body, control the mind. https://x.com/MorePerfectUS/status/1580268329629265921

Source: X post

@aoighost my experience in vrc is honestly nothing like imvu nor 4chan

@aoighost my experience in vrc is honestly nothing like imvu nor 4chan

Source: X post

@amaldorai There are many others too...

@amaldorai There are many others too...

Like, people look at an isolated avatar in a video and proclaim "It escaped the uncanny valley!" but once one thing escapes it, all things must, otherwise it makes it uncanny again. The whole world must then become comparably indiscernibly real...

Source: X post

@amaldorai Then this hits on subjective aesthetics. Is the best metaverse one that perfectly mat

@amaldorai Then this hits on subjective aesthetics. Is the best metaverse one that perfectly matches the movement, lighting and physics of physical reality? Current trends show opposite. If the whole thing isn't going to go uniformly hyper-realistic then anything that does will look odd.

Source: X post

@amaldorai ...Then also the tracking of your photorealistic self must become perfect. The more r

@amaldorai ...Then also the tracking of your photorealistic self must become perfect. The more real your avatar looks and the more precisely it matches your exact body shape, the more you expect its movement to precisely match your whole body. The full body tracking tech isn't there yet...

Source: X post

Those who've ever been part of catalyzing some festival, rave or art culture know what'll make V

Those who've ever been part of catalyzing some festival, rave or art culture know what'll make VR work. They know how to go into an empty space devoid of anything interesting, be it venue, warehouse, secluded forest, hotel etc. and turn it into an immersive social environment ...

Source: X post

...There is an art to this. Of creating actually cool spaces, cultures, communities, to which pe

...There is an art to this. Of creating actually cool spaces, cultures, communities, to which people go to great lengths to participate. It is a huge market too. Festival, rave, music culture is massively mainstream now, even more than video games...

Source: X post

...The thing that is missing is the culture, the events, the lore, the mystery cool enough to ma

...The thing that is missing is the culture, the events, the lore, the mystery cool enough to make people become willing to make the trek. The problem for VR adoption is a problem for Storytellers and Artists. The hardware has been good enough for multiple years now...

Source: X post

... Nature of web culture wasn't defined with the release of any particular hardware/software. I

... Nature of web culture wasn't defined with the release of any particular hardware/software. It evolved over years and it was the early web communities which I see as having set the dominoes on certain paths that compounded into mainstream view a decade later ...

Source: X post

... Meta, Apple, Microsoft or any corporation won't be able to do this. These places don't have

... Meta, Apple, Microsoft or any corporation won't be able to do this. These places don't have the prerequisites necessary to catalyze what is essentially like a Virtualized Burning Man. All they can do is make subsets of their own undesirable corporate culture.

Source: X post

...It can be done with VR, in some ways even better than real life. The hurdles of a PC and VR h

...It can be done with VR, in some ways even better than real life. The hurdles of a PC and VR hardware are nothing compared to hurdles of plane tickets and physically camping. VR already has folds less friction than real Festival and Rave culture, VR is also a one-time cost...

Source: X post

... I really believe the predominate cultural modalities and uses that will be present in the Me

... I really believe the predominate cultural modalities and uses that will be present in the Metaverse in 10 years you can see people doing right now in VRChat, laying groundwork, planting the seeds, that are going to compound into the mainstream.

Source: X post

I believe those doing the most for the advancement of VR are those spending hours in VR everyday

I believe those doing the most for the advancement of VR are those spending hours in VR everyday interacting with people, building and maintaining communities. Who are putting in the time and effort to help define and shape the in-VR culture. The in-VR society ...

Source: X post

... create the culture, the lore, the mystery that will compel people to fly or drive for hours,

... create the culture, the lore, the mystery that will compel people to fly or drive for hours, stay in a hotel. Or get the secret map from some weird location, drive for hours, camp in the middle of the forest or whatever weird hoops festival/rave goers have gone through...

Source: X post

... As ultimately all the hardware and software will be absolutely useless if the culture which

... As ultimately all the hardware and software will be absolutely useless if the culture which evolves in VR is just terrible to be a part of.

That culture has already started developing, it's been compounding for multiple years already ...

Source: X post

...Which unfortunately makes it useless for anyone currently used to 144hz on a Valve Index.

...Which unfortunately makes it useless for anyone currently used to 144hz on a Valve Index.

I'm starting wonder if this is a "Fatal Flaw" of VR that culture has formed around it to ignore. This concept was talked about here in this thread: https://x.com/warren_craddock/status/1579532951624175616 ...

Source: X post

Pro defaults to 72 Hz same as Quest 1, then 90hz optional. Thats crazy to me.

Pro defaults to 72 Hz same as Quest 1, then 90hz optional. Thats crazy to me.

I presume they put people in it for an hour or so and then ask them to rate discomfort.

When really, they need to test people running around in free locomotion for 8 hours...

Source: X post

...On a screen highly detailed visuals of avatars go viral. Visuals that draw and preoccupy your

...On a screen highly detailed visuals of avatars go viral. Visuals that draw and preoccupy your mind with all the details and leave an impressive visual memory tend to go viral on screens...

Source: X post

...Not having eye tracking, requiring a standalone PC, requiring external trackers are not the f

...Not having eye tracking, requiring a standalone PC, requiring external trackers are not the fatal flaw of VR. The fatal flaw of VR is most people can't wear the thing for more than a few hours without VR sickness, and even then, it has to be low intensity experiences.

Source: X post

...In VR it's all about expressing just enough personality and emotion visually so a person's mi

...In VR it's all about expressing just enough personality and emotion visually so a person's mind projects themselves on it and develops some emotional connection to it, but their mind does not get stuck in examining or being aware of the visual detailing itself...

Source: X post

...But in VR avatars which convey an emotion or personality, or essence of one's inner perceptio

...But in VR avatars which convey an emotion or personality, or essence of one's inner perception of themselves, with as minimal visual distraction as possible tend to go viral. Because people don't remember the visuals of it as much as they remember the emotion of being it..

Source: X post

Avatars require such a significant shift in design instinct for VR.

Avatars require such a significant shift in design instinct for VR.

On a screen it's about adding visual fidelity and visual detailing so that someone's mind gets absorbed into and preoccupied with all the visual detailing. So that it is visually stimulating and impressive...

Source: X post

...As if their mind is too occupied up with examining the visual detailing of something, their m

...As if their mind is too occupied up with examining the visual detailing of something, their mind won't be preoccupied with experiencing perception of the visual form literally as themselves.

This is one of the big differences about how meme and virality change screens to VR..

Source: X post

... and too much visual detailing and noise can actually distract a person, pre-occupy their min

... and too much visual detailing and noise can actually distract a person, pre-occupy their mind, with remembering the visual detailing and fidelity, rather than pre-occupy their mind with projecting themselves onto it to experience the emotion of being it.

Source: X post

There is no informational authority anymore. It is all an open chaotic non-hierarchal sea of eve

There is no informational authority anymore. It is all an open chaotic non-hierarchal sea of ever evolving and mutating memes.

Many are struggling to accept this and throwing a tantrum holding onto old paradigms trying to keep them alive.

But it's like fighting against the sea.

Source: X post

One thing VRChat is demonstrating that's so important to develop an acute intuition on is the na

One thing VRChat is demonstrating that's so important to develop an acute intuition on is the nature of Memes and Virality in 3D, in VR.

Most people's memetic intuitions are entirely calibrated off of 2D social media.

But it's different. Very different ...

Source: X post

... It's such a weird thing because, the trajectory that I see "3D Memes" actually evolving in V

... It's such a weird thing because, the trajectory that I see "3D Memes" actually evolving in VR are often entirely tangential to the concepts about headsets and "The Metaverse" that I see evolving across 2D social media, things evolve on a different set of incentives in VR ...

Source: X post

... If you don't believe headsets are going to proliferate you probably have little to worry abo

... If you don't believe headsets are going to proliferate you probably have little to worry about. But if they are it means those entirely invested in the 2D social media memetic paradigm will get rug-pulled by those who have been compounding there efforts in 3D, in VR.

Source: X post

... I just can't get over the sense there is so much wasted energy here. 5 years ago speculation

... I just can't get over the sense there is so much wasted energy here. 5 years ago speculation was Okay. But now? The ship has started sailing. What's shaping it is not concepts from 2D media. Rather whats shaping it are memes and virality currently compounding in 3D, in VR ...

Source: X post

@andreeavr If you break it down, I think the simple truth is, we already have a plurality of sel

@andreeavr If you break it down, I think the simple truth is, we already have a plurality of self. Just in terms of personality and behavior, that changes with context.

VR just presents the potential that visual self-representation can more overtly reflect what already is.

Source: X post

VRChat isn't significant because VRChat. It's significant because it, and ChilloutVR, are litera

VRChat isn't significant because VRChat. It's significant because it, and ChilloutVR, are literally the only things that have the necessary features to enable what they enable. I wish there was something better than both, but still zero competition. (NEOS needs custom shaders)

Source: X post

@DiogoSnows Primarily custom avatars that support all the advanced VR tracking and also the kind

@DiogoSnows Primarily custom avatars that support all the advanced VR tracking and also the kind of functionality you can put on them.

Source: X post

@DiogoSnows No. Reason for that would be good, but I could write out a 100-page document on why,

@DiogoSnows No. Reason for that would be good, but I could write out a 100-page document on why, it's too much for twitter.

But I'll say one point to ponder why. If RPMe effectively provided what was necessary for avatars, then why in a completely open platform like VRC do so few use it?

Source: X post

One big issue with the VR industry is too many think they are making a new game console or tech

One big issue with the VR industry is too many think they are making a new game console or tech gizmo or toy. Just another entertainment thing.

When really, it's more akin to creating a virtualized burning man. A whole new culture and kind of society. As people live in it.

Source: X post

@gfodor What about direct democracy in absence of media that can form large scale collectives?

@gfodor What about direct democracy in absence of media that can form large scale collectives?

Source: X post

@gfodor How large of a group are we talking about here?

@gfodor How large of a group are we talking about here?

Source: X post

when is 80's car design aesthetic going to come back, we've had ugly melted aerodynamic bloated

when is 80's car design aesthetic going to come back, we've had ugly melted aerodynamic bloated jelly beans for far too long

Source: X post

this is one reason I love the idea of a metaverse completely open to every tool, especially the

this is one reason I love the idea of a metaverse completely open to every tool, especially the hard-to-use ones

current tech/social platforms incentivize getting better at useless gameplay mechanics and in-vain selfie photo culture

but what if they incentivized tech education?

Source: X post

My life: Wake, work on stuff for vrchat all day, go in vrc at night to run around in new stuff I

My life: Wake, work on stuff for vrchat all day, go in vrc at night to run around in new stuff I made, sleep, repeat

If socializing/partying gets intertwined with programming, math, 3D and art skills, you'll see a whole generation grow up highly proficient in all these things

Source: X post

@mahoneymatic I don't think the metaverse will have much to do with games, you can already see t

@mahoneymatic I don't think the metaverse will have much to do with games, you can already see this trend in vrc. It's about socializing and creating. A far better vision is virtualization of festival, rave or convention culture. Most economic activity will be buying/selling art

Source: X post

As much as I respect Bonelab and very much want to see how far the full-body-physics-sim route c

As much as I respect Bonelab and very much want to see how far the full-body-physics-sim route can go. I still think the ideal locomotion and physics for VR is more akin to what you experience in a lucid dream, that's how the mind wants to move.

Source: X post

@MichiganKon welcome to humanity

@MichiganKon welcome to humanity

Source: X post

@CixLiv While I really want HMDs to be so good any experience is comfortable for anyone, at the

@CixLiv While I really want HMDs to be so good any experience is comfortable for anyone, at the same time I keep thinking, throughout history this is not uncommon. New styles of music, art, activities, whatever, often have been catalyzed with some substance. VR may be the same.

Source: X post

@CixLiv Only userbase that seems completely over this, and enjoys the headset being on for 8+ ho

@CixLiv Only userbase that seems completely over this, and enjoys the headset being on for 8+ hours, and even sleeping in it, is the VRC userbase. Hunch is that it's because many get high/drunk in VR. Helps open/relax their mind, suspend critical judgements, to flow and adapt to it.

Source: X post

@yewnyx Hm, now that I think about, no I don't think I like saying it is "defined" by, but I thi

@yewnyx Hm, now that I think about, no I don't think I like saying it is "defined" by, but I think I mean more to say scarcity is an inevitable occurrence in any open evolution of things, and what will manage to cut through the noise and draw attention is what AI can't generate by itself

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher You really think you could have a bot run something

@WilBown @BartronPolygon @0xstella @prvncher You really think you could have a bot run something like Autodesk Maya for a few years capturing all the input and outputs, feed that into an ML model, and then produce an adequate Maya replacement, if not better?

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Presuming there's no limit on how many parameters y

@WilBown @BartronPolygon @0xstella @prvncher Presuming there's no limit on how many parameters you could add to an inference model I think is obviously shown absurd when you get to the notion of training an inference model to produce a new version of Adobe Suite or Windows.

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Obviously there is some threshold where the size of

@WilBown @BartronPolygon @0xstella @prvncher Obviously there is some threshold where the size of the model and complexity of the model used to infer goes past the benefits it provides of just running the original computation itself. What I am specifically wanting to know is, where is that threshold?

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Its cool research as usual, but my whole point was

@WilBown @BartronPolygon @0xstella @prvncher Its cool research as usual, but my whole point was about 3D interactivity, not just 3D.

Source: X post

@WilBown @BartronPolygon @0xstella I don't want to discourage you on this path, no matter it's e

@WilBown @BartronPolygon @0xstella I don't want to discourage you on this path, no matter it's end point it will produce something valuable in the mix of it all. But I think this is one of those instances where it'd be better to try and see how far you can get it to go, rather argue how far it can go.

Source: X post

Value is defined by scarcity. If detailed organic painterly AI generated imagery becomes a commo

Value is defined by scarcity. If detailed organic painterly AI generated imagery becomes a commodity, there will be a shift in whats perceived as valuable in art. Simpler, precise, geometric, symmetrical, faceted, deconstructed, nonrealistic. http://jakeamason.com comes to mind

Source: X post

@SkarredGhost github repo or it didnt happen

@SkarredGhost github repo or it didnt happen

Source: X post

@mosesturnervevo Nope, I'd rather just use controllers until bracelets come out. I don't typical

@mosesturnervevo Nope, I'd rather just use controllers until bracelets come out. I don't typically use a headset in a position and posture which works well with on-headset hand tracking.

Source: X post

It's interesting to me how within VR there is a completely tangential social graph with a comple

It's interesting to me how within VR there is a completely tangential social graph with a completely different social hierarchy and influencers than Twitter, Youtube etc. Some of the biggest in-VR influencers are completely unknown in 2D social media.

Source: X post

Its in this way that the photoreal AI neural rendered metaverse may be perceived as the low-brow

Its in this way that the photoreal AI neural rendered metaverse may be perceived as the low-brow cheap solution. The McDonalds of Metaverses.

Whereas the hand-coded shader, specifically laid out vertices, intentionally purposefully minimalistic metaverse will be the rare gem.

Source: X post

@Emmathyst_ I think I'd rather take a thinner, longer, more flexible cable over wireless. Batter

@Emmathyst_ I think I'd rather take a thinner, longer, more flexible cable over wireless. Battery pack would add more weight, and bulk to the headset and I'd have to deal with swapping it throughout the night. Also that will add some latency to something and require some SoC

Source: X post

@amaldorai The things that go viral in VR are 3D and code, so those who are from 2D media and on

@amaldorai The things that go viral in VR are 3D and code, so those who are from 2D media and only make videos, images, tweets usually have little influence on the trends of 3D worlds, 3D avatars, consequentially what people do. Their content cant go viral in the medium.

Source: X post

@amaldorai Always seemed theres more overlap in 2D. Big TikTok'ers tend to have big Instagram fo

@amaldorai Always seemed theres more overlap in 2D. Big TikTok'ers tend to have big Instagram following. I presume because video/image are copasetic. Also easy to jump between Apps

VR however can be a completely sealed bubble. Neither content nor its social graph easily flow to other apps

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher What I've been wanting to see is a scene like this

@WilBown @BartronPolygon @0xstella @prvncher What I've been wanting to see is a scene like this with at least the interactivity level of Grand Theft Auto. What happens when every car is drivable and destructible? Every tree, pole, mailbox can be knocked over?

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Turns into a problem of pre-training a model to sim

@WilBown @BartronPolygon @0xstella @prvncher Turns into a problem of pre-training a model to simulate every possible interaction of every human in the world, which is not realistic

Perhaps users train/upload subnets that get composited together but will it be a better workflow than current ways? Thats not so obvious to me

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Research I've seen is super-impressive to me, this

@WilBown @BartronPolygon @0xstella @prvncher Research I've seen is super-impressive to me, this included, dont get me wrong on that. Its just when I think through productizing it to be used like the unity engine or similar

This repo in particular reinforces in my mind its a dead end because it relies on pre-existing data

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher ML data compression, interpolation, extrapolation i

@WilBown @BartronPolygon @0xstella @prvncher ML data compression, interpolation, extrapolation is a use that has huge potential and use right now

But example I gave is a little different because all potential interactivity is not inherently a set of data being inferred, its being computed/generated

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher Lets go to the Social VR use case. People in full b

@WilBown @BartronPolygon @0xstella @prvncher Lets go to the Social VR use case. People in full body tracked avatars, able to upload anything, interact with each others avatars and the world any which way. The pre-existing data to train a GAN to do that simply won't exist because it will be created by users on the fly.

Source: X post

@WilBown @BartronPolygon @0xstella @prvncher If it's a question of ML better interpolating a 3D

@WilBown @BartronPolygon @0xstella @prvncher If it's a question of ML better interpolating a 3D data set compared to human designed algo, I think its obvious it can

But is pre-computing every possible 3D data set beforehand to then have that be interpolated between superior to just computing it? Maybe, but not necessarily

Source: X post

@prvncher @WilBown @BartronPolygon @0xstella I have, a pre-baked range of physics for specifics

@prvncher @WilBown @BartronPolygon @0xstella I have, a pre-baked range of physics for specifics objects I can see being used right now if platforms supported it

Source: X post

@prvncher I think it'll have its usages and some popular things in VR, but the direction of HL A

@prvncher I think it'll have its usages and some popular things in VR, but the direction of HL Alyx or bonelab or even job simulator where everything can be picked up and does something, and can affect other things in a wide array of ways, that's a much more interesting world to me

Source: X post

I want a headset that is:

I want a headset that is: - At least 160hz - Same pixel density as Index, but wider FOV - Lighthouse tracked - Highest quality mic + headphones possible - PC tethered - Eye tracking, face tracking - nothing extra not absolutely needed, no cameras, SoC etc

Source: X post

@gfodor whats an anti-physist and bit supremacist

@gfodor whats an anti-physist and bit supremacist

Source: X post

@BartronPolygon @WilBown @0xstella @prvncher Then nerfs would output GBuffer data the engine use

@BartronPolygon @WilBown @0xstella @prvncher Then nerfs would output GBuffer data the engine uses to produce consistent light across all of them with more typical shader techniques. When I think all this through, it gets me back to the point of, am I really getting any farther ahead compared to just using GPU tessellation?

Source: X post

@BartronPolygon @WilBown @0xstella @prvncher But realistically? I presume baking that much data

@BartronPolygon @WilBown @0xstella @prvncher But realistically? I presume baking that much data and variation down to any neural format will end up with a behemoth of a model thats extremely slow to evaluate. This necessitates breaking it up into many different nerfs orchestrated by a game engine.

Source: X post

@BartronPolygon @0xstella @prvncher Maybe for a basic VR equivalent of zoom. But in something li

@BartronPolygon @0xstella @prvncher Maybe for a basic VR equivalent of zoom. But in something like VRC this is already the norm and the sentiment I find is an eagerness to figure out how to make avatars even more interactive and responsive.

Source: X post

@BartronPolygon @0xstella @prvncher Just the skeletal pose being represented in variables looks

@BartronPolygon @0xstella @prvncher Just the skeletal pose being represented in variables looks manageable, but then you'd need a thousand X/Y/Z sliders for every grabbable point on hair/cloth, with dozens more for audiolink over it, and dozens more for whatever else someone puts on it.

Source: X post

@BartronPolygon @0xstella @prvncher Just saying you pile up all the interactivity people tend to

@BartronPolygon @0xstella @prvncher Just saying you pile up all the interactivity people tend to pack on social vr avatars, then bake that all to a nerf, youre going to end up with thousands of variables. Ive not seen anything like that done to gauge feasibility and what I have seen makes it seem like a dead end.

Source: X post

@BartronPolygon @0xstella @prvncher Ive seen this research and its impressive but for social vr

@BartronPolygon @0xstella @prvncher Ive seen this research and its impressive but for social vr avatars I find it hard to see its use. Because what happens when every hair clump and clothing piece has physics sim on it that can be manipulated by other users? What happens when audiolink is on every part of it?

Source: X post

@amaldorai Agree most screen replacement efforts are silly, but movies in VR is a good use case.

@amaldorai Agree most screen replacement efforts are silly, but movies in VR is a good use case. VRC movie worlds are always some of the most popular. Largely it’s due to wanting to watch with friends. But also lot of younger people don’t have a big screen in their room.

Source: X post

@vgr I don't know about leaders, but in terms of independent thinkers and self-directed people,

@vgr I don't know about leaders, but in terms of independent thinkers and self-directed people, made me think of this old lecture from Aldous Huxley which argued it's about 20% https://youtu.be/caCkMX6YdYU

Source: X post

The thing to be paying attention to is not final visual output. It is ease of creating interacti

The thing to be paying attention to is not final visual output. It is ease of creating interactivity.

Source: X post

@naval ...but what if it's fun?

@naval ...but what if it's fun?

Source: X post

@JCorvinusVR some parts can be, eyes are a prime example

@JCorvinusVR some parts can be, eyes are a prime example

but putting an AI to learn the SDF of a highly complex animated interactive avatar, there's been lots of great research published in the wild for years, farther I wandered down that hole the more GPU tessellation made sense

Source: X post

@JCorvinusVR Im all for interactive shader effects, its actually the only thing I personally mak

@JCorvinusVR Im all for interactive shader effects, its actually the only thing I personally make... I think custom shaders in any major platform are as critical as custom avatar uploads for this reason.

Source: X post

Flat shaded low poly anime avatars in flat shaded worlds will absolutely run miles in engagement

Flat shaded low poly anime avatars in flat shaded worlds will absolutely run miles in engagement around a perfectly photoreal nerf with infinite AI detail if that flat shaded low poly experience has full physics simulation and everything is interactive.

Source: X post

@birdmademejoin It has too much going on out of the box, I want a text editor not an IDE

@birdmademejoin It has too much going on out of the box, I want a text editor not an IDE

Source: X post

atom was my favorite general purpose text editor and I'm just not sure what to use now

atom was my favorite general purpose text editor and I'm just not sure what to use now

Source: X post

AI art and nerfs seeming like a big deal IMO is an affect of the low interactivity of current ma

AI art and nerfs seeming like a big deal IMO is an affect of the low interactivity of current major social mediums.

As soon as people stand in front of each other fully tracked in VR, anything static or pre-determinately animated takes a major backseat to anything interactive.

Source: X post

Twitter keeps showing me ads for schizophrenia

Twitter keeps showing me ads for schizophrenia

I know my tweets are a bit odd but seriously feeling kind of attacked rn

Source: X post

This means when talking about the prospect of being able to design VR experiences which make psy

This means when talking about the prospect of being able to design VR experiences which make psychedelic experiences easier to tolerate, and produce more predictably beneficial results, you're talking about the potential of a major medical breakthrough in mental health treatment.

Source: X post

Some might infer that too just mean weird trippy things in VR, but when you mix this notion with

Some might infer that too just mean weird trippy things in VR, but when you mix this notion with psychedelic research showing how a few sessions with psilocybin, or MDMA, or ketamine can severely improve a wide range a major psychological issue that resist other treatments.

Source: X post

Every person I know who's taken a psychedelic in VR reports that in VR, visuals and visual disto

Every person I know who's taken a psychedelic in VR reports that in VR, visuals and visual distortions are severely lessened to the point where it can seem like you're not on anything, and that its far easier to tolerate psychedelics and have a good experience on them in VR.

Source: X post

@JCorvinusVR @gfodor Of everything I've dug into with neural rendering and non-poly rendering, t

@JCorvinusVR @gfodor Of everything I've dug into with neural rendering and non-poly rendering, thinking through workflows thatd enable as much ease of creation with interactivity and physics seemed like it got far more complicated to borderline impossible

Source: X post

@JCorvinusVR @gfodor but I also wouldn't say I am a neural rendering expert, maybe someone will

@JCorvinusVR @gfodor but I also wouldn't say I am a neural rendering expert, maybe someone will figure something? I just haven't seen it and it seems like a fundamental issue, as if you're baking down animation, physics, interactivity to a neural format all permutations have to be in the format

Source: X post

I have a lot of gripes about being data mined and psychologically manipulated by AI but I got to

I have a lot of gripes about being data mined and psychologically manipulated by AI but I got to admit that Google AI really knows how to recommend me some music.... https://www.youtube.com/watch?v=RIrwQVhFnpc

Reminds me that, if done right, AI psychological manipulation could be a good thing.

Source: X post

7950x+9700xt or 13900kf+4090?

7950x+9700xt or 13900kf+4090?

Source: X post

@JCorvinusVR @gfodor like if it's a choice between a perfect neural rendered avatar with infinit

@JCorvinusVR @gfodor like if it's a choice between a perfect neural rendered avatar with infinite polys and perfect realistic shading, versus an anime whatever with glowing rave toys, physically simulated clothing/hair/fur that is interactive etc.. people will prefer the more interactive one

Source: X post

@JCorvinusVR @gfodor If you can end up with a decent workflow where you "bake" objects out of bl

@JCorvinusVR @gfodor If you can end up with a decent workflow where you "bake" objects out of blender into some neural rendering format that gives higher fidelity for less resources, I can see that becoming used if the bake time is reasonable. But more so for static content.

Source: X post

@JCorvinusVR @gfodor I don't entirely doubt the possibility but find high expectations concernin

@JCorvinusVR @gfodor I don't entirely doubt the possibility but find high expectations concerning proliferation of new rendering techniques usually assume visual fidelity is a big motivator, whereas I don't think it is. Ease of tooling to create interactivity with avatars I think is bigger motivator.

Source: X post

@JCorvinusVR @gfodor Cause how are you going to bake down every possible movement of everything

@JCorvinusVR @gfodor Cause how are you going to bake down every possible movement of everything people compact onto avatars? Flying poi balls with particles effects and audiolink LED tracers running all around the body, and whatever else...

Source: X post

@GIGADAD__ The idea of needing motion sickness pills is pretty bad, but it’s not entirely unfoun

@GIGADAD__ The idea of needing motion sickness pills is pretty bad, but it’s not entirely unfounded that new art movement required the ingestion of something in order for minds to first become open to it.

Source: X post

@gfodor I've been fascinated with a post-poly era and explored a lot, but I still can't see it e

@gfodor I've been fascinated with a post-poly era and explored a lot, but I still can't see it ever happening, because ultimate deciding factor isn't final output, its tooling. You're not competing with just poly rendering. You're competing with blender+substance+houdini+zbrush etc. etc.

Source: X post

@DennyCloudhead @JCorvinusVR This one I thought was a better overview. Also validated one of my

@DennyCloudhead @JCorvinusVR This one I thought was a better overview. Also validated one of my big suspicions, that greater realism produces greater discomfort https://www.tandfonline.com/doi/full/10.1080/10447318.2020.1778351 But then I am left wondering at exactly what threshold of realism with certain aspects does it become an issue?

Source: X post

@DennyCloudhead @JCorvinusVR That realism causes discomfort?

@DennyCloudhead @JCorvinusVR That realism causes discomfort?

But really on any point from that study I wouldn’t necessarily disagree, as that’s been generally my sentiment the more various things I read, it created more and more questions

Source: X post

@DennyCloudhead @JCorvinusVR Like early ones said vignetting was universally good, but this one

@DennyCloudhead @JCorvinusVR Like early ones said vignetting was universally good, but this one found it worsened it for most https://sreal.ucf.edu/wp-content/uploads/2018/11/19-32-norouzi-1.pdf What controls in this one vs others produced that? Not sure.

Source: X post

@DennyCloudhead @JCorvinusVR Im also really interested to see large scale motion-to-photon laten

@DennyCloudhead @JCorvinusVR Im also really interested to see large scale motion-to-photon latency tests with thousands of people. Don't know if one exists? My suspicion is >144hz displayer needs to be standard to get anywhere near a majority for comfort but Im totally shooting from the hip and have no idea

Source: X post

@DennyCloudhead @JCorvinusVR I'd be curious to read through a list of ones you find well establi

@DennyCloudhead @JCorvinusVR I'd be curious to read through a list of ones you find well established if you've collected any. The more studies I read the more uncertainty it produced, or the more questions it left me with.

Source: X post

@DennyCloudhead @JCorvinusVR I think this is one of the more obvious ones at lower hz. You can p

@DennyCloudhead @JCorvinusVR I think this is one of the more obvious ones at lower hz. You can put on a 60hz headset and clearly tell your going to have a bad time. The question for me is if 90hz that so many seem to settle on is truly optimal, how widely studied has it been and how? As 144hz was big for me

Source: X post

@DennyCloudhead @JCorvinusVR Another subject I haven't seen touched on in a study is the subject

@DennyCloudhead @JCorvinusVR Another subject I haven't seen touched on in a study is the subject of "Avatar Fit". It's something I've noticed myself and hear more and more report in VRC when they get into full body tracking and custom avatars, that getting the right fit for their body was a big component

Source: X post

@DennyCloudhead @JCorvinusVR and TBH I am not entirely against the possibility that to fully ada

@DennyCloudhead @JCorvinusVR and TBH I am not entirely against the possibility that to fully adapt you just need to be high or drunk for a number of hours in a high intensity experience... but then I wonder who's going to do the study to figure out how much whisky is needed to tolerate ___ experience

Source: X post

There needs to be so much more research done on VR sickness. It's striking how little nuance the

There needs to be so much more research done on VR sickness. It's striking how little nuance there is to people's understanding of this. Then veteran VR users who got over it don't have much more to offer than "Just gotta develop your VR legs!" or "Get drunk in VR!"

Source: X post

@DennyCloudhead There is much published but after 14k hours logged in SteamVR Ive developed a li

@DennyCloudhead There is much published but after 14k hours logged in SteamVR Ive developed a list of suspicions and theories about the subject that is longer than what I garnered from the published research Ive read. But I only write code so I dont know how universally applicable theyd turn out

Source: X post

@0xstella biggest reason I lost interest in AR is I realized if you want to create a shared emot

@0xstella biggest reason I lost interest in AR is I realized if you want to create a shared emotional experience where people connect at a deeper level, it's best to completely immerse everyone in a fantasy world and have them invent some new fantasy visual representation of themselves

Source: X post

The new Cyberpunk Edgerunnner series in VRChat is pretty cool.

The new Cyberpunk Edgerunnner series in VRChat is pretty cool.

Source: X post

Most probable dystopian future scenario I can imagine that will certainly lead us to doom is a s

Most probable dystopian future scenario I can imagine that will certainly lead us to doom is a society believing that all future directions of humanity can be appropriately discussed, discerned and conclusions made via everyone sending short text and video messages to each other.

Source: X post

I feel like this is a perfect metaphor of American politics. https://x.com/Rainmaker1973/status/

I feel like this is a perfect metaphor of American politics. https://x.com/Rainmaker1973/status/1572964984870637568

Source: X post

Thing about the metaverse subject is, when I am hanging out with my vrc group on a fri/saturday

Thing about the metaverse subject is, when I am hanging out with my vrc group on a fri/saturday night and we're all in indexes w/ full body tracking, I can easily spend 8 hours in there and never once do I stop and think "This really needs __ to make it work" Its so fun right now

Source: X post

Sometimes wish the HMD was slimmer, but the index is manageable as is

Sometimes wish the HMD was slimmer, but the index is manageable as is

I just can't get past the sense that fully grokking and experiencing why this works so well, right now, is so critical and central to VR. The simple fun of play and unrestrained expression with the right group

Source: X post

one of the weirdest things that seemed to set in after the age of 35 is I now heal so much slowe

one of the weirdest things that seemed to set in after the age of 35 is I now heal so much slower than in my 20's that I almost feel like a zombie, its made me so paranoid about any minor injury because whatever it is, I know its going to take months to fully subside

Source: X post

@mahoneymatic my most desired thing is probably the VRC groups feature because some groups mixin

@mahoneymatic my most desired thing is probably the VRC groups feature because some groups mixing with other groups is just a bad idea....

you know one groups idea of "simple fun play" is another groups "desecration of all considered holy"

Source: X post

@jackaldudegames thing about this for me is, I was obsessively #2 maybe 6 years ago, but once I

@jackaldudegames thing about this for me is, I was obsessively #2 maybe 6 years ago, but once I found a reason to use VR daily and became a #1 I realized all my future ideations as a #2 were wrong, and many in #2 are waiting on some direction that they don't realize is not even a good direction

Source: X post

Im extremely curious to see if passthrough affects VR sickness

Im extremely curious to see if passthrough affects VR sickness

Running suspicion is that passthrough will have no effect on discomfort, that its primarily caused by motion-to-photon latency and movement mechanics

and a not-perfectly-aligned passthrough may cause more discomfort https://x.com/Alientrap/status/1572068767957680130

Source: X post

I find newer devs see software engineering as some smooth flying ship going up and up, but reall

I find newer devs see software engineering as some smooth flying ship going up and up, but really it's more like hurling yourself at a near vertical incline covered in mud where you flail about in seemingly random fashion, then somehow chaos reveals it has an underlying pattern

Source: X post

@CixLiv well #2 is also cooler which ultimately is the most important factor

@CixLiv well #2 is also cooler which ultimately is the most important factor

Source: X post

@benz145 other people are the content in the metaverse

@benz145 other people are the content in the metaverse

to be honest seeing the metaverse some kind of mall is a pretty low brow vision

some kind of art festival is far better, you go for other people, the social experience, creativity

Source: X post

@benz145 I want to control them with my feet

@benz145 I want to control them with my feet

with a bean bag being the optimal form factor for VR use I find myself wanting to interact with things at a distance with my feet much more

Source: X post

Really want to like my 5950x and 6950xt but it's just kind of always been funky in so many ways.

Really want to like my 5950x and 6950xt but it's just kind of always been funky in so many ways. It's pickier about everything and more weird bugs. I like nvidia having competition but unless amd addresses quirkiness with OEM hard to see it as worthwhile.

Source: X post

@prvncher honestly if I am going to do it I'm probably going to have some wine beforehand, a few

@prvncher honestly if I am going to do it I'm probably going to have some wine beforehand, a few intense hours in it moderately intoxicated and Ill probably be adapted again

Source: X post

@mahoneymatic I think it's the smooth damping on positional movement mainly.

@mahoneymatic I think it's the smooth damping on positional movement mainly.

Also, the very poor alignment of the avatar to my real body, after getting used to avatars that I custom fit to myself it's irritating and disorienting to have the avatar fit wrong.

Source: X post

I wish twitter wasn't a linear feed but maybe like a branching tree with little clusters. Like S

I wish twitter wasn't a linear feed but maybe like a branching tree with little clusters. Like Spatial Twitter? Spwitter?

Source: X post

I can run around VRC for 8 hours straight with no sickness but actually started to feel sick in

I can run around VRC for 8 hours straight with no sickness but actually started to feel sick in HL2VR in like an hour. Which struck me as odd, I used to run around a lot of different VR titles with no sickness, I thought I was over it?

Source: X post

Further this can actually cause vendor lock-in. If people can get so used to one application tha

Further this can actually cause vendor lock-in. If people can get so used to one application that going in others can make them sick, it severely disincentives users from ever going to another application.

Source: X post

Didn't really think of this until now, but if it is the case that overly adapting to VR movement

Didn't really think of this until now, but if it is the case that overly adapting to VR movement in one application can them make you susceptible to sickness in other VR applications, we probably need a uniform movement model in all of them.

Source: X post

Can't wait to get a 4090 so I can then get a solid 30 fps in VRChat rather than 20 fps.

Can't wait to get a 4090 so I can then get a solid 30 fps in VRChat rather than 20 fps.

Source: X post

But then it occurred to me 99% of my VR time has been in VRC for past year. I'm probably so adap

But then it occurred to me 99% of my VR time has been in VRC for past year. I'm probably so adapted to the exact movement and VR Rig in VRC that going to something like HL2VR that has slightly different movement/rotation speeds and damping is enough to no longer be used to it.

Source: X post

@bgolus Ya that's what I am wondering. I haven't dug into new nvidia announcements yet. But if t

@bgolus Ya that's what I am wondering. I haven't dug into new nvidia announcements yet. But if there is now hardware frame extrapolation available on nvidia, couldn't it be made to work with movement extrapolation and late latching?

Source: X post

@bgolus Wouldn't it be possible to make motion-to-photon latency better with this using ATW in V

@bgolus Wouldn't it be possible to make motion-to-photon latency better with this using ATW in VR?

Source: X post

@bgolus sorry, that's actually what I was hoping you were talking about and knew more about :) I

@bgolus sorry, that's actually what I was hoping you were talking about and knew more about :) I also have no idea what the nebulous optical flow accelerator is, just hoping it means somewhere I get access to a tensorcore accelerated frame extrapolation/reconstruction API

Source: X post

@bgolus I mean more so, using the tensor cores to generate motion vectors and extrapolate. Curre

@bgolus I mean more so, using the tensor cores to generate motion vectors and extrapolate. Current extrapolation techniques in steamvr are pretty crude. Technically could implement it on tensor cores yourself, but I'm hoping now there is a refined Nvidia API to more easily do this?

Source: X post

@0xstella was not an entirely serious tweet

@0xstella was not an entirely serious tweet

Source: X post

@Scobleizer @SyncRealityXR You should put your living room in VRChat, add DJ booth, things for p

@Scobleizer @SyncRealityXR You should put your living room in VRChat, add DJ booth, things for people to use it as a party space, and then see if it can compete with any of the other popular worlds. No need to speculate.

Source: X post

@Scobleizer @SyncRealityXR This thread was about the notion of partying in AR, not partying in g

@Scobleizer @SyncRealityXR This thread was about the notion of partying in AR, not partying in general

I would not doubt any of your merits concerning IRL parties, but on the topic of parties in AR, I was pointing out I think there is good reason to believe VR is the more ideal medium than AR for parties

Source: X post

@Scobleizer @SyncRealityXR Theres a lot of interesting nuance you can go through in what the med

@Scobleizer @SyncRealityXR Theres a lot of interesting nuance you can go through in what the medium of AR enables vs VR for virtual events. Wasn't trying to offend you, I really have found huge value in taking the time to understand the particulars of why certain VR party cultures are successful right now

Source: X post

@Scobleizer @SyncRealityXR thats cool, Im sure you have lots of valid views, Im also sure myself

@Scobleizer @SyncRealityXR thats cool, Im sure you have lots of valid views, Im also sure myself and other million+ people involved with in-VR communities have many other valid views, its why I post things to discussion forums like this, to see what others think and why

Source: X post

@Scobleizer @SyncRealityXR Oh no. The Quest Sucks. You need an Index or Pimax on a high-end PC t

@Scobleizer @SyncRealityXR Oh no. The Quest Sucks. You need an Index or Pimax on a high-end PC that can push all the fancy shaders, then have more advanced tracking, full body maybe with facial tracking. Thats when it really turned into something magical for myself.

Source: X post

@Scobleizer It is a cool room... but in terms of building environments to immerse a group of peo

@Scobleizer It is a cool room... but in terms of building environments to immerse a group of people in for shared experience/emotion, anything having to obey physics will struggle to compete

for getting a group to vibe together, pulling them into a new space is key, its why festivals exist

Source: X post

People who are willing to carry out long-form intense argument and disagreement, but also know h

People who are willing to carry out long-form intense argument and disagreement, but also know how to argue in a productive, entertaining and engaging manner are really my favorite kind of people, unfortunately there are too few these days.

Source: X post

For some reason argument and disagreement became an awkward taboo, when really it's an art.

For some reason argument and disagreement became an awkward taboo, when really it's an art.

Source: X post

@Scobleizer This is already what people primarily use VRChat for on weekends. Its better than an

@Scobleizer This is already what people primarily use VRChat for on weekends. Its better than any bar/club irl. Use case is already well refined and mature in VRC. When you get a sense of the particulars ideal for virtual parties, its clear virtual partying is best suited to VR, not AR

Source: X post

@JCorvinusVR really? whats the difference between Quake and Half-Life in VR that quake would mak

@JCorvinusVR really? whats the difference between Quake and Half-Life in VR that quake would make you sicker?

Source: X post

@JCorvinusVR Quake VR was also really good, deserved more attention. https://vittorioromeo.info/

@JCorvinusVR Quake VR was also really good, deserved more attention. https://vittorioromeo.info/quakevr

Source: X post

https://youtu.be/uXUK9WpwmIs

https://youtu.be/uXUK9WpwmIs

Source: X post

@birdmademejoin So far I think prerequisites are all parties involved need:

@birdmademejoin So far I think prerequisites are all parties involved need: -full body tracking -have made their own avatar, particularly one that fits and matches them well -have some phantom sense -then learn to be more visually expressive in some way and become very comfortable in the avatar

Source: X post

@birdmademejoin Once you do this to some degree and your brain builds the connection between you

@birdmademejoin Once you do this to some degree and your brain builds the connection between your consciousness and your virtual form, then you can perceive that connection between other virtual forms and their consciousness, and it instinctively perceive it much more so as "them".

Source: X post

@birdmademejoin but unfortunately, even in VRC this is a minority of users I find. Most just sla

@birdmademejoin but unfortunately, even in VRC this is a minority of users I find. Most just slap something on and run about experiencing the virtual construct disconnected from themselves

but the increasing immersiveness of VR I think will eventually induce this psychological switch in all

Source: X post

@birdmademejoin Also requires people to have good enough VR setups to be in VR 4+ hours multiple

@birdmademejoin Also requires people to have good enough VR setups to be in VR 4+ hours multiple days a week to really absorb into it.

Short of what I am describing is people need to really "embody" their virtual form, it's a psychological switch, project themselves on it and feel it.

Source: X post

This is one fundamental shift in perception that can reshape so much. We will no longer associat

This is one fundamental shift in perception that can reshape so much. We will no longer associate the emotion, the feeling of, someone's presence with their actual physical presence.

For everything other than sex, physical/virtual presence will be seen as interchangeable.

Source: X post

There are a few key "Lightbulb" moments with VR:

There are a few key "Lightbulb" moments with VR:

First one is that, Yes, VR can make you fully feel like you're in another space.

Next major one is that, Yes, VR can effectively enough create presence of others so as to supplant physical presence.

Source: X post

Most people have experienced the first, fewer have experienced the second. It takes more particu

Most people have experienced the first, fewer have experienced the second. It takes more particular circumstances for the second to fully register.

But I think it's inevitable that the second will become apparent to more and more people over this decade.

Source: X post

Issue I see with many future XR visions is they try to fit XR into how society currently is.

Issue I see with many future XR visions is they try to fit XR into how society currently is.

But this is backwards as society is a downstream affect of media and tech.

It's better to try and anticipate how downstream affects of XR may change society, then go from there.

Source: X post

As the aspect of society you're trying to fit XR into may not exist as such as a consequence of

As the aspect of society you're trying to fit XR into may not exist as such as a consequence of XR

XR, VR particularly, I believe is going to be as transformative of a technology and medium as was the automobile. Society, cities, will physically reorganize themselves around it

Source: X post

This video was recorded by Timothy Leary in the early 90's and is not explicitly related to VR n

This video was recorded by Timothy Leary in the early 90's and is not explicitly related to VR nor "The Metaverse" but I still feel like it best fills in the necessary prerequisite understandings and framings for both. https://youtu.be/nr8jqQcR8TA

Source: X post

@JCorvinusVR theres something sad about so many not seeing how VRC offers more than enough alrea

@JCorvinusVR theres something sad about so many not seeing how VRC offers more than enough already

that you give people the ability to make any form and then they play like kids fully entertained

its sad because it shows how effectively society conditioned the capacity to play out of people

Source: X post

If it is the case that higher frequency detail in VR can induce discomfort and motion sickness f

If it is the case that higher frequency detail in VR can induce discomfort and motion sickness from prolonged use, which is one of my hypothesii, then the coming wave of higher res headsets will make VR discomfort worse, not better.

Source: X post

I still suspect that the "Standalone" part of VR is ultimately not as important the "Just didn't

I still suspect that the "Standalone" part of VR is ultimately not as important the "Just didn't need to buy $2000 gaming PC" part and for this reason PSVR2 could appear more attractive to average consumers than any other offering.

Source: X post

@BarryBlujorts Which is why trying to figure out business models in social vr space right is pro

@BarryBlujorts Which is why trying to figure out business models in social vr space right is probably one of the most important things despite awkwardness it can make

So many like to complain about money and economic mechanics, but never try to take active part in shaping how such things form

Source: X post

@BarryBlujorts It's always issue in early bohemian spaces that money is a taboo concept, but for

@BarryBlujorts It's always issue in early bohemian spaces that money is a taboo concept, but for it to sustain it has to develop a relationship to money, and if it's not done from a grassroots level with community involvement, then it will be done top down by FB or other in a worse way.

Source: X post

@amaldorai @paulg that is if you can get people in a business setting to put on a VR headset and

@amaldorai @paulg that is if you can get people in a business setting to put on a VR headset and actually go in Social VR... I've been on that crusade for like 3 years now and its pretty discouraging how hard it is to get anyone in VR, even those with "XR" in their title making 400k+ year.

Source: X post

@xtinacomputes https://www.youtube.com/watch?v=Fzhkwyoe5vI

@xtinacomputes https://www.youtube.com/watch?v=Fzhkwyoe5vI

Source: X post

The situation we will end up in with the entire economic and transaction systems consolidated ar

The situation we will end up in with the entire economic and transaction systems consolidated around a handful of corporate giants and world powers will be much worse than wherever winging it with public blockchains may land us.

Source: X post

@0xstella I'd prefer to pay microsoft yearly to not change windows.

@0xstella I'd prefer to pay microsoft yearly to not change windows.

Source: X post

@0xstella honestly I dont think much anything past XFCE was really necessary

@0xstella honestly I dont think much anything past XFCE was really necessary

Source: X post

Those focused on the productivity/workplace use case of VR/AR don't talk enough about the hell t

Those focused on the productivity/workplace use case of VR/AR don't talk enough about the hell they will unleash on the labor market by enabling precise tracking of a worker's entire reality. If you build tech that opens this door many companies will walk right through it.

Source: X post

This is why, when trying to discern how much someone is actually paying attention to the metaver

This is why, when trying to discern how much someone is actually paying attention to the metaverse subject, and actually gets it, the main thing I judge them by is how comprehensive is their social life in VR. As that is what is about, human connection through virtual construct.

Source: X post

The potential of the Metaverse is that it can make virtual interactions and relationships as sig

The potential of the Metaverse is that it can make virtual interactions and relationships as significant, impactful and central to people's lives as they can be in physical reality.

The capacity for rapport and trust you can develop with people locally needs to scale globally.

Source: X post

Something Ive been curious about is if hz or motion-to-photon from last reprojection makes a big

Something Ive been curious about is if hz or motion-to-photon from last reprojection makes a bigger difference on discomfort

It's possible 100hz and 150hz could have comparable discomfort if the motion-to-photon was the same. Or 100hz could be better if motion-to-photon was less

Source: X post

@JCorvinusVR I associated it with TAZ, where the A also just means "people doing stuff"

@JCorvinusVR I associated it with TAZ, where the A also just means "people doing stuff"

but someone could write some kind of bot or other that runs some smart contract or something at certain intervals to do things, this is how some of polkadot works, the voting gatekeeps bot processes

Source: X post

Is the screen refresh rate of the cambria known yet?

Is the screen refresh rate of the cambria known yet?

Source: X post

@aemethVR Those who understand the fundamental, innate, difference between a VR HMD and a screen

@aemethVR Those who understand the fundamental, innate, difference between a VR HMD and a screen in the type of experience and psychological effects it can produce are still a few years ahead of mainstream becoming aware of the same.

Source: X post

I just bought mexican food from my local mexican place with ethereum and it was a 3% fee. Did I

I just bought mexican food from my local mexican place with ethereum and it was a 3% fee. Did I just get lucky with that low of a fee? I thought ethereum usually took more?

Source: X post

I am always amused with the new dialect English I start inventing in commits after about the 10t

I am always amused with the new dialect English I start inventing in commits after about the 10th hour of programming. Somehow it still makes sense to me the next day.

Source: X post

@amaldorai @benz145 Like I'd never buy my kid a game console... they have to build that from a r

@amaldorai @benz145 Like I'd never buy my kid a game console... they have to build that from a raspberry pi themselves and get some emulator running on it if they want a console.

Source: X post

@amaldorai @benz145 kids these days... they just open the app... click a button... playing with

@amaldorai @benz145 kids these days... they just open the app... click a button... playing with their friends

back in my day we had to haul our huge ass towers and CRTs all the way to someone's garage uphill both ways and then deal with sleeping on the cold garage floor just for proper multiplayer

Source: X post

@amaldorai @benz145 Its potential in education is also not appreciated. I got into games during

@amaldorai @benz145 Its potential in education is also not appreciated. I got into games during Quake1 back then to play online and make custom content you had to learn more tech skills than most people probably graduate college with now. Drive for user count undercut a natural mechanic of education

Source: X post

@amaldorai @benz145 damn thats harsh... you needed some lan friends, those were the best. A good

@amaldorai @benz145 damn thats harsh... you needed some lan friends, those were the best. A good chunk of my friend group probably could have passed basic network IT certs out of high school just from dealing with so many counter strike LAN parties

Source: X post

Of anything "religious" I've spent considerable time with it is Zen. I am starting to realize th

Of anything "religious" I've spent considerable time with it is Zen. I am starting to realize this is one of the reasons I have little trouble accepting Virtual as a Reality, because I already perceive Physical Reality as ephemeral and empty.

Source: X post

Must always check if they bleed after cleaning. https://x.com/_rygo6/status/1568091052304924675/

Must always check if they bleed after cleaning. https://x.com/_rygo6/status/1568091052304924675/photo/1

Source: X post

@Maru_tweets It sounds facetious but avatar embodiment I see having overlap with mystical experi

@Maru_tweets It sounds facetious but avatar embodiment I see having overlap with mystical experiences. One fundamental thing you learn is how liquid consciousness is, that it inhabits your form, but isn't your form. Inadvertently Avatarism is making people learn the same.

Source: X post

@CixLiv https://www.linkedin.com/pulse/practical-ways-metaverse-improving-lives-right-now-ryan-g

@CixLiv https://www.linkedin.com/pulse/practical-ways-metaverse-improving-lives-right-now-ryan-goodrich/

Source: X post

@benz145 This is entirely counter-intuitive to all UX ethos but one reason I suspect VRC works w

@benz145 This is entirely counter-intuitive to all UX ethos but one reason I suspect VRC works well is it’s UI is just bad enough that most cannot figure it out initially and must have it explained to them by another player, which serves as ice breaker.

Source: X post

@LongLastToken @NeerajKA Some do try denying cryptos legally subversive nature, but I think it s

@LongLastToken @NeerajKA Some do try denying cryptos legally subversive nature, but I think it should be embraced too.

But I don’t think this makes people pirates as improvement in real law comes from people having leverage to affect it as such. To protest. Ability to subvert is necessary for Democracy

Source: X post

@mankindforward Personally, I don't think a system on a centralized server is bad by default. I

@mankindforward Personally, I don't think a system on a centralized server is bad by default. I try to remind people that Mastadon might be the ideal solution in many use cases.

But corporate consolidation of tech is a big issue. I do think people should prefer supporting smaller businesses.

Source: X post

There's an underlying fear that society may collapse and fall into chaos

There's an underlying fear that society may collapse and fall into chaos

Personally I believe the novel technologies we are grappling with create far greater threat that society may malevolently become too orderly, too explicitly defined, too many convinced of supposed certainty

Source: X post

The waves of media hyperbole that turned "Crypto" into an emotionally charged controversy is ano

The waves of media hyperbole that turned "Crypto" into an emotionally charged controversy is another instance of major corporate interests utilizing propaganda to turn people against their own best interests.

The option to not pay a chunk of income to VISA is a good thing.

Source: X post

@mankindforward They are in how people were using the term trustless initially. No one can alter

@mankindforward They are in how people were using the term trustless initially. No one can alter the rules hard coded into LTC or whatever without making a whole new chain.

Source: X post

@mankindforward The only rhetoric I've been a fan of is from http://web3.foundation itself but u

@mankindforward The only rhetoric I've been a fan of is from http://web3.foundation itself but unfortunately the catalyzer of the term has little control in how it resultantly spread everywhere. As I see it, its an issue with any effort as open as crypto space is

Source: X post

@mankindforward NFTs didn’t taint its image. A media cycle which painted jpeg sales as the only

@mankindforward NFTs didn’t taint its image. A media cycle which painted jpeg sales as the only thing existing in relation to it tainted its image

Issue it makes me ponder is how to compete with media without any media budget. It will probably have to go like any open source effort goes

Source: X post

@mankindforward I see that as a semantics argument, which is valid if trying to navigate public

@mankindforward I see that as a semantics argument, which is valid if trying to navigate public perception, as open source engineers aren't the best at naming. But "Trustless" does refer to something unique and important, perhaps "Distributed Rules Enforcement"?

Source: X post

The primary political issue in the USA is that most live in a Corporate For-Profit Media coordin

The primary political issue in the USA is that most live in a Corporate For-Profit Media coordinated state of False Consciousness https://en.wikipedia.org/wiki/False_consciousness

First need to break people out of the reality conditioned into them by broadcast media then reconnect them to actual reality

Source: X post

The beautiful thing about VRC is you find a large group you vibe with so well and everyone is co

The beautiful thing about VRC is you find a large group you vibe with so well and everyone is comfortable doing and saying anything.

The horror of VRC is you find a large group you vibe with so well and everyone is comfortable doing and saying anything.

Source: X post

If AI commoditizes highly detailed artistic styles then it could make simpler minimal art styles

If AI commoditizes highly detailed artistic styles then it could make simpler minimal art styles be perceived as more valuable. Artistry would become less about adding and more about filtering out, simplifying.

Matt Mills style is good example https://www.threyda.com/collections/matt-mills

Source: X post

I lived in Portland OR, Las Vegas, SF, Austin, Seattle. All of which have great night life scene

I lived in Portland OR, Las Vegas, SF, Austin, Seattle. All of which have great night life scenes which I thoroughly took part in for years' worth of amazing weekends and stories.

But honestly, I've had more fun in VRC bars/clubs than I ever did in real life.

Source: X post

I don't believe there is anything unique about me in this regard. I just took the time to build

I don't believe there is anything unique about me in this regard. I just took the time to build a social life in VR out of pure curiosity and then by chance discovered how its better. Over this decade I believe most people will stumble upon the same myself and many in VRC have.

Source: X post

I can't be the only one hesitant about "VR making it"... once major brands are trying to sell me

I can't be the only one hesitant about "VR making it"... once major brands are trying to sell me avatars everywhere, mainstream news always arguing about some nonsensical VR controversy and every pop icon has some mass presence in VR is probably about the time I will hate it

Source: X post

All AI art images have a sense of looking into unordered chaos to me.

All AI art images have a sense of looking into unordered chaos to me.

Whereas paintings I like tend to create a sense of focus and purpose, that even if you don’t get it there is sense of clarity in the image.

Makes me wonder if AI can do that ever? Part of me doubts it.

Source: X post

https://www.youtube.com/watch?v=34LGPIXvU5M

https://www.youtube.com/watch?v=34LGPIXvU5M

Source: X post

I’m more excited about building a new computer with the new 13 and 40 series than I am about usi

I’m more excited about building a new computer with the new 13 and 40 series than I am about using it for anything.

Source: X post

The effort to study physics and light to create a reality that registers to the mind as "real" c

The effort to study physics and light to create a reality that registers to the mind as "real" completely misses this point and is an entirely confused effort. The only real question that matters is what enables human consciousness to communicate more with another?

Source: X post

Social VR and Real Life are more similar in how they register to the mind than they are similar

Social VR and Real Life are more similar in how they register to the mind than they are similar to how the Web or Social Media does

This is the odd thing with saying The Metaverse is the Web or including screen-based paradigms, as in terms of the mind VR is a different category

Source: X post

@MuchRockness @hrafntho virtual reality killed the physical reality star

@MuchRockness @hrafntho virtual reality killed the physical reality star

Source: X post

@hrafntho I really believe the industry needs to get past trying to make VR appear or feel anyth

@hrafntho I really believe the industry needs to get past trying to make VR appear or feel anything like physical reality in anyway whatsoever and embrace a completely imagined stylized route.

Physical reality has a complete monopoly on physical reality and VR will never compete with it.

Source: X post

@FreyaHolmer #1 is what you want. It is a novel category of behavior that uses a List as a data

@FreyaHolmer #1 is what you want. It is a novel category of behavior that uses a List as a data source. SubscribableList?

this is all laid out well in the official unity splines package https://github.com/needle-mirror/com.unity.splines/blob/87b0c7e6d51848cdfa019ac5eef76991cd870c53/Runtime/Spline.cs#L121

Source: X post

An anime styled virtual reality inhabited with fully tracked friends as anime avatars will feel

An anime styled virtual reality inhabited with fully tracked friends as anime avatars will feel more "real" than actual reality devoid of any other people

This is because it's not the visual quality of reality that makes reality feel real, it's experience of other people

Source: X post

@amaldorai @recroom You could probably filter the overtly worst with AI but Id expect it to be a

@amaldorai @recroom You could probably filter the overtly worst with AI but Id expect it to be a small percentage. Human social drama is complex

Bigger hurdle is how to pair people who will form good friendship? I've wondered if an AI that matched people by mannerisms/tonality could do this

Source: X post

@amaldorai @recroom There is also a really pernicious quality where the most malevolent aren't t

@amaldorai @recroom There is also a really pernicious quality where the most malevolent aren't the ones being overtly bad as they are easy to avoid. Join somewhere, bad people? Leave. Easy.

The worst are the ones that act nice and gain trust but then turn out to be quite bad later...

Source: X post

@amaldorai @recroom The problem is fundamentally how does someone in a completely new city where

@amaldorai @recroom The problem is fundamentally how does someone in a completely new city where they know no one find the first person they can trust? Its as hard of a problem in Social VR as it is in real life, and the best solutions Ive seen are direct parallels to real life

Source: X post

@amaldorai @recroom for sure :) I tell people rooms at the front of the list are filled with tho

@amaldorai @recroom for sure :) I tell people rooms at the front of the list are filled with those who got booted from every else and couldnt get friends. Which means you start in the equivalent of a city back alley of rejects

Its really hard to solve though. I've seen a lot of things tried

Source: X post

@amaldorai @recroom Auto-moderating voice in certain spaces can get people to stop saying certai

@amaldorai @recroom Auto-moderating voice in certain spaces can get people to stop saying certain words, but when your in VR fully tracked with any avatar theres so many ways to be shitty, no automated solution can make a space good. Block words and there are a thousand other ways to troll.

Source: X post

@amaldorai If it can be used to encode visual form in a way that can be rendered more performant

@amaldorai If it can be used to encode visual form in a way that can be rendered more performantly I can see it being used

But whats already working well of "The Metaverse" is showing its an unnecessary technology for it to work. There are much bigger critical issues that need solutions

Source: X post

@amaldorai I know many communities spread across social VR apps which have already found the sol

@amaldorai I know many communities spread across social VR apps which have already found the solution to this and have made great spaces

That being social graphs grown off rapport and trust, which is essentially the same solution as real life

Its a complete non-issue in my social graph

Source: X post

People will probably then want to put their own clothes, makeup, markings and adjust hair on the

People will probably then want to put their own clothes, makeup, markings and adjust hair on them manually, which would still be done by an artist. But base avatar forms I can see going this generative route.

Source: X post

I suspect worlds will always need some discretion of an architect or designer to make them ideal

I suspect worlds will always need some discretion of an architect or designer to make them ideal

But I can totally see a point where avatars are not modelled but are rather grown. Where people mix and match "seeds" fed to an AI to direct their generation, like virtual breeding.

Source: X post

@guillefix You could. There was spore. But I think to make it interesting enough it would need t

@guillefix You could. There was spore. But I think to make it interesting enough it would need to be comparable to mid journey in how advanced it is. It’d also need to be able to evolve new forms that aren’t just composites of others it was trained on.

Source: X post

@cnlohr Ah yes, rescuing them into the glory of C# :)

@cnlohr Ah yes, rescuing them into the glory of C# :)

but no, I think java is just corporate mandated, the one that is cult-like is rust, seems the big sell on rust is to get accepted into some secret elite inner circle somewhere that constantly evangelizes it

Source: X post

A screen frames a person as an external observer of a central occurrence that is separate from t

A screen frames a person as an external observer of a central occurrence that is separate from them

VR frames a person, their body, their self, as the central occurrence

What'll happen when the predominate medium conditions people to view themselves as the central occurrence?

Source: X post

A possibility is that a VR Metaverse comes to be mainstream not because of advancements in tech,

A possibility is that a VR Metaverse comes to be mainstream not because of advancements in tech, but due to constricting social and economic conditions that leave it as the better option for enjoying life

This can seem incredibly bleak, but doesn't necessarily have to be

Source: X post

The proper way to do win11: https://x.com/_rygo6/status/1563388157651197954/photo/1

The proper way to do win11: https://x.com/_rygo6/status/1563388157651197954/photo/1

Source: X post

@zuelatak Zoom has a revenue of $3 billion

@zuelatak Zoom has a revenue of $3 billion Facebook has a revenue of $85 billion

To say Meta is aiming to be the zoom of VR is saying they are aiming to be a fraction of the size and reach in the 3D paradigm compared to what they are in the 2D paradigm.

I just don't believe it.

Source: X post

@zuelatak So, the company that previously built/maintained the largest consumer social platforms

@zuelatak So, the company that previously built/maintained the largest consumer social platforms in 2D Web/Mobile is going to become the equivalent of a second-rate virtual meeting provider in 3D/VR?

Damn I'd divest fast if that were true.

Source: X post

@zuelatak Pretty sure Meta wants to be the mass general platform? Not a corporate platform

@zuelatak Pretty sure Meta wants to be the mass general platform? Not a corporate platform

Being FB/Twtr/Snap/Discord of Social VR is bigger than being the Slack/Atlassian

So more pertinent subject isn't how you ban humans from having sexuality but how do you incorporate the fact they do

Source: X post

@zuelatak Corporate platform for what? For employees to work inside of? Or to get a general user

@zuelatak Corporate platform for what? For employees to work inside of? Or to get a general userbase that corporations will have interest in through ads / sponsored content?

If it's the latter VRC already has greater corporate adoption and sponsorship due to vket https://virtual-market.prowly.com/199726-vket-announces-the-corporate-exhibitors-of-vket-2022-summer

Source: X post

When framed like this it's not a matter of making something for the "Normal" people and awaiting

When framed like this it's not a matter of making something for the "Normal" people and awaiting their arrival.

Rather it's more so creating an environment which will perpetuate repressive and judgmental cultural modalities to condition individual idiosyncrasy out of people.

Source: X post

@MarkNicoll6 Thats true. I was thinking more in terms of modernized cities. I do prefer to think

@MarkNicoll6 Thats true. I was thinking more in terms of modernized cities. I do prefer to think in global terms

But Social VR I see as a general use. Like an evolution of the telephone or twitter. So I personally dont expect it to stay constrained to gaming crowd, already I see it spreading

Source: X post

@MarkNicoll6 It's kind of a VRC inside joke for people to self-denigrate the weirdness some get

@MarkNicoll6 It's kind of a VRC inside joke for people to self-denigrate the weirdness some get into

But I don't think any rational nor good person would take that seriously

It is filled with just average people. Not that different from what you'd encounter walking around any city street

Source: X post

@MarkNicoll6 It is different in the sense most in VR right now tended to already have a gaming P

@MarkNicoll6 It is different in the sense most in VR right now tended to already have a gaming PC or prior interest in games. But that's pretty general and I don't really think those with prior interest in gaming are that different in nature than those who didn't.

Source: X post

@mankindforward The ironic thing of VRC is most people who use VRC I don’t think feel comfortabl

@mankindforward The ironic thing of VRC is most people who use VRC I don’t think feel comfortable in VRC, if we’re speaking in terms of what is generally available and public facing. It only works when you develop your own private social circulation.

Source: X post

@mankindforward That isn't to say there aren't problems in VRC that could be improved. But frami

@mankindforward That isn't to say there aren't problems in VRC that could be improved. But framing VRC as the one with certain insurmountable platform issues that need to be overcome for general adoption. The reality is the opposite. It's the only that figured out what makes that work.

Source: X post

@mankindforward I don't think so. The drama of EAC was overblown. In terms of cultural rules it'

@mankindforward I don't think so. The drama of EAC was overblown. In terms of cultural rules it's still the same and devs/mods haven't changed tune

But if we're talking in terms of what grows/retains userbase. VRC doesnt have a problem there. Quite the opposite. VRC is showing what works.

Source: X post

@mankindforward @DyLhun Should go run around the Vket worlds it's really not bad. I think corpor

@mankindforward @DyLhun Should go run around the Vket worlds it's really not bad. I think corporate sponsors and "buy" buttons being interwoven through the whole platform would be bad. But having it constrained to a handful of really high-profile worlds to go explore as a kind of festival/event is fun

Source: X post

@mankindforward But what I think those standing on the sideline with a “This all needs to be con

@mankindforward But what I think those standing on the sideline with a “This all needs to be controlled top down” attitude miss is, this is how social dynamic works. Naturally grown networks of rapport and trust. It already is working. This is what has retained the highest user counts.

Source: X post

I get the sense many in corporate VR land ignore VRChat because they're awaiting for the suppose

I get the sense many in corporate VR land ignore VRChat because they're awaiting for the supposed "Normal" people to arrive.

But what if VRC is filled normal people? And the weirdness is entirely an affect of normal people being in a non-repressive non-judgmental environment?

Source: X post

Fork tornado cash core in protest of github deleting open-source code. https://github.com/tornad

Fork tornado cash core in protest of github deleting open-source code. https://github.com/tornadocash-community/tornado-core https://x.com/matthew_d_green/status/1561813046338748417

Source: X post

@UnknownSquids My bigger issue with RPM is not that they are trying to make easier entry paths f

@UnknownSquids My bigger issue with RPM is not that they are trying to make easier entry paths for avatars. But that they are trying to make the avatars and styles themselves. It needs to be a platform and SDK for others to publish the content and styles.

Source: X post

@UnknownSquids Most in VRC don't use Ready Player Me. An open market already shows no preference

@UnknownSquids Most in VRC don't use Ready Player Me. An open market already shows no preference to RPM

Difference between VRC and RPM isn't fully custom vs pre-made. It's fully open vs explicitly only pre-canned

In the open system a wide array of easier to use options evolve out of it

Source: X post

@UnknownSquids A booth where you can try everything on in VR before buying has been one of my si

@UnknownSquids A booth where you can try everything on in VR before buying has been one of my side-efforts for a while. But key I see is, it's completely open. Because you need that open creative evolution intertwined with community to produce the styles and trends people actually want.

Source: X post

@amaldorai They can be. But consider if some kind of social platform only allowed you to use a b

@amaldorai They can be. But consider if some kind of social platform only allowed you to use a bitmoji to represent yourself. It could maybe be fine for a kids-oriented platform if there was plenty else to do, but as a general social platform for the general populace? I can't see that.

Source: X post

When really you need to make some avatar design, release it, and once thousands of people are we

When really you need to make some avatar design, release it, and once thousands of people are wearing, observe the type interactions and culture it incentivizes. As people will end up choosing avatars based on the type of culture it then pulls them into.

Source: X post

What's missing in most avatar/self-representation efforts I see for VR/metaverse is a lack of aw

What's missing in most avatar/self-representation efforts I see for VR/metaverse is a lack of awareness of the resulting social interactions and culture that forms as an affect of the design of the avatar.

"Looks good on screen, so good in VR" seems as far as most get.

Source: X post

This is a shift that even the most skilled AAA game artists will have to re-adapt instinct for.

This is a shift that even the most skilled AAA game artists will have to re-adapt instinct for. How does design affect social dynamic?

As it's no longer about designing visuals. It's about designing social signaling language to incentivize formation of certain types of culture.

Source: X post

The only way to develop any intuition on this is to do it and spend hundreds of hours observing

The only way to develop any intuition on this is to do it and spend hundreds of hours observing the results and iterating on it. The only creators who have done this are mainly the ones in VRC community.

Source: X post

Ready Player Me is at best a prototyping library

Ready Player Me is at best a prototyping library

Believing pre-canned sets of avatars parts are the future of the metaverse is like believing pre-canned sets of selfie photos are the future of social media

Avatars are not a means to an end they are the medium of communication

Source: X post

I see a huge opening where someone with 1/20th the competency and experience of a principal crea

I see a huge opening where someone with 1/20th the competency and experience of a principal creative in a AAA studio could run absolute circles around a AAA studio by just sitting in VRChat and paying attention.

Source: X post

This is so much so the case that the static visual of an avatar will take a distant backseat to

This is so much so the case that the static visual of an avatar will take a distant backseat to how animated and expressive it is.

This is already the case in VRC. I see this as a fundamental modality. Everything will tend towards what is the most expressive when animated.

Source: X post

So when it comes to graphics concerning avatars its not a matter of realistic vs non-realistic.

So when it comes to graphics concerning avatars its not a matter of realistic vs non-realistic. It's a matter expressability and how animated it is.

I don't believe physical reality will ever compete with caricatured and stylized in the capacity to exaggerate expressability.

Source: X post

@benz145 Agree generally

@benz145 Agree generally

Much criticism has to do with people not having a sense of how things are different in VR vs a screen

That avatar animated to scale in VR would be decent and the level of detail is ideal for novice VR

Could take a better promo shot, but it is representative

Source: X post

A low-poly, blurry, horrendously designed avatar worn by someone in full body tracking feels mor

A low-poly, blurry, horrendously designed avatar worn by someone in full body tracking feels more "alive" than a perfectly designed realistic avatar not worn by a real person.

The way something is animated and interacts with you affects you far more than how it statically looks.

Source: X post

In determining how VR should look, I believe the better thing to analyze is how your mind rememb

In determining how VR should look, I believe the better thing to analyze is how your mind remembered how something looked, rather than the physics of camera optics

It's no longer about replicating a camera optic, it's about replicating the mind's direct perception of reality

Source: X post

@cnlohr Would be nice, haven't it seen it though.

@cnlohr Would be nice, haven't it seen it though.

Source: X post

@cnlohr My foray into webtransport and quic was quite surface level, and was like 6 months ago

@cnlohr My foray into webtransport and quic was quite surface level, and was like 6 months ago

but I remember arriving at this as the lib to use: https://github.com/microsoft/msquic

Source: X post

Newsfeeds, timelines and "Likes" make a social platform tend towards a zero-sum game for attenti

Newsfeeds, timelines and "Likes" make a social platform tend towards a zero-sum game for attention

Whereas small instances of friends in VR with no limit on creative expression (i.e VRC) make a platform tend towards expressing oneself however and enjoying the presence of others

Source: X post

I think my only real objective in life right now is to ensure shaders can exist in the metaverse

I think my only real objective in life right now is to ensure shaders can exist in the metaverse to their full potential.

Everything else will follow as a natural consequence.

Source: X post

@MarkNicoll6 For the specific area where the metaverse overlaps with 3D and VR, I'm not expectin

@MarkNicoll6 For the specific area where the metaverse overlaps with 3D and VR, I'm not expecting either of those to have much involvement.

Source: X post

ATW needs to happen on the headset at a rate of at least 180hz. Then interpolate alower framerat

ATW needs to happen on the headset at a rate of at least 180hz. Then interpolate alower framerate sent to it over DisplayPort.

My hunch has been 180 hz is the sweet spot where most people will have discomfort in a VR headset adequately mitigated.

Source: X post

I don't know if I like the idea of a platform minting their own token to be used for transaction

I don't know if I like the idea of a platform minting their own token to be used for transactions and currency in game. Seems malevolent to disconnect your economy from larger economy. Platform specific tokens should probably function more like stock.

Source: X post

Will Solana turn out Okay?

Will Solana turn out Okay?

Source: X post

The interoperability layer of the metaverse is webassembly + webgl (maybe webgpu). All the funda

The interoperability layer of the metaverse is webassembly + webgl (maybe webgpu). All the fundamental interoperability standards are already done. There’s no point in baking file formats into the metaverse browser when a loader can just be a small chunk of streamed wasm.

Source: X post

Unless people proactively choose to pay for services, everything will get sucked into ad based m

Unless people proactively choose to pay for services, everything will get sucked into ad based monetization.

Do you donate to Wikipedia? Subscribe to discord? Subscribe to YouTube? VRC+? Buy IAPs? Should allocate a percentage of income to pay for digital things.

Source: X post

@amaldorai Where I come from, no one gets married. Of the small percentage that did it only last

@amaldorai Where I come from, no one gets married. Of the small percentage that did it only lasted 2-4 years. It's just one of those cultural modalities that is fading away.

Source: X post

@amaldorai Portland Oregon. I also think many have some expectation and image in their head of i

@amaldorai Portland Oregon. I also think many have some expectation and image in their head of it, but when the actuality arrives its very different due to how our culture has gone in past few decades, so they ignore/skip over it and keep searching

Source: X post

Then you actually have to pro-actively announce you don't date in VR because if you don't you wi

Then you actually have to pro-actively announce you don't date in VR because if you don't you will accidentally end up in a relationship with like a half-dozen people.

Source: X post

The dating use case of VR is very underestimated. I suspect it'll be the primary use case. This

The dating use case of VR is very underestimated. I suspect it'll be the primary use case. This isn't obvious because it's hard to see how and why it'd work from the outside. But it works easily and effortlessly. It's actually what everyone seems to inevitably get sucked into.

Source: X post

If you go in VRC every night, hang out for a few hours, and have a semi-decent avatar, and can b

If you go in VRC every night, hang out for a few hours, and have a semi-decent avatar, and can be semi-interesting, and semi-social. You inevitably get sucked deeper and deeper into a social graph of people who match your vibe more and more.

Source: X post

How long until having a comprehensive social life in VR will be considered normal?

How long until having a comprehensive social life in VR will be considered normal?

Sucks because 20 years ago my social life was all online in chat/forums and since thats normalized I thought maybe now I can be a normal person

but then VR happened and its 2002 all over again

Source: X post

@bradneuberg You should try it

@bradneuberg You should try it

I commissioned a AAA game artist to make an avatar that looks like me and was exactly what I had in my mind initially

Seemed like a good idea until I started to actually wear it and realized a whole bunch of things that were not initially obvious

Source: X post

@bradneuberg People already have face tracking, finger tracking, and body tracking

@bradneuberg People already have face tracking, finger tracking, and body tracking

I would personally not bet on photorealistic avatars ever working well in social VR

Not joking at all when I say I could literally write a 100 page document on the reasons why

Source: X post

@cnlohr https://youtu.be/NK5-W_bvzBU

@cnlohr https://youtu.be/NK5-W_bvzBU

Source: X post

@hollowaya_x @0xstella @dofdev ya, less so "sandbox" as an aspect of design and more so sandboxi

@hollowaya_x @0xstella @dofdev ya, less so "sandbox" as an aspect of design and more so sandboxing at a low level. S, you could have an avatar with a stupid number of polys, particles, shader complexity, but then only that avatar would have a reduced framerate in the world, and only that avatar would crash

Source: X post

VRC mod drama was a great test of my hypothesis that people arguing/discussing in VR tends to go

VRC mod drama was a great test of my hypothesis that people arguing/discussing in VR tends to go better than on Twitter

As twitter seemed to be having a literal meltdown in mass, turning into a mob

But in VRC everyone I saw was having rather productive conversations about it

Source: X post

Unconscious conditioning for commonly known modalities has much potential

Unconscious conditioning for commonly known modalities has much potential

But whats really interesting is how you can affect your unconscious with modalities that dont exist

For example, how does seeing yourself as toon shaded affect you unconsciously vs realistic shading?

Source: X post

The real engine and technical foundation of the metaverse will not be like existing ones. Unity,

The real engine and technical foundation of the metaverse will not be like existing ones. Unity, UE, Godot etc. It will be more like a web browser in its technical foundation. This has been a hacking project of mine for > a year, but I'm sure many are hacking at it too.

Source: X post

How will people spending hours with virtual cat ears, and developing phantom limb with them, aff

How will people spending hours with virtual cat ears, and developing phantom limb with them, affect their sensory perception in the real world?

How could the mass library of mythical cultural archetypes affect unconscious if adapted to avatars?

Source: X post

@benz145 Valve Index + Full Body Tracking + High End PC + Custom Avatar + VRChat + right kind of

@benz145 Valve Index + Full Body Tracking + High End PC + Custom Avatar + VRChat + right kind of friend group = so immersive and engaging for me it literally rearranged my entire life and daily habits. Almost embarrassing to admit how much so, but for one example, I no longer own a bed.

Source: X post

@BarryBlujorts there is twitter spaces and clubhouse which I do see as an improvement, but somet

@BarryBlujorts there is twitter spaces and clubhouse which I do see as an improvement, but something about it also just seems to not work as well...

I suspect it's the absence of body language and the sense of presence of someone sitting in front of you

Source: X post

As much as I am absorbed into current social VR scene, I also am relatively detached, as I know

As much as I am absorbed into current social VR scene, I also am relatively detached, as I know no existing game engine, and thus subsequent social platforms built on them, have the necessary technical foundations to support what they really need to be. All of them are temporary.

Source: X post

A good amount of academic research and also many VRC players have found you can condition your u

A good amount of academic research and also many VRC players have found you can condition your unconscious with avatars. Such as wear a female avatar you act more feminine. Wear a taller avatar you act more confident. etc. Further, this conditioning can remain outside of VR.

Source: X post

@0xstella Thats almost exactly what I am referring to.

@0xstella Thats almost exactly what I am referring to.

But with the nuance of, you need to be able to sandbox rendering contexts composited within rendering contexts. Not just their CPU code, but the GPU calls too.

Source: X post

Curious thing about being Anti-Crypto is it inadvertently makes you Pro-VISA ...

Curious thing about being Anti-Crypto is it inadvertently makes you Pro-VISA ...

... did you know the first studies which began the crypto economic narrative and resulting media frenzy were funded by VISA? https://bit.ly/3BseGl3 https://bit.ly/3PYKv94

Must be a coincidence.

Source: X post

Being able to buy things directly in VRC could really mess it up in so many ways

Being able to buy things directly in VRC could really mess it up in so many ways

Realizing the run about so many have to do with QR codes to http://booth.pm or patreon tie-ins actually separates the capitalism one degree from it keeping it from feeling like a mall

Source: X post

As soon as you can put an actual buy button in VRC you are going to get buy buttons everywhere,

As soon as you can put an actual buy button in VRC you are going to get buy buttons everywhere, on everything

Source: X post

... and honestly everyone seems paranoid about the potential of this being crypto and NFT based.

... and honestly everyone seems paranoid about the potential of this being crypto and NFT based. But really you should be more concerned with it having to obey Steam policies and give Valve 30% off every transaction in the creator economy.

Source: X post

@0xstella Ya isn't it just so convenient for corporations how some mass of people now become tri

@0xstella Ya isn't it just so convenient for corporations how some mass of people now become triggered by the mere utterance of a word that could disrupt corporate rent-seeking and let people keep more of their money?

Must be just a coincidence.

Source: X post

This is the pernicious thing about being "anti-crypto", or anti anything really, it doesn't have

This is the pernicious thing about being "anti-crypto", or anti anything really, it doesn't have any opinion on what you are inevitably "pro".

Ultimately it is someone who is "pro" on something that will decide what it actually ends up being.

Source: X post

Rough estimation of app user count is:

Rough estimation of app user count is: MAU (Monthly Active Users) is 5x to 10x the DAU DAU (Daily Active Users) is 5x to 10x the CCU (Concurrent Users)

If VRC has peak 60k CCU this means 60k * 5 * 5 = 1.5 million monthly active users as a low-end estimate.

Source: X post

I'd rather VRC run on a crypto like Matic or LTC rather than some arbitrary currency they invent

I'd rather VRC run on a crypto like Matic or LTC rather than some arbitrary currency they invent and fully control that requires explicit interop with VISA or traditional bank to use for anything outside VRC. Like robux.

Source: X post

@birdmademejoin I'm actually indifferent on moving content itself to web3 infrastructure

@birdmademejoin I'm actually indifferent on moving content itself to web3 infrastructure

But transactions and my wallet, absolutely should be web3

Things like LTC or Matic are already plenty cheap enough. Cheaper than credit cards.

Source: X post

@prvncher @wongisrite Its pretty standard in SV startup culture

@prvncher @wongisrite Its pretty standard in SV startup culture

Really all I see happening with all the controversy around Web3 is the SV startup culture spilled onto the web globally for everyone to see the nature of

99% SV tech startups fail, majority is just nonsense, always been like that

Source: X post

One thing I did at a prior job was block mods from a unity app. Which made me acutely aware of j

One thing I did at a prior job was block mods from a unity app. Which made me acutely aware of just how offensive melonloader is to any good software design sense

This is why I never touched it in VRC for anything as I know in long term its a waste of time for anything solid

Source: X post

If VRC can keep mods out of the client entirely. Which is possible, maybe not with EAC by itself

If VRC can keep mods out of the client entirely. Which is possible, maybe not with EAC by itself, but is possible. That opens the door for other great things. Like you could make it so avatars and worlds are so hard to rip, it'd be easier to just re-do it from scratch.

Source: X post

I imagine some indie mod makers lost a lot of work, but the notion of trying to build business a

I imagine some indie mod makers lost a lot of work, but the notion of trying to build business and community on some janky scheme of injecting code into continually changing compiled binary that requires massive security vulnerability left open. Thats just a bad idea.

Source: X post

@BarryBlujorts You can prevents mods. Maybe not with EAC entirely. But there other things they c

@BarryBlujorts You can prevents mods. Maybe not with EAC entirely. But there other things they can do additionally

But if EAC are proactive about patching exploits and they are keeping a blocklist of hardware ids, that can be quite effective

Source: X post

@BarryBlujorts You can hide the mic icon with ctrl+H

@BarryBlujorts You can hide the mic icon with ctrl+H

What was the CC mod? I can think of a way to do some CC with a steamoverlay.

Source: X post

@BarryBlujorts What were the most important mods?

@BarryBlujorts What were the most important mods?

Source: X post

@BarryBlujorts The major really easy to exploit vulnerability for my avacrypt scheme was that yo

@BarryBlujorts The major really easy to exploit vulnerability for my avacrypt scheme was that you could read others 3.0 parameters with a mod https://github.com/rygo6/GTAvaCrypt

If mods no longer work it justifies me putting a lot more time on this as I feel I can make it quite secure

Source: X post

@BarryBlujorts It pushes the next major vulnerability down to the GPU level and would requires s

@BarryBlujorts It pushes the next major vulnerability down to the GPU level and would requires someone to start using RenderDoc, but even at that level its still quite a pain to recover usable assets, and I have some prototypes that would make it even more difficult

Source: X post

@BarryBlujorts If they make good decisions with monetization, it can be hugely positive. It coul

@BarryBlujorts If they make good decisions with monetization, it can be hugely positive. It could enable a lot more creators to make some kind of income off VRC.

Source: X post

@BarryBlujorts I would be willing to bet the reason they pre-emptively pushed this before gettin

@BarryBlujorts I would be willing to bet the reason they pre-emptively pushed this before getting in more client-side features from mods or a client-side modding API is due to monetization.

Gatekeeping paid content doesn't work well in a moddable client.

Source: X post

@TheVirtunaut I believe focusing on acts of creation, the pro's, is the way to affect things as

@TheVirtunaut I believe focusing on acts of creation, the pro's, is the way to affect things as necessary, rather than being anti something.

Source: X post

I wouldnt have used EAC and I wouldnt have done so before some other client-side mod API was in

I wouldnt have used EAC and I wouldnt have done so before some other client-side mod API was in place

But melonloader isnt a viable long-term solution. At some point itd have to go

Only thing that has stats on all pros/cons associated is VRC analytics, I assume they looked

Source: X post

@CaptainNovaVT @VRChat If VRC effectively prevents mods, then this package will be effective at

@CaptainNovaVT @VRChat If VRC effectively prevents mods, then this package will be effective at preventing ripping: https://github.com/rygo6/GTAvaCrypt

As the one major vulnerability of that could be exploited if you're in a public lobby with a ripper that has a certain mod.

Source: X post

@BarryBlujorts What are the most important mods that you could no longer use?

@BarryBlujorts What are the most important mods that you could no longer use?

Source: X post

@TheVirtunaut No, I'm for specific things.

@TheVirtunaut No, I'm for specific things.

Source: X post

@SylvioD @markpinc Societal future visions were derived from the nature of the predominate mediu

@SylvioD @markpinc Societal future visions were derived from the nature of the predominate medium of the time.

I don't think it is a coincidence that as the future vision from all prior mediums are starting to fail, we now have a new medium becoming grounded that offers vision of a novel nature.

Source: X post

I am anti being anti.

I am anti being anti.

Source: X post

There are things to complain about with Unity but seriously the past week of twitter complaints

There are things to complain about with Unity but seriously the past week of twitter complaints has been a bit off the rails. So so so many assumptions compounding in echo chambers that are not explicitly true. If there's reason for serious alarm I'd be one of the first shouting.

Source: X post

@Sean_McBeth @BondHunterBond I do think there's much to be done to improve the engine. I also th

@Sean_McBeth @BondHunterBond I do think there's much to be done to improve the engine. I also think if I was an engineer on a project building an internal title to improve engine, then got my fill on things I wanted to add/fix in the engine, I would want to just start working on those additions/fixes.

Source: X post

@BondHunterBond Implementing and fixing things in the engine will help end users more than finis

@BondHunterBond Implementing and fixing things in the engine will help end users more than finishing it for the sake finishing it. It makes sense to me that if they learned enough to justify some new engine feature/fixes that'd take priority, as it'll help developers more

Source: X post

@hrafntho I suspect the more immersive and realistic VR gets; the less people will desire violen

@hrafntho I suspect the more immersive and realistic VR gets; the less people will desire violent experiences. I expanded on this notion a lot more in this blog post: https://www.linkedin.com/pulse/what-makes-people-put-vr-headset-ryan-goodrich/

Source: X post

@benz145 @gemisisDev @golfplusvr This is one of the reasons I still use my lighthouses and see m

@benz145 @gemisisDev @golfplusvr This is one of the reasons I still use my lighthouses and see myself doing so for a while. Ya the 5-minute setup is friction, but once it is done, it is done. Whereas I can't how many times I've had to re-guardian my quest or sit staring at a screen waiting for it position itself

Source: X post

@MochieShaders Different cultures also have different standards on what is deemed sexual. Look a

@MochieShaders Different cultures also have different standards on what is deemed sexual. Look at burning man for example, lots of nudity and skin, but not sexual. I'm from Portland OR where nudity and minimal clothing is normalized. We even have an annual naked bike ride, it's not sexual.

Source: X post

@MochieShaders Is the reflection better than a 2048x2048 rendertexture?

@MochieShaders Is the reflection better than a 2048x2048 rendertexture?

Source: X post

@hrafntho Thats an interesting point. Is there any good article going over that. Comparing PC to

@hrafntho Thats an interesting point. Is there any good article going over that. Comparing PC to console sales?

Source: X post

@hrafntho I see a lot of talk about VR needing to get somewhere or be "saved". Am I really an od

@hrafntho I see a lot of talk about VR needing to get somewhere or be "saved". Am I really an odd one out for thinking VR is great in its current state?

Index+FBT+PC+VRC has honestly been the most fun I have ever had with a computer ever. My biggest worry is its current state is the peak

Source: X post

@TimeTravlrBowie ... or your vibe attracts your tribe?

@TimeTravlrBowie ... or your vibe attracts your tribe?

Source: X post

The rate at which you go from meeting someone to having very candid, revealing, deep, introspect

The rate at which you go from meeting someone to having very candid, revealing, deep, introspective interaction with someone in VRC is so many folds greater than real life, that it makes real life socializing feel so hollow, surface level and fake.

Source: X post

@Sean_McBeth Until you find some friend group and community to join on, so you never have to go

@Sean_McBeth Until you find some friend group and community to join on, so you never have to go in public lobbies, you're stuck in the public lobbies with everyone else who, for some reason, couldn't find a friend group or were rejected from all of them. Public lobbies tend be the worst.

Source: X post

It is the grand irony of it. That we need avatars to be real.

It is the grand irony of it. That we need avatars to be real.

But all the greatest truths are paradoxes.

Source: X post

What makes someone use VR regularly is finding some friend group in VR they enjoy interacting wi

What makes someone use VR regularly is finding some friend group in VR they enjoy interacting with regularly.

The same thing that makes people open their phone regularly.

Hardware is adequate, social design is what needs to be solved.

Source: X post

@itsKimberlyWTF @Scobleizer There are large sections of VRC that are explicitly PG-13. It just d

@itsKimberlyWTF @Scobleizer There are large sections of VRC that are explicitly PG-13. It just depends on which community you end up in.

Source: X post

My biggest hope for "The Metaverse" is that it ends the 3D game consumer/developer split. That i

My biggest hope for "The Metaverse" is that it ends the 3D game consumer/developer split. That it creates a platform where everyone is creating something. 3D art, programming, acting, dancing, whatever. Then creating and sharing those creations be the main gameplay.

Source: X post

@jarredsumner Looks great. But does it have the sandboxing capabilities that Deno has? That was

@jarredsumner Looks great. But does it have the sandboxing capabilities that Deno has? That was one of the most important features for me the deno added.

Source: X post

When it comes to VR, VRC is the current major social paradigm. More specifically, VRC on PC is.

When it comes to VR, VRC is the current major social paradigm. More specifically, VRC on PC is.

Quest 2 being standalone I believe did help its success. But would it be as successful if it could not plug into a PC and participate in PC VRC? I doubt it. Half of SteamVR is Quest 2

Source: X post

It's based on this that I would suspect, if an Apple headset could not be plugged into a PC to p

It's based on this that I would suspect, if an Apple headset could not be plugged into a PC to participate in the major social paradigm of the medium. It is DOA. Supporting that doesn't seem very Apple to me.

Source: X post

In early days of smartphones, if an iPhone came out that did not have FB, Twitter, YouTube and o

In early days of smartphones, if an iPhone came out that did not have FB, Twitter, YouTube and other social media apps on it, very few would have bought an iPhone.

What now dictates hardware's success is how well it functions in the social paradigm innate to the device

Source: X post

@vaizormusic Corporate execs have long pushed against "VR Only" content trying to pad user numbe

@vaizormusic Corporate execs have long pushed against "VR Only" content trying to pad user numbers. It's been pretty disruptive to a lot of VR efforts in companies and has completely wrecked some VR projects.

Thankfully plenty of VR only content does make it through: https://store.steampowered.com/search/?vrsupport=401

Source: X post

@RuTransverse Heist is a VRC social venue I infer?

@RuTransverse Heist is a VRC social venue I infer?

Id say it depends on what it is. I could see myself making a VRC rave VR only if the event was explicitly about FB dancing and immersing everyone in shared experience. Ive always preferred smaller intimate rave venues where everyone dances

Source: X post

@RuTransverse Dont know what Heist is but VR only content is nothing new https://store.steampowe

@RuTransverse Dont know what Heist is but VR only content is nothing new https://store.steampowered.com/search/?vrsupport=401 I dont see anything wrong with it

Typically its corporate execs pushing against VR only to push up user count numbers. I've seen more than one VR project ruined by forcing it to be multi-platform

Source: X post

@RuTransverse But that would also depend on the userbase of the event.

@RuTransverse But that would also depend on the userbase of the event.

If it were a bunch of new users trying to understand VRChat, I would tell them to go into VR because I think the VR experience is necessary for appropriate perspective on it.

Source: X post

@RuTransverse but if it was more a meet-n-greet or general social space more focused on talking

@RuTransverse but if it was more a meet-n-greet or general social space more focused on talking or something, then of course not.

Depends on what kind of experience the creator is trying to create for participants.

Source: X post

It used to be:

It used to be:

"Rage Against the Machine"

But today this is probably a better strategy:

"Incomprehensible to the Machine"

Source: X post

I find that a custom avatar someone made can be far more revealing of that person than a photo o

I find that a custom avatar someone made can be far more revealing of that person than a photo of them

In the same way seeing someone perform a song or looking through their sketchbook/journal can be more revealing than a photo

You're see something from the inside of their mind

Source: X post

The beauty of VRC is it supports any type of expression. Talking can obviously create connection

The beauty of VRC is it supports any type of expression. Talking can obviously create connection. But also people who dance, or mime, or design clothes, worlds, play music, just sit quietly, or whatever. All of those expressions can mean something in VRC and create connection.

Source: X post

Since it is not asynchronous, anyone doing any of these things is actually there, it means all t

Since it is not asynchronous, anyone doing any of these things is actually there, it means all the media is centered around actually interacting with another person, not just passively consuming and having something broadcast on you.

Source: X post

NOCK is probably the best competitive VR game I've seen. I hope it becomes popular.

NOCK is probably the best competitive VR game I've seen. I hope it becomes popular.

Source: X post

For some reason NOCK seems to not be filled with screaming kids. Really curious as to why.

For some reason NOCK seems to not be filled with screaming kids. Really curious as to why.

Is it just because it only has like 40 CCU right now?

Source: X post

@SushiFerretVR Ya, for sure

@SushiFerretVR Ya, for sure

Its something I think about a lot. The pernicious issue of public spaces and how to make them "Good"

I hear talk of moderation, AI analyzation of voice etc

But I've come to think VRCs underground networks built on actual rapport and social vouching is the best way

Source: X post

@benz145 @prvncher @RtoVR @BladeAndSorcery @warpfrog Tracking review count does provide an inter

@benz145 @prvncher @RtoVR @BladeAndSorcery @warpfrog Tracking review count does provide an interesting data point, but it would be incorrect to say it lets you determine what is currently the most popular

Maybe B&S will surpass BeatSaber in another month because its averaging whole months? Would be good to track that page too

Source: X post

@amaldorai Honestly for this all my hope has turned to Social VR

@amaldorai Honestly for this all my hope has turned to Social VR

Some assume you need to get the right info in front of someone to change them. But what really creates understanding is people spending lots of time talking in person

Only way to scale in-person dialogue is VR

Source: X post

So much money, research and brain power going into making it so VR can be indiscernible from phy

So much money, research and brain power going into making it so VR can be indiscernible from physical reality. But really they're just going to discover majority of people who use the stuff the most just want to be anime people, game characters and furries in stylized worlds.

Source: X post

@prvncher @ControlledPairs When it comes to full body tracking, I could see lighthouses still be

@prvncher @ControlledPairs When it comes to full body tracking, I could see lighthouses still being in demand for a number of years. It could be a while before an inside out body tracker is as responsive/cheap/small as a tundra tracker.

Source: X post

@JCorvinusVR Ya, I think a big factor will be that, the more realistic your avatar body becomes,

@JCorvinusVR Ya, I think a big factor will be that, the more realistic your avatar body becomes, the more perfectly it needs to be tracked to feel right. How far away is absolutely perfect Quest level FBT? Probably enough years that by the time it comes out, everyone will already be cartoons

Source: X post

@JCorvinusVR @birdmademejoin I've thought about that too

@JCorvinusVR @birdmademejoin I've thought about that too

But then I also keep thinking whatever the real "Metaverse" platform is, it will be more interoperable with blender, or somehow blender used in it, connected to it, an app on top of it. Which will make incentive for content to remain editable

Source: X post

@JCorvinusVR @birdmademejoin I expect that too. Like half the GPU will go towards avatar physics

@JCorvinusVR @birdmademejoin I expect that too. Like half the GPU will go towards avatar physics simulation, but then it will be rendered with like the matcap algorithm from the year 2000, or a simple toon ramp gradient and baked spherical harmonics.

Source: X post

I'm surprised that through all the pride stuff VRC never gets any notice as being a LGBTQ haven.

I'm surprised that through all the pride stuff VRC never gets any notice as being a LGBTQ haven. Easily one of the best I've ever seen on the web.

Source: X post

I see a parallel to the headphone industry. Where for a while there such a focus on 'natural/rea

I see a parallel to the headphone industry. Where for a while there such a focus on 'natural/realistic sounding' audio. But then electronically produced music took over and things like BEATS and Bose brand that are complete mutilations of realism became the most mainstream.

Source: X post

@ControlledPairs Index and Quest 2 look similar on paper but Index is a significant upgrade. Hon

@ControlledPairs Index and Quest 2 look similar on paper but Index is a significant upgrade. Honestly Quest 2 is completely unusable to me after getting used to an Index

Higher HZ, wider FOV, better audio, better mic, less front heavy, no over-USB latency, finger/full body tracking, it adds up

Source: X post

@benz145 @prvncher @RtoVR @BladeAndSorcery @warpfrog FB provides a page which lists all quest fr

@benz145 @prvncher @RtoVR @BladeAndSorcery @warpfrog FB provides a page which lists all quest free/paid apps in order of what is currently the most popular: https://www.oculus.com/experiences/quest/section/554169918379884/

Source: X post

Its amazing how well peer pressure works in vrc

Its amazing how well peer pressure works in vrc

For example, I assumed youd HAVE TO enforce avatar size limits in a shooter game with custom avatars for it work at all

But turns out standing in a group that says 'get out of the godzilla avatar asshole' works just as good

Source: X post

Honestly unless people get into the habit and mentality of pro-actively paying for the tech and

Honestly unless people get into the habit and mentality of pro-actively paying for the tech and web services they use. It is pretty much a given that little by little the metaverse will get sucked into a mass data mining, behavioral manipulation and ad machine to extract money.

Source: X post

Thinking about cashing out all my SOL... just many concerning things stacking up.

Thinking about cashing out all my SOL... just many concerning things stacking up.

Source: X post

4/ Something obvious to me is. Quest users with Horizons/RecRoom world building tools absolutely

4/ Something obvious to me is. Quest users with Horizons/RecRoom world building tools absolutely cannot compete with the userbase of VRChat on gaming PCs with blender, substance and professional 3D tools. VRC memes are going to steamroll every other platforms memes for years

Source: X post

3/ Whichever userbase produces the best content that gets greater virality on 2D social media wi

3/ Whichever userbase produces the best content that gets greater virality on 2D social media will end up drawing more new people to that social VR app. They will end up defining what social VR and the metaverse is, the public's expectations, what the public thinks is happening

Source: X post

2/ Where the different userbases of each app will try to produce the best content, worlds, avata

2/ Where the different userbases of each app will try to produce the best content, worlds, avatars, games, memes, media whatever and the content from the different 'metaverses' will collide on 2D social media. Like here on Twitter. Technically this already happening.

Source: X post

1/ What will probably happen with the 'metaverse' is there will initially be 'metaverses' which

1/ What will probably happen with the 'metaverse' is there will initially be 'metaverses' which will be the separate social VR apps. Then the userbase of each app will end up in a media war with the userbases of the other apps.

Source: X post

It's possible the medium of VR requires such a high degree of idiosyncrasy to fully engage any g

It's possible the medium of VR requires such a high degree of idiosyncrasy to fully engage any given individual that you could never make a VR platform as homogenized, and resultantly as pervasively large, as something like Facebook or Twitter.

Source: X post

@amaldorai I really hope the metaverse does not resemble a homogenized office space :)

@amaldorai I really hope the metaverse does not resemble a homogenized office space :)

Source: X post

Still probably my favorite Tweet of all time. https://x.com/duncantrussell/status/63333559343539

Still probably my favorite Tweet of all time. https://x.com/duncantrussell/status/633335593435398146

Source: X post

@0xstella What generates these?

@0xstella What generates these?

Source: X post

@0xstella This thing can be disturbingly accurate...

@0xstella This thing can be disturbingly accurate...

Source: X post

Spending so much time in VRC has made me have an odd perception on people using real-life photos

Spending so much time in VRC has made me have an odd perception on people using real-life photos on social media.

It's like, yes, I see your human fleshy face form, but what are you really? When you have to consciously design your entire self-representation, what would you do?

Source: X post

With the amount ridiculous shit that happens in VRC on a weekend its remarkable the web isn't fl

With the amount ridiculous shit that happens in VRC on a weekend its remarkable the web isn't flooded with snippets of said people doing ridiculous things

It really stands as a testament to me how the medium generally makes people concerned about the well-being of each other

Source: X post

@amaldorai @benz145 The primary mechanic of retention I see is if they make friends they want to

@amaldorai @benz145 The primary mechanic of retention I see is if they make friends they want to talk to again.

A combination of current social platforms being highly punishing to new users, and also just the natural difficulty some have with making new friends, causes many not to find new friends.

Source: X post

Something which surprised me about VRC is how much people are willing to pay for avatars

Something which surprised me about VRC is how much people are willing to pay for avatars

A good avatar base that still needs work and customization, people have zero issue paying $50 for

An avatar highly customized to what they want, people have zero issue paying hundreds for

Source: X post

@JCorvinusVR @benz145 Oh yes definitely. But explaining that to a generalized group that your mi

@JCorvinusVR @benz145 Oh yes definitely. But explaining that to a generalized group that your mind merges with your "cartoon triangle body" is really hard to explain. Im pretty sure most think your exhibiting some psychological disorder rather than having to discovered a generalized merit of VR.

Source: X post

@birdmademejoin @JCorvinusVR @benz145 Ya I've seen many have this experience. You take them avat

@birdmademejoin @JCorvinusVR @benz145 Ya I've seen many have this experience. You take them avatar hunting and then they put something on, and then just something clicks, and they're like "woah"

The funny thing is, it's completely unconscious and it can be rather amusing what ends producing that for someone

Source: X post

@benz145 The bigger issue to produce retention to VR I think is social apps that have less tende

@benz145 The bigger issue to produce retention to VR I think is social apps that have less tendency to scare someone away permanently because the absolutely horrendous public lobbies, then mechanics which enable people to better find friends in it.

Source: X post

@benz145 Personally, in this context "friction" is not an issue. Because if what your addicted t

@benz145 Personally, in this context "friction" is not an issue. Because if what your addicted to is hanging out with a dozen close friends, there is far more friction to doing that IRL than in VR currently. In fact, VR is the only way to do that every day for most.

Source: X post

@benz145 Only thing I see that gets someone into VR 3+ hours a day is VRChat. Shooters are stres

@benz145 Only thing I see that gets someone into VR 3+ hours a day is VRChat. Shooters are stressful in VR, people don't like tension and stress.

VRC is calm, meditative, has social bonding. All of which make someone happier. People get addicted to it because it makes them feel better.

Source: X post

As soon as it registers to corporations that certain types of 3D VR platforms incentivize people

As soon as it registers to corporations that certain types of 3D VR platforms incentivize people to pay an amount for a single 3D asset that they previously would have only paid for an entire game filled with thousands of assets + code + audio

Ya there will be much pivoting

Source: X post

@0xstella Definitely. I know many who have already paid over a thousand for a single avatar

@0xstella Definitely. I know many who have already paid over a thousand for a single avatar

Source: X post

The pernicious widespread assumption about this is that a screen and VR headset are interchangea

The pernicious widespread assumption about this is that a screen and VR headset are interchangeable display devices. They aren't.

Things entirely made and grown out of screen-based mentalities and experiences will not compete in VR with things made and grown entirely out of VR.

Source: X post

Non-VR "Metaverses" will of course get more users initially.

Non-VR "Metaverses" will of course get more users initially.

But the VR users in the VR metaverse will define the culture and modalities that everyone will eventually flow into. They already are. https://x.com/nealstephenson/status/1534596817643446272

Source: X post

@gfodor This is pretty intriguing, I've been thinking about similar things, specifically how to

@gfodor This is pretty intriguing, I've been thinking about similar things, specifically how to do all P2P social VR backend over webrtc in unity.

Source: X post

6 weeks ago I decided I wanted to make a new VRC avatar, then I decided I wanted to make a new s

6 weeks ago I decided I wanted to make a new VRC avatar, then I decided I wanted to make a new shader with a new style of toon outline

fast forward 6 weeks, avatar still not finished, however I have become a master on the subject of antialising techniques to smooth toon outlines

Source: X post

What I worry about most with VR is not that "it won't make it" nor that it still has a ways to g

What I worry about most with VR is not that "it won't make it" nor that it still has a ways to go

But that right now is actually it's golden age, and this past year and next year or so will represent its peak. From which it will decline into corporatization and meaninglessness

Source: X post

Through social media I know some people Id maybe start a business with after some interviews

Through social media I know some people Id maybe start a business with after some interviews

Through social VR I know many who Id sign contracts with right now to start a business even though we've never met IRL

Thats one big difference, can develop real rapport only through VR

Source: X post

Something else about this dynamic

Something else about this dynamic

In the paradigm of FB, Snapchat, Instagram, a mobile smartphone with a good camera was the best device for that social medium, so they won

But PC VR is the best device for the VR social medium. Mobile headsets may always struggle behind PC VR

Source: X post

@Scobleizer I've posted lots of articles about VR

@Scobleizer I've posted lots of articles about VR https://www.linkedin.com/in/rygo6/details/featured/

Source: X post

If iPhones didnt support texting, FB, Snapchat, Twitter etc they would not be popular

If iPhones didnt support texting, FB, Snapchat, Twitter etc they would not be popular

Mainstream popularity of such devices now depend on how well the device enables you to participate in the social fabric innate to the medium of the device

🍎VR can fail if it gets social wrong

Source: X post

I am a big Apple fan. You cant deny how far tight integration of hardware and OS development let

I am a big Apple fan. You cant deny how far tight integration of hardware and OS development let them push things

But Apple mentality extended to overarching dictation of virtual selves and realities people spend a majority of their day in will be a human rights violation

Source: X post

@Daisy_HoaPham @UmbalaMetaverse Honestly, I am not really sold on avatars getting any pervasive

@Daisy_HoaPham @UmbalaMetaverse Honestly, I am not really sold on avatars getting any pervasive benefit from NFTs other than the NFT just being a simple sales receipt for the sale transaction. For this reason: https://x.com/geotetra_rygo6/status/1526605735773106176

Source: X post

@0xstella This has kind of been my biggest thing for 2 years now...

@0xstella This has kind of been my biggest thing for 2 years now...

The first step to imposing a highly repressive corporate VR skinner box to condition people to some new behavior will be to control their body and appearance, or the constraints of it.

Source: X post

@0xstella Proliferating the avatar culture currently growing in VRC is really the best defense I

@0xstella Proliferating the avatar culture currently growing in VRC is really the best defense I can think of right now.

Source: X post

@0xstella Did they get rid of static lifetime analysis and add unsafe that full disables all the

@0xstella Did they get rid of static lifetime analysis and add unsafe that full disables all the static analysis?

Source: X post

@TheVirtunaut Yes basically, but more so it might not be possible for anyone at this point. The

@TheVirtunaut Yes basically, but more so it might not be possible for anyone at this point. The logistics required to regularly have in-person hang outs with people from a dozen different states, let alone dozens of different countries, is just not feasible.

Source: X post

@TheVirtunaut Well, no I mean the exact opposite of that. In-person interaction is necessary to

@TheVirtunaut Well, no I mean the exact opposite of that. In-person interaction is necessary to produce correct perspective.

Source: X post

@TheVirtunaut I think VR is sufficient

@TheVirtunaut I think VR is sufficient

Source: X post

In Lord of the Rings the Eye of Sauron represents a pure source of evil. I always thought this s

In Lord of the Rings the Eye of Sauron represents a pure source of evil. I always thought this symbolism made an interesting statement. That being, the essence of evil is one singular perspective, disconnected from the many, able to see too far and able to control too much.

Source: X post

I'd bet a lot of money, maybe all of it, that a social vr platform filled with only licensed pok

I'd bet a lot of money, maybe all of it, that a social vr platform filled with only licensed pokemon avatars would be by far more popular than a platform with only realistic human avatars.

Source: X post

I believe the fundamental issue is that we've reached a scale where in-person interaction cannot

I believe the fundamental issue is that we've reached a scale where in-person interaction cannot include a wide-enough sampling of people to produce correct perspective. Then text platforms are incapable of facilitating the kinds of human interaction necessary for understanding.

Source: X post

Many see metaverse avatars as a character you use to play some games

Many see metaverse avatars as a character you use to play some games

But once it registers youll meet new people, form new relationships, new friend groups, find people to date, connections to jobs then the importance of self-representation will become front and center to it all

Source: X post

In "The Metaverse", in social VR:

In "The Metaverse", in social VR: Some people will have worlds Some people will go to VR concerts Some people will play games

But everyone will have an avatar Everyone will always want new things for their avatar

This is why I think avatars will be the biggest industry in VR

Source: X post

In a field where millions of brilliant minds exist, if you can only get 26 to sign something, it

In a field where millions of brilliant minds exist, if you can only get 26 to sign something, it is probably not because those are the most intelligent 26 minds. https://x.com/leereiners/status/1531976033397768193

Source: X post

Honestly, I've gotten so much better at writing through having to reword things to fit them into

Honestly, I've gotten so much better at writing through having to reword things to fit them into a tweet.

Source: X post

@5xa ++i is better

@5xa ++i is better

Source: X post

@timoni The way you make a social platform where people aren't constantly arguing is to virtuall

@timoni The way you make a social platform where people aren't constantly arguing is to virtually create the sense of presence of another

It's remarkable how much different people act when they feel they are actually sitting in front of another person

Source: X post

@timoni The VRC and other social VR crowds have known this for years now. There is no saving tex

@timoni The VRC and other social VR crowds have known this for years now. There is no saving text, broadcast media and asynchronous communication

Another person only registers as another person to most when they actually perceive them as another person sitting in front of them

Source: X post

i++ or ++i ?

i++ or ++i ?

Source: X post

Big Joe Fuf XXL foam filled bean bag is such a superior sleeping device than a mattress

Big Joe Fuf XXL foam filled bean bag is such a superior sleeping device than a mattress

makes me think people got so fixated on the mattress and bed frame that the prospect of exploring other sleeping apparatuses just became unfathomable but probably still a lot to explore there

Source: X post

Thus far in tech design you wanted to find something generalized that could fit into as many peo

Thus far in tech design you wanted to find something generalized that could fit into as many peoples lives as possible

But when we come to social VR/metaverse we're literally trying to digitize people themselves. Their lives, body, identity

Its innately far more idiosyncratic

Source: X post

This is a good web3 project which I think represents a proper direction for web3 and does someth

This is a good web3 project which I think represents a proper direction for web3 and does something you couldn't do with fiat https://tiplink.io/ https://solana.com/riptide/voting/tip-link

Source: X post

The type of culture that forms as an affect of text, recorded and asynchronous media is not capa

The type of culture that forms as an affect of text, recorded and asynchronous media is not capable of leading us where we need to go

For past hundreds of years this wasn't terrible because societies were small enough that in-person interaction informed the nature of the culture

Source: X post

its interesting to me how much I now abhor certain old vrc avatars I used to wear so much, ones

its interesting to me how much I now abhor certain old vrc avatars I used to wear so much, ones I used every night for months I just cant stand now after my mind becoming more attuned to it, interesting too even after 1000+ hours my instinct could still change so much

Source: X post

But we reached a point now where in person interaction doesnt define our culture, whats being br

But we reached a point now where in person interaction doesnt define our culture, whats being broadcast on TV does or whats trending on social media does

Which means the extremely poor capacity for human interaction and conversation through those mediums is defining our culture

Source: X post

@amaldorai Theres a long list of things like this. Of typical high end graphics techniques used

@amaldorai Theres a long list of things like this. Of typical high end graphics techniques used to create realism on a screen being unenjoyable in prolonged use of VR

I think hyperrealism will exist, its just going to be an occasional thing people experience, not where they spend most time

Source: X post

@amaldorai I think they will too, but what I notice from my experience and what seems to be most

@amaldorai I think they will too, but what I notice from my experience and what seems to be most popular in UGC platforms is there is a tendency towards simpler. Very simple. I think it's because in VR, during prolonged use it's less taxing on the eyes.

Source: X post

@amaldorai For example, staring at any prominent amount of bloom, HDR or fluctuating light level

@amaldorai For example, staring at any prominent amount of bloom, HDR or fluctuating light levels due to local tone mapping for hours on end in VR is really not enjoyable. If you put bloom in a VRC world without being able to disable it, the world would never get popular.

Source: X post

@amaldorai Another example, high levels of specularity and reflection. Having a bunch of movemen

@amaldorai Another example, high levels of specularity and reflection. Having a bunch of movement every which way on surfaces is not enjoyable in VR for prolonged periods.

People paint walls in their home with matte paint for a reason. Living in highly reflective space isnt desirable

Source: X post

@amaldorai Also I have a strong suspicion there is a relation between high frequency detail, mor

@amaldorai Also I have a strong suspicion there is a relation between high frequency detail, more contrasting detail and nausea.

If your running around, the more grainy detail there is, the more variations of contrast, the more the movement catches your eyes and can induce motion sickness

Source: X post

The profound thing to me about vrc is not that it connects people, but that it connects people w

The profound thing to me about vrc is not that it connects people, but that it connects people who never would in any other context. I don't mean it closes geographical distances. Rather, by being avatars all the layers of preconceived judgement based on physical form don't exist

Source: X post

Its weird how many I see assuming hyperrealism will be desirable in VR without ever trying it

Its weird how many I see assuming hyperrealism will be desirable in VR without ever trying it

Load a hyperrealistic environment, sit in it for 8 hours in VR

Load a painterly ghibli like environment, sit in that for 8 hours in VR

See which one you desire to come back to more

Source: X post

In this scenario where physicality is unnecessary for value. It opens the door that someone coul

In this scenario where physicality is unnecessary for value. It opens the door that someone could fully disconnect from a sense of physicality and fully attune their brain to a perfectly designed virtual dimension for solving abstract logic and design problems.

Source: X post

If it comes to be the case that brains attuned to an alternate virtual dimension can better solv

If it comes to be the case that brains attuned to an alternate virtual dimension can better solve the necessary problems. Then immersion into that new dimension will be seen as the more relevant aspect of reality.

Source: X post

I tend think the physicality of reality being seen as its most relevant aspect is an artefact of

I tend think the physicality of reality being seen as its most relevant aspect is an artefact of when physical labor determined all value.

But today solving abstract logic and design problems is the biggest determiner of value and physicality of reality is unnecessary for that.

Source: X post

I encounter many who worry VR will make people lose touch with reality, become entirely disconne

I encounter many who worry VR will make people lose touch with reality, become entirely disconnected from the real world.

But the thing is, we already don't have any concept of reality which is not an explicit affect and subset of what some form of media conditioned onto us.

Source: X post

Its remarkable how popular vrchat is for how bad it is

Its remarkable how popular vrchat is for how bad it is

It shows how important the things are which it got right

get those things right and decade old graphics? running at 20 fps? terrible hard to use UI? bugs requiring a restart every hour? ... doesn't matter

Source: X post

So many issues relating to so many things and really the most universal solution I can think of

So many issues relating to so many things and really the most universal solution I can think of is everyone needs to start having more conversations with an increasingly wider spectrum of people. We tend to round each other out. Social VR is the only thing I see that can do that.

Source: X post

The web is not about owning digital assets. It is about memes. It is about a single digital asse

The web is not about owning digital assets. It is about memes. It is about a single digital asset proliferating, replicating, mutating and going as viral as possible. Unless an NFT enables digital media to become more memetic, it will be drowned out by other things that do.

Source: X post

The unequivocal 'it'.

The unequivocal 'it'.

Source: X post

@gfodor They can. One issue that I see about a 'meme' intertwined with current NFT thinking is t

@gfodor They can. One issue that I see about a 'meme' intertwined with current NFT thinking is that it is non-mutatable. Genes that can't mutate aren't really genes, same with memes

Unless a mechanic promotes saving, editing, re-minting it will be drowned out by something that does

Source: X post

@0xstella ya that would be interesting, I've been thinking past few days actually what a spatial

@0xstella ya that would be interesting, I've been thinking past few days actually what a spatial twitter would look like... was thinking of calling it Spwitter

Source: X post

@0xstella Id say VRC already is a 3D meme culture. Avatars clothes hair etc are memes

@0xstella Id say VRC already is a 3D meme culture. Avatars clothes hair etc are memes

Its one reason I say this. What makes avatar/styles more popular isnt exclusivity, its that it goes viral. People want things to feel like they belong to some community, not be a lone individual

Source: X post

@0xstella ... but 3D memes...

@0xstella ... but 3D memes...

Source: X post

Polkadot is easily the most advanced and impressive web3 network I've seen. Problem is unless yo

Polkadot is easily the most advanced and impressive web3 network I've seen. Problem is unless your a developer you'd never know. Makes me doubt polkadot can get mainstream adoption, but it doesn't have to. Could find a niche in academic/research or something.

Source: X post

The danger I see of many text based social media sites is rarely, if ever, do I see a productive

The danger I see of many text based social media sites is rarely, if ever, do I see a productive argument where someone truly changes their mind

Which means people tend to not evolve their understanding through said mediums rather their own projections and neurosis just compound

Source: X post

@Dilmerv Will replace monitors, laptops and televisions.

@Dilmerv Will replace monitors, laptops and televisions.

But your going to need a mouse and keyboard for a long time

Source: X post

Based on many occurrences in VRC I really think arguments go far better when everyones in cute a

Based on many occurrences in VRC I really think arguments go far better when everyones in cute avatars. Its hard to develop stubborn contention towards something so cute

If this is the case, we could fix our political issues by requiring politicians to debate in VR furry avatars

Source: X post

Rather than more complex feature filled programming languages to manage larger scale complexity.

Rather than more complex feature filled programming languages to manage larger scale complexity. I more so like the idea of using a very simple language like C to make smaller, modular, programs which are self-contained logic chunks to be intermixed and individually profiled

Source: X post

"Our results show that there are no significant differences in VR sickness, presence and

"Our results show that there are no significant differences in VR sickness, presence and workload among these techniques under two levels of control in our VR racing game." https://arxiv.org/pdf/2103.05200.pdf

Source: X post

"Our results indicate that neither velocity nor acceleration based vignetting were able to reduc

"Our results indicate that neither velocity nor acceleration based vignetting were able to reduce the effects of VR sickness for all participants, and instead lead to a significant increase in sickness symptoms for 11 out of 15 participants." https://sreal.ucf.edu/wp-content/uploads/2018/11/19-32-norouzi-1.pdf

Source: X post

"Currently, there is no absolute promising strategy to eliminate cybersickness, also no golden s

"Currently, there is no absolute promising strategy to eliminate cybersickness, also no golden solution guaranteeing to minimize the cybersickness symptoms for each individual." https://link.springer.com/article/10.1007/s10055-022-00638-2

Source: X post

@cnlohr ya, that would be another variable to control for, been looking for more studies, but th

@cnlohr ya, that would be another variable to control for, been looking for more studies, but this subject seems to be rather under-studied which is making realize its weird it became common sense that you want to fade out user's FOV on movement, or if I missed some study?

Source: X post

@cnlohr I found this page rather interesting as it suggests things to reduce nausea that I never

@cnlohr I found this page rather interesting as it suggests things to reduce nausea that I never thought of but reflecting back on my own experiences seem plausible https://vr.arvilab.com/blog/combating-vr-sickness-debunking-myths-and-learning-what-really-works

things like having more dark colors than light colors and having less high frequency detail

Source: X post

@cnlohr also made me wonder if mirrors and their sort of pseudo-increased-FOV could be affecting

@cnlohr also made me wonder if mirrors and their sort of pseudo-increased-FOV could be affecting nausea too

Source: X post

Among some I know in VRC it became such common knowledge that lower fov = more nausea that I act

Among some I know in VRC it became such common knowledge that lower fov = more nausea that I actually forgot much of the vr industry believes the opposite, so just looked up studies and first 4 say vignetting has no consistent effect or makes it worse. Did any ever say it worked?

Source: X post

"a total number of 13 solutions was narrowed down to 2 solutions for the second experiment. Of t

"a total number of 13 solutions was narrowed down to 2 solutions for the second experiment. Of these solutions, only one proved consistently effective in reducing VR induced motion sickness, which was to point a fan at the user." https://essay.utwente.nl/78690/1/Thesis%20report%20keep%20your%20eyes%20on%20the%20road%20kid%20final.pdf

Source: X post

@0xstella a spikey collar in the sky?

@0xstella a spikey collar in the sky?

Source: X post

Many want to criticize Zuckerberg for burning so much on what's perceived as a speculative effor

Many want to criticize Zuckerberg for burning so much on what's perceived as a speculative effort, but I think it's probably the most respectable thing he has done. What's the point of billions if it just makes you more risk-averse?

Source: X post

As everyone is up in arms about the fate/territory of Twitter I can't help but think in probably

As everyone is up in arms about the fate/territory of Twitter I can't help but think in probably 4 years or so, most heavily invested in social medias will have gone to Social VR and are going to care far far less about a linear stream of short text snippets.

Source: X post

@amaldorai I agree, I don't think it will obliviate it. But those who get into it I think will e

@amaldorai I agree, I don't think it will obliviate it. But those who get into it I think will end up investing more energy towards their identity and social circulation in VR space than they do on text or image platforms.

Source: X post

Unfortunately, or fortunately, simple truth is no one will care if the Metaverse is proprietary,

Unfortunately, or fortunately, simple truth is no one will care if the Metaverse is proprietary, psychologically manipulative, mining data, or sucking excessive energy

theyll care if their friends are there, if they like the avatars, can be themselves and can afford it

Source: X post

Consumer EEG piped into VRC through OSC to control visual appearance of your avatar based on moo

Consumer EEG piped into VRC through OSC to control visual appearance of your avatar based on mood

What if we couldn't hide our mood and mental state in social situations.....

Source: X post

@birdmademejoin curious to see this article

@birdmademejoin curious to see this article

My take on it is, before people get into VR, they think they want to look like themselves but once they get in there, start playing around, feel more free. It's like a TV or a iPod you inevitably start switching the channel/song, your taste evolves

Source: X post

@BarryBlujorts It's probably approaching a few million now.

@BarryBlujorts It's probably approaching a few million now.

Source: X post

With Web3, currently no top corp could profit off of it, so a media blitz made people hate it.

With Web3, currently no top corp could profit off of it, so a media blitz made people hate it.

Wont be long till one at the top finds a way to profit. Then there will be a media blitz to make people Okay with it.

Most don't care. They are just an affect of mass media. https://x.com/Fwiz/status/1523676688000831488

Source: X post

The most important experience to have in VR to really understand it well and where it's going, i

The most important experience to have in VR to really understand it well and where it's going, is to develop really good friendships with multiple people. Get a sense of what it's like to find friends, really get to know someone and maintain a relationship entirely through VR.

Source: X post

RT @jasoncrawford: This thread as an essay: https://rootsofprogress.org/why-pessimism-sounds-sma

RT @jasoncrawford: This thread as an essay: https://rootsofprogress.org/why-pessimism-sounds-smart

Source: X post

@Dilmerv Git + Git LFS + GitHub for everything

@Dilmerv Git + Git LFS + GitHub for everything

Artists can use GitHub for unity plugin

Just make sure to set up gitignore and gitattributes right

Source: X post

Bitcoin blockchain is really a security miracle, one of the most remarkable feats of computer sc

Bitcoin blockchain is really a security miracle, one of the most remarkable feats of computer science

completely open source ledger that hasn’t been hacked for 10+ years and holds billions in value

Would have never believed it possible, really took me years to accept it

Source: X post

@amaldorai Perhaps. Thing is if people are in a social setting and each person is seeing/hearing

@amaldorai Perhaps. Thing is if people are in a social setting and each person is seeing/hearing different things, its disruptive to the social experience, people are out of sync. So, it might have a place somewhere, but I'd expect it to always be awkward for typical social interaction.

Source: X post

@0xstella That name looked semi-familiar, so I searched, and I had already blocked this guy.

@0xstella That name looked semi-familiar, so I searched, and I had already blocked this guy.

Usually I block people who seem incapable of rational nuanced dialogue on twitter and appear completely unproductive in debate, but don't really remember. What was his whole gig?

Source: X post

This page from Understanding Comics by Scott McCloud explains one reason why I don't think reali

This page from Understanding Comics by Scott McCloud explains one reason why I don't think realism in VR avatars will ever work as well as stylized and cartoony. VR avatars are more about getting a person's mind to project themselves onto the form than it is about aesthetics https://x.com/geotetra_rygo6/status/1523449506263576576/photo/1

Source: X post

This guy's styling for avatars -> @ocuuda

This guy's styling for avatars -> @ocuuda

https://trello.com/b/mYoVHgZo/ocuudas-3d-commissions

Really top notch. Not just the visual aesthetic, but the movement too. I can see something like that long being a predominate style in the metaverse and far more popular than hyperrealism.

Source: X post

Now that the crypto/NFT freneticism died down my hot take:

Now that the crypto/NFT freneticism died down my hot take:

People's extreme negative reaction is maybe 10% because of real issue deserving such reaction

then 90% because of propaganda seeded by VISA and others which are threatened by crypto

it was mostly a corporate hit job

Source: X post

VR lets us become octopuses

VR lets us become octopuses https://www.youtube.com/watch?v=jS48PjhfKu8

Source: X post

Social VR inevitably turns into a kind dating game, same as any bar/club/concert social space wo

Social VR inevitably turns into a kind dating game, same as any bar/club/concert social space would

As soon as one person puts on some glowing sparkly clothing item, then everyone does, because peacocking

This quickly snowballs until everyone is some glowing anime/furry thing

Source: X post

@JCorvinusVR I wonder what itll look like when you hug one and your head clips through their hea

@JCorvinusVR I wonder what itll look like when you hug one and your head clips through their head

or when they lay on a beanbag and their fb tracking contorts into some weird pose making it appear like it breaks a limb

I think there is too much to get perfect in social VR for it to work

Source: X post

Given the trajectory of history, if you could buy stock in weird, it'd be an obviously good inve

Given the trajectory of history, if you could buy stock in weird, it'd be an obviously good investment

Few things have eroded more and gone through more evolution in the past few decades than our societal concept of "Normal"

Source: X post

avatars with realistic facial/eye proportions will struggle in VR social dynamic because larger/

avatars with realistic facial/eye proportions will struggle in VR social dynamic because larger/exaggerated eyes enable greater expressability/communication

sheer utility of communication will lead people to tweak facial proportions

and eventually realize the art of cartooning

Source: X post

@prvncher @dcseifert Zealios zilents switches are what I settled on

@prvncher @dcseifert Zealios zilents switches are what I settled on

Source: X post

Spending time in social VR made me more aware of how weird Twitter is

Spending time in social VR made me more aware of how weird Twitter is

If you imagine Twitter social dynamic spatially it is basically a mass of people shouting out in an empty void trying to get attention

People were meant to have dialogues, not shout louder at nothing

Source: X post

Trying Hand Physics Lab with the new hand tracking I realized your hand being affected by physic

Trying Hand Physics Lab with the new hand tracking I realized your hand being affected by physics is a terrible idea. If you develop any degree of phantom sense, then having your fingers bend backwards when pushing buttons or offset from your real hand is uncomfortable.

Source: X post

These highlighted lines combined with Dorsey's and Musk's past support of cryptocurrency, and Do

These highlighted lines combined with Dorsey's and Musk's past support of cryptocurrency, and Dorsey's prior investment in researching a decentralized twitter, leads me to believe the long-term goal is dissolve Twitter as a company and turn it into a web3 trustless platform. https://x.com/geotetra_rygo6/status/1519796483419099136/photo/1

Source: X post

Also, would make sense of the $44 billion spent as that is an obscene amount to turn around and

Also, would make sense of the $44 billion spent as that is an obscene amount to turn around and make a positive investment off of

But whatever blockchain or token twitter comes to be based off of I can easily see doing a 10,000x return, making back 44 billion would be easy

Source: X post

I think one of the best engineering interviewing questions right now is "Design a web service th

I think one of the best engineering interviewing questions right now is "Design a web service that uses Crypto/NFTs in some manner that is not BS and brings true value to a user"

Tests one's engineering competency and also ability to see through hype, noise and hot air

Source: X post

At first the Elon takeover was amusing to me. The trickster part of my personality always enjoys

At first the Elon takeover was amusing to me. The trickster part of my personality always enjoys a good injection of chaos

But after reading Jack Dorsey's view on it, maybe it is just genuinely good. We don't know all the issues twitter had behind the scenes https://x.com/geotetra_rygo6/status/1519126549680717824/photo/1

Source: X post

wondering how I can pre-emptively prevent VR-developer-pattern baldness or if I should just embr

wondering how I can pre-emptively prevent VR-developer-pattern baldness or if I should just embrace the inverse-mohawk

Source: X post

@pemathedev personally, I prefer basted memes

@pemathedev personally, I prefer basted memes

Source: X post

https://x.com/geotetra_rygo6/status/1519041973365006337/photo/1

https://x.com/geotetra_rygo6/status/1519041973365006337/photo/1

Source: X post

How do you differentiate between "disinformation" and "normal people talking"?

How do you differentiate between "disinformation" and "normal people talking"?

Because most of what most people say is wrong. Me included. It's sort of how comprehension and understanding work. People talk, discuss, argue, figure it out.

Source: X post

What if we had a law where if your corporation generates more than $1 billion a year in revenue

What if we had a law where if your corporation generates more than $1 billion a year in revenue all software it produces must be open sourced.

Source: X post

I can easily think of a handful of good things to say about Elon Musk and his efforts in life.

I can easily think of a handful of good things to say about Elon Musk and his efforts in life.

Most other billionaire CEOs that come to top of my mind I find it harder to say good things about.

Source: X post

VRChat was basically the woodstock of quarantine.

VRChat was basically the woodstock of quarantine.

Source: X post

Physics isn't really a good feature of reality. I'd definitely prefer no physics in my reality.

Physics isn't really a good feature of reality. I'd definitely prefer no physics in my reality.

Source: X post

In VR culture, not VRC, but many VR pioneers and philosophers since the 80s, there is a semi-spo

In VR culture, not VRC, but many VR pioneers and philosophers since the 80s, there is a semi-spoken ethos/intent. Many circle around it but dont clearly say it

This video from about 36:40 to 50:00 is the simplest/clearest explanation I've found: https://www.youtube.com/watch?v=FWYAOGcCgWI&t=2201s

Source: X post

@aras_p @migueldeicaza @flibitijibibo can anything be done about corporate stupidity?

@aras_p @migueldeicaza @flibitijibibo can anything be done about corporate stupidity?

Source: X post

How many people can join a discord before hierarchy must be invented.

How many people can join a discord before hierarchy must be invented.

Source: X post

@prvncher Are those keyboard pants available yet?

@prvncher Are those keyboard pants available yet?

Source: X post

RT @SadlyItsBradley: Valve was officially awarded it's "VR Split Rendering" patent by the US Pat

RT @SadlyItsBradley: Valve was officially awarded it's "VR Split Rendering" patent by the US Patent Office https://x.com/SadlyItsBradley/status/1513993364840103937/photo/1

Source: X post

In 10 years I'd bet everyone will have:

In 10 years I'd bet everyone will have:

A Smartphone. Will be walk-around average computing device. Same as now

A "Compute box". Small form PC with modular upgradable hardware

Pair of "Eye/Head Phones". Will be VR HMD+headphones that can pair with smartphone or compute box

Source: X post

Communication mediums are what its always been about and always will be about

Communication mediums are what its always been about and always will be about

Just ask "Will this better enable people to communicate?"

Thats thing about metaverse graphics. Most things can be communicated with rather simple graphics and typically simpler symbolism is clearer

Source: X post

AR sounds more interesting if you live in a physical location that is interesting

AR sounds more interesting if you live in a physical location that is interesting

However, most people don't live in such a location

Spending more money on a device so it can blend virtual elements with a small beige room in the middle of nowhere is not going to be desirable

Source: X post

After getting used to hanging out in Social VR where you can spawn anything, draw in the air and

After getting used to hanging out in Social VR where you can spawn anything, draw in the air and change your entire body on the fly in order to communicate. Someone now just standing in real life making mouth noises and moving their hands around to communicate seems so weird.

Source: X post

@JCorvinusVR Sadly, I worry the most powerful will undergo a form of neurosis due to that and di

@JCorvinusVR Sadly, I worry the most powerful will undergo a form of neurosis due to that and direly try to become tyrannical to create a sense of control. Then most will follow along in the effort, until it becomes so malevolent it just implodes on itself, but only after much damage.

Source: X post

@philiprosedale @dksf Ultimately PoS and PoW are ways to protect the network by also providing w

@philiprosedale @dksf Ultimately PoS and PoW are ways to protect the network by also providing ways to reimburse the costs of those who do so. Covering the physical tangible cost of the network maintenance has to come first. Then anything can come after, on top of, that.

Source: X post

@philiprosedale @dksf I’ve actually long had pretty much this same exact idea with much of the s

@philiprosedale @dksf I’ve actually long had pretty much this same exact idea with much of the same reasoning.

But my hunch has always been it would be implemented via smart contracts on top of ETH or other once there was a decent way to maintain 1 account per person.

Source: X post

Most of what most people said throughout history was wrong. It's just human nature. People talk,

Most of what most people said throughout history was wrong. It's just human nature. People talk, they argue, they discuss, they question. Then understanding and culture evolve.

"Disinformation" I can't help but see as a concept existing to demonize what is basic human nature.

Source: X post

In most cases one's physical presence is a greater obstruction to social connection that it is a

In most cases one's physical presence is a greater obstruction to social connection that it is an aid

Think of how many people you've evaded, or evaded you, or made stifling over-assumptions, based purely of first impression of physical presence

VR enables a mind to meet a mind

Source: X post

For 10 years my weekend life was music/art events and street dancing. Which covid severely disru

For 10 years my weekend life was music/art events and street dancing. Which covid severely disrupted and led me into VRC

Now I sit here able to go back to music/art scene and really, honestly, VRC is better

This decade I expect VR to severely displace real-life social events

Source: X post

This is probably the only good thing I've seen from a more mainstream news source on the subject

This is probably the only good thing I've seen from a more mainstream news source on the subject: https://youtu.be/ZRPjgSrQ8gA

Source: X post

I feel like this study is wandering itself into some territory the people in VRChat have thoroug

I feel like this study is wandering itself into some territory the people in VRChat have thoroughly explored https://stanfordvr.com/pubs/2019/investigating-augmented-reality-animals-as-companions/

Source: X post

RT @jack: the days of usenet, irc, the web...even email (w PGP)...were amazing. centralizing dis

RT @jack: the days of usenet, irc, the web...even email (w PGP)...were amazing. centralizing discovery and identity into corporations reall…

Source: X post

Over the past year I have noticed people realizing the potential threat of the Metaverse. Which

Over the past year I have noticed people realizing the potential threat of the Metaverse. Which usually drums up the "Regulation!" subject. The next step is to think through how that'd work, particularly globally, and realize only a technological solution could work.

Source: X post

RT @keenanisalive: Really incredible (or embarrassing?) to learn after all these years that ther

RT @keenanisalive: Really incredible (or embarrassing?) to learn after all these years that there is in fact a perfect, regular tiling of t…

Source: X post

@cnlohr @redblobgames Interesting, but am wondering where would you use this instead of just a g

@cnlohr @redblobgames Interesting, but am wondering where would you use this instead of just a grid?

Source: X post

Many seem paranoid about a CBDC but I don't think it is bad by default. It could enable many fun

Many seem paranoid about a CBDC but I don't think it is bad by default. It could enable many functions of fiat to be automated and require less tax funding. Fiat will still have its uses.

However instituting a CBDC and banning cryptocurrency would be highly concerning.

Source: X post

VRChat basically commodifies communism

VRChat basically commodifies communism

Not the bad kind of communism with authoritarian governments

Rather the good kind where few hundred like-minded people form tight-knit social groups and live in them. Like the 60's hippie communes but for the virtual internet age.

Source: X post

@Maru_tweets there might be....

@Maru_tweets there might be....

Source: X post

Being just a software engineer these days I don't think is enough

Being just a software engineer these days I don't think is enough

So I also sell myself as a sort of "Choose-Your-Own-Adventure-Sci-Fi-Dystopia-Live-Action-Roleplay"

It's kind of like an escape room except the room is corporate tyranny and the puzzle is software development

Source: X post

What makes a good avatar on a screen is radically different than what makes a good avatar you we

What makes a good avatar on a screen is radically different than what makes a good avatar you wear in VR in a social setting

Avatar startups paying no attention to this will be rug pulled once VR proliferates and taking your avatar into Social VR becomes important

Source: X post

Something I keep wondering is if a $150-$200 VR HMD as good quality as the Quest 2, but requirin

Something I keep wondering is if a $150-$200 VR HMD as good quality as the Quest 2, but requiring a tether, would be as popular, if not more so, than the Quest 2

Too much assumption its popularity is due to being untethered and not just the fact it's the only good affordable HMD

Source: X post

@prvncher I was looking at this

@prvncher I was looking at this https://www.roadtovr.com/monthly-connected-vr-headsets-steam-survey-january-2022/ and this https://store.steampowered.com/hwsurvey/Steam-Hardware-Software-Survey-Welcome-to-Steam can estimate about 1.4 million Quest 2's are tethered to steam. Which made me wonder if those users care more about standalone or care more about the tether ability and if theyd opt for tethered only

Source: X post

Can EyePhones become as ubiquitous as HeadPhones?

Can EyePhones become as ubiquitous as HeadPhones?

Giving a sense over to a digital medium is always weird to society at first, but if it carries enough uses eventually it finds its way into mainstream.

Source: X post

@JCorvinusVR @gfodor Ya this what I tend to think too. The concept of the 'uncanny valley' is no

@JCorvinusVR @gfodor Ya this what I tend to think too. The concept of the 'uncanny valley' is not purely about visuals in the context of VR. That actually the more real something gets, while knowing it doesn't actually exist, the creepier it gets, and the uncanny valley can't be escaped in VR.

Source: X post

@cnlohr Only new lang I've seen that intrigues me is Zig

@cnlohr Only new lang I've seen that intrigues me is Zig

Source: X post

If its a choice between physically walking or flying without any physical work, most will choose

If its a choice between physically walking or flying without any physical work, most will choose the latter

This is why I tend to think AR content will always be second to VR content

Don't underestimate a person's tendency to be lazy. Its hard to compete with lounging on a sofa

Source: X post

@maxim_xyz @ohhshiny @Herb_Castillo Glad to see thoughts like this. I've had a similar view myse

@maxim_xyz @ohhshiny @Herb_Castillo Glad to see thoughts like this. I've had a similar view myself: https://www.linkedin.com/pulse/metaverse-particular-technical-function-rather-its-culture-goodrich/

Source: X post

@0xstella @JonVirtual @JCorvinusVR @Damo9G When you are a child, you want to be a teenager.

@0xstella @JonVirtual @JCorvinusVR @Damo9G When you are a child, you want to be a teenager.

When you are a teenager, you want to be an adult.

When you are an adult, you want to be a cat.

When you get VR, you get to the be a cat.

Source: X post

Kind of crazy to think culture so effectively demonized drugs that people are more willing to ha

Kind of crazy to think culture so effectively demonized drugs that people are more willing to have a hole drilled in their head and electrodes stuck in their brain to experience altered states of consciousness than they are to eat a plant that's been used for thousands of years.

Source: X post

Adamant to not let WA state lifting mask mandates let my now very stylish collection of post-apo

Adamant to not let WA state lifting mask mandates let my now very stylish collection of post-apocalyptic cyberpunk-esque face masks go to waste.

Source: X post

@_LucasRizzotto The way people connect and interact with each other, and the way they look, carr

@_LucasRizzotto The way people connect and interact with each other, and the way they look, carries an intrinsic relationship

But I do think FB, MS etc everything getting attention about avatars is largely missing whats important

VRC avatar dynamics represents thought in the right direction

Source: X post

The original CEO of Altspace played a big role in leading FB Horizons

The original CEO of Altspace played a big role in leading FB Horizons

I feel like he led Horizons to repeat many of the same mistakes Altspace made because he didn't stay around Altspace in its later days to realize why they were mistakes

Source: X post

The fervor and vibe I get from VRC communities reminds me very much of Quake/HL1 modding days, o

The fervor and vibe I get from VRC communities reminds me very much of Quake/HL1 modding days, or early days of BBs or IRC, or the start of myspace, or the start of youtube, start of the web itself

It's the start of a new paradigm that will grow into a cultural phenomenon

Source: X post

@prvncher I currently have 188 unfinished blog posts sitting in my LinkedIn drafts... so... mayb

@prvncher I currently have 188 unfinished blog posts sitting in my LinkedIn drafts... so... maybe

But really most of it is spread through other things I've said. I want to turn them into more practical documents

Source: X post

People think of VR as VR, this thing you occasionally strap to your face for entertainment

People think of VR as VR, this thing you occasionally strap to your face for entertainment

but you get a setup that is highly comfortable to you, doesn't cause eye strain, that you can really absorb into for hours on end

then its not VR, its just reality

Source: X post

At one point the prospect of making a web profile and posting info/photos of yourself, having we

At one point the prospect of making a web profile and posting info/photos of yourself, having web friends, was seen as some ultra-nerd degen thing

Now its the foundation of mainstream culture. For jobs, dating, whatever.

Same exact pattern will repeat with Avatars and Social VR

Source: X post

@TheVirtunaut @inputmag I know some of them, LPD uses my avacrypt system for their avatars

@TheVirtunaut @inputmag I know some of them, LPD uses my avacrypt system for their avatars

Source: X post

new article

new article https://www.linkedin.com/pulse/social-vr-addictive-ryan-goodrich/?trackingId=68BMUrPXQBGYwJ2oEaXMsw%3D%3D

Source: X post

@0xstella a good panax ginseng root extract can be quite synergizing, also neuroprotective

@0xstella a good panax ginseng root extract can be quite synergizing, also neuroprotective

Source: X post

The medium of Screen+Controller tends to make everything go towards game mechanics of shooting/k

The medium of Screen+Controller tends to make everything go towards game mechanics of shooting/killing each other

The medium of VR+FullBodyTracking tends to make everything go towards the game mechanic of dancing and cuddling

VR is inevitably just a big mass virtual rave

Source: X post

Either its the creation of a global culture in a virtual medium capable of transferring enough o

Either its the creation of a global culture in a virtual medium capable of transferring enough of the human experience to create a true sense of empathy between people in mass that transcends nations

Or its escalating war till extinction

Dont assume it wont be our lifetime

Source: X post

Do you find having your full body tracked in VR with an avatar that matches your body/self helps

Do you find having your full body tracked in VR with an avatar that matches your body/self helps to mitigate discomfort in VR?

Either helps to mitigate nausea or headaches. Or it just mitigates a sense of something being "off" or wrong/disconcerting and less enjoyable?

Source: X post

Any mental model can only account for so much, so while an accurate mental model may initially p

Any mental model can only account for so much, so while an accurate mental model may initially prove empowering, at some point it inevitably becomes a limitation which would require action perceived as irrational within the mental model to escape its limitation.

Source: X post

I think SocialVR creates aversion to fancy graphics because anything with more advanced graphics

I think SocialVR creates aversion to fancy graphics because anything with more advanced graphics is perceived as taking away from others

Rather than "awesome graphics on your avatar/world!" there is tendency to think "What makes you so special to consume so much CPU/GPU?"

Source: X post

Horizons disallows users from touching each other while VRChat is investing resource into system

Horizons disallows users from touching each other while VRChat is investing resource into systems to enable users to touch each other in more comprehensive ways

VRC is not doing this because it sounds cool, they're doing it because they pay attention to how people use Social VR https://x.com/VRChat/status/1499867858624524288

Source: X post

People tend to view physical social spaces as more valuable/pertinent than a virtual metaverse s

People tend to view physical social spaces as more valuable/pertinent than a virtual metaverse social space

Thing is, you'll meet many more people and maintain many more contacts/relationships virtually

This will increasingly make physical spaces seem secondary as time goes on

Source: X post

Probably my single most repeatedly googled image over the years https://khalilstemmler.com/files

Probably my single most repeatedly googled image over the years https://khalilstemmler.com/files/resources/umlcheatsheet.jpg

Source: X post

When it comes to the subject of modern politics, there is only one thing I always recommend peop

When it comes to the subject of modern politics, there is only one thing I always recommend people watch. HyperNormalisation by Adam Curtis https://youtu.be/thLgkQBFTPw

Source: X post

As VR grows, I expect it to be highly disruptive to the automotive industry.

As VR grows, I expect it to be highly disruptive to the automotive industry.

Most cases where someone currently transports their entire body, they don't really need to, they only need to transport their consciousness/presence.

Source: X post

Zenith has already fallen off the top 15 list for popularity https://x.com/geotetra_rygo6/status

Zenith has already fallen off the top 15 list for popularity https://x.com/geotetra_rygo6/status/1498205617202216964/photo/1

Source: X post

@WolfNilo magfest had a 'VRChat Portal' setup where VRChat streamed to a screen in the festival,

@WolfNilo magfest had a 'VRChat Portal' setup where VRChat streamed to a screen in the festival, then a camera in the festival streamed to a screen in vrchat and people could interact back and forth

Source: X post

What some miss about VR is that people are more interesting than games

What some miss about VR is that people are more interesting than games

Thus far games haven't contended with this as other people weren't captured well

But in VR with all the latest tracking, it captures other people well enough that people become more interesting than gameplay

Source: X post

The problem with our times is everything has reached a point of complexity and mass scale that t

The problem with our times is everything has reached a point of complexity and mass scale that the degree of overarching perspective we have traditionally been used to now blurs out so much detail it is incapable of producing meaningful insight.

Source: X post

Problem with Rust and type systems in general that I see is they take away discretion of 'correc

Problem with Rust and type systems in general that I see is they take away discretion of 'correct' on the exact problem the programmer is currently working on and constrains it to a conception of 'correct' conceived of years prior by whoever made the type system.

Source: X post

I've killed so many virtual monsters and virtual people over the years that I've pretty much los

I've killed so many virtual monsters and virtual people over the years that I've pretty much lost all interest in games that have shooting and fighting as a primary mechanic.

Source: X post

I think we're at the point with graphics where the next marginal iteration of realism just isn't

I think we're at the point with graphics where the next marginal iteration of realism just isn't a meaningful improvement of experience.

Also, who is to say a DSLR camera represents the peak capacity of human perception?

It will probably start going a new direction.

Source: X post

and its just not possible for someone, no matter how smart, to conceive of every problem and sce

and its just not possible for someone, no matter how smart, to conceive of every problem and scenario that will be encountered in a language. So at some point a type system will inevitably force you to do really whacky things that are 'incorrect' by anyone with good sense

Source: X post

@AllisonDeere I just looked and it's not in the top 28 most popular on quest store

@AllisonDeere I just looked and it's not in the top 28 most popular on quest store

Source: X post

@0xstella issue I was running into is that unsafe doesn't end you up in a fully unsafe context,

@0xstella issue I was running into is that unsafe doesn't end you up in a fully unsafe context, some things are still enforced

Source: X post

@0xstella I like idea of rust for smaller, constrained, problems very congruent with its assumpt

@0xstella I like idea of rust for smaller, constrained, problems very congruent with its assumptions, then used as libs in a system

but then I think through it replacing C/C++ for an OS or game engine, I get the sense it'd get weird a lot of places and wouldn't be a wholesale upgrade

Source: X post

I'd prefer a society where incorrect information exists than a society where incorrect informati

I'd prefer a society where incorrect information exists than a society where incorrect information is not allowed to exist.

Source: X post

@Zakka4real I wouldn't necessarily disagree. I think discussing this is more nuanced than what t

@Zakka4real I wouldn't necessarily disagree. I think discussing this is more nuanced than what twitter would be good for

But with "Self-Virtualization" Im trying to refer to something that can only be done with VR and tracking tech. Making a virtual self your mind accepts as your own body

Source: X post

This year I decided not to renew my Modo license. Blender is good enough now.

This year I decided not to renew my Modo license. Blender is good enough now.

Source: X post

Is there really much difference between being completely fixated and absorbed into a screen atta

Is there really much difference between being completely fixated and absorbed into a screen attached to a wall compared to a screen strapped to your face?

I dont think so

Really the screen strapped to your face can be far healthier when its used for interacting with real people

Source: X post

https://medium.com/codex/what-are-the-greenest-programming-languages-e738774b1957 https://x.com/

https://medium.com/codex/what-are-the-greenest-programming-languages-e738774b1957 https://x.com/geotetra_rygo6/status/1497083387873415171/photo/1

Source: X post

C Proverbs:

C Proverbs: Trust the programmer Dont prevent programmer from doing what needs to be done Keep language small and simple Provide only one way to do an operation http://www.open-std.org/jtc1/sc22/wg14/www/C99RationaleV5.10.pdf

Rust Proverbs: Dont trust programmer Be preventative to programmer Complicate much as possible

Source: X post

@0xstella I have no idea. Different library used? Or maybe something in the TS compiler is that

@0xstella I have no idea. Different library used? Or maybe something in the TS compiler is that bad?

Source: X post

@z15design The price which determines mainstream or niche is dependent on the value that price p

@z15design The price which determines mainstream or niche is dependent on the value that price provides to someone's life.

Source: X post

@z15design I think what I am trying say is once VR gets good enough at everything it could be go

@z15design I think what I am trying say is once VR gets good enough at everything it could be good for and grows beyond gaming, it won't be an impulse vanity purchase. It will be seen as a critical device, probably one of the most critical.

Source: X post

@LeChateauPicard @catapultcap The Index was the first headset I could wear all day without eyest

@LeChateauPicard @catapultcap The Index was the first headset I could wear all day without eyestrain or discomfort. But it also fits my face well, some still have issue with it

Improving ergonomics and shrinking devices I see as one of the major prerequisites still

Source: X post

In less than a few decades everyone will be spending a significant part of everyday life in VR f

In less than a few decades everyone will be spending a significant part of everyday life in VR for survival

Just the same as we do with computers and web right now

Right now is the time to be on guard with how VR is being shaped

Another 5 years may be too late to change course

Source: X post

I'd expect in the Metaverse a single artist could generate as much money as an entire AAA game j

I'd expect in the Metaverse a single artist could generate as much money as an entire AAA game just from one avatar or from one hangout world going viral.

It has the potential to move 3D art into the same kind of paradigm and business model as videos or music on YouTube.

Source: X post

@2annihilation Oh I dropped more than grand. I have all of the headsets.

@2annihilation Oh I dropped more than grand. I have all of the headsets.

It's more to say, once VR advances to doing decently well all of the things it could, it will be seen as more valuable than a console and constraining the device to keep price comparable to a game console won't be needed

Source: X post

@02CuRiOuS Personally, I don't find games to be the best use case for VR.

@02CuRiOuS Personally, I don't find games to be the best use case for VR.

Source: X post

The prospect of sitting in a small habitat immersed in VR probably sounds dystopian to most

The prospect of sitting in a small habitat immersed in VR probably sounds dystopian to most

But imagine it in a scenario after space migration

The prospect of sitting in a small habitat floating in the vacuum of space -without- VR sounds quite dystopian

VR is a prerequisite

Source: X post

Solution to issues of public lobbies in Social VR is to not have public lobbies

Solution to issues of public lobbies in Social VR is to not have public lobbies

People dumped into VR fresh from the shittiness of the web culture inevitably turn the VR space into shit

They need to be invited to private communities, taught about the culture and proper conduct

Source: X post

@Maru_tweets I agree. I've long seen the way Discord organizes itself as the ideal thing for Soc

@Maru_tweets I agree. I've long seen the way Discord organizes itself as the ideal thing for Social VR to follow

Source: X post

https://x.com/geotetra_rygo6/status/1496594451070087168/photo/1

https://x.com/geotetra_rygo6/status/1496594451070087168/photo/1

Source: X post

$300 for a VR headset to play games is pretty steep for most

$300 for a VR headset to play games is pretty steep for most

However $1000 for a VR headset that can replace your monitor, replace your TV and enable enough immersion that physical travel is not as necessary to visit people. That is quite economical for everyone.

Source: X post

VRChat has 20k-30k steam CCU

VRChat has 20k-30k steam CCU

Typically you multiply CCU by 10 to get DAU, then multiply by 10 to get MAU

This site estimates 1.6 mil "active users" for VRC. https://playtracker.net/insight/game/2704 Seems appropriate for MAU

Then double for Quest

VRC probably has 3 million monthly active users

Source: X post

Tyranny being justified does not make it not tyranny. It is still called tyranny.

Tyranny being justified does not make it not tyranny. It is still called tyranny.

There is a difference between recognition of reality and debate concerning it versus entering into a cognitive dissonance.

Debate is a staple of society. Compounding delusion marks its end.

Source: X post

This is why people won't be 3D hyper-realistic scan of themselves in the Metaverse. It's not a d

This is why people won't be 3D hyper-realistic scan of themselves in the Metaverse. It's not a difference of sense of aesthetic. It's a difference of being able to communicate in the language of the medium and not being able to. It is akin to literacy vs illiteracy.

Source: X post

This is because, we are not the visible surface of our skin.

This is because, we are not the visible surface of our skin.

A 3D scan of a person no better captures "Them" then a photograph does.

This is the peculiar thing about Avatarism and stylization. It's not purely about aesthetics. It is about communication.

Source: X post

The relationships people develop with each through actively interacting with each other in Socia

The relationships people develop with each through actively interacting with each other in Social VR are more real than the constrained sampling of worldview that gets passively conditioned into the populace through television.

Source: X post

The Metaverse needs to look as realistic as possible because the low popularity of synthesized e

The Metaverse needs to look as realistic as possible because the low popularity of synthesized electronic music clearly demonstrates that people want their media to resemble things from physical reality as much as possible.

... Or ... wait a sec....

Source: X post

My biggest bet on VR

My biggest bet on VR

Platforms which support fully custom avatars will inevitably and continually absorb the market share of those that don't

No matter where they start, gradually everyone will develop a virtual sense of self, a social group, then end up where they can be that

Source: X post

If I were to ask, "Explain who you are", very rarely would someone pass me a photo of themselves

If I were to ask, "Explain who you are", very rarely would someone pass me a photo of themselves and say "Thats it!"

Rather they'd have a long stream of symbolic mental constructs they would desire to communicate.

We've long perceived ourselves as symbolic constructs.

Source: X post

@cnlohr im hoping this too

@cnlohr im hoping this too

Source: X post

Apple App Store policies applied to the collective synthetic reality we will inhabit is one of t

Apple App Store policies applied to the collective synthetic reality we will inhabit is one of the most concerning forms of tyranny currently on our horizon.

People don't realize yet it isn't an app in your pocket, it will be your daily lived reality.

Source: X post

@dannyaroslavski Everything just optimizes around its incentive structure.

@dannyaroslavski Everything just optimizes around its incentive structure.

Which truth and clarity has really only ever interested a small part of the population.

I always liked http://ourworldindata.org for general articles and the BMJ for medical related.

Source: X post

The biggest allure of a new fancy iPhone that justifies its cost for most is the camera. Because

The biggest allure of a new fancy iPhone that justifies its cost for most is the camera. Because it enables creation of media to better participate in Social Media.

This will be true for VR too. Hardware which better enables creation for participation in Social VR will win.

Source: X post

Once upon a time it was weird to take photos of yourself for the web.

Once upon a time it was weird to take photos of yourself for the web.

Now the capacity to take better photos for the web is the primary selling feature of the iPhone.

Source: X post

Most concerning thing to me about covid is we now have ample data and studies analyzing any and

Most concerning thing to me about covid is we now have ample data and studies analyzing any and everything related

But the political climate has made it such that we can't have nuanced rational scientific discourse about such things, so collectively society won't learn anything

Source: X post

I find many think of VRChat as a new Second Life

I find many think of VRChat as a new Second Life

It really isn't

It's so fundamentally different. Because focus is not on building a world, it's on building your virtual self. VR HMDs with full body tracking and other tracking tech is a whole new league of self-virutalization

Source: X post

@AntonHand "It doesn't pretend to be my body, or be 'me'"

@AntonHand "It doesn't pretend to be my body, or be 'me'"

But right now, in me talking to you, it literally is.

Source: X post

@AntonHand I guess for me it's the exact counter reason. I never felt like the word "me" was eve

@AntonHand I guess for me it's the exact counter reason. I never felt like the word "me" was even 1% "me". Or that a Twitter handle was even 1% "me". I perceive myself as being far more volumetric and 3D.

But I guess some will see themselves as a flat series of characters, and some won't.

Source: X post

@AntonHand Culture is predominately a kind of text-based simulacrum. We don't perceive the liter

@AntonHand Culture is predominately a kind of text-based simulacrum. We don't perceive the literally existing form of each other person through cultural concept. Text-based concepts from our culture trigger our mind to perceive an illusory body representative of other people.

Source: X post

What if the human body is just kind of like a larval form that is supposed go through a kind of

What if the human body is just kind of like a larval form that is supposed go through a kind of cocooning and transmutation process to release itself into a higher dimensional sate of being....

But that cocoon is just a VR setup and the higher dimensional space the metaverse.

Source: X post

@JCorvinusVR For a while you couldn't get just the cable so you had to buy a whole new Index.

@JCorvinusVR For a while you couldn't get just the cable so you had to buy a whole new Index.

I'm on my third Index

Source: X post

Rather than a mass codebase/system forced to be proper by strict comprehensive typing, I'd prefe

Rather than a mass codebase/system forced to be proper by strict comprehensive typing, I'd prefer many smaller modular codebases/applications which are sandboxed from wrecking the whole system with highly verbose logging to tell you what is wrong with them.

Source: X post

@prvncher Then the severity of drama with VRC avatar creators made me conclude I don't want to b

@prvncher Then the severity of drama with VRC avatar creators made me conclude I don't want to be in the middle of endless bickering about what percentage some anime eyelash texture or tail 3D model is a derivative of another and who should get what amount. So, I lost interest.

Source: X post

@prvncher Something like this was the main focus of the one time I did write out a white paper f

@prvncher Something like this was the main focus of the one time I did write out a white paper for a crypto project. Was trying to figure out how to enable an ecosystem to track derivative works of 3D assets and reward everyone in the chain if something sells.

Source: X post

@prvncher Enforcement of linking truly derivative 3D models however is something I could not ful

@prvncher Enforcement of linking truly derivative 3D models however is something I could not fully figure out in an objective technical sense

Concluded such a system would have to be manually curated by someone well-versed in the content they put on it. Would have to build a trusted brand

Source: X post

I think the latter can more effectively replicate the

I think the latter can more effectively replicate the merits of biological evolution and ultimately end up leading to something much more.

Source: X post

@cnlohr I know I just wanted to be facetious on twitter

@cnlohr I know I just wanted to be facetious on twitter

Source: X post

https://www.eff.org/cyberspace-independence

https://www.eff.org/cyberspace-independence

Source: X post

wrote new article:

wrote new article: https://www.linkedin.com/pulse/metaverse-just-web-20-3d-ryan-goodrich/?published=t&trackingId=QiDOHYlTTTyhmsqI6yLDoA%3D%3D

Source: X post

@TheVirtunaut Ya, but I don't think people tend to realize with VR its different than a video ga

@TheVirtunaut Ya, but I don't think people tend to realize with VR its different than a video game.

A screenshot or video of the screen of a game gives you a good sense of what it is like to play that video game.

A screenshot of VR gives as much sense as a photo of a location.

Source: X post

Screenshots are to VRChat what photos are to someone's vacation.

Screenshots are to VRChat what photos are to someone's vacation.

Sure, you can see the location and things there on your screen.

But it doesn't give any real sense of what it's like to actually be there.

Source: X post

@JCorvinusVR @prvncher which vegan ice cream is totally random comparison, but Ive been doing mo

@JCorvinusVR @prvncher which vegan ice cream is totally random comparison, but Ive been doing more non-digital activities lately and its really stuck out to me how certain things most probably think are simpler than writing code really arent

Source: X post

@JCorvinusVR @prvncher I think I mean more to say its not hard relative to things people tend to

@JCorvinusVR @prvncher I think I mean more to say its not hard relative to things people tend to think its harder than

like this past year I got into making various foods from scratch. Perfecting vegan from scratch icecream has taken more effort than I think itd take someone to get up to speed with JS

Source: X post

Corporations:

Corporations: "Let's spend millions to broadcast ____ big name into VR!"

Me and my friends in VRChat: *Literally entranced by colorful objects to play with and a mirror for 8 hours straight*

Source: X post

Weirdest thing to me about tech industry is how many seem to think programming is really hard.

Weirdest thing to me about tech industry is how many seem to think programming is really hard.

But it's not.

It's like learning any language. Engross anyone in the culture of it for some months and they'll catch onto it.

Issue is most don't have access to programmer culture.

Source: X post

The more time I spent in VR the less it became a game.

The more time I spent in VR the less it became a game.

Source: X post

Social VR will probably rug pull Social Media.

Social VR will probably rug pull Social Media.

Someone being a big influencer on Twitter doesn't mean they will be enjoyable to hang out with in-person (virtually) or that the community they curate will be good.

I suspect most influencers won't translate to the Metaverse.

Source: X post

A game in VR is debatably better than a game on a screen

A game in VR is debatably better than a game on a screen

But an avatar controlled by someone in VR + full body tracking is far more engaging than someone controlling it with a gamepad

What VR takes to an entirely new league is the way you experience other people virtually

Source: X post

@Tuism @prvncher My personal bet is that VR is going to be one of the cases where a new medium e

@Tuism @prvncher My personal bet is that VR is going to be one of the cases where a new medium effects enough fundamental changes in society that it changes the meaning of mainstream.

Source: X post

Being more expressive tends to enable better communication.

Being more expressive tends to enable better communication.

Having your eyes be double size with exaggerated expressions would enable discretion of your emotional state at greater distance.

This is why people will end up in highly stylized avatars. The utility incentivizes it.

Source: X post

@prvncher Many avante garde underground cultures are the same way

@prvncher Many avante garde underground cultures are the same way

The experience of requiring real investment of energy to overcome some barrier, being genuinely uncomfortable and then finding some oasis in the drought. It plays into some psychological aspects of what makes it work

Source: X post

@prvncher It's like the line from the Matrix.

@prvncher It's like the line from the Matrix.

"The first Matrix was created too perfect, and people's minds rejected it, so we had to recreate it with imperfections"

Source: X post

@prvncher Horizons is like going into an orderly private school or a culturally homogenous corpo

@prvncher Horizons is like going into an orderly private school or a culturally homogenous corporation.

VRChat is like going into the burgeoning bohemian artistic avante garde underground culture of a city.

It's nothing less than attempting to start a new art/cultural movement.

Source: X post

@technobaboo ya was thinking of calling it 'MyBooth'

@technobaboo ya was thinking of calling it 'MyBooth'

Source: X post

@technobaboo Planning to have it be a Jekyll site on GH pages. Then anyone could fork, update co

@technobaboo Planning to have it be a Jekyll site on GH pages. Then anyone could fork, update config with their wallet/assets. In minutes launch a low fee globally available digital asset store.

Intent is to create the cheapest way possible for someone to make their own digital asset store.

Source: X post

@technobaboo I've been working on something kind of like this.

@technobaboo I've been working on something kind of like this.

It's a sales platform that sells non-tradable NFTs. The NFT is just a receipt for a sale of some digital good.

Was planning on using USDC on Solana as the default currency.

I suspect this will be the main use case of NFTs.

Source: X post

@technobaboo Accepting credit cards is of course best for practicality. But it kind of ruins the

@technobaboo Accepting credit cards is of course best for practicality. But it kind of ruins the POC of cheapest/simplest possible digital asset store since credit cards take 3% and it can't be as simple as just "fork and change your wallet ID in .config file"

Source: X post

@technobaboo @0xstella You know I thought about that a lot too because I'd really like it to tak

@technobaboo @0xstella You know I thought about that a lot too because I'd really like it to take LTC/doge. But the thing about NFT receipts is it's just so much simpler to do receipts as an NFT smart contract, otherwise you have to set up some server to watch for LTC transactions.

Source: X post

@technobaboo @0xstella @JCorvinusVR So why not make a stablecoin pegged directly to the cost of

@technobaboo @0xstella @JCorvinusVR So why not make a stablecoin pegged directly to the cost of common goods based on the CPI? It'd be even more 'stable' than USD in terms of being stable about the things people care about.

Source: X post

@technobaboo @0xstella @JCorvinusVR I assume this thread is a little facetious but this is poten

@technobaboo @0xstella @JCorvinusVR I assume this thread is a little facetious but this is potentially a great idea.

People like USD/stablecoins because they remain stable to the cost of common goods. But you still get inflation and USD loses value in relation to common goods. This has been bad the past year.

Source: X post

Many younger people weren't around when the internet collectively uprooted the music/film indust

Many younger people weren't around when the internet collectively uprooted the music/film industry with P2P sharing. Rendered the entire legal system obsolete from being able to do anything and forced an entirely new business model to form.

Society is an affect of technology.

Source: X post

I've always wondered if someone has ever managed to hack a banking system, add a few extra zeroe

I've always wondered if someone has ever managed to hack a banking system, add a few extra zeroes to something and get away with it.

Some security expert on the inside for years would probably have the knowledge to do so.

I'd find it hard to believe it's never happened once.

Source: X post

In 1997 in the 6th grade, I was the first in my school to discover you could download MP3s off t

In 1997 in the 6th grade, I was the first in my school to discover you could download MP3s off the web and listen to them.

I explained this to all my class. For which I became a social outcast for doing something so weird, stupid and fringe as "listening to the internet'.

Source: X post

The reason Facebook got popular is because FB didn't design the content on it, people did.

The reason Facebook got popular is because FB didn't design the content on it, people did.

Imagine a FB where you'd select from a subset of pre-arranged photographic representations of yourself.

This would obviously fail.

But the 3D equivalent of that is their avatar strategy.

Source: X post

I'd expect most will prefer full VR immersion over MR because I see many use VRC just to change

I'd expect most will prefer full VR immersion over MR because I see many use VRC just to change their environment. Your living space effects your emotional state. Many can't afford an ideal living space. It seems sitting in an ideal space in VR does provide improvement.

Source: X post

When people meet in Social VR and talk about life, what's really important to them. It is hard t

When people meet in Social VR and talk about life, what's really important to them. It is hard to discern where that person lives, what their politics or religion are.

It proves to me when you remove the BS that mainstream media tries to layer on, people aren't that different.

Source: X post

@JCorvinusVR Ironically, I consider Social VR the only way to get an accurate overview perspecti

@JCorvinusVR Ironically, I consider Social VR the only way to get an accurate overview perspective on reality.

There's no other way you can get to know and consistently stay in touch with people, in-person (virtually), from all over the world to get a sense of what the world really is like.

Source: X post

I know what my brain does when it's in a reality that looks like reality and functions like real

I know what my brain does when it's in a reality that looks like reality and functions like reality.

But what can it do when it's in a reality that doesn't function nor look like reality? I get the sense the truly novel and uniquely valuable thing is in that territory.

Source: X post

@0xstella It's one reason I got so absorbed in it.

@0xstella It's one reason I got so absorbed in it.

There are occasional overt exceptions.

But it just made realize how delusional the image of the US is that mainstream media paints.

Talking to people from all over 1-on-1 (virtually) ends up creating such a different framing of the US.

Source: X post

RT @vr_hai: We tried a networked version of my world with @ShanamoN_555_VR and other members of

RT @vr_hai: We tried a networked version of my world with @ShanamoN_555_VR and other members of infinite walking communities ⭐

The orange…

Source: X post

I would not be surprised if you could produce a chemical that puts someone into a very controlla

I would not be surprised if you could produce a chemical that puts someone into a very controllable and comfortably hypnagogic hallucinatory state, so when they go into a VR HMD, their mind experiences it as real.

Source: X post

Designing an organic molecule to fit into the synapses of your brain is in essence a form of nan

Designing an organic molecule to fit into the synapses of your brain is in essence a form of nano-technological engineering to augment your brain

This is one reservation I have with any invasive BCI. Their proponents tend to discount what brain augmentations already exist.

Source: X post

Before trying to put silicon in the brain, should have a deep and thorough understanding of what

Before trying to put silicon in the brain, should have a deep and thorough understanding of what organic compounds already exist, what functions of the brain they activate. Then how they could be altered to produce more specific and controlled brain function activations.

Source: X post

This makes me think based purely on economic incentives. There is no way fiat can compete with c

This makes me think based purely on economic incentives. There is no way fiat can compete with crypto in a global virtual economy.

As our culture and economies become more based entirely in the virtual, and as they become more global, crypto becoming predominate is inevitable.

Source: X post

I've been looking to make a virtual goods store.

I've been looking to make a virtual goods store.

It's pretty striking to me how with Solana, in less than a day, I can setup a store to sell virtual goods globally at ~.00025 cents per transaction.

Whereas best I can do with fiat is sell to a few dozen countries with 3% fees.

Source: X post

Having the global economy be denominated in USD is a mechanic of oppression and exploitation use

Having the global economy be denominated in USD is a mechanic of oppression and exploitation used by not the best of people for not the best of things.

It's just very scary to consider how much disruption it'd cause to change it, so we don't talk about.

Source: X post

Bitcoin is the closest thing we've had as a viable solution to this.

Bitcoin is the closest thing we've had as a viable solution to this.

I think a lot about if power structures as malevolent as what has formed behind USD could also form behind Bitcoin.

Maybe they could. But at least the ledger would be entirely public. So at least we'd know.

Source: X post

I wish I could login to everything with my MetaMask wallet. For all the shit UX existing in Web3

I wish I could login to everything with my MetaMask wallet. For all the shit UX existing in Web3, the act of being able to use your crypto wallet as a universal identification across any service is actually an UX improvement.

Source: X post

I realize the Metaverse is essentially the Web 2.0 of 3D

I realize the Metaverse is essentially the Web 2.0 of 3D

As in, the Metaverse is all about user-generated-content

Which Roblox/VRC already are, but in Web 2.0 Youtube/FB/Twitter content is portable between sites, it's a UGC ecosystem. The metaverse will be that with 3D content

Source: X post

@dannyaroslavski Ya... enhancing physical reality with virtual objects seems odd to me too.

@dannyaroslavski Ya... enhancing physical reality with virtual objects seems odd to me too.

You know physical reality can be extremely awesome in its own way, I wouldn't want to cover it up with virtual stuff.

If I am going virtual, I want to deep dive into full virtual immersion.

Source: X post

When switching your face and body is as easy as switching a channel on TV or Spotify everyone is

When switching your face and body is as easy as switching a channel on TV or Spotify everyone is going to play with that very liberally.

Everyone is going to end up some weird hybrid mishmash of anime-esque, stylized human, abstract, alien, furry creature thing in the Metaverse.

Source: X post

@technobaboo @Demonkid Something that's going to get complicated is that VRChat or any 'True' me

@technobaboo @Demonkid Something that's going to get complicated is that VRChat or any 'True' metaverse just ends up being a reflection of you.

If you're an asshole you won't make friends, you'll end up in ugly parts, you'll call the game shit.

But off somewhere else some group has a little utopia.

Source: X post

@ManuVision Well... what do you want to make

@ManuVision Well... what do you want to make

Source: X post

@ManuVision Unity's mesh modification API with burst and the job system is pretty impressive. If

@ManuVision Unity's mesh modification API with burst and the job system is pretty impressive. If all you want to do is manipulate meshes, but don't need Blender tools, it's worth looking at.

Source: X post

@JCorvinusVR I think this is pretty what vrchat already is

@JCorvinusVR I think this is pretty what vrchat already is

Source: X post

I greatly look forward to the day when attempting to make a policy change in government is done

I greatly look forward to the day when attempting to make a policy change in government is done by submitting a pull request to a repo to be voted upon by a DAO, then merged and deployed to the distributed AI or economic system.

Source: X post

Would like to point out DataDash has been predicting this correction for close to a month now:

Would like to point out DataDash has been predicting this correction for close to a month now: https://www.youtube.com/c/DataDash

He tends to be one of the best in TA and market analysis. Since I started regularly watching his channel I have felt much more comfortable with crypto markets.

Source: X post

@BitcoinMagazine Link to source?

@BitcoinMagazine Link to source?

Source: X post

@JCorvinusVR I think the business models of Netflix and TV shows are in serious trouble once Soc

@JCorvinusVR I think the business models of Netflix and TV shows are in serious trouble once Social VR becomes ubiquitous and people realize that yes VRChat can always be that interesting, and even more so. It's like a rolling never-ending amplified reality TV show you participate in.

Source: X post

VRChat:

VRChat: Great technological advent showing the future of VR and human communication? or ... Nerds discovering socializing? or ... ... Both?

Source: X post

Sometimes I wonder how the US got to this point where corporate interest have bought out the ent

Sometimes I wonder how the US got to this point where corporate interest have bought out the entire US Fed.

Then I watched how various media efforts have managed to convince some percentage of people that crypto, not USD/VISA, is a product of corporations.

I now understand. https://x.com/Saberspark/status/1484284725015592966

Source: X post

RT @songadaymann: Web2 has terrible incentives.

RT @songadaymann: Web2 has terrible incentives.

It runs on ad $ which means the algos must be tuned 2 spew the most wild shit 24/7.

Thus,…

Source: X post

People decrying NFTs for just being receipts are missing that NFTs actually are really good at j

People decrying NFTs for just being receipts are missing that NFTs actually are really good at just being receipts for crypto payments.

Solana transaction cost is ~$0.00025 whereas Stripe is roughly ~3%. A crypto digital goods store with NFT receipts makes a lot of sense.

Source: X post

It's very easy to argue that Bitcoin and crypto have greater potential to empower the average pe

It's very easy to argue that Bitcoin and crypto have greater potential to empower the average person compared to USD and centralized banks.

This is why crypto has turned contentious. Existing power structures are very skilled at turning people against their own best interests.

Source: X post

Early in my life I discovered if you tell an older programmer you have an interest in programmin

Early in my life I discovered if you tell an older programmer you have an interest in programming then they uncontrollably unload their entire brain on you for hours, potentially forever.

It's some law of nature I assume.

Basically, I exploited this for a free education.

Source: X post

An NFT is not a digitally scarce auctionable art asset.

An NFT is not a digitally scarce auctionable art asset.

Rather, a digitally scarce auctionable art asset can be an NFT.

An NFT is just a programming pattern. It's like being mad at a HashTable.

The programmer in me cringes every time I see the term NFT misused.

Source: X post

The more socialized people become to a wider array of people the more tolerant and understanding

The more socialized people become to a wider array of people the more tolerant and understanding they become. I think intelligence follows understanding more.

For most people, only way to get access to dozens of people every day of a wide variety to spend time with is Social VR.

Source: X post

Imagine if every transaction of every politician and CEO was immutably tracked on a public ledge

Imagine if every transaction of every politician and CEO was immutably tracked on a public ledger. Few things are more threatening.

I think a scenario of no financial privacy ends up in favor of the average person. Average people never truly had privacy in the first place.

Source: X post

Some say VR is obfuscating or allowing escape from "actual" reality.

Some say VR is obfuscating or allowing escape from "actual" reality.

But truth is most of what people call and perceive as reality is just a projection of their mind that was conditioned into them by television.

Our society hasn't dealt with "actual" reality for decades.

Source: X post

@amaldorai Sadly the world isn't public, if they make it public I'll post it.

@amaldorai Sadly the world isn't public, if they make it public I'll post it.

Source: X post

Until OpenSea is resting on a decentralized indexer I think everyone needs to start calling it o

Until OpenSea is resting on a decentralized indexer I think everyone needs to start calling it out as a Web3 grift.

https://youtu.be/_1PSvqho8UE

Source: X post

@TheVirtunaut I have a video of the world but don't really want to post it publicly because I di

@TheVirtunaut I have a video of the world but don't really want to post it publicly because I didn't make the world, and they haven't made the world public.

I don't even remember who did make it actually...

Source: X post

Someone made a world in VRC with a hyperbolic fractal you can fly through.

Someone made a world in VRC with a hyperbolic fractal you can fly through.

After spending time in hyperbolic space in VR I can easily see that becoming the preferred type of space projection in VR. Basically, gives you superpowers to see further and traverse space quicker.

Source: X post

@dannyaroslavski I'm probably butchering this explanation though from the perspective of someone

@dannyaroslavski I'm probably butchering this explanation though from the perspective of someone who actually knows the math behind it well.

Source: X post

@dannyaroslavski Found this image which shows it well, I think. This would be a top-down view of

@dannyaroslavski Found this image which shows it well, I think. This would be a top-down view of a perfectly square grid. http://aleph0.clarku.edu/~djoyce/poincare/tess_4_5_l.gif In hyperbolic a perfectly square tile doesn't have 8 tiles around it. It could have 12, 16, 32, however many you want, and it compounds with distance.

Source: X post

@dannyaroslavski Finding this rather hard to explain but let me try.

@dannyaroslavski Finding this rather hard to explain but let me try.

In hyperbolic projection the further the distance from you the more space gets compacted together. So, you see more in the distance, but also that distance isn't as far away as it looks, as its not far, it is compacted.

Source: X post

@dannyaroslavski But it weirdly works because the compacting of space is dependent on distance,

@dannyaroslavski But it weirdly works because the compacting of space is dependent on distance, so up close it feels similar to Euclidean. Just you see way more in the distance and more directions are possible, so you can see more and get to more quicker.

Source: X post

@dannyaroslavski Also, in hyperbolic there are not just 4 directions, there can be as many as yo

@dannyaroslavski Also, in hyperbolic there are not just 4 directions, there can be as many as you want, so there is more available space with a single step any direction.

Those directions also exponentially compound with distance so there can be a lot more space in any given direction.

Source: X post

@0xstella A certain kind of personality type desires a state of fear. I never really understood

@0xstella A certain kind of personality type desires a state of fear. I never really understood why.

Source: X post

Today after 13 years of using Unity I finally cloned its native source and built it from scratch

Today after 13 years of using Unity I finally cloned its native source and built it from scratch.

Kind of interesting to see the native implementation and internal workings of so many methods that have been the cornerstone, and bane, of my life for so long.

Source: X post

@TheVrChica VR I never found addictive. But hanging out with friends in vrchat is addictive. Whi

@TheVrChica VR I never found addictive. But hanging out with friends in vrchat is addictive. Which it seems odd to me to call hanging out with people an addiction because thats just human nature. Spending more time socializing is probably better than staring at netflix or news like most do.

Source: X post

The Metaverse is the `Spatial Internet`

The Metaverse is the Spatial Internet

It is not the Spatial Mobile App

Source: X post

@kitaedesigns Ya, I don't think the digital scarcity thing is a good mentality.

@kitaedesigns Ya, I don't think the digital scarcity thing is a good mentality.

But it's just what people do with new things; they first project the old onto it until they discover/realize the real nature of it.

Source: X post

@0xstella Rumor has it he is one the lewd mute anime girls in VRC.

@0xstella Rumor has it he is one the lewd mute anime girls in VRC.

Source: X post

@0xstella I suspect once Zuckerberg realizes what the metaverse will inevitably turn into he wil

@0xstella I suspect once Zuckerberg realizes what the metaverse will inevitably turn into he will rename the company back to Facebook.

Source: X post

@0xstella I think it could get more people to run servers. Mobile didn't kill PC, sales for PC p

@0xstella I think it could get more people to run servers. Mobile didn't kill PC, sales for PC parts and PCs still have been increasing.

Mining ETH for years was a pain to get working, it's become easier, but not enough. I think if there were a 'One-Click Miner' on Steam more would do it.

Source: X post

@0xstella Another thing it's not entirely the same as running a server because you can start and

@0xstella Another thing it's not entirely the same as running a server because you can start and stop it

I mine ETH overnight. The ability to allocate part of a computer to help some P2P network to help generate a little money I think can be attractive to average people if it was easier

Source: X post

New article:

New article: https://www.linkedin.com/pulse/problems-web3-ryan-goodrich/?published=t&trackingId=jv4KOEyLSfaNtrGIMy1Wog%3D%3D

Source: X post

I can't tell if me only liking VR for calming use cases is me being old or if there is something

I can't tell if me only liking VR for calming use cases is me being old or if there is something particular about the medium of VR that just makes it better for calming uses rather than hectic/stressful ones like shooter games.

Source: X post

Take the ETH GPU-only PoW alghorithm.

Take the ETH GPU-only PoW alghorithm.

Then make it so all rewards are distributed based on time spent, with epoch length as limit.

This would then incentivize people to use the slowest chip, least amount of energy.

Is there is any merit to this idea or do I need to go bed?

Source: X post

Once most people are arguing in social VR rather than text I think we'll see a societal improvem

Once most people are arguing in social VR rather than text I think we'll see a societal improvement.

Aside from VR enabling vocal nuance and body language for fuller communication. It's just way harder to develop resent towards some cute little animal or anime thing or whatever.

Source: X post

If you have any belief in that singularity thing. That means the future will increasingly get le

If you have any belief in that singularity thing. That means the future will increasingly get less predictable and less controllable no matter what.

If your strategy relies on better controlling X so you can get Y predictable result, you're probably going to have a bad time.

Source: X post

Ready Player Me says that they are used in 1060+ Apps but I think that is a bad metric.

Ready Player Me says that they are used in 1060+ Apps but I think that is a bad metric.

The better metric is how many people use them in something like VRChat where there is complete avatar freedom.

Which across 1000+ VRC users I've seen maybe 5.

Source: X post

I am glad more are realizing this:

I am glad more are realizing this: https://medium.com/predict/regulating-the-metaverse-7c893ed00865

But the next thing that follows is thinking through the exact mechanics and specifics of regulatory policy.

If you take that far enough, I think it becomes clear a technological solution is the only one that can work.

Source: X post

@xr_professor @0xstella I use Orchid OXT regularly. Helium HNT LoRaWAN network is impressive, I

@xr_professor @0xstella I use Orchid OXT regularly. Helium HNT LoRaWAN network is impressive, I think their new 5G network is a huge deal. There's lots of real value projects out there that use the tech well.

You should be asking more questions rather than making blanket authoritative statements.

Source: X post

OpenSea had a total trading volume of $14 billion in 2021.

OpenSea had a total trading volume of $14 billion in 2021.

BTC and ETH individually have $10-$40 billion trading volume every 24 hours.

When people talk about OpenSea NFT auctions they are talking about less than .001% of value traded on blockhains.

Source: X post

@JCorvinusVR Better yet. Let's just simply ban all politicians. As in, from existing in the firs

@JCorvinusVR Better yet. Let's just simply ban all politicians. As in, from existing in the first place.

Source: X post

I have a reservation about PoS. Sure, it makes transactions cheaper, but it faulters a core purp

I have a reservation about PoS. Sure, it makes transactions cheaper, but it faulters a core purpose of blockchain. That being, enabling anyone to hook a computer to the network to validate it. Even if not profitable the ability to prove legitimacy needs to be open to all.

Source: X post

I believe those who understand tech have a responsibility to ease the anxiety and fear of those

I believe those who understand tech have a responsibility to ease the anxiety and fear of those who don't.

The most skilled in Web3 I know are building and not communicating to people, which I never liked.

But the anti-crypto parade has turned neurotic so I will just build now.

Source: X post

ETH has 5000 nodes currently https://www.ethernodes.org/history

ETH has 5000 nodes currently https://www.ethernodes.org/history

Many assume there are millions of people and GPUs mining ETH.

When really there are thousands of people and tens-of-thousands GPUs mining ETH.

If every gamer mined ETH overnight commercial miners probably couldn't survive.

Source: X post

@DanielPinchbeck Only thing I think you can infer from Satoshi or Vitalik is just an anarchist i

@DanielPinchbeck Only thing I think you can infer from Satoshi or Vitalik is just an anarchist intent. It’s founded more on a contention against centralized power than a desire for a specific result.

Fundamentally what’s being proven out is not a new currency, it is distributed consensus.

Source: X post

@DanielPinchbeck Of course the AnCap crowd flocked to it, but I think they’re wrong. When I thin

@DanielPinchbeck Of course the AnCap crowd flocked to it, but I think they’re wrong. When I think through what Web3 enables to play out I don’t see it tending to a Rothbard conception. I think what most miss is a new currency is not fundamentally the advent, rather a programmable economy is.

Source: X post

At some point this decade more people will know you by your virtual avatar presence than by your

At some point this decade more people will know you by your virtual avatar presence than by your physical meatspace presence.

Any amount of time, money, effort people put into their meatspace presence, they will probably end up putting more into their virtual presence.

Source: X post

@OPLOVELORN Some are just so much better at it though.

@OPLOVELORN Some are just so much better at it though.

Like a bad troll just pisses people off and disrupts experience.

A good troll creates communities in response, gives people a sense of purpose, makes people evolve their thinking and understanding, learn how to fight in better ways.

Source: X post

New Year's Resolution.

New Year's Resolution.

Just block anyone on Twitter who doesn't know how to engage in respectful productive dialogue.

Source: X post

@xr_professor @0xstella The human brain doesn't have the capacity to simulate how all consensus

@xr_professor @0xstella The human brain doesn't have the capacity to simulate how all consensus algorithms combined with all economic models programmed into smart contracts will play out with a billion+ people over the decade.

Source: X post

@xr_professor @0xstella It's not possible to know what crypto is primarily used for and why.

@xr_professor @0xstella It's not possible to know what crypto is primarily used for and why.

Even if, why do those things matter? It doesn't prevent a different demographic from using it differently.

Also, being able to evade law is a feature. Legality != Morality. Truth lay in people not government.

Source: X post

@xr_professor @0xstella Can you name any crypto backed project that is providing real utility ri

@xr_professor @0xstella Can you name any crypto backed project that is providing real utility right now?

Source: X post

When I see how social dynamics play out in social VR I keep thinking platforms paying for someon

When I see how social dynamics play out in social VR I keep thinking platforms paying for someone to carry the role of a villain grifting, disrupting and making chaos is a smart move. Any healthy social dynamic needs the full spectrum of experience.

Source: X post

People complaining about NFTs aren't really complaining about NFTs. They are complaining about O

People complaining about NFTs aren't really complaining about NFTs. They are complaining about OpenSea and what it turned NFTs into.

Which I'd agree OpenSea is not the product of the best of taste.

Source: X post

"Deep Dive VR" will not come from a BCI taking over your brain signals.

"Deep Dive VR" will not come from a BCI taking over your brain signals.

It'll come from a drug stimulating and making more controllable the brain functions which enable lucid dreaming and OBE, then using VR to feed the brain stimuli to direct those brain functions.

Source: X post

Before 'NFT Items' become useful there needs to be a standard to define the behavior of NFTs in

Before 'NFT Items' become useful there needs to be a standard to define the behavior of NFTs in interoperable games.

Being the director of this standard will give you incredible leverage over the ecosystem.

Companies will push NFTs initially to try and become that director.

Source: X post

1) Make easier things for people to do?

1) Make easier things for people to do? or 2) Inspire people to be willing to take on the difficult things?

Source: X post

@0xstella Years ago, I'd never have expected the US "left" would turn out against crypto. Seemed

@0xstella Years ago, I'd never have expected the US "left" would turn out against crypto. Seemed so aligned in many ways.

Honestly the past few years have been so disappointing, I'm starting to realize the degree to which most did not believe in anything on principle. It was just hip.

Source: X post

With the direction Web3 and Metaverse is going, seems plausible that intellectual property will

With the direction Web3 and Metaverse is going, seems plausible that intellectual property will be replaced by community.

It's so easy to replicate and pirate NFTs or other content that if you don't curate a community that wants to voluntarily support you, then they won't.

Source: X post

What is Web3?

What is Web3? Whatever you program it to be.

Who will define what Web3 is? Those programming it to be something.

Who will not define what Web3 is? Those not programming it to be anything and instead writing opinion pieces about it.

Source: X post

Selling unique NFT items in the metaverse is akin to selling land.

Selling unique NFT items in the metaverse is akin to selling land.

It doesn't make sense because neither one is scarce in a virtual context. It's trying to apply a meatspace economic mentality to virtual.

You have to think in a post-scarcity economic mindset for the metaverse.

Source: X post

If everyone with a half capable PC mined ETH as a means to heat their house or suckup known exce

If everyone with a half capable PC mined ETH as a means to heat their house or suckup known excess energy from a renewable. This would probably make rewards so low commercial mining farms would struggle.

Want to lessen ETH environmental impact? Mine ETH yourself properly.

Source: X post

@DanielPinchbeck This is one of the better criticisms I've seen.

@DanielPinchbeck This is one of the better criticisms I've seen.

One thing I disagree with is that Web3 is innately libertarian or capitalist.

Seems someone just said this once, and people started repeating it without any thought.

But it isn't, I think its most innately Social Democratic.

Source: X post

Crypto isn't really Capitalist.

Crypto isn't really Capitalist.

BTC is, but that's just how it started.

Where it's going is smart contracts. The novel aspect there is all economic mechanics become programmable. A programmable economy that obeys a central rule set validatable by all is not Laissez Faire.

Source: X post

@CixLiv @BartronPolygon @prvncher @AndreElijah Was for this: https://www.youtube.com/watch?v=-KI

@CixLiv @BartronPolygon @prvncher @AndreElijah Was for this: https://www.youtube.com/watch?v=-KIgvc-LVDs

Source: X post

@BartronPolygon @prvncher @CixLiv @AndreElijah Only the ones that were in front of cameras.

@BartronPolygon @prvncher @CixLiv @AndreElijah Only the ones that were in front of cameras.

Source: X post

@BartronPolygon @CixLiv @prvncher @AndreElijah Ya I was at the Meta before being at "Meta" becam

@BartronPolygon @CixLiv @prvncher @AndreElijah Ya I was at the Meta before being at "Meta" became "cool"...

or rather became uncool 🙃

Source: X post

Thing about FB/Twitter and their addictiveness is, if other people weren't on them, they wouldn'

Thing about FB/Twitter and their addictiveness is, if other people weren't on them, they wouldn't be addictive. Ultimately platforms aren't addictive, other people are.

The most addictive platform would provide access to the most people with the least abstraction between them.

Source: X post

Much of the same dynamics of Web2 will reform on Web3.

Much of the same dynamics of Web2 will reform on Web3.

Some people will pay $10 a month subscription to a corporation or accept ads in order to have their content hosted. This might even be most people.

The difference however is that isn't the default. It's optional.

Source: X post

@LukeHurd Thing is, they were. Television, video games, smartphones, even books all had unique n

@LukeHurd Thing is, they were. Television, video games, smartphones, even books all had unique negatives. Now people are taught healthy habits with them.

But VR is a new set of negatives, what worries me is most have no idea what they are. They will discover them through their kids.

Source: X post

I'm verifying my Arweave address eme89ekMUw5W5G8H9LMfh6XI2J0Al_WGnFUi80ThMP4

I'm verifying my Arweave address eme89ekMUw5W5G8H9LMfh6XI2J0Al_WGnFUi80ThMP4

Source: X post

If it's true FileCoin costs .01% of S3 http://file.app

If it's true FileCoin costs .01% of S3 http://file.app

That provides a great example of how even if ETH blocks are expensive, they can be economical. Because ETH is only used for consensus. One ETH block supports enough consensus for FileCoin to still be cheaper than S3.

Source: X post

@EricPresidentVR Which isn't to say ban kids from VR.

@EricPresidentVR Which isn't to say ban kids from VR.

What stands out as odd is that you basically have corporations selling parents the most advanced consumer Skinner Boxes ever made and they think it's just a new Mario game.

It's kind of insidious.

Source: X post

@EricPresidentVR Thinking online predators is the only issue and supervision fixes it worries me

@EricPresidentVR Thinking online predators is the only issue and supervision fixes it worries me.

I've been analyzing VRC and psychological/behavioral changes from prolonged use for a few years now.

The only other thing that I've encountered comparable is a psychedelic drug.

Source: X post

@cnlohr How would you sign something like a PNG or 3D model in this way? Been wondering about th

@cnlohr How would you sign something like a PNG or 3D model in this way? Been wondering about this but have never done it.

Source: X post

@ckombo @EricPresidentVR In terms of real formal research its minimal. I'm not a researcher. I'm

@ckombo @EricPresidentVR In terms of real formal research its minimal. I'm not a researcher. I'm an engineer/hacker. I build, experiment, participate in VR culture.

I've been trying to tell people there's more to this than a video game, it affects you. But I am pretty sure most think I am crazy still.

Source: X post

@ckombo @EricPresidentVR In terms of formal published research. The Proteus Effect is great to u

@ckombo @EricPresidentVR In terms of formal published research. The Proteus Effect is great to understand https://en.wikipedia.org/wiki/Proteus_effect but that isn't even concerning VR yet

There are some things slowly trickling out now that I try to keep watch on: https://journals.sagepub.com/doi/abs/10.1177/17470218211031557 https://www.frontiersin.org/articles/10.3389/frvir.2021.658509/full

Source: X post

As soon as a VR headset lets me do everything I can with a desktop computer, I may just live hom

As soon as a VR headset lets me do everything I can with a desktop computer, I may just live homeless with that VR headset. Wander around the forest naked, put it on for computing tasks and metaverse explorations.

Basically, my apartment is just a case for my desktop computers.

Source: X post

According to this site, FileCoin is .01% the cost of Amazon S3 for similar use.

According to this site, FileCoin is .01% the cost of Amazon S3 for similar use.

If that is true, I'm surprised I haven't heard it more?

https://file.app/

Source: X post

I have 2x 2080ti SLI in one PC and 3090 in another.

I have 2x 2080ti SLI in one PC and 3090 in another.

I mine ETH on these to heat my apt in the winter, it is enough

Energy which previously only served one purpose of heating is now serving two purposes.

If everyone did this it could lower rewards enough to disrupt mining farms

Source: X post

@technobaboo We will probably end up with various respected brands or stores which mint NFTs and

@technobaboo We will probably end up with various respected brands or stores which mint NFTs and those sources will be seen as legitimate.

Some of these brands/stores will probably be DAOs or collectives with some mechanic to let a mass of people mark various things as fraudulent.

Source: X post

@technobaboo @eirenliel One scenario I see in this is the ease of ripping content could prevent

@technobaboo @eirenliel One scenario I see in this is the ease of ripping content could prevent giants. Where basically Community comes to replace Intellectual Property. So, if you don't have a strong community and piss too many people off, no one will respect you as a legitimate source

Source: X post

Nearly 2 years of VRChat now and still just hanging out with friends, talking, showing off new a

Nearly 2 years of VRChat now and still just hanging out with friends, talking, showing off new avatars/worlds is better than anything else. Still not old. Still spend hours every night easily.

All else in VR got old after a few weeks. Games can't compete with actual people.

Source: X post

I would bet that NFTs will end up being used more as licenses than unique items. Tradable NFTs m

I would bet that NFTs will end up being used more as licenses than unique items. Tradable NFTs make it a game about collecting, scavenging, bartering. When really it should be about creating. Non-Tradable NFT licenses are a way to prove you tipped the creator you derive from.

Source: X post

Giving VR to kids actually worries me. Parents think it's just like a new Nintendo, but it's not

Giving VR to kids actually worries me. Parents think it's just like a new Nintendo, but it's not. The psychological effects are more than any other medium, and how prolonged use would affect you from a young age isn't known. It could lead to new kinds of psychological issues.

Source: X post

@eirenliel @technobaboo Ya I've pondered a lot how exactly a DAO could function to be like a com

@eirenliel @technobaboo Ya I've pondered a lot how exactly a DAO could function to be like a communal source of authority in such a market. It's really hard to conceive of it beforehand though, probably thousands rise and fall over the years until one figures a good scheme out.

Source: X post

@eirenliel @technobaboo It's not really novel. It's basically similar mechanics of existing mark

@eirenliel @technobaboo It's not really novel. It's basically similar mechanics of existing markets reforming. I suspect this is why Nike/Adidas entered the space.

Potentially only novel thing organization wise is the collective DAOs could end up running on fairly novel mechanics.

Source: X post

Sex is so good because it's a direct form of human connection that doesn't go through middlemen,

Sex is so good because it's a direct form of human connection that doesn't go through middlemen, abstractions nor constructs (e.g., language)

Each abstraction you add between people the worse the experience.

This seems important somehow in the context of tech design...

Source: X post

NFTs could become useful once an ecosystem of games or services relies on them to do something m

NFTs could become useful once an ecosystem of games or services relies on them to do something more than sit there.

But before that you need highly trusted NFT minters so the ecosystem knows which NFTs are legitimate.

Source: X post

I wonder if you could do something like proof-of-captcha blockchain.

I wonder if you could do something like proof-of-captcha blockchain.

Then you have a mass of people solving captchas in a mobile app.

Source: X post

I don't think stricter type systems are the way to go. Statically defining hard-set rules and co

I don't think stricter type systems are the way to go. Statically defining hard-set rules and constraints is an old mentality.

Modern computers are fast enough to have advanced dynamic code analysis running constantly. Then put that on top of a completely unrestrained language.

Source: X post

With Twitter people become entirely focused on ensuring the text that floats to the top of twitt

With Twitter people become entirely focused on ensuring the text that floats to the top of twitter is "correct" in their view. Interaction among people is secondary.

In Social VR people focus on each other. It becomes about ensuring interaction among people is a good experience.

Source: X post

Was anything after C really needed?

Was anything after C really needed?

I know can go endlessly about all the cool things that languages after C did, really smart and impressive things.

But like, were the *really* needed, like would computing not have been able to advance as necessary without such things?

Source: X post

There needs to a be a DAO with some kind of democratic mechanic to enable people to create a bla

There needs to a be a DAO with some kind of democratic mechanic to enable people to create a blacklist of fraudulent NFTs and digital assets.

Source: X post

The hardest part of the metaverse is not technical.

The hardest part of the metaverse is not technical.

Rather, it's how do you grow, evolve, the culture.

No one is going to put on VR to go embody a shitty culture. If it ends up with the culture of Roblox, or a commercial mall, or the bad parts of VRC, it's going to fail.

Source: X post

@EricPresidentVR Been one of my main goals past few years in the industry to bring awareness to

@EricPresidentVR Been one of my main goals past few years in the industry to bring awareness to this. That the culture which forms as consequence of presence in VR is entirely different than what forms by everyone sitting behind monitors. https://www.linkedin.com/pulse/how-evade-extremely-terrible-experience-vrchat-ryan-goodrich/?trackingId=1nAYPZkESUCouqYKW4uh9g%3D%3D

Source: X post

A notion still worthy of analyzation I think:

A notion still worthy of analyzation I think:

Does a distributed consensus mechanism really need to provide monetary reward to node operators?

Stated differently. Could a modern blockchain, BTC or ETH, run in an entirely volunteer fashion without monetary reward for mining?

Source: X post

There are odd beneficial qualities to the issues VRChat has.

There are odd beneficial qualities to the issues VRChat has.

For example,

Avatar perf being able to harm others and crasher avatars inadvertently made tighter-knit communities of trust.

Funky to use UI gives new people an ice breaker to talk about, helps facilitate connection.

Source: X post

Hyperrealism is fascinating to me on a monitor because it's an obviously fake medium presenting

Hyperrealism is fascinating to me on a monitor because it's an obviously fake medium presenting content that appears real.

Conversely, Tron, lo-poly, anime, stylized is more fascinating to me in VR because its obviously fake content presented on a medium that appears real.

Source: X post

Wow. A congressional discussion about Web3 that is actually decent.

Wow. A congressional discussion about Web3 that is actually decent. https://www.youtube.com/watch?v=pSTNhBlfV_s

Source: X post

VRChat taught me that no matter how tall, big, beardly and manly any man seems to appear. Deep d

VRChat taught me that no matter how tall, big, beardly and manly any man seems to appear. Deep down inside he's really just a cute anime catgirl.

Source: X post

@philiprosedale @prvncher @WalkaboutMG If you get a free hour sometime, watch this:

@philiprosedale @prvncher @WalkaboutMG If you get a free hour sometime, watch this: https://youtu.be/R1wUg9HCODU

Source: X post

I liked the days when computers and games were so hard to even get running that it required you

I liked the days when computers and games were so hard to even get running that it required you to learn a whole bunch of foundational and important computer skills to even play it. Its why I became so proficient with software so young.

Learn2Play > Play2Earn

Source: X post

@0xstella It's like Carcinisation, how all sea animals are convergently evolving into crabs and

@0xstella It's like Carcinisation, how all sea animals are convergently evolving into crabs and the crab is ultimately the final form of all sea life.

... except it's with anime catgirls and people.

I am joking of course but at the same time, to some degree, I'm not.

Source: X post

It may turn out that NFTs and digital scarcity offer a relevant way for creators to make money.

It may turn out that NFTs and digital scarcity offer a relevant way for creators to make money.

It may not.

The human brain doesn't have the capacity to simulate the macro-economics of this playing out with a billion+ people on the web over the next decade.

Source: X post

I don't tell people to buy crypto.

I don't tell people to buy crypto.

If they ask me about investing, I tell them to make a coinbase account, research the top 10 or so coins by market cap and buy what they think is most interesting. Then leave it on coinbase for the time being until external wallets improve.

Source: X post

@WilBown @rileyflorence0 I would disagree with that less than most would probably assume.

@WilBown @rileyflorence0 I would disagree with that less than most would probably assume.

Source: X post

We put on music headphones which confer to our brain emotional states, our brain then learns to

We put on music headphones which confer to our brain emotional states, our brain then learns to feel those emotions as being real.

Now we can put on a VR HMD which confers to our brain an experience of a different body and space, our brain can also learn to feel those as real.

Source: X post

@rileyflorence0 What need do you see emerging in the future that could cause such a large mainst

@rileyflorence0 What need do you see emerging in the future that could cause such a large mainstream shift?

The big one I think of is virtual presence calls, because everyone likes the presence of others. But I question if that's enough to cause an outright replacement of smartphones.

Source: X post

@rileyflorence0 Oh, I totally agree, but I like to try and forecast, extrapolate, things. Right

@rileyflorence0 Oh, I totally agree, but I like to try and forecast, extrapolate, things. Right now I just find it hard to settle on it being a certain inevitability.

Like certain inevitabilities I think have arisen for home VR use. But the mainstream ubiquitous XR glasses I still wonder.

Source: X post

If I were to invest in a VR hardware startup it wouldn't be for any headset or controllers.

If I were to invest in a VR hardware startup it wouldn't be for any headset or controllers.

Rather it'd be for the perfect VR bean bag or lounging chair. Seriously untapped market, Big Joe basically has a monopoly, and their bean bags aren't even specifically made for VR.

Source: X post

I think Ready Player One was correct that many people with live as avatars in a VR social space

I think Ready Player One was correct that many people with live as avatars in a VR social space in the future.

However, what they got wrong is people aren't going to be walking around on treadmills.

They will be lounging on bean bag chairs floating around in weird positions.

Source: X post

@FrankKa23141675 Not saying its certain, just all routes considered it's not an inevitability to

@FrankKa23141675 Not saying its certain, just all routes considered it's not an inevitability to me. It isn't where I'd place my first bet concerning XR.

Smartphones are more than enough for most people and once your average person learns something it takes a lot to make them change.

Source: X post

@cnlohr its my favorite show to ever be made by netflix

@cnlohr its my favorite show to ever be made by netflix

Source: X post

Can't help but the think The Midnight Gospel is actually one of the best future visions of VR. Y

Can't help but the think The Midnight Gospel is actually one of the best future visions of VR. You live in some small house out away from everything. It has a living area and a VR portal. You spend your day in nature, then fall deep into some virtual world every night.

Source: X post

Avatars are memetic.

Avatars are memetic.

They drive cultural evolution the same as images do on social media.

If a platform isn't open enough to allow memetic evolutionary process to take place with avatars you cut off a main mechanic which evolves culture in social VR.

Source: X post

Probably good to keep in mind the possibility that XR glasses will never be mainstream.

Probably good to keep in mind the possibility that XR glasses will never be mainstream.

Average person probably won't put on XR glasses just because and a smartphone already does what your average person needs from a computing device.

Source: X post

No one believes that an NFT only represents a sales receipt and that the value of the NFT is hel

No one believes that an NFT only represents a sales receipt and that the value of the NFT is held in the assets.

If you do, here is the link to Beeple's $69 million NFT. https://ipfsgateway.makersplace.com/ipfs/QmXkxpwAHCtDXbbZHUwqtFucG1RMS6T87vi1CdvadfL7qA You can now quit your job and buy a mansion.

Why haven't you? Follow your beliefs.

Source: X post

Nike, Adidas, Pepsi entering into NFTs is not surprising to me.

Nike, Adidas, Pepsi entering into NFTs is not surprising to me.

While crypto is a threat to many corporations and governments, it is not a threat to all. At some point the ones who it is not a threat to will realize pushing crypto will benefit them in some way and fight for it.

Source: X post

What makes reality feel real is other people.

What makes reality feel real is other people.

Go sit in isolation for 2 months without any human contact, you will experience derealization.

This is the peculiar thing Social VR discovered. It's not graphics which make the virtual feel real, it's that it is inhabited by people.

Source: X post

RT @dz: one more Good Keanu™ moment about Facebook (sorry Meta) and the history of the concept o

RT @dz: one more Good Keanu™ moment about Facebook (sorry Meta) and the history of the concept of a metaverse https://x.com/dz/status/1469439770543771650/video/1

Source: X post

NFTs, gaming, the metaverse, Web3. These are macro chaotic systems. They can't be predicted. The

NFTs, gaming, the metaverse, Web3. These are macro chaotic systems. They can't be predicted. They will evolve in ways you can't expect. You can only anticipate certain fundamentals.

It's a subject revealing who is aware of the limitations of their own mind and who isn't.

Source: X post

First thing we do with novelty is contort it into a prior mental model. Many are doing this with

First thing we do with novelty is contort it into a prior mental model. Many are doing this with blockchain, they can only comprehend it via the prior mental model of a database. But blockchain is not a database, it's a distributed consensus system. It requires a new mental model

Source: X post

This is probably the only decent article I've seen that criticizes Web3 in a relevant way.

This is probably the only decent article I've seen that criticizes Web3 in a relevant way.

But I disagree with it framing blockchain as a 'database'.

Blockchain is a distributed consensus system. Which can be a 'database' but if all you need is a database, use a database. https://x.com/AlanJay1/status/1469612623830396930

Source: X post

This page from McCloud's Understanding Comics explains something probably important concerning V

This page from McCloud's Understanding Comics explains something probably important concerning VR avatars: https://tinyurl.com/mrxsyyt4

That when presented a human form, the simpler it is the more a person's unconscious projects themselves onto it and perceives it as themselves.

Source: X post

There is probably a whole untapped business model where you setup computers and mining hardware

There is probably a whole untapped business model where you setup computers and mining hardware in people's home to be used as space heaters, and the mining rewards offset heating cost.

https://www.pugetsystems.com/labs/articles/Gaming-PC-vs-Space-Heater-Efficiency-511/

Source: X post

Icelandverse is great humor. Underlying great humor is typically truth.

Icelandverse is great humor. Underlying great humor is typically truth.

Which is, nothing virtual will ever be better than physical reality at being physical reality.

Why focus on what can only ever be second-rate?

VRs true potential lays in not trying to be physical reality.

Source: X post

@3duaun I've used mining in place of traditional heating for a few winters now. It works well.

@3duaun I've used mining in place of traditional heating for a few winters now. It works well.

I've ponded a business model where you set it up in people's home on lease and mining rewards pay off the lease, then they own the hardware.

Also, great way to potentially recycle older parts

Source: X post

Exercise equipment is kind of a weird thing. We automated so much with machinery that it made us

Exercise equipment is kind of a weird thing. We automated so much with machinery that it made us ill from sedentary lifestyle. So, we had to invent new machinery to alleviate that. But really, I think I'd rather just chop wood, manually wash my clothes and garden.

Source: X post

When it comes to people buying things which don't have any long-term value and you don't really

When it comes to people buying things which don't have any long-term value and you don't really need. I much prefer the idea of people buying virtualized items like NFTs rather than the typical array of mass manufactured junk consumerist society pushes on them.

Source: X post

@JCorvinusVR delete the library and temp folder

@JCorvinusVR delete the library and temp folder

git reset --hard HEAD git clean -df is better though

Source: X post

I want to make a new language that is as loosely typed as JavaScript and where anything can just

I want to make a new language that is as loosely typed as JavaScript and where anything can just be freely cast to anything and call anything like JS. BUT with as much low-level control as C. Thinking I want to call it just simply 'A' which would be short for AnarchyLang.

Source: X post

@dannyaroslavski Ya, I presume people would link their NFTs and their balances.

@dannyaroslavski Ya, I presume people would link their NFTs and their balances.

Technically it would probably be similar to the BTC lightning network but done with smart contracts on a faster chain rather than a P2P connection.

Source: X post

@dannyaroslavski I've had similar thought, but also with different chains. Suspect some chains w

@dannyaroslavski I've had similar thought, but also with different chains. Suspect some chains will become known more as a 'security layer' and other faster/cheaper ones as a 'application layer'. You'll keep important stuff on the 'security chain' and the application chain will somehow link to it

Source: X post

The more pragmatic solution to climate change is not moving to electric cars ASAP.

The more pragmatic solution to climate change is not moving to electric cars ASAP.

Its people just not driving.

Also, an easy policy that I think most would like? Executive order to make any job not explicitly requiring physical labor have the option to be remote by default.

Source: X post

The future dystopia that worries me the most is Wall-E.

The future dystopia that worries me the most is Wall-E.

Where technology advances to a point of being so automated and easy to use that everyone sits horribly obese, devoid of any aspiration, in an automated chair with all physical and emotional needs fully provided by robots.

Source: X post

RT @cnlohr: I've spent the last year in VRChat with every waking, non-work moment of my life. I

RT @cnlohr: I've spent the last year in VRChat with every waking, non-work moment of my life. I adventure into the lives of the people who…

Source: X post

I can't help but think that shared open source codebases are better than defined standards.

I can't help but think that shared open source codebases are better than defined standards.

Either: 1. Go through an exhaustive long bureaucratic process to agree upon standards so everyone can implement their own version? OR 2. Just collectively build the damn thing?

Source: X post

For as much as modern society thinks it has become rational, secular and scientific. It sure see

For as much as modern society thinks it has become rational, secular and scientific. It sure seems like most conceptions of reality still form entirely off of the first thing someone sees repeated a few dozen times giving it no additional thought nor reading any actual studies.

Source: X post

What I most want in VR is a VR-first general-purpose OS. Where I can plug only a HMD into a comp

What I most want in VR is a VR-first general-purpose OS. Where I can plug only a HMD into a computer and everything from the BIOS to the shell innately runs through it so that I would not need a monitor at all. Not having to buy a monitor is still a great use case for VR I think.

Source: X post

The initial studies which framed the whole 'crypto environmental issue' narrative were funded by

The initial studies which framed the whole 'crypto environmental issue' narrative were funded by VISA. https://www.jbs.cam.ac.uk/faculty-research/centres/alternative-finance/publications/global-cryptocurrency/#.YQSX8EBlDAQ https://www.jbs.cam.ac.uk/faculty-research/centres/alternative-finance/publications/global-blockchain/#.YQSX5EBlDAQ If a report came out saying "Organic farming harms the environment" and it was funded by Monsanto, wouldn't you be suspicious?

Source: X post

I think Twitter is an abomination but I've always respected Dorsey for willing to state things m

I think Twitter is an abomination but I've always respected Dorsey for willing to state things most would coward away from.

Article he posts is a great overview of why, no matter what negatives exist with BTC, supporting USD is the immeasurably greater immoral and careless act. https://x.com/jack/status/1464618508344446980

Source: X post

@antsstyle You conflate "people playing casino-esque gambling games on early-alpha technology fo

@antsstyle You conflate "people playing casino-esque gambling games on early-alpha technology for fun" with those building technological foundations that can serve as public leverage against power consolidating under corporate authoritarianism.

Source: X post

RT @adidasoriginals: We’ve partnered with @coinbase.

RT @adidasoriginals: We’ve partnered with @coinbase. Probably nothing.

Source: X post

@pemathedev The amount I'm having to find workarounds and add more lines of code to do things th

@pemathedev The amount I'm having to find workarounds and add more lines of code to do things that would be very simple in C I am not liking.

I've also found that with one library I cannot program the behavior I need because of how locked down it is and have hit a brick wall.

Source: X post

@pemathedev I'm thinking I am about to just go full linus torvalds and declare I will only ever

@pemathedev I'm thinking I am about to just go full linus torvalds and declare I will only ever program in C and everything after C was a mistake.

For rust to work as a more general purpose language you need some way to fully disable its checks entirely. Unsafe doesn't disable enough.

Source: X post

I paid for Twitter Blue assuming it would get rid of the ads and promoted tweets in my feed.

I paid for Twitter Blue assuming it would get rid of the ads and promoted tweets in my feed.

It did not get rid of them.

I feel cheated.

Source: X post

I am about at the 'Fuck Rust' stage of learning Rust. It's like having a tyrannical robot yellin

I am about at the 'Fuck Rust' stage of learning Rust. It's like having a tyrannical robot yelling at you while trying to solve problems.

No Rust. If I want to capture the same pointer in 20 different closures and read it from a dozen different threads I can and I will.

Source: X post

Does any advanced developer actually feel they are faster and more productive in Rust than C++?

Does any advanced developer actually feel they are faster and more productive in Rust than C++?

My current foray into Rust is making think there is a lot of cool stuff but it doesn't really do much if you already really know what your doing and seems to slow me down.

Source: X post

"What if instead of NFTs we kept it centralized to data centers. Then had an interoperability pr

"What if instead of NFTs we kept it centralized to data centers. Then had an interoperability protocol to transfer between centers and a means to validate transfers and state."

You mean a blockchain?

I've seen blockchain reinvented so many times in trying to find alternatives.

Source: X post

Corporations have cultures and vibes adequate to create something which is just a peripheral app

Corporations have cultures and vibes adequate to create something which is just a peripheral app that sits in your pocket disconnected from you.

However, the notion of living inside of a reality, having a body, which carries such a vibe is a whole different story.

Source: X post

@JCorvinusVR It is true, I am adding a new dimension to the theory. But I suspect perfect visual

@JCorvinusVR It is true, I am adding a new dimension to the theory. But I suspect perfect visual recreation isn't sufficient.

I suspect it works on a screen because that medium has an innate disconnect. But when its standing in front of you, touching you, interacting with you its different.

Source: X post

@JCorvinusVR Is it? I admit we have yet to stand in front of an absolutely perfect synthetic rep

@JCorvinusVR Is it? I admit we have yet to stand in front of an absolutely perfect synthetic representation of a human. But I've seen some that get rather close in VR and it does not induce a good emotion. I suspect most will respond to them like most respond to replicants in Blade Runner.

Source: X post

@JCorvinusVR I don't doubt an HMD can perfectly render a human, prototypes already exist.

@JCorvinusVR I don't doubt an HMD can perfectly render a human, prototypes already exist.

I mean more so, even in that scenario you still know its fake. Due to knowing its fake, it being indiscernible from reality makes it even creepier. The more perfect it visually gets, the creepier it is.

Source: X post

I suspect VR avatars can never escape the uncanny valley. Even if rendered absolutely indiscerni

I suspect VR avatars can never escape the uncanny valley. Even if rendered absolutely indiscernible from a photograph, you would still know its fake, and it'd be even creepier. Like standing in front of an android. Hyperrealism works on a screen, but in your "reality" its creepy.

Source: X post

@dannyaroslavski Soft rebuttal.

@dannyaroslavski Soft rebuttal.

Source: X post

@RichFelker @hmsnofun What would be a reasonable use for personal mining and data centers?

@RichFelker @hmsnofun What would be a reasonable use for personal mining and data centers?

Personally I am hoping we end up with a scenario where every person runs say four to a dozen computers to help bring security to some decentralized network infrastructure of their choice.

Source: X post

@RichFelker @hmsnofun Thats funny I've actually been piecing together something like a 'reproduc

@RichFelker @hmsnofun Thats funny I've actually been piecing together something like a 'reproducible builds audit system' based on EVM smart contracts but didn't know it already had a name.

Source: X post

@RichFelker @hmsnofun "Progressive Energy Costs" are a notion I've long liked. A corporate data

@RichFelker @hmsnofun "Progressive Energy Costs" are a notion I've long liked. A corporate data center should pay a higher rate or energy than a residential individual.

But your term 'reasonable personal use' I don't like. Why target individuals at all? Aim at the top, not the bottom

Source: X post

All externalities included, Bitcoin is already many folds less impactful to the environment than

All externalities included, Bitcoin is already many folds less impactful to the environment than USD.

Bitcoin requires roughly 100 tWh of energy a year to maintain its value.

USD requires the US Military Industrial Complex to maintain its value.

Source: X post

I wrote a new article:

I wrote a new article: The Metaverse, Climate Change and Terence McKenna. https://www.linkedin.com/pulse/metaverse-climate-change-terence-mckenna-ryan-goodrich/?published=t&trackingId=fdjfdxBPTeSSYPpC6Z2krg%3D%3D

Source: X post

Sometimes I get frustrated at how utterly oblivious all the corporate metaverse efforts are.

Sometimes I get frustrated at how utterly oblivious all the corporate metaverse efforts are.

How people who do not participate at all in existing VR culture endlessly BS about the metaverse while corporations follow them.

Then I remind myself, that is actually a good thing.

Source: X post

I'd imagine many people go into VRChat and probably dislike most of the avatars people are using

I'd imagine many people go into VRChat and probably dislike most of the avatars people are using.

But the thing is, a lot of those same people probably just dislike most people in general.

So is it any surprise they'd also dislike the virtual representations most people choose?

Source: X post

@KennyRoy If you put them on http://booth.pm ready for VRC some may buy them

@KennyRoy If you put them on http://booth.pm ready for VRC some may buy them

Difference from a game that I see is, in social VR socializing is primary, gameplay is secondary if at all. So models are just decoration or things people talk about and share like art pieces

Source: X post

@KennyRoy I differentiate SocialVR/metaverse from VR games because the use case is so different,

@KennyRoy I differentiate SocialVR/metaverse from VR games because the use case is so different, the way people use it is so different. To do social VR properly you have to think about everything in a completely different way, even down to the low levels of the 3D engine architecture.

Source: X post

@KennyRoy Another way to put it, in the metaverse 3D models become more how jpegs currently are

@KennyRoy Another way to put it, in the metaverse 3D models become more how jpegs currently are on the web

People collect, share, turn them into memes, photoshop them. A jpeg has purpose by itself, no gameplay needed

Some may finagle a random model on their avatar like 3D photoshopping

Source: X post

One thing that most excites me about the prospect of the metaverse and social VR is that it brin

One thing that most excites me about the prospect of the metaverse and social VR is that it brings new value to 3D art. Where no longer does a 3D model need to be in a successful video game, but rather people will just buy a 3D model to wear it, or put in a world, nothing more.

Source: X post

Underlying the desire for hyperrealism in CG is an absurd desire. Its a desire to objectively de

Underlying the desire for hyperrealism in CG is an absurd desire. Its a desire to objectively define beauty. But you never can. An artists subjectivity will always prevail over objective physics in aesthetics. Realism was one art movement. It was not the endgame purpose.

Source: X post

https://en.wikipedia.org/wiki/Proteus_effect

https://en.wikipedia.org/wiki/Proteus_effect

Source: X post

What will probably evolve with NFT avatars in the metaverse is, someone will buy an avatar, then

What will probably evolve with NFT avatars in the metaverse is, someone will buy an avatar, then develop its social life and its social connections in the metaverse, growing its social capital. Then auction that NFT/Avatar to someone, basically auctioning them a new life.

Source: X post

@dannyaroslavski Companies tend to run in a grey area of doing just enough to maximize their inc

@dannyaroslavski Companies tend to run in a grey area of doing just enough to maximize their incentives, but in an elusive enough way where PR and marketing can deny or spin it as something else. This isn't a slam against FB, its every company, its long been the name of the game.

Source: X post

The notion of consistent physically-accurate lighting across the metaverse is like the notion of

The notion of consistent physically-accurate lighting across the metaverse is like the notion of enforcing a certain visual aesthetic across all sites on the web. Shaders used are going to be all over the place, it will be surreal. 90s scifi is probably closer than most think.

Source: X post

@prvncher I've been thinking FB has a better chance of becoming the XR Fitness leader than the '

@prvncher I've been thinking FB has a better chance of becoming the XR Fitness leader than the 'metaverse' leader. The quest 2 nails the fitness use case perfectly and is something they could tackle. The whole social aspect of the metaverse I think will long be elusive to them.

Source: X post

@dannyaroslavski I can't bring myself to believe any corporation will do anything other than opt

@dannyaroslavski I can't bring myself to believe any corporation will do anything other than optimize around whatever their incentive structure is. Unless some external leverage forces it another way, it will end up tuned to extract maximum resources from users however possible.

Source: X post

@JCorvinusVR Ya, I think most of the industry is wrong about the need for standards in the metav

@JCorvinusVR Ya, I think most of the industry is wrong about the need for standards in the metaverse. You really don't want nor need them, it will be impossible to predict all the ways it will go. You cannot make a 3D file format to define the virtual representation of human consciousness.

Source: X post

@prvncher @auradeluxe Its a buzzword that carries power so people will try to define it to optim

@prvncher @auradeluxe Its a buzzword that carries power so people will try to define it to optimize for whatever their incentive structure is

For most that will be KPIs and corporate bottomline

For me, its how you improve the moment to moment daily lived experience of a typical person https://x.com/geotetrarygo6/status/1455639768549580816/photo/1

Source: X post

The Metaverse will orbit around the most creative and explorative VR Culture. I dont believe FB

The Metaverse will orbit around the most creative and explorative VR Culture. I dont believe FB can deal with nor even wants such a culture. Even if this most creative core is a minority of users, they will still lead it. Right now this is the culture in the depths of VRChat.

Source: X post

@TheVirtunaut I'd be curious to know more about what your thinking when you say 'toxic mind'.

@TheVirtunaut I'd be curious to know more about what your thinking when you say 'toxic mind'.

Source: X post

@dannyaroslavski Yes. I keep repeating this trying to pull everyone into an actual VR headset in

@dannyaroslavski Yes. I keep repeating this trying to pull everyone into an actual VR headset in Social VR. Most still don't get it. It is important enough that I am willing to be seen as the crazy weird one trying to get everyone in a VR headset. More people need to do so as well.

Source: X post

Several of the right kinds of friends in Social VR can provide a better experience than several

Several of the right kinds of friends in Social VR can provide a better experience than several hundred likes on Twitter

As people begin to experience this I expect Twitter and Facebook to lose significant mindshare

It is in a way rediscovering how things used to be

Source: X post

Its impossible for a mass community to all be decent people on Twitter. Someone always ends up s

Its impossible for a mass community to all be decent people on Twitter. Someone always ends up saying and acting some way they never ever would if they were actually in the presence of those people. The medium is the problem, a medium with presence is the solution.

Source: X post

@auradeluxe Have you seen https://webaverse.com/ ?

@auradeluxe Have you seen https://webaverse.com/ ?

Source: X post

"Trustless"​ is the point of crypto and NFTs, and it is one the most critical issues we face.

"Trustless"​ is the point of crypto and NFTs, and it is one the most critical issues we face. https://www.linkedin.com/pulse/trustless-point-crypto-nfts-one-most-critical-issues-we-ryan-goodrich/?published=t

Source: X post

New article: Practical ways the Metaverse is improving lives right now.

New article: Practical ways the Metaverse is improving lives right now. https://www.linkedin.com/pulse/practical-ways-metaverse-improving-lives-right-now-ryan-goodrich/?published=t

Source: X post

New article I wrote: "Avaticity, the antidote to social media toxicity?"

New article I wrote: "Avaticity, the antidote to social media toxicity?" https://www.linkedin.com/pulse/avaticity-antidote-social-media-toxicity-ryan-goodrich/?published=t

Source: X post

RT @academyofideas: New Video: Social Media - Why it Sickens the Self and Divides Society

RT @academyofideas: New Video: Social Media - Why it Sickens the Self and Divides Society https://www.youtube.com/watch?v=FHwfJDqerGM

Source: X post

For those in VR or 'Metaverse' related efforts a basic overview of Marshall McLuhan I think is c

For those in VR or 'Metaverse' related efforts a basic overview of Marshall McLuhan I think is critical. It creates a framing to approach the subject of how new media effects people and society by analyzing previous forms of media throughout history. https://youtu.be/cFwVCHkL-JU

Source: X post

@timoni VRC crowd calls it 'Full-Body Tracking' vs 'Half-Body Tracking'

@timoni VRC crowd calls it 'Full-Body Tracking' vs 'Half-Body Tracking'

Source: X post

RT @solomonstre: If WASM+WASI existed in 2008, we wouldn't have needed to created Docker. That's

RT @solomonstre: If WASM+WASI existed in 2008, we wouldn't have needed to created Docker. That's how important it is. Webassembly on the se…

Source: X post

The ironic thing about mainstream media calling out Facebook for profiting off content that inte

The ironic thing about mainstream media calling out Facebook for profiting off content that intentionally evokes unnecessarily divisive and angry emotional response is that has been the strategy of mainstream news for decades. https://x.com/60Minutes/status/1444810664502079491

Source: X post

@prvncher If NFTs and crypto in general didn't have a mass of people viewing it as completely ri

@prvncher If NFTs and crypto in general didn't have a mass of people viewing it as completely ridiculous or silly in some manner, that would make me doubt the relevance of crypto. Every major game changing thing goes through that.

Source: X post

RT @mulmbot: Companies claiming to be inventing the metaverse: You must look like a wonky cartoo

RT @mulmbot: Companies claiming to be inventing the metaverse: You must look like a wonky cartoon human representation of how you look in r…

Source: X post

Everyone is building the 'Encarta'​ equivalent of the Metaverse.

Everyone is building the 'Encarta'​ equivalent of the Metaverse. https://www.linkedin.com/pulse/everyone-building-encarta-equivalent-metaverse-ryan-goodrich

Source: X post

Imagine if could see which AI models are deployed on a given social media platform and how they

Imagine if could see which AI models are deployed on a given social media platform and how they are tuned to manipulate your thoughts, beliefs and behaviors. Then you could selectively change those AI models to help direct your psychology to something of your choosing.

Source: X post

https://www.youtube.com/watch?v=kc_Jq42Og7Q

https://www.youtube.com/watch?v=kc_Jq42Og7Q

Source: X post

RT @CoinDesk: "You must be either truly decentralized ... or generally [be] smothered with regul

RT @CoinDesk: "You must be either truly decentralized ... or generally [be] smothered with regulations," @polkadot's @gavofyork says, discu…

Source: X post

@prvncher It is also probably the case we will have adequate passthrough AR before we have see-t

@prvncher It is also probably the case we will have adequate passthrough AR before we have see-through AR able to perfectly create depth accommodation required to blend virtual with the real.

Source: X post

@prvncher I always expected passthrough VR to be the final AR solution. As it is the only way to

@prvncher I always expected passthrough VR to be the final AR solution. As it is the only way to make black and opaque pixels. That AR glasses will be opaque and externally covered with a photo-sensing surface that can reconstruct and passthrough a stream better than a lens could.

Source: X post

RT @ShidenNetwork: Welcome to our new chapter! We just deployed Solidity contracts by using Remi

RT @ShidenNetwork: Welcome to our new chapter! We just deployed Solidity contracts by using Remix, Ethereum IDE. And, you will be able to m…

Source: X post

RT @gavofyork: Events of today in crypto just go to show that genuine decentralisation and well-

RT @gavofyork: Events of today in crypto just go to show that genuine decentralisation and well-designed security make a far more valuable…

Source: X post

How VRChat changed my views on the Metaverse. https://www.linkedin.com/feed/update/urn:li:ugcPos

How VRChat changed my views on the Metaverse. https://www.linkedin.com/feed/update/urn:li:ugcPost:6843653395681832960?updateEntityUrn=urn%3Ali%3Afs_feedUpdate%3A%28*%2Curn%3Ali%3AugcPost%3A6843653395681832960%29

Source: X post

Upgrade your Twitter experience:

Upgrade your Twitter experience: https://chrome.google.com/webstore/detail/hide-twitter-trends/lapmncfnibdclongbkleadoicnkhknia?hl=en

Source: X post

The big negative of DOT is its governance is an overly complex game that requires a lot of atten

The big negative of DOT is its governance is an overly complex game that requires a lot of attention and politicizing.

But this is also a potential benefit because it can suck more people into its drama and generate lots of social network buzz.

Source: X post

@prvncher @six_ways Ya. The unique value of Web3 I see as being the 'Trustless' aspect. Which to

@prvncher @six_ways Ya. The unique value of Web3 I see as being the 'Trustless' aspect. Which took me a bit to grok and have its importance fully register. But if the web and digital is to play a more central role in social organization, its critical we can truly trust our foundational systems.

Source: X post

@prvncher Media coverage of art NFTs and Doge I find propagandistic as it associates crypto with

@prvncher Media coverage of art NFTs and Doge I find propagandistic as it associates crypto with fluff. It makes no awareness of the bigger things in Web3. People don't realize that Web3 is wholesale replacing all existing web infrastructure, ISPs themselves, and this is very close

Source: X post

@prvncher I find it is a trickle down effect of propaganda of various corporations protecting th

@prvncher I find it is a trickle down effect of propaganda of various corporations protecting their business models from what they see as a threat from Web3. It is sad those most in the position to benefit from the advents of Web3 have turned into corporate protecting pawns by propaganda.

Source: X post

@prvncher For example

@prvncher For example

The earliest studies which framed the whole Crypto Energy Narrative came from Cambridge and were funded by VISA https://www.jbs.cam.ac.uk/faculty-research/centres/alternative-finance/publications/global-blockchain/#.YT0ig99lDAR https://www.jbs.cam.ac.uk/faculty-research/centres/alternative-finance/publications/global-cryptocurrency/#.YT0igd9lDAR

Those studies aren't actually that damning of crypto but provided enough framing for media to hyperbolize

Source: X post

RT @Polkadot: As the final Polkadot 1.0 release approaches, the Cross-Consensus Messaging format

RT @Polkadot: As the final Polkadot 1.0 release approaches, the Cross-Consensus Messaging format, XCM for short, nears its first production…

Source: X post

@prvncher Funny to me how many think NFTs have no value because they are easily ripped. You can

@prvncher Funny to me how many think NFTs have no value because they are easily ripped. You can go into a grocery store and steal a banana easier than an NFT. But people don't because they've internalized a recognition that the purchase creates a positive sum game which improves community.

Source: X post

RT @SCRNinVR: New and improved face tracking in #VRChat!

RT @SCRNinVR: New and improved face tracking in #VRChat!

I added blinking, brow movements, and eye tracking 👀.

And I released the source…

Source: X post

RT @AIXRorg: AIXR is proud to stand tall with the #LGBTQ community for equality and acceptance b

RT @AIXRorg: AIXR is proud to stand tall with the #LGBTQ community for equality and acceptance both in and outside of our community all yea…

Source: X post

RT @pemathedev: Shadertoy in #VRChat! I wrote a tiny compiler in UdonSharp that compiles 'shader

RT @pemathedev: Shadertoy in #VRChat! I wrote a tiny compiler in UdonSharp that compiles 'shaders' to a tiny stack-based instruction set, t…

Source: X post

RT @fuopy: Created a "Tennis Game" shader implementation in @pemathedev's in-game Shader-in-a-Sh

RT @fuopy: Created a "Tennis Game" shader implementation in @pemathedev's in-game Shader-in-a-Shader compiler and VM in VRChat! Try it out…

Source: X post