HackerTrans
TopNewTrendsCommentsPastAskShowJobs

izakfr

no profile record

Submissions

How to Keep SEO Traffic When You Redesign Your Website

repaint.com
3 points·by izakfr·قبل 25 يومًا·0 comments

Show HN: Varse – Simple remote application config

github.com
38 points·by izakfr·قبل سنتين·23 comments

Show HN: Repaint – A visual editor for HTML and CSS

repaint.com
7 points·by izakfr·قبل سنتين·0 comments

Ask HN: Why don't you like Figma to code?

3 points·by izakfr·قبل سنتين·7 comments

comments

izakfr
·السنة الماضية·discuss
This looks cool! Stablecoin on-ramps are still not perfect. I think it's important to meet customers where they're at, so a lot of the banking-centric onboarding options won't work everywhere. Don't really understand a lot of the criticism on this thread, seems to mostly be caused by the "crypto = bad" opinion. Good luck with Karsa, keep up the good work!
izakfr
·السنة الماضية·discuss
CTO of Vigilant here. Does anyone have ideas on how to do versioning for an SDK that you change often? Would putting new features in a "beta" release version make sense?
izakfr
·قبل سنتين·discuss
This is really awesome, great job!
izakfr
·قبل سنتين·discuss
Thank you for the feedback, this is helpful!

One of the features we're excited about adding is a way to cache values locally. Having control of cache ttl and refresh intervals would be a must if we added that. You're right that the tool should just work without the developer worrying about affecting latency.
izakfr
·قبل سنتين·discuss
You could make a variable like `rollout_percent` that is an number. It could be set to 1. Then in your app you could do something like:

const rollout_percent = await varse_client.getNumber('rollout_percent');

const random_number = Math.random() * 100;

if (random_number <= rollout_percent) {

// do gated action and will trigger for 1% of users when rollout_percent === 1

}
izakfr
·قبل سنتين·discuss
The axios point is helpful, thank you for mentioning it. I'll make a bug ticket to fix.

Also, we should probably put restrictions the keyname scheme. Ideally, it should be something readable.
izakfr
·قبل سنتين·discuss
Just updated the repo. Thanks for the clarification.
izakfr
·قبل سنتين·discuss
Yeah that's a good point. We meant application config. I will change the repo's description to reflect this.
izakfr
·قبل سنتين·discuss
Feature Flags looks like it's crafted around automated rollouts. Varse was designed to be more manual, just for reading / writing key - value pairs. You can use it to store long-lived variables like database_url. It could also be used for short lived variables like percent_db_migration_rollout.

Have you used Feature Flags in the past? I'm curious what your experience was.
izakfr
·قبل سنتين·discuss
It's a variable or config that gets injected into a server at runtime. At least that's what I've heard it called in the past. I think it's interchangeable with environment variable.
izakfr
·قبل سنتين·discuss
The two-way sync does seem to be another problem with these export tools. Thanks for sharing, I'll take a look!
izakfr
·قبل سنتين·discuss
This is awesome! I’ve been working on optimizing a javascript library recently and am feeling the pain of performance testing. I’ll check this out.
izakfr
·قبل سنتين·discuss
Since almost all websites use HTML / CSS, its the output format we wanted to target. If you don't use HTML it breaks things like SEO, accessibility, etc.
izakfr
·قبل سنتين·discuss
Our current API is design in the editor -> HTML / CSS. Exposing the internal data structure wouldn't work well. We've changed the structure multiple times in the past few months. We have plans to change it rather dramatically in the future.
izakfr
·قبل سنتين·discuss
Wow, this is really cool! Thanks for sharing.
izakfr
·قبل سنتين·discuss
At the top of this post there is a link to the playground.

Here's the link: https://app.repaint.com/playground
izakfr
·قبل سنتين·discuss
Yes, repaint.com is made in Repaint.

What do you mean drawn live? The content is animated, but is still present in the DOM for indexing purposes.
izakfr
·قبل سنتين·discuss
We actually looked into Tldraw. I read a lot of the source code and their editor is impressive. We ran into performance problems at around 1000 nodes when panning and zooming. After seeing that, we decided to make the jump to WebGL.
izakfr
·قبل سنتين·discuss
The engine is written in Typescript.

Here's a good place to start for the basics: https://webglfundamentals.org/
izakfr
·قبل سنتين·discuss
We added a link to a playground in the post so that you can try Repaint without creating an account.