InFeeo
Global
All
New
Language

Channels

Synced SLAM cameras for depth + VIO(reddit.com)
This is my project, Mighty Camera. It is essentially a monocular SLAM camera running entirely on tiny onboard compute. See my past posts for details. Mighty also supports combining multiple cameras and synchronizing them to produce frame-level synced streams. In this setup, I’m using that hardware synchronization to generate depth with SGBM, while it also produces VIO pose. submitted by /u/twokiloballs [link] [Kommentare]
Crypto-backed loan on Bybit - EU regulation from July 1st?(reddit.com)
Hi everyone, I have a question for people following the Bybit Global / Bybit EU changes for EEA residents from July 1. I currently have an active crypto-backed loan on bybit com, not regular margin trading. Does anyone know what will practically happen to existing loans after July 1 for users from Poland / the EEA? I am especially interested in the following: Do existing loans need to be closed/repaid immediately, or can they still be maintained? After July 1, will users still be able to repay the loan manually, for example by selling part of the collateral or using collateral for repayment? Will it still be possible to add collateral, make partial repayments, and manage LTV normally? If the loan needs to be moved elsewhere, what is currently the closest alternative in Europe/EEA — OKX Flexible Loan, or something else? I understand that the official Bybit announcement only says that access to “certain services” on Bybit Global for EEA residents will be progressively limited, and that users will retain access to their assets in order to remediate positions and balances. However, I have not seen a clear loan-specific explanation yet. I would appreciate input from anyone. submitted by /u/TomekGregory [link] [Kommentare]
The Binance ban in part of Europe causing crypto loses(reddit.com)
Won't this need to move your funds out of Binance lead to people being forced to sell their crypto (probably at a loss) or is there a way to just move th crypto balance to another exchange and even if thats possible won't a lot of people just exit crypto. Could this lead to crypto prices crash given the volume of people affected. submitted by /u/No_Thanks2844 [link] [Kommentare]
HMRC "Badges of Trade" or CGT.(reddit.com)
Hi all, ​I am seeking technical advice on HMRC's classification regarding crypto trading activity. I am currently employed full-time (£22k/year apprentice) and looking to understand if my strategy would likely be classified as an investment (Capital Gains Tax) or a financial trade (Income Tax) For reference, i programmed this algorithm myself and have not distributed or sold it with no plans to do so, it runs entirely on my computer at home and the script trades a single pair on the Kraken Exchange through their api by creating a grid of buy and sell limit orders around the current price. The ​automation part is that the algorithm is on 24/7 and is set to modify the grid layout hourly by fractional amounts based on price movement. I know about the £3000 CGT allowance, and if the algorithm continues on its current path, it will exceed this allowance, so i want to prepare asap. I turned the code on after the tax year ended, so there's no need to worry about last tax year. After final tests, it has now completed 1 month of running non-stop. ​This is a side-activity, not my primary income. The strategy is simple and could theoretically be executed by hand quite easily, I automated the process as i have experience through my apprenticeship, and it saves me time. In case the activity is relevant, the algorithm does not have a timeframe or specific profit margin on selling the tokens it buys, i may take days or weeks, or it may take minutes or even seconds. ​My Questions: ​HMRC states that "only in exceptional circumstances" would an individual be considered a financial trader. Does the use of an automated algorithm, by its very nature of being "systematic" and "organized," push this into that "exceptional" category? How would I confirm what this is classed as, from what ive seens its a bit of a grey cloud where if they decide youre a financial trader you will pay penalties, interest and be required to pay up the rest. Can i reach out, describe the situation, and get a concrete response? Are there any benefits to being a financial trader over paying cgt? From what I can see, it makes you quite worse off. If i am a financial trader, are there any considerations in reducing my tax liability? ​Are there any precedents or experiences with HMRC classifying high-frequency retail crypto-bot users as traders? ​Beyond the "Badges of Trade" framework, are there specific "red flags" I should avoid to ensure this remains categorized as a personal investment activity, as that means I can use the more tax efficient approach. ​I am looking for community input on whether this setup is defensible as a personal investment or if I should preemptively assume a "trader" tax classification. If i have missed out on any important details, let me know, and I'll add them in right away. Thank you so much for your help. It's quite a while until the next tax year ends, so im looking for community advice and experiences before moving onto potentially discussing this with a professional. submitted by /u/Professional_Ad_4267 [link] [Kommentare]
GET OUT OF ALTS AND JUST FUCKIN BUY BITCOIN(reddit.com)
Been in crypto since 2016, here a little less... JUST FUCKING BUY BITCOIN. SELL YOUR FUCKING ALTS AND BUY FUCKING BITCOIN. I promise it is the right decision. It objectively, statistically and historically is the right call. All your coins are dumb and regarded and you are coping and seething. Get rid of them. It is time for the great #rotaysh. I have held countless alts. Was in XRP early, sol early, eth at 90 bucks. Hell i was even in ada at .02... Some have done well, most have not. None of them have done what bitcoin has done (for me and just generally). If all that capital were simply allocated to bitcoin... I would be on a yacht. I know it feels like you have to catch the "next wave" etc. Bitcoin still has exponential growth potential as it trickles into the financial system (retirement accounts, company balance sheets, treasury company inclusion in indexes, etc.). Its growth potential is unmatched vs. others. All these other narratives ("art" nfts, meme coins, KOLs, web "3," blockchain gaming...) are all fucking stupid. There MAYBE will be some stuff regarding digital ID and RWA in the future, but you are mostly coping with anything else. I have seen, read, participated in virtually every narrative ever and it's all dumb fucking cope. We are likely near a btc bottom. It is time for the great rotaysh. #believe. ps. i sold most of my btc stack at $112,500 and don't have much left so I don't even really have much skin in the game. Literally just trying to save the regards in this sub from themselves. $350k by november 2029. Mark it. submitted by /u/lwc-wtang12 [link] [Kommentare]
I built an open-source memory governance layer for AI assistants - looking for technical feedback [P](reddit.com)
I’ve been working on a project called MemoryOps AI. The problem I’m trying to solve is context debt in AI agents. Most memory demos look like this: chat message → vector database → retrieve later That works for demos, but I think production agents need more than retrieval. They need rules for what memory is allowed to survive, what should expire, what should be blocked, what can be updated, and what must be audited. MemoryOps AI treats memory as governed state. The lifecycle is: Capture → Evaluate → Store → Retrieve → Rank → Compose → Update → Forget → Audit Some things I built into it: Policy-before-storage, so sensitive/secret-like content is filtered before memory is saved Typed memories instead of one generic memory bucket Tenant isolation Deletion guarantees Provenance for stored memory Append-only audit logs Retention policies Legal hold Consent-aware memory Background workers for lifecycle tasks A small playground/demo to test memory behavior I’m not posting this as a polished company launch. I’m mainly looking for feedback from people building agents, RAG systems, evals, or AI infrastructure. The questions I’m trying to answer are: What should an AI memory system be allowed to remember? How should old memory expire or get overwritten? How would you test that deleted memory never influences future output? What invariants would you expect before trusting memory in a real assistant? GitHub: https://github.com/patibandlavenkatamanideep/memoryops-ai Demo: memoryops-ai-production.up.railway.app Would appreciate any technical feedback, especially around memory lifecycle design, governance, and evals. submitted by /u/Fit_Fortune953 [link] [Kommentare]