操作
- ⬜️ 來自專業和 UI 改進的 UX 諮詢
- ⬜️ 幫助視頻庫頁面,用戶可以在這裏觀看視頻並學習如何使用系統
- ⬜️ UX consultation from a professional and UI improvement
- ⬜️ Help video library page where users can watch videos and learn how to use the system
⬜️ 需要將 JSON 文檔映射到數字,以便“文檔 id 0 hobbies[0].name=sam”變爲 0@0.0=sam”,這允許通過掃描數字之間的一系列鍵來進行有效檢索。 ⬜️需要編寫代碼將數字轉回字段名稱 ⬜️需要集成鍵空間優化器,因爲我們重新排序數字以提高跨列表連接的效率,例如文檔 0 = {"hobbies":{("name": "God"),{"name": "databases"), {" name": "computers")}) hobbies 可能是 0,name 可能是 1,我們有 3 個列表項 0、1、2 我們希望所有相同類型的列表索引在排序迭代器中相鄰,所以我們翻轉它們到最後所以 0@0[1]="God" 變成 0@1.0, 0@1.1 0@1.2 ⬜️ 需要爲用於 SQL 連接的內容創建鍵值 ⬜️ 需要創建一個文檔,定義人們期望在 JSON 文檔上執行的連接
⬜️ need to map a JSON document to numbers so "document id 0 hobbies[0].name=sam" becomes 0@0.1=sam" this allows for efficient retrievals by scanning a range of keys between numbers. ⬜️need to write code to turn numbers back into field names ⬜️need to integrate keyspace optimiser, as we reorder numbers for efficiency of joins across lists for example document 0 = {"hobbies":{("name": "God"),{"name": "databases"), {"name": "computers")}) hobbies might be 0, name might be 1 and we have 3 list items 0, 1, 2 we want all list indexes of the same kind to be adjacent in the sort iterator, so we flip them to the end so 0@0[1]="God" becomes 0@1.0, 0@1.1 0@1.2 ⬜️ need to create keyvalues for what is used for SQL joins ⬜️ need to create a document which defines the joins that people expect to do on a JSON document
我有 3 臺機器,每臺機器都有 1 個提供存儲的驅動器 該驅動器作爲一個大型驅動器公開,其中包含所有機器的存儲空間
I have 3 machines each with 1 drive that provides storage The drive is exposed as one large drive with storage from all the machines
我還沒有上傳密鑰,但我可能會。它們只是測試鍵。
我正在使用 virtualbox vagrant 持久卷。這意味着我可以擁有一個與每個 VM 關聯的存儲磁盤。
I haven't uploaded the keys, but I might. They're just test keys.
I am working on using the virtualbox+vagrant persistent volumes. This means I can have a storage disk associated with each VM.
我在這上面花了幾個小時。
如果這適用於所有程序循環,我們可以擁有更高效的程序。
I spent a few hours on this.
If this was applied to all looping of programs, we could have even more efficient programs.
用 Java 重寫 Python 代碼,以便可以使用真正的多線程 實現循環運行線程,重複嘗試執行與該線程號匹配的第 N 個產品
Rewrite Python code in Java so true multithreading can be used Implement loop runner threads that repeatedly try execute Nth product that matches that thread number
A. 爲庫存管理選擇合適的系統。 我需要以下列表: 1- 組件 2- 材料 3- 產品 4- 包裝材料 5- 包裝解決方案 6- ATO-組件(按訂單組裝) 7- 生產信息文件
B. 定義我的所有列表:
A. Choose a suitable system for INVENTORY management.
I need LISTS of:
1- Components
2- Materials
3- Products
4- Packaging materials
5- Packaging solutions
6- ATO-components (Assemble-to-order)
7- Production info file
8- Raw MAterials resources (nu)
9- Empty spots of land dumps (nu)
10- Drivers of trucks that are independent (nu)
B. Define ALL my LISTS:
Communities
Locations
Routes
Distribution centers and supermarkets
將我的系統轉到 COPY-LEFT。
因此,我構建了我認爲最適合我的社區品牌的系統,並且我將其全部複製到左側。
在我看來,這是通往自由的唯一途徑。
歡迎評論。
TURN MY SYSTEM TO COPY-LEFT.
SO I BUILD THE SYSTEM THAT I IMAGINE IS BEST FOR MY COMMUNITY-BASED BRAND, AND I MAKE IT ALL COPY-LEFT.
THIS IS THE ONLY WAY TO FREEDOM IN MY OPINION.
COMMENTS ARE WELCOME.
2小時 我對我創造的東西相當滿意。我認爲 API 可能會更好。或者等待結果的實施可能會更好。 由於嵌套循環,查看是否有任何新結果的計算成本很高。我認爲這可以做得更好。 理想的嵌套循環應該只需要一些 divmod 指令和添加。否則,它們將主導所使用的性能。
2 hours I am fairly happy with what I created. I think the API could be better. Or the implementation of waiting for results could be better. The calculation to see if there are any new results is expensive due to nested loops. I think this could be done better. Ideally nested loops should only take a few divmod instructions and additions. Otherwise they shall dominate performance used.
2-4 小時 我不記得我是什麼時候開始的
我得到重複的條目。
父循環如下所示:
對於字母中的字母: 對於數字中的數字:
對於符號中的符號:
然後我嘗試在內部循環中使用一個新的併發循環來擴展它。
但是每次迭代看起來都一樣!它不等同於:
對於字母中的字母: 對於數字中的數字:
對於符號中的符號:
對於嵌套在代碼中: 對於嵌套中的表情符號: 打印(字母數字符號嵌套表情符號)
我需要某種方式通過任意數量的循環來擴展循環,比如循環樹。
2-4 hours I cannot remember when I began
I get duplicate entries.
The parent loop looks this:
for letter in letters: for number in numbers: for symbol in symbols:
Then I try extend it with a new concurrent loop inside the innerloop.
But each iteration would look the same! It's not equivalent to this:
for letter in letters: for number in numbers: for symbol in symbols: for nested in codes: for emoji in nested: print(letter + number + symbol + nested + emoji)
I need some way of extending the loop through an arbitrary number of loops, like a tree of loops.
我在這上面花了 1 個小時。我並沒有真正想要發展的心情,但還是堅持了下來。
I spent 1 hour on this. I wasn't really in the mood for development but pushed through.
- 新的公共項目會得到通知,就像想法和問題一樣。 2.公共項目的新結果將通知我們的討論。 3.公共項目的新評論將被通知到我們的討論中,除非他們指定了自己的電報頻道(預計未來非常繁忙的項目,以減輕我們核心頻道的負擔。)
- New public projects will get notified, just like ideas and questions.
- New results on public projects will get notified to our discussion.
- New comments on public projects will get notified to our discussion, unless they specified their own telegram channels (expected for future very busy projects, to unload the burden from our core channel.)
⬜️ Tutor intro video for CafeTalk
⬜️ Web designer intro video: Elementor screen-share
當 Grounded Stream 最初作爲一個想法出現時,它應該是一個專注於日常必需品的通用品牌,即走向零浪費的生活方式,完全以社區爲基礎,在社會和環境上可持續發展,並與產品的製造商。 一種產品的想法,它在多個維度上帶來價值,不是“消費”,而是“生產”“轉化”
隨着對複雜系統理論和生態系統映射的深入研究,以及創建像未來 DAO 或某種新系統這樣的新系統的想法,該平臺的誕生就是爲了成爲提供給社區使用的工具,以便在更高的平臺上展示價值鏈,並直接歸功於他們的工作。
快進到今天,我們不止一次地向我們證實,社區只能在兩種模式下工作; 1-爲了自己好,不爲別的,2-爲別人工作..
“合作”“共生”關係的想法,或雙向互利的理解,對他們來說太擔心了。在這種多年來爲“生存”而編程的有限文化下,這導致了許多誤解,而金錢是我們唯一關心的部落。 (在領導人和銀行界對他們的多次背叛之後,我們可以理解)
所以今天的決定是:
1- 我們在 GROUNDED STREAM TRADEMARK 下進行所有生產和產品設計, 2- 該平臺將用於此 MARK,展示所有社區聚集在一起爲它提供資源/服務/產品 3- 所有目錄都是 GROUNDEDSTREAM 目錄。 (不再有白標或商品)
When Grounded Stream first came as an idea, it was supposed to be the universal brand focusing on essential everyday products, that is toward a zero-waste lifestyle, exclusively community based, sustainable socially and environmentally, and connected to the roots of origin of the makers of the products. The idea of a product that brings value on more than one dimension, and is not "consumed" but it is "prosumed" "transformed"
As went along, and with going deeper into complex system theories and ecosystem mapping and the idea of creating a new system like a future DAO or some sort, the platform was born to become the TOOL presented for the communities to use to be shown higher on the value chain and be directly credited for their work.
Fast forward to today, it was more than once confirmed to us that the communities only work under TWO MODES; 1- For their own good and nothing else and 2- As working for someone else..
The idea of "collaborations" "simbiotic" relationships, or a two way benefit mutual understanding, is too much for them to worry about. This led to many misunderstandings under this limited culture of many years of programing for "survival" and money is our only tribe we care about. (we can understand after many betrayals from the leaders and the banking world towards them)
So the decision today is:
1- We are carrying all production and product design under GROUNDED STREAM TRADEMARK, 2- The platform will be FOR this MARK, showcasing all the communities that come together to have provided for it in resource/service/product 3- ALL catalogues are GROUNDEDSTREAM catalogues. (No whitelabel anymore or merchandise anymore)
⬜️ 3 節課介紹爲 youtube 不公開設置上的短視頻
⬜️ Learndash、Stripe、Woocommerce 與我的網站集成
⬜️ 3 lessons intros as short videos on youtube unlisted setting
⬜️ Learndash, Stripe, Woocommerce integration with my website
- ⬜️ 完成車輛旋轉時結構完整性所需的外“防滾架”設計。
- ⬜️ 完成窗戶組裝
- ⬜️ Finalize designs of exo-"roll-cage" needed for structural integrity upon vehicle rotation.
- ⬜️ Finalize assembly of windows
⬜️ 測試“Brainchildren”活動的示例提案
⬜️ 活動在 UpWork 上啓動(測試花費了多少時間來提供每項服務,他們願意支付多少,客戶的滿意度如何)
⬜️ Campaign kick off on UpWork (testing how much time spent is to deliver each service, how much they are willing to pay, how satisfied are the clients)
⬜️ Sample proposal to test "Brainchildren" campaign
⬜️ Update my website based on "Brainchildren" proposition: leave only web tutor, business coach, web design services with links to other projects for other services (like 2kokono for workshops and kokono.ie for brand services)
電報頻道或時事通訊?這些天人們閱讀電子郵件嗎?問題是,我不想因爲成本(時間,分心)而出現在社交媒體上。但是如何與我這種類型的人保持聯繫呢?
Telegram channel or Newsletter? Do people read emails these days? Thing is, I don't want to be on social media because of the cost (time, distractions). But how to keep in touch with my type of people then?
審查、分類和發佈 237 個草稿博客
⬜️ Review, categorise and publish 237 draft blogs
⬜️ Find a plugin that plays audios as Elementor Widget
⬜️ Add audios across website to work as a real human voice behind the brand
⬜️課程大綱
⬜️ 使用 Elementor 進行網站設計
⬜️ Course outline
⬜️ Website design with Elementor & LearnDash from scratch with UX - start a project and a new window opens!
⬜️ Website wireframe on Miro or Figma (to learn)
⬜️ Review conceptual files - audios - and include concepts into website
⬜️ Website concept moodboard/sketch ("Tree" (Roots/Fruits) concept where a burning worm is "doing the EASY work")
☑️ Logo
☑️ Brand name - decide which domain to use
我目前處於設計階段。我正在尋找一種有效的方法來有效地進行結構化連接和掃描集合的匹配鍵。
I am currently in design phase. I am looking for an efficient approach to structured joins and scanning matching keys of collections efficiently.
⬜️ 如何將黑色標誌製作成橙色/紅色標誌,帶有微小的螺旋紋理 [如這張照片所示](https://drive.google.com/file/d/12o91arf_HU2xnUiwxMAGH_Yrrdk-6PKd/view?usp=分享),來表達“從內部燃燒創造力的蠕蟲”的隱喻?
⬜️ How to make a black logo I have into a Orange/Red Logo with a texture of tiny spirals as in this photo, to express the metaphor of a "worm burning creativity from within"?
過去的任務任務未開始的目標:wiki
現在可用:維基知識
adgusted 目標:將 Knowledge Wiki 用作 The Wiki...
需要:要知道:如何做到這一點 - 通用手冊 這將我們帶到
交互因子
past mission task un-started goal : wiki
available now: المعرفة ويكي
adgusted goal: to use المعرفة ويكي as The Wiki...
Need: to know: How To Do That - Universal Manual this takes us to
the INTER-Factor
building the TREE
discovering the TREE
finding your way, finding your fractal-interface-fraction-position that indicates capture of pendulum direction and impact thereof.
hashtag>musing the edea
~is edea he new eden, as in the dual heart of etopia? (utopia being 3d and etopia being multi-d)~
⬜️ 文檔:總結了 5 次測試的反饋
⬜️ 給 5 個人的消息,要求他們通過視頻通話來測試創造性的學習體驗,並向我提供反饋
⬜️ 5 位潛在測試者名單
⬜️ 學習經歷說明——我想考什麼
⬜️ Document: Feedback from 5 tests summarised
⬜️ Messages to 5 people asking them to come and test a creative learning experience via a video call and provide me with feedback
⬜️ List of 5 potential testers
⬜️ Learning experience description - what I want to test
Products (time of materialising over a reachable layer to obtain with relevant price exchange for it.)
How Are Products born? and how can they affect us if it became unhealthily born in possible external distortions. ?
Products DIMensions (a continues thought on the 5-In 5-Out proposed containers of all.
Product Name Description Media Product type category collections Attributes Variants Price
Above is what Saleor organises it:
*This post is about my process of determining the parameters, and may be deleted after conclusion. *
...
The Templates:
The STAGES. from knock-knock to bye-bye. (a to z)
Categories:
classified with "guilds" / "unions" Identified by Material .
### Product Name الوصف Description وصف المنتج الكاتالوج أنواع سعر Media Attributes //الصفة/ Product type نوع Variants الصنف/ category الفئة collections Price صنف، صفة، مواصفة، نوع، شكل
-
☑️ 字體更新:Rubik 用於正文而不是流沙,以提高博客的可讀性
☑️ 重新設計了一個博客檔案,將類別作爲部分並在每個部分中按類別加載特定的帖子
☑️ 單個博客文章模板更新(標題、正文、響應式)
☑️ 編輯 87 個博客的設計並將設置從草稿更改爲已發佈
☑️ 在瀏覽了我的博客後,我意識到了我的價值主張,因此用我的流程和工具更新了主頁
☑️評論旁邊的畫廊
☑️ 啓動輔導員頁面
☑️關於頁面
☑️ 設計調整:按鈕、聯繫表單字段和照片沒有邊框半徑;顏色(選定文本爲黃色)、更簡單的頁腳、新聞通訊表格調整
☑️ 主頁翻譯更新
☑️ 速度優化
☑️ Font update: Rubik for body instead of Quicksand to improve blog readability
☑️ Redesigned a blog archive with categories as sections and specific post-by-category loading in each section; each post as a card with title only to resemble a look of paper sticky notes
☑️ Single blog post template updates (header, body, responsive, breadcrumbs)
☑️ Editing the design of 87 blogs and changing settings from Draft to Published
☑️ After reviewing my blog, I realised my value proposition, so updated a homepage with my process and tools
☑️ Gallery next to Reviews
☑️ Started a facilitator page
☑️ Made about page
☑️ Design adjustments: no border radius for buttons, contact form fields and photos; colors (selected text as yellow), simpler footer, newsletter forms adjustments
☑️ Translations update for homepage
☑️ Speed optimisation
我製作了一個 17 分鐘的視頻,介紹在您自己的服務器上設置 Odoo。稍後我將繼續添加更多信息,如何在一個數據庫上非常便宜地運行多個網站,以及在單個服務器上的多個數據庫上運行多個網站(您也可以在家裏運行)。
I made a 17-min video about setting up Odoo on your own server. I'll later continue by adding more info, how to very cheaply run multiple websites on one database, and run multiple websites on multiple databases on that single server (which you could also run at home).
☑️ 我創建了 Google My Business 個人資料(用於本地 SEO)
☑️ Sukūriau Google My Business profilį (dėl vietinio SEO)
Create a comprehensive FAQ for groundedstream.com.
(@mindey I am using to this website to stream my conciousness, I will get better with time for a solidified communication in its right place, Feel free to remind me of any rules. thx) this project is dates to 2 days only, after it, will grow as progressed
Why does it exist:
- we save time by anticipating the events and questions/demands
- It helps answer high frequency information requests,
- The main entities in this platform:
- The buyer (PC*) entity 1 peer consumers (demand)
- The community (PP*) entity 2 peer producers (producing)
- The stakeholder (no-direct communication with other entities)
- Grounded stream team (Part of the eco-system shapers team engagement: constant with big rest times)
- The Designers [BRANDS] (PPA) entity 3: Peer Partners
This FAQ should address mainly USERS?
I think only main users, so the PP, PC, and PPA
CORE RELATIONSHIP:
PC <-> PP secondary relationship: PPA <.> PP They are both PRODUCERS.
Third being the PPA <-.-> PC
The role that is an output of the above dynamics: - The crafts trainer (by-product)
Examples of Personas:(keep suggesting in comments) - individual designer, farmer, artist, community heads, grafiti artist, calligraphy artist, beauty products designer, etc. ....
FAQs to ask
FAQ-1 what we are
FAQ-2 Addressing the main Entity, the core entity is ---> PProducer- These are the comunities
PP would ask:
- what is this?
- why am i here?
- what do you want from me?
- how can I be part of this?
- can I make money participating?
- how can I make money?
- If I have a design and I'd like to produce it, will you help me?
- What else can you help me with?
- What do I pay? Whats the bait?
- Anything else? write us:
PC would ask:
- what is this
- why am i here
- how can I beenfit
- How much?
- How can I share my own requests if I dont' find a ready solutions?
+PPA would ask*
- How can I find communities to work with me?
- how to connect with them?
- how can you help me produce more?
- do you offer promotions for designers or artists? how?
- How can I use this platform to my advantage?
other question?
I think the above is enough... Or what would a stakeholder ask? or the by-trainer ask as someone who could benefit from this ecosystem?
stakeholder: * How can I help? * How can I know about specific communities? * How can I share feedback?
The BP (I made up this entity: By-Peer (for now) * I teach videos and create many things, how can I be involved? (direct them to the media team, they can shoot a video in our space and we will promote it for them.
需要小工具在網站上播放廣播以進行發佈活動
如何創建播客直播
有什麼工具...
NEED WIDGET TO PLAY RADIO ON THE WEBSITE FOR LAUNCH EVENT
HOW TO CREATE PODCAST LIVE
WHAT ARE THE TOOLS...
關於基於 3 個興趣/背景的頁面:生命系統、初創公司、藝術
About page based on 3 interests/backgrounds: Living Systems, Startups, Art
☑️ 我製作並潤色了英文版網站(例如標題、按鈕、顏色等)
☑️ I made and polished the English version of the website (e.g. Header, buttons, colors, etc.)
☑️ 我用我需要的插件(Elementor、Yoast 等)下載了立陶宛語的 WordPress
☑️ 我用 Elementor 創建了一個帶有“喬遷之家”口號的“標題”
☑️ 編輯字體、顏色等。文體“網站設置”
☑️ 雜誌檔案和個人條目的設計,帶有示例文本和圖像
☑️ reCAPTCHA V3 和電子郵件
☑️ Įsirašiau WordPress lietuvių kalba su man reikiamais įskiepiais (Elementor, Yoast, etc.)
☑️ Sukūriau "header" su Elementor su reklaminiu šūkiu "namisėdos kuria"
☑️ Šriftų, spalvų redagavimas ir kt. stilistikos "Site Settings"
☑️ Žurnalo archyvo bei individualių įrašų dizainas su pavyzdiniu tekstu ir paveikslėliais
☑️ reCAPTCHA V3 ir el.paštas
☑️ 新字體:Poppins 和 Quicksand
☑️ 新顏色:棕色背景,紫色色調
☑️ 新的博客存檔和單一的博客佈局,帶有使用 Elementor 設計的時事通訊表格和 recaptcha v3
☑️ 設計決策:頁眉、頁腳、作品集畫廊、聯繫表格、按鈕、菜單指針等。
☑️ 新頁面:主頁(EN 和 LT)、網頁設計(EN)
☑️ 日曆設置和集成
☑️ New fonts: Poppins and Quicksand
☑️ New colours: brownish background, purple shades
☑️ New blog archive and single blog layout with newsletter forms and recaptcha v3 designed with Elementor
☑️ Design decisions: header, footer, portfolio gallery, contact form, buttons, menu pointer, etc.
☑️ New pages: homepage (in EN and LT), web design (EN)
☑️ Calendly setup and integration
⬜️ update SEO in Yoast
⬜️ add info to websites pages about ui/ux and web content strategy as part of website design service
⬜️ add website pages on art direction, illustration
⬜️ add website pages on prototyping, design sprints
⬜️ update url in local listings
⬜️ 用於在 https://www 上運行的網站。我需要將此版本的網站添加到 GA 嗎?或設置一些從 https:// 到 www 的重定向?
⬜️ 我還需要做什麼重新 SEO 嗎?
⬜️ for a website to work on https://www. do I need to add this version of website to GA? or setup some redirect from https:// to www?
⬜️ anything else I need to do re SEO?
⬜️ how to change an email from which kokono.ie sends a contact form confirmation from ruta@ to hello@kokono.ie, if only ruta@ is on google workspace? hello@ is only an alias...
⬜️ how to make so that emails sent to hello@ go to both, ruta@ and malu@, if hello@ is only an alias on google workspace? can this be set on siteground? or is siteground irrelevant because now all mail is managed by google workspace?
☑️ 將 Miro 板與舊 (2kokono) 和新 (ogiziu) 品牌描述合併
☑️ 整理了我們的 Miro 板以方便使用(瞭解下一步的流程)
☑️ Merged Miro boards with old (2kokono) and new (ogiziu) brand descriptions
☑️ Tidied our Miro board for ease of use (to have a flow of what the next steps are)