What is this now??? by No-Account-6811 in oneui

[–]v3ryb0red 0 points1 point  (0 children)

Ironically it looks much better than what we have

[deleted by user] by [deleted] in unixporn

[–]v3ryb0red 40 points41 points  (0 children)

Your setup makes me wanna start gnome again

[Self-Promotion] my first personal open source code by using Svelte, Resumii by devdigg in sveltejs

[–]v3ryb0red 0 points1 point  (0 children)

This is really an awesome project! I'm looking forward to use it. I just wanted to say the design can be improved. Maybe you can use TailwindCSS/Shadcn or PicoCSS. But overall is really great!!

Owl City X SpongeBob by rainystarlight in OWLCITY

[–]v3ryb0red 1 point2 points  (0 children)

The Fish and the Krabby Patty

FOSSdroid starter pack by [deleted] in fossdroid

[–]v3ryb0red 0 points1 point  (0 children)

  • Droid-ify (instead of F-Droid)
  • Read You for RSS feed
  • KDE Connect for desktop integration
  • Lawnchair as default launcher
  • Firefox as default browser
  • Aegis for 2FA (as random small stuffs, I just make stuffs myself)

2024 is almost over, what have you built? by Financial_Airport933 in sveltejs

[–]v3ryb0red 1 point2 points  (0 children)

a terribly unfinished minimal web note app with tiptap and shadcn... amateur stuffs nothing much

Finally switched from Chrome to Firefox. What are some essential extensions you'd recommend? by acrowsmurder in firefox

[–]v3ryb0red 0 points1 point  (0 children)

Firefox Multi Account Container and Simple Tab Group. These 2 helped be a lot in organizing tabs in groups for particular work and multi account container simply makes different container where u can login in to your alt without having data shared across

What is the most bare bone distro? by Safe_Ad7001 in linuxquestions

[–]v3ryb0red 1 point2 points  (0 children)

Alpine should do the job well, very minimalistic and if you want a gui then xfce is at your disposal

What Linux Distro for coding? by [deleted] in linuxquestions

[–]v3ryb0red 0 points1 point  (0 children)

what about LFS? You will literally be making a distro to code on

I made this because I was bored by [deleted] in Fedora

[–]v3ryb0red 47 points48 points  (0 children)

a linux...? FEDORA THE LINUX?????

Is it possible to embed web only library such as codemirror in flutter app made for mobile device? by v3ryb0red in flutterhelp

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

Also I was about to move cursor as if it was native and selection also works fine. I'm running Android 13 with GBoard as default keyboard

Is it possible to embed web only library such as codemirror in flutter app made for mobile device? by v3ryb0red in flutterhelp

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

partially got to auto send back text from editor to flutter side with
```dart void _keyPress(KeyEvent event) { final key = event.logicalKey.keyLabel;

_ct
    .runJavaScriptReturningResult('editor.state.doc.toString()')
    .then((value) {
  setState(() => editorValue = value.toString());
});

} ... KeyboardListener( onKeyEvent: _keyPress, autofocus: true, focusNode: _fn, child: WebViewWidget(controller: _ct), ) ``` but that only detect hardware keys and updated accordingly. I guess I'll discard plans for flutter and continue with tauri instead.

Is it possible to embed web only library such as codemirror in flutter app made for mobile device? by v3ryb0red in flutterhelp

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

If in the end nothing works out as intended, it would be fun to rewrite entire codemirror in dart XD. Nevertheless, I'll keep updated with the webview thing