Channels
Bring the downvotes idc, I just hope a few of you weigh in. What do y'all think? I think there's a pretty fuckin good chance we see another leg or two down after this next local run. I'm in BTC,SOL,TAO,NEAR and MON. submitted by /u/sivartomeus [link] [Kommentare]
I made a chapter in my Advanced Robotics course about swarm robotics, focusing on the main ideas behind multi-robot coordination rather than treating it as just a buzzword. The video covers topics like: what makes a robot group a “swarm” decentralized vs. centralized coordination local rules and emergent global behavior examples inspired by ants, birds, and collective systems why scalability and robustness are important in swarm robotics I’m sharing it as a learning resource for students or beginners who are trying to understand where swarm robotics fits inside robotics and multi-agent systems. Video: https://www.youtube.com/watch?v=EXH3NpsKtUc I also keep the related course materials and source codes here, for anyone who prefers to learn by reading or experimenting with code: https://github.com/mohammadijoo/Control_and_Robotics_Tutorials For people working in robotics/control: what topics do you think should be added to make a swarm robotics lecture more useful — communication models, formation control, task allocation, path planning, or real hardware examples? submitted by /u/abolfazl1363 [link] [Kommentare]
No the thumbnail is not fake and shes quite talented would not be surprised if she is in here anyways enjoy —————————————————————————————————————-——————————————————————- submitted by /u/fake_odelay [link] [Kommentare]
It's a free web app for accepting crypto payments. Works as a point of sale, or you can send a payment link, or use it as a checkout on a webshop. The app never holds your money. You put in your own address, it makes the payment request, and then it just watches the blockchain and tells you when you got paid. So there's no account, no signup, no KYC, and nobody who can freeze anything. You can also connect your own node if you want to, for more privacy. It's open source and you can self-host it, so you don't have to trust me on the non-custodial part. You can run it on your own server or just use the GitHub version. Works with BTC, Lightning, Monero, ETH + L2s + ERC-20, LTC, Doge, Dash, BCH, Kaspa, Nano and Nimiq. It's a non-profit project. No token, no ads, nothing to sell you. It's all on GitHub if you want to check how it works. submitted by /u/bitrequest [link] [Kommentare]
Koi yahan gold trade kar raha hai? Kaunsa broker decent conditions deta hai? submitted by /u/equiv00cal [link] [Kommentare]
Dear Folks, I have created multiple content on Machine Learning(work in progress), and they are free. I am a data scientist and a post grad degree holder in AI/ML from IIT. To help the machine learning community with important Machine Learning Concepts, I have created multiple long form videos, and structured topicwise digestible contents structured as playlists for learning. If you go through the first two playlists: Introductory Machine Learning Concepts Probability Foundations: Univariate Models You might find helpful content, I have tried explaining with intuitions, derivations, and this is work in progress. For code implementations, scikit learn website has great content on them as well. In total they have 60+ topicwise videos so far, and I think they have the potential to help folks a lot in starting with concepts, or getting with mathematical concepts, or whether you are preparing for an AI/ML/Data job interviews etc. When I sat for my interviews, I was grilled on my project, but majority of questions from my project tested more on foundational concepts and there know how’s. These are FREE content on youtube. This is for the benefit of the learning community. Link: https://youtube.com/@aayushsugandh4036?si=w5MKORU2fWzLRrAJ submitted by /u/Negative_War_65 [link] [Kommentare]
Dear Folks, I have created multiple content on Machine Learning(work in progress), and they are free. I am a data scientist and a post grad degree holder in AI/ML. To help the machine learning community with important Machine Learning Concepts, I have created multiple long form videos, and structured topicwise digestible contents structured as playlists for learning. If you go through the first two playlists: Introductory Machine Learning Concepts Probability Foundations: Univariate Models You might find helpful content, I have tried explaining with intuitions, derivations, and this is work in progress. For code implementations, scikit learn website has great content on them as well. In total they have 60+ topicwise videos so far, and I think they have the potential to help folks a lot in starting with concepts, or getting with mathematical concepts, or whether you are preparing for an AI/ML/Data job interviews etc. When I sat for my interviews, I was grilled on my project, but majority of questions from my project tested more on foundational concepts and there know how’s. These are FREE content on youtube, and hope it benefits and helps the ML community. submitted by /u/Negative_War_65 [link] [Kommentare]
I use Claude Code, Codex CLI, OpenCode, Cline, Cursor, and Amp enough to notice a pattern in how they handle long context. They are all converging on layered progressive compression, but they disagree on what to protect. Most protect recent user messages as a first-class asset. That makes sense. The user said it, which is the source of truth. Most also protect tool outputs that carry state. What surprised me was how differently they treat old assistant messages. Artifacts keeps recent tool calls verbatim but drops older context aggressively. Cursor starts pruning earlier design decisions once the window gets full. Codex CLI lets the model itself decide what to keep in the summary tier. The other axis is transparency. Do you tell the model it was compressed? Some systems silently replace old tool results with a placeholder, which means the model is reasoning under the illusion that it never happened. Others make it explicit: "the previous 40 tool calls are summarized below." I lean explicit because the model needs to know its own context was degraded. Verdents agent loop uses a similar tiered approach: snip first, prune second, summarize last, and a hard red line that protects user messages, stateful tool outputs, and anything the user explicitly flagged. The tradeoff is cost vs accuracy. Aggressive compression saves tokens but degrades the plan. Under-compression hits the window and causes context rot. submitted by /u/Direct_Band896 [link] [Kommentare]