fix: Rename freeflowuniverse to incubaid

This commit is contained in:
Mahmoud-Emad
2025-10-12 12:30:19 +03:00
parent 801c4abb43
commit 8f2d187b17
1593 changed files with 8753 additions and 8300 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v run
// Example struct to cache
import freeflowuniverse.herolib.data.cache
import incubaid.herolib.data.cache
import time
@[heap]

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.countries
import incubaid.herolib.data.countries
mut all_countries := countries.get_all_countries() or {
eprintln('Error loading countries: ${err}')

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.ourdb
import incubaid.herolib.data.ourdb
import time
// Known worker public key

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.ourdb
import incubaid.herolib.data.ourdb
worker_public_key := '46a9f9cee1ce98ef7478f3dea759589bbf6da9156533e63fed9f233640ac072c'

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env -S v -n -w -cg -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.encoder
import incubaid.herolib.data.encoder
import crypto.ed25519
import freeflowuniverse.herolib.ui.console
import incubaid.herolib.ui.console
struct AStruct {
mut:

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cg -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.crypt.aes_symmetric { decrypt, encrypt }
import freeflowuniverse.herolib.ui.console
import incubaid.herolib.crypt.aes_symmetric { decrypt, encrypt }
import incubaid.herolib.ui.console
msg := 'my message'.bytes()
console.print_debug('${msg}')

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
// Example demonstrating GraphDB usage in a social network context
import freeflowuniverse.herolib.data.graphdb
import incubaid.herolib.data.graphdb
fn main() {
// Initialize a new graph database with default cache settings

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.encoderhero
import freeflowuniverse.herolib.core.base
import incubaid.herolib.data.encoderhero
import incubaid.herolib.core.base
// this is docu at top
@[name: 'teststruct ']

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.encoderhero
import freeflowuniverse.herolib.core.base
import incubaid.herolib.data.encoderhero
import incubaid.herolib.core.base
import time
struct Person {

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -cg -d use_openssl -enable-globals run
import freeflowuniverse.herolib.clients.postgresql_client
import freeflowuniverse.herolib.data.location
import incubaid.herolib.clients.postgresql_client
import incubaid.herolib.data.location
// Configure PostgreSQL client
heroscript := "

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.clients.postgresql_client
import freeflowuniverse.herolib.data.location
import incubaid.herolib.clients.postgresql_client
import incubaid.herolib.data.location
// Configure PostgreSQL client
heroscript := "

View File

@@ -2,7 +2,7 @@
// Please note that before running this script you need to run the server first
// See examples/data/ourdb_server.vsh
import freeflowuniverse.herolib.data.ourdb
import incubaid.herolib.data.ourdb
import os
mut client := ourdb.new_client(

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.ourdb
import incubaid.herolib.data.ourdb
const test_dir = '/tmp/ourdb'

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.ourdb
import incubaid.herolib.data.ourdb
import os
mut server := ourdb.new_server(

View File

@@ -1,6 +1,6 @@
module main
import freeflowuniverse.herolib.data.ourdb_syncer.streamer
import incubaid.herolib.data.ourdb_syncer.streamer
fn main() {
master_public_key := '570c1069736786f06c4fd2a6dc6c17cd88347604593b60e34b5688c369fa1b39'

View File

@@ -1,6 +1,6 @@
module main
import freeflowuniverse.herolib.data.ourdb_syncer.streamer
import incubaid.herolib.data.ourdb_syncer.streamer
fn main() {
println('Strating the streamer first!')

View File

@@ -1,6 +1,6 @@
module main
import freeflowuniverse.herolib.data.ourdb_syncer.streamer
import incubaid.herolib.data.ourdb_syncer.streamer
fn main() {
// Create a new streamer

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.core.playbook
import freeflowuniverse.herolib.data.paramsparser
import incubaid.herolib.core.playbook
import incubaid.herolib.data.paramsparser
import os
const testpath = os.dir(@FILE) + '/data'

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.paramsparser { Params, parse }
import incubaid.herolib.data.paramsparser { Params, parse }
import time
totalnr := 1000000

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.radixtree
import incubaid.herolib.data.radixtree
mut rt := radixtree.new(path: '/tmp/radixtree_test', reset: true)!

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env -S v -n -w -gc none -cc tcc -d use_openssl -enable-globals run
import freeflowuniverse.herolib.data.resp
import incubaid.herolib.data.resp
import crypto.ed25519
mut b := resp.builder_new()