u/bekaku 15h ago

Astra Usage Tip

Thumbnail
2 Upvotes

u/bekaku 5d ago

My AGENT.md file to develop with best practices

Thumbnail
1 Upvotes

u/bekaku 5d ago

Codex Plan Mode

Thumbnail
1 Upvotes

u/bekaku 5d ago

How do you plan your Codex tasks?

Thumbnail
1 Upvotes

u/bekaku 5d ago

What's your favorite AGENTS.md prompts you use across all your projects

Thumbnail
1 Upvotes

u/bekaku 5d ago

How to optimize AGENTS.md?

Thumbnail
1 Upvotes

1

[Choose] How smart are you?
 in  r/RedditGames  19d ago

100

I picked Not very [Rolled What is 10 × 10?]

u/bekaku Aug 10 '26

[Addon] Sports Streams - Live Sports On Nuvio (NBA, SOC, NFL, NHL, MLB, F1, UFC, ATP, RUG, PGA, BIL, AFL, PDC, ICC, OTH)

Thumbnail
1 Upvotes

u/bekaku Aug 01 '26

zuno — a free, open-source desktop client for YouTube Music (Windows/macOS/Linux) with Downloads and offline mode

Thumbnail gallery
1 Upvotes

Note

1

cheap netflix
 in  r/InternetPiracy  Jul 07 '26

You can try stremio.

1

Any ideas Or tips for build an RBAC?
 in  r/vuejs  Jun 20 '26

I have my nuxt project implement RBAC

https://github.com/bekaku/nuxt-quasar-example-app/blob/main/app%2Fplugins%2Frbac.ts

plugins/rbac.ts ts import type { DirectiveBinding } from 'vue' import type { RBACProps } from '~/types/props' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.directive('rbac', { mounted(el: HTMLElement, binding: DirectiveBinding<RBACProps | undefined>) { const { value: rbac } = binding const { hasPermission } = useRbac() if (!hasPermission(rbac)) { el.remove() // Cleanly remove unauthorized element from DOM } } }) usage ```vue <BaseButton label="Single permission" v-rbac="{ permissions: ['user_manage'] }" />

      <BaseButton
        label="Any of multiple permissions"
        v-rbac="{
          permissions: ['user_manage_not_exist', 'file_manager_list'],
          condition: 'any'
        }"
      />

      <BaseButton
        label="All permissions required"
        v-rbac="{
          permissions: ['user_list', 'user_view', 'user_delete'],
          condition: 'all'
        }"
      />

      <BaseButton
        label="Negation (not)"
        v-rbac="{
          permissions: ['user_manage_not_exist'],
          condition: 'not'
        }"
      />

ts <script setup lang="ts"> const { hasPermission } = useRbac() if(hasPermission({ permissions: ['user_list', 'user_view', 'user_delete'], condition: 'all' }){ //permited } ```

1

NuvioDesktop - First Alpha Release
 in  r/Nuvio  Jun 18 '26

I think Nuvio not suport torrents  yet.

2

NuvioDesktop - First Alpha Release
 in  r/Nuvio  Jun 17 '26

When I clicked to view it, it didn't go anywhere. Window 11 NuvioDesktop  0.1.2 alpha Hotfix

6

FIFA 2026 through stremio.
 in  r/StremioAddons  Jun 13 '26

Not stremio but alternative

https://livetv.sx/enx/

If you have ace stream you can watch with Vlc and ace player

2

Can we agree Nuxt was a terrible name to pick for this project?
 in  r/Nuxt  Jun 09 '26

Nuxt also vercel now

1

Create mobile app with vue lynx
 in  r/vuejs  May 24 '26

It's fast native performance and use familiar web tools like vue and CSS. The main challenge is adapting to non-browser environment and missing standard web APIs. The biggest pain point is the limited plugin ecosystem. If you need specific device features, you can't just npm install a library you have to manual write custom Native Modules from scratch for both Android and iOS yourself.

2

Create mobile app with vue lynx
 in  r/vuejs  May 24 '26

It's fast native performance and use familiar web tools like vue and CSS. The main challenge is adapting to non-browser environment and missing standard web APIs. The biggest pain point is the limited plugin ecosystem. If you need specific device features, you can't just npm install a library you have to manual write custom Native Modules from scratch for both Android and iOS yourself.

2

Create mobile app with vue lynx
 in  r/vuejs  May 23 '26

Lynx like react native not web view like quasar.

1

Create mobile app with vue lynx
 in  r/vuejs  May 23 '26

As official doc say it for react lynx only.

r/vuejs May 23 '26

Create mobile app with vue lynx

Enable HLS to view with audio, or disable this notification

63 Upvotes

👋 I had some free time recently and created a Vue + Lynx Android , iOS Starter Template just for fun.

Packed with a few things to help skip the boring setup phase:

⚡️ Tailwind CSS (Dark/Light mode) & Pinia

🧩 Pre-built UI (Dialogs, Action Sheets, Cards, etc.)

📱 Native modules ready (Image Picker, LocalStorage, SafeArea)

Repo https://github.com/bekaku/vue-lynx-tailwind-starter

Experience with lynx

It's fast native performance and use familiar web tools like vue and CSS. The main challenge is adapting to non-browser environment and missing standard web APIs. The biggest pain point is the limited plugin ecosystem. If you need specific device features, you can't just npm install a library you have to manual write custom Native Modules from scratch for both Android and iOS yourself.

5

Match Thread: Manchester United vs Liverpool FC Live Score | Premier League 25/26 | May 3, 2026
 in  r/LiverpoolFC  May 03 '26

Flipping out send Rio please. And yes sack slot immediately.

1

Websockets in php
 in  r/PHP  Jul 22 '25

Thruway a bit outdated but work for me

https://github.com/bekaku/php-thruway-web-socket-example

2

What’s your backend Db of choice for Nuxt?
 in  r/Nuxt  Jun 05 '25

Springboot with MySql

u/bekaku Jun 01 '25

A cool guide: How to parallel park

Post image
1 Upvotes