Activity
Mon
Wed
Fri
Sun
Jul
Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
What is this?
Less
More

Memberships

Openclaw Labs

2k members โ€ข Free

Data and Ai Automations

1.8k members โ€ข Free

Free Linux Course

5k members โ€ข Free

9 contributions to Data and Ai Automations
Sharing My Local Docker n8n Lab
After watching the first lesson in the video, I decided to take the docker option but also wanted to be able to use webhooks on my local machine so that I can get the full dev experience. Basically I used Docker Compose to create an n8n instance with Postgres as a data store and to allow for experimenting with webhooks I am using cloudflared and included an automation that handles generating and configuring an ephemeral url. (who wants to do this manually when the old fashioned way of automating things is still doable) The repo is located at https://github.com/jcnnll/n8n-lab, so feel free to fork the repo and use it for your own local expeiments. Also feedback and suggestions are welcome.
0 likes โ€ข 13d
@Matt Payne thanks :)
0 likes โ€ข 11d
@Ryan Nolan you're welcome, I'm still pretty new to this but had to get a local instance running the learn on.
built an AI powered automation to visualize and map any book
reading is so last century. today we can see the book before deciding if to read it. built an ai powered automation that will allow to import any book in pdf format and have it be mind mapped, visualized and charted into easy to explore, search and visualize. obsidian + custom built plugin + deepseek this plugin allows me to see and track: - dates - people - places - topics - arguments & main points - secondary sources that relate to above that support or contradict
0 likes โ€ข 14d
I was thinking that 'second brains' really should be exactly that and you're onto a good thing here - after all, isn't automation all about reducing friction and toil?
Beginner in AI Automation (no code) โ€” Looking for a Mentor or Guide in This Community
Assalam o Alaikum / Hello everyone! I'm Ammar, a beginner stepping into the world of AI Automation and Vibe Coding, and I'm genuinely excited to grow in this space โ€” but I need some direction from people who've already walked this path. I have a basic foundation in n8n (through YouTube tutorials), and I'm now looking to go deeper โ€” specifically a complete n8n workflow guide from start to finish, and vibe coding using tools like Google Antigravity and Claude Code. But beyond the tools, here's what I'm really trying to figure out: ๐Ÿ”น Client Side: How do you initiate a project with a client? What conversations happen? How do you onboard them properly? How do you price your work and position your value? ๐Ÿ”น Workflow Side: How does a real automation project start? What process do you follow from brief to build? How does a workflow function end-to-end in a real scenario? ๐Ÿ”น Delivery Side: How do you hand off the finished project to a client professionally? What does that delivery process look like? I'm not looking for someone to do it for me โ€” I want to learn the right way, understand the full process, and eventually serve clients confidently. If you've been in this space and are open to guiding a motivated beginner, I'd love to connect. Even a 15-minute conversation could change my entire direction. Drop a comment or DM me โ€” any help is appreciated!
0 likes โ€ข 15d
I think that if you break these questions down and post them in the community, you will probably get some good feedback.
AI + Obsidian + n8n Workflow for Organizing Study Materials
Hi everyone, following up on the 4/29 call, I wanted to share my project in a bit more detail and get some feedback. Iโ€™m building a personal AI system to manage my school/university workflow. The idea is to automatically organize everything I send โ€” files, notes, audio, etc. โ€” and make it usable later through an AI assistant in a RAG-style setup. Long-term goal: turn this into a fully self-organizing knowledge system with an AI assistant on top. Current setup: - Telegram as the input layer - n8n as the automation layer - an AI โ€œdistributorโ€ that decides whether to create a new file or update an existing one - Obsidian as the main knowledge structure - Google Drive as the synced storage layer - folder IDs planned to be mapped through a Google Sheet for routing and scalability Simplified vault structure: OS-Data/ Subjects/ # Main subject-based knowledge structure Lit/ # Literature / German language & literature _subject.md # Subject metadata: teacher, grading, requirements, rules 12_H2/ # Grade 12, second semester Assignments/ # Tasks that need to be completed active/ # Open / unfinished assignments done/ # Completed / submitted assignments Materials/ # Teacher materials, PDFs, worksheets, sources Notes/ # Lesson notes, summaries, personal notes Works/ # Student-created work: essays, presentations, projects Exams/ # Actual course exams, corrections, grades, feedback MAT/ # Mathematics Eng/ # English INF/ # Computer Science / Informatik Che/ # Chemistry Pol/ # Politics Spa/ # Spanish Spo/ # Sports Global/ # General context for the AI system Me.md # Personal learning profile / preferences School.md # School context, grading, general rules Writing.md # Writing style rules and expectations Templates/ # Templates for creating new notes/files Assignment.md Work.md Exam.md Note.md Unsorted/ # Fallback area for unclear or unsorted files
2 likes โ€ข 15d
Iโ€™d keep the core architecture, but simplify it and separate concerns more cleanly. Your current direction (markdown + Obsidian + automation) is actually stronger long-term than most AI-native stacks because itโ€™s portable, filesystem-based, and easier to control. The main issue I see, is that there are too many layers acting as sources of truth at once (Obsidian, Drive, Sheets, AI routing, etc.). For a stable, reliable system you need a single source of truth. I would: - keep Obsidian as the editing/UI layer - keep markdown files as the canonical datastore - use AI only for fuzzy tasks (classification, summarization, extraction) - make routing/storage deterministic (code or 'no-code' this up old style) - use Google Drive only for backup/sync and not as part of the active logic (that belongs in your orchestration layer) - replace Sheets mapping with metadata/frontmatter or config files (remove an external dependency and locate metadata where it can be easily processed) - add a proper indexing layer (Postgres + pgvector or Chroma, etc.) for RAG instead of querying synced files directly You mentioned a simplified vault structure - I'd consider flattening the structure because AI/RAG systems generally work better with smaller atomic notes with strong metadata than deeply nested semantic folders. Frontmatter like subject, semester, type, status, tags, etc. will scale much better than increasingly complex directory logic. The main trade-off with this is that you lose intuitive folder-based navigation in exchange for much more powerful search, filtering, and AI-friendly retrieval through metadata. Another gain is reduced cognative load in terms of removing the decision on where to place notes. I would not move fully into Notion/agent-style systems yet. A lot of โ€œAI-nativeโ€ architectures become fragile because they rely too heavily on probabilistic behavior where deterministic automation would be more reliable. The key is to really think in terms of system design: keep AI handling the fuzzy/semantic parts (classification, summarization, retrieval) while the core system itself stays deterministic and predictable (storage, routing, state management, indexing). That separation usually leads to systems that are far more reliable, scalable, and maintainable long-term.
Help: stuck moving a commit from a Claude Code on the web sandbox into my GitHub repo
My setup: OS: Windows Editor: Cursor IDE (with built-in terminal) Repo: A private GitHub repo I own Auth: I added an SSH key to my GitHub account Tool: I was using Claude Code on the web (the cloud-sandbox flavour of Claude Code, not the local CLI) What I'm trying to do: I asked Claude (in a Claude Code on the web session) to make some code changes for me. Claude did the work inside its cloud sandbox โ€” it created a feature branch (let's call it fix/my-branch) and committed 4 file changes (commit hash 6af1c3f). I now want to: Get that commit onto my local clone of the repo. Push it to GitHub. Open a pull request. The complication: The Claude sandbox can't push to GitHub itself โ€” it doesn't have my GitHub credentials. So Claude exported the change as a git format-patch output (a 559-line .patch block starting with From 6af1c3f3510915db259d531333f46adc8a9abf5c Mon Sep 17 00:00:00 2001) and told me to apply it locally with git am drift.patch. What I tried: On my local Windows machine in Cursor's terminal: cd <repo> git checkout main git checkout -b fix/my-branch git push -u origin fix/my-branch Output of the push: branch 'fix/my-branch' set up to track 'origin/fix/my-branch'. Everything up-to-date Then I went to GitHub to open the PR. GitHub shows: "There isn't anything to compare. main and fix/my-branch are identical. Showing 0 changed files with 0 additions and 0 deletions." Diagnosis (I think): The branch exists on GitHub but points at the same commit as main. I created a new empty branch, pushed it, but never actually applied the patch that contains commit 6af1c3f. So my local branch and the remote branch are both empty relative to main. I think what I need to do is: Save Claude's .patch output as a file on my local disk. Run git am drift.patch to land commit 6af1c3f on my current branch. git push again. But I'm new to git am and patch files, and I'm worried about: Line endings: I'm on Windows. The patch was generated on a Linux sandbox. If I paste it into Notepad or Cursor and save, will CRLF vs LF mess up git am?
0 likes โ€ข 15d
# copy patch into repo cp /path/to/patch.patch /path/to/repo/ # go to repo cd /path/to/repo # apply patch (preserves commit metadata if it was made with git format-patch) git am patch.patch # if conflicts occur: # resolve conflicts, then: git add . git am --continue # or abort: git am --abort
1-9 of 9
@justin-connell-5101
Back to work!

Active 8h ago
Joined May 11, 2026
Powered by