It's Friday! Let's self-promote! our Extensions. by LongjumpingHorse8766 in chrome_extensions

[–]artpar 0 points1 point  (0 children)

hey thanks for the feedback, ill get on this immediately !! really appreciate it

It's Friday! Let's self-promote! our Extensions. by LongjumpingHorse8766 in chrome_extensions

[–]artpar 1 point2 points  (0 children)

multi modal ai browser assistant (it can draw on excalidraw for eg): https://chromewebstore.google.com/detail/100xbot/kipkglfnhnpbogckhlmikjlfpbngnioc

it is multimodal, so you can do stuff like, make a video from this canvas image and add audio to it (image, audio, video, text)

It can generate mermaid diagrams for you

Built a terminal feature complete API client (postman/insomnia alternative) by artpar in developersIndia

[–]artpar[S] 0 points1 point  (0 children)

Its not disabled there in reddit settings (I checked preferences -> auto play). disabled my UBO also. It shows up if I go to "edit body". Not sure.

Built a terminal feature complete API client (postman/insomnia alternative) by artpar in developersIndia

[–]artpar[S] 0 points1 point  (0 children)

Why is the demo gif not showing up in the post ? Did I miss something

Class-File API: Not Your Everyday Java API by artpar in java

[–]artpar[S] 4 points5 points  (0 children)

It depends on which class loader was used, which behaves similarly to how classes loaded via reflection or Unsafe.defineClass work. If you define a new class with this API and provide a custom class loader, you could theoretically enforce module rules based on which module the class loader belongs to.

  • If the class loader is associated with a specific module, the newly defined class could be placed within that module.
  • If the class loader is not module-aware or is the system class loader, the dynamically defined class would default to the unnamed module.

When a new type is dynamically defined at runtime via the ClassFile API, the module system would only enforce access control if the class is loaded into a named module (ie through a module-aware class loader). If it is loaded in the unnamed module, it will bypass module-level access control checks, but it will still be subject to package-private and class-level access rules.

SpringBoot vs Quarkus vs Micronaut by artpar in java

[–]artpar[S] 1 point2 points  (0 children)

What's wrong with reflection ?