Compare commits

...

13 Commits

Author SHA1 Message Date
441df6c4f7 ... 2025-03-15 11:28:40 +01:00
7db75b8b57 ... 2025-01-12 21:25:43 +01:00
7e8be26f7b works 2025-01-12 20:40:03 +01:00
39397a5af7 style 2025-01-12 20:39:29 +01:00
d6a9e13025 remove tailwind 2025-01-12 20:31:22 +01:00
d3ce2a3ec1 styling 2025-01-12 20:11:51 +01:00
5468c18a01 s 2025-01-12 12:17:36 +01:00
faf2f36673 s 2025-01-12 12:10:31 +01:00
fd6a08d54a s 2025-01-12 12:09:51 +01:00
d2cef59285 s 2025-01-11 14:10:24 +04:00
adf410532b ... 2025-01-02 18:52:49 +01:00
5ce67dd29e add gallery to boats 2025-01-02 17:42:46 +01:00
7fe7b3cd49 dahabiya 2025-01-02 17:15:56 +01:00
355 changed files with 1313 additions and 18908 deletions

189
.gitignore vendored
View File

@@ -1,184 +1,23 @@
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
# Dependencies
/node_modules
# Logs
# Production
/build
logs
_.log
npm-debug.log_
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Generated files
.docusaurus
.cache-loader
# Caches
.cache
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
# Runtime data
pids
_.pid
_.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# IntelliJ based IDEs
.idea
# Finder (MacOS) folder config
.DS_Store
npm-debug.log*
yarn-debug.log*
yarn-error.log*
bun.lockb
build/
pnpm-lock.yaml
yarn.lock

View File

@@ -1,3 +0,0 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};

View File

@@ -1,133 +0,0 @@
---
slug: ai_more_than_llm
title: 'AI is more than LLM.'
authors: [tf9cloud]
tags: [info, tech]
image: img/quantum_ai.png
---
![](img/quantum_ai.png)
# The Main Elements of AI Systems
AI systems are complex and multifaceted, built from a combination of technologies and components that work together to process data, learn from it, and execute tasks autonomously or semi-autonomously. Below is an overview of the main elements that constitute an AI system:
---
### 1. **Large Language Models (LLMs)**
- **Description**: LLMs are advanced neural networks trained on extensive datasets of text. They generate human-like text and understand natural language with remarkable precision.
- **Key Capabilities**:
- Language understanding and generation.
- Summarization, translation, and sentiment analysis.
- Context-aware conversations and content creation.
---
### 2. **AI Databases**
- **Description**: Specialized databases optimized for storing, retrieving, and managing large volumes of data required for AI training and inference.
- **Types**:
- Vector Databases: For managing embeddings and similarity searches.
- Time-Series Databases: For processing real-time data streams.
- Knowledge Graphs: For structured, relationship-focused data storage.
- **Purpose**:
- Efficiently manage and serve data for training and operational tasks.
- Enable insights and decision-making through structured and unstructured data.
---
### 3. **AI Agents**
- **Description**: Autonomous or semi-autonomous entities that interact with the environment, learn, and perform tasks.
- **Key Features**:
- Goal-oriented behavior.
- Ability to adapt based on feedback.
- Multi-agent systems for collaborative problem-solving.
- **Applications**:
- Chatbots, virtual assistants, and robotic systems.
---
### 4. **Data Pipelines**
- **Description**: Infrastructure for collecting, cleaning, processing, and transforming raw data into a format usable by AI models.
- **Components**:
- ETL Processes (Extract, Transform, Load).
- Data lakes and warehouses.
- Monitoring and quality control tools.
- **Importance**:
- Ensures high-quality, reliable data for training and inference.
---
### 5. **Inference Engines**
- **Description**: Systems or components that utilize trained AI models to make predictions, decisions, or generate outputs in real time.
- **Characteristics**:
- Optimized for low-latency operations.
- Often deployed at scale in production environments.
---
### 6. **Machine Learning Frameworks**
- **Description**: Software libraries and tools that provide a foundation for building, training, and deploying AI models.
- **Popular Frameworks**:
- TensorFlow, PyTorch, Scikit-learn.
- **Role**:
- Simplify the process of creating and experimenting with models.
- Enable scalability and compatibility across platforms.
---
### 7. **Model Training Infrastructure**
- **Description**: High-performance computing environments designed to handle the resource-intensive process of training AI models.
- **Components**:
- GPU/TPU clusters for acceleration.
- Distributed computing setups.
- Hyperparameter optimization tools.
- **Outcome**:
- Produces optimized models ready for deployment.
---
### 8. **Deployment and Integration Systems**
- **Description**: Platforms that host trained AI models and integrate them into applications.
- **Capabilities**:
- Containerization (e.g., Docker, Kubernetes).
- APIs for seamless interaction.
- Continuous delivery pipelines for updates.
---
### 9. **Ethics and Governance Frameworks**
- **Description**: Guidelines and systems for ensuring AI systems are fair, transparent, and aligned with ethical standards.
- **Key Elements**:
- Bias detection and mitigation tools.
- Privacy-preserving techniques (e.g., differential privacy).
- Compliance with regulations and best practices.
---
### 10. **Feedback Loops**
- **Description**: Mechanisms to continuously improve AI models based on user interactions and real-world performance.
- **Features**:
- Real-time data collection.
- Retraining pipelines for adaptive learning.
- **Outcome**:
- Enhances accuracy and relevance over time.
---
### 11. **Human-AI Interfaces**
- **Description**: User-facing components that enable intuitive interaction between humans and AI systems.
- **Examples**:
- Dashboards, voice interfaces, and augmented reality tools.
- **Goal**:
- Make AI accessible and actionable for end users.
---
### 12. **Specialized Hardware**
- **Description**: Custom hardware optimized for AI tasks, such as:
- GPUs, TPUs, and ASICs for acceleration.
- Neuromorphic chips for energy-efficient computing.
- **Purpose**:
- Enhance performance and reduce operational costs.

View File

@@ -1,5 +0,0 @@
tf9cloud:
name: Veda Team
title: Digital Innovation Team
url: https://ourworld.tf/tf9cloud
image_url: /img/logo.svg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 MiB

View File

@@ -1,17 +0,0 @@
#!/bin/bash
set -ex
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"
export PATH=${BASE}/node_modules/.bin:$PATH
echo "Docs directory: $script_dir"
#bun build
#bun ${script_dir}/node_modules/.bin/docusaurus build
pnpm build
rsync -rv --delete ${script_dir}/build/ root@info.ourworld.tf:/root/hero/www/info/veda/

6
community/build.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -e
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"
hero docusaurus -bp

24
community/cfg/footer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"style": "dark",
"links": [
{
"title": "Docs",
"items": [
{
"label": "OurWorld",
"href": "https://www.ourworld.tf"
}
]
},
{
"title": "Links",
"items": [
{
"label": "ThreeFold New Internet",
"href": "https://threefold.io"
}
]
}
],
"copyright": "Copyright © 2025 OurWorld"
}

16
community/cfg/main.json Normal file
View File

@@ -0,0 +1,16 @@
{
"title": "Veda Nile Community",
"tagline": "Nile boats",
"favicon": "img/ourworld_favicon.png",
"url": "https://info.ourworld.tf",
"baseUrl": "/veda1234/",
"url_home": "docs",
"image": "img/ourworld_logo.png",
"metadata": {
"description": "Veda Nile Boats",
"image": "https://info.ourworld.tf/img/logo.svg",
"title": "OurWorld Veda"
},
"buildDest":["root@info.ourworld.tf:/root/hero/www/info/veda1234"],
"buildDestDev":["root@info.ourworld.tf:/root/hero/www/info/veda1234"]
}

14
community/cfg/navbar.json Normal file
View File

@@ -0,0 +1,14 @@
{
"title": "",
"logo": {
"alt": "Logo",
"src": "img/ourworld_logo.png"
},
"items": [
{
"href": "https://www.veda-egypt.com/",
"label": "Veda Egypt Website",
"position": "right"
}
]
}

6
community/develop.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash -e
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"
hero docusaurus -d

View File

@@ -0,0 +1,8 @@
{
"label": "Appendix",
"position": 90,
"link": {
"type": "generated-index",
"description": "More info."
}
}

View File

@@ -16,10 +16,10 @@ Decentralization, in our view, isn't solely about employing blockchain technolog
For us decentralization is a very serious topic and is achieved in the following way:
- [Cooperative](coop.md)
- Cooperative
- It manages the promotion of the Veda and related ecosystem
- It safeguards the decentralization principles and the governance of the ecosystem.
- It requires operational tasks in relation to anything that is of interest our members.
- [DAO](dao.md)
- DAO
- A **Decentralized Autonomous Organization** is an organizational structure that operates through smart contracts on a blockchain, with decision-making processes carried out in a decentralized and autonomous manner.

View File

Before

Width:  |  Height:  |  Size: 205 KiB

After

Width:  |  Height:  |  Size: 205 KiB

View File

Before

Width:  |  Height:  |  Size: 398 KiB

After

Width:  |  Height:  |  Size: 398 KiB

View File

Before

Width:  |  Height:  |  Size: 232 KiB

After

Width:  |  Height:  |  Size: 232 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 MiB

After

Width:  |  Height:  |  Size: 3.4 MiB

View File

Before

Width:  |  Height:  |  Size: 473 KiB

After

Width:  |  Height:  |  Size: 473 KiB

View File

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 162 KiB

View File

Before

Width:  |  Height:  |  Size: 525 KiB

After

Width:  |  Height:  |  Size: 525 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -16,13 +16,17 @@ As we get more members, we can pay ourselves a salary and keep on attracting mor
## **The First 3 Functions & Their Roles**
### **Catalyst of Momentum** = 1x coordinator
We expect at start some of the following jobs might not be full time yet.
### **Catalyst of Momentum** = 1x coordinator (50%)
- coordinate our responsibilities, coordinate our circles, we work following a process as defined in [our colab doc](https://threefold.info/cocreation)
- *Purpose*: Drives alignment, operations, and progress across all roles to keep the cooperative agile and active.
- *Responsibility*: Lead initiatives, resolve blockers, and ensure continuous forward movement.
- *Skills*: Operational leadership, project management, and problem-solving.
### **Signal Amplifier** = 1x communication, promotion
- *Purpose*: Tells the cooperatives story to the world, attracting new members, supporters, and advocates.

View File

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View File

@@ -0,0 +1,8 @@
{
"label": "Business",
"position": 61,
"link": {
"type": "generated-index",
"description": "To be further prepared."
}
}

60
community/docs/biz/biz.md Normal file
View File

@@ -0,0 +1,60 @@
---
title: 'Investment Opportunity'
sidebar_position: 1
hide_title: true
description: 'Investment Opportunity: Luxury Nile Cruise Operations'
---
![](../img/boats_land3.png)
## Current Operations Overview
Our fleet of luxury Nile cruisers has been operating with minimal commercial focus, primarily serving our community events.
Despite limited commercialization, the operation generates €200,000-300,000 in annual net profit, demonstrating strong potential for significant growth.
## Asset Portfolio
### Existing Assets
- Fully operational Egyptian company with experienced management
- Professional team of +25 full-time staff
- Premium fleet:
- Two luxury vessels (Mother & Father Veda) - 24 premium rooms
- One traditional sailing vessel - 10 rooms
- One boutique family boat - 5 rooms
- Support vessels including speedboat
- All necessary licenses and permits
- Established operational infrastructure
### Expansion Opportunities
- Three additional boutique vessels (4 rooms each)
- Six eco-friendly tugboats (currently leased)
- Strategic land acquisition potential near Aswan for:
- Private docking facilities
- Organic farming operations
- Vertical integration opportunities
## Financial Projections (just as example simulation)
### Revenue Drivers
- Luxury Vessel Rates: $500-1,000 per room/night
- Traditional Vessel Rates: $250-600 per room/night
### Seasonal Operations
- Peak Season: 4 months
- Mid Season: 3 months
- Low Season: 3 months
### Conservative Revenue Projection
- Total Rooms: 54
- Average Rate: $300/night
- Operating Days: 20/month
- Operating Months: 10/year
- Potential Annual Revenue: $3.2M
- Conservative Estimate (50%): $1.5M+

View File

@@ -0,0 +1,56 @@
---
title: 'Unique'
sidebar_position: 1
hide_title: true
description: 'The boats are special'
---
![](../img/3_boats_sky.png)
# Unique Competitive Advantages
As part of our commercial roll out we envision following benefits
## Industry-Leading Sustainability
- First-of-its-kind solar-powered fleet on the Nile (still work in progress)
- Advanced water purification systems
- Pioneering green tugboat initiative (still work in progress)
- Setting new environmental standards in Nile tourism
## Strategic Operational Advantages
### Rare Operating Licenses
- Limited number of available Nile cruise permits
- High barriers to entry for new operators
- Protected market position
- Increasing value of operational licenses
### Veteran Leadership
- Led by Mr. Maher, 40+ years industry veteran
- Deep understanding of Egyptian maritime operations
- Extensive local network and relationships
- Proven track record in Nile cruise management
## Vertical Integration Opportunities
### Land Acquisition Potential
- Strategic docking facilities
- Organic farming operations
- Farm-to-table dining experience
- Supply chain control
- Additional revenue streams
- Reduced operational costs
### Market Positioning
- Only eco-conscious luxury fleet on the Nile
- Unique blend of sustainability and luxury
- Growing demand for responsible tourism
- Premium positioning in expanding market
This combination of sustainable operations, rare licenses, experienced management, and vertical integration opportunities creates a unique and defensible market position in the luxury Nile cruise sector.

View File

@@ -0,0 +1,56 @@
---
title: 'Gallery'
sidebar_position: 11
hide_title: true
hide_table_of_contents: true
description: '...'
---
## Image Gallery
## The Dahabiya
![](../veda1/img/veda1_3x.png)
![](../veda1/img/veda1_veda3.png)
![](../veda1/img/veda1_water.png)
## Exterior view
![](../veda1/img/veda1_3xb.png)
![](../veda1/img/veda1_deck1.png)
![](../veda1/img/veda1_deck2.png)
![](../veda1/img/veda1_deck3.png)
![](../veda1/img/veda1_inerior2.png)
![](../veda1/img/veda1_suiteview.png)
![](../veda1/img/veda1_yoga.png)
## Interior view
![](../veda1/img/veda1_coridor.png)
![](../veda1/img/veda1_inerior1.png)
![](../veda1/img/veda1_interior2.png)
![](../veda1/img/veda1_meetingroom.png)
![](../veda1/img/veda1_meetingroom2.png)
![](../veda1/img/veda1_room.png)

View File

Before

Width:  |  Height:  |  Size: 976 KiB

After

Width:  |  Height:  |  Size: 976 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 915 KiB

After

Width:  |  Height:  |  Size: 915 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 967 KiB

After

Width:  |  Height:  |  Size: 967 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 952 KiB

After

Width:  |  Height:  |  Size: 952 KiB

View File

Before

Width:  |  Height:  |  Size: 996 KiB

After

Width:  |  Height:  |  Size: 996 KiB

View File

Before

Width:  |  Height:  |  Size: 779 KiB

After

Width:  |  Height:  |  Size: 779 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 713 KiB

After

Width:  |  Height:  |  Size: 713 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 713 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 944 KiB

After

Width:  |  Height:  |  Size: 944 KiB

View File

Before

Width:  |  Height:  |  Size: 765 KiB

After

Width:  |  Height:  |  Size: 765 KiB

View File

Before

Width:  |  Height:  |  Size: 739 KiB

After

Width:  |  Height:  |  Size: 739 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -7,7 +7,7 @@ description: '...'
---
> TODO:
![](img/veda1_plan.png)

View File

@@ -0,0 +1,28 @@
---
title: 'Gallery'
sidebar_position: 11
hide_title: true
hide_table_of_contents: true
description: '...'
---
![](../veda2/img/veda2_deck2.png)
![](../veda2/img/veda2_inside.png)
![](../veda2/img/veda2_inside2.png)
![](../veda2/img/veda2_intro.png)
![](../veda2/img/veda2_nile.png)
![](../veda2/img/veda2_people.png)
![](../veda2/img/veda2_staff.png)
![](../veda2/img/veda2_upper.png)
![](../veda2/img/veda2_view.png)
![](../veda2/img/veda2_yoga.png)

View File

Before

Width:  |  Height:  |  Size: 537 KiB

After

Width:  |  Height:  |  Size: 537 KiB

View File

Before

Width:  |  Height:  |  Size: 944 KiB

After

Width:  |  Height:  |  Size: 944 KiB

View File

Before

Width:  |  Height:  |  Size: 921 KiB

After

Width:  |  Height:  |  Size: 921 KiB

View File

Before

Width:  |  Height:  |  Size: 893 KiB

After

Width:  |  Height:  |  Size: 893 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

Before

Width:  |  Height:  |  Size: 595 KiB

After

Width:  |  Height:  |  Size: 595 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 989 KiB

After

Width:  |  Height:  |  Size: 989 KiB

View File

Before

Width:  |  Height:  |  Size: 944 KiB

After

Width:  |  Height:  |  Size: 944 KiB

View File

Before

Width:  |  Height:  |  Size: 963 KiB

After

Width:  |  Height:  |  Size: 963 KiB

View File

@@ -7,7 +7,7 @@ description: '...'
---
> TODO:
![](img/veda2_plan.png)

View File

@@ -0,0 +1,22 @@
---
title: 'Gallery'
sidebar_position: 11
hide_title: true
hide_table_of_contents: true
description: '...'
---
## Image Gallery
![](../veda3/img/veda3_boats_2.png)
![](../veda3/img/veda3_boats_3.png)
![](../veda3/img/veda3_boats_sky.png)
![](../veda3/img/veda3_boats.png)
![](../veda3/img/veda3_deck.png)
![](../veda3/img/veda3.png)

View File

Before

Width:  |  Height:  |  Size: 872 KiB

After

Width:  |  Height:  |  Size: 872 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 979 KiB

After

Width:  |  Height:  |  Size: 979 KiB

View File

Before

Width:  |  Height:  |  Size: 868 KiB

After

Width:  |  Height:  |  Size: 868 KiB

View File

Before

Width:  |  Height:  |  Size: 788 KiB

After

Width:  |  Height:  |  Size: 788 KiB

View File

Before

Width:  |  Height:  |  Size: 967 KiB

After

Width:  |  Height:  |  Size: 967 KiB

View File

Before

Width:  |  Height:  |  Size: 532 KiB

After

Width:  |  Height:  |  Size: 532 KiB

View File

@@ -0,0 +1,13 @@
---
title: 'Layout'
sidebar_position: 10
hide_title: true
hide_table_of_contents: true
description: '...'
---
![](../veda3/img/veda3_plan.png)

View File

@@ -0,0 +1,17 @@
---
title: 'Gallery'
sidebar_position: 11
hide_title: true
hide_table_of_contents: true
description: '...'
---
![](../veda4/img/veda4_artist.png)
![](../veda4/img/veda4_deck.png)
![](../veda4/img/veda4_resto.png)
![](../veda4/img/veda4_room.png)
![](../veda4/img/veda4_upper.png)

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 412 KiB

After

Width:  |  Height:  |  Size: 412 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

Before

Width:  |  Height:  |  Size: 999 KiB

After

Width:  |  Height:  |  Size: 999 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

@@ -6,5 +6,5 @@ description: 'Layout'
---
> TODO:
![](../veda4/img/veda4_plan.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 979 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 868 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 788 KiB

View File

Before

Width:  |  Height:  |  Size: 883 KiB

After

Width:  |  Height:  |  Size: 883 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Some files were not shown because too many files have changed in this diff Show More