My cousin’s wife packages and sells kulikuli, she started recently, so sales never dey really move like that.
The lovely husband who plays football every two weeks around Surulere comes to the pitch with a full bag of kulikuli and sells to boys at the field, and he usually goes back home with an empty bag after football.
This is a simple act of service that money cannot buy.
Using this as an opportunity to plug y’all to the spicy kulikuli.
I promise you, the kulikuli sweet and spicy die 😂🤲🏾
She’s based in Yaba, Lagos and she delivers nationwide 🙏🏽🫂
Price is just N500 and N1k depending on the size, so you can buy in bulk and put in your fridge 🙌🏾🤸🏾♂️
I do not think it's fair to call them performative.
There's something called company culture. Are you familiar with that concept? This is their culture, and you are not a cultural fit for them, just as they are not a fit for you.
Nothing performative here.
CREARON UN CAPCUT GRATIS Y SIN MARCAS DE AGUA, Y YA TIENE 62K STARS EN GITHUB
CapCut te mete marca de agua, te bloquea funciones y encima te cobra suscripción.
Un grupo de devs se cansó y construyó la alternativa open source y gratuita.
Se llama OpenCut. Te explico todo:
Un editor de vídeo open source que están construyendo desde cero, con arquitectura basada en plugins.
La idea: una alternativa real a CapCut, pero abierta.
Sin marcas de agua, sin paywalls, sin suscripciones.
Lo que crearon:
→ Editor completo con línea de tiempo y multipista
→ Plugins nativos para expandir lo que puede hacer
→ Una sola app para web, escritorio y móvil (núcleo en Rust)
→ MCP Server, automatizaciones y soporte para agentes de IA
→ Licencia MIT: puedes hacer lo que quieras con él
Cómo instalarlo:
→ Clona el repo desde GitHub
→ Instala las dependencias
→ Ejecuta la versión clásica (disponible ya)
→ Sigue la nueva versión en https://t.co/WYZSSwgBue
Es exactamente lo que CapCut debería haber sido desde el principio.
Enlace abajo👇
When people advise you to learn a skill and lock in for a period of time, please take it seriously.
I was struggling to get a business analyst job when I arrived in the UK.
Despite having business analysis experience before leaving Nigeria and graduating with a distinction in an MSc in Management of Business Information Technology from a UK university, I hit a roadblock with my job applications.
I wasn’t getting interview invitations.
That was when I discovered that UK organisations place a strong emphasis on relevant UK experience.
So, I enrolled in a training programme that provided both work experience and a professional reference.
We worked on a live project where I served as the business analyst. We also had a project manager, product owner, and a development team.
I put my heart and soul into that training, which lasted six months. Sometimes, we had brainstorming sessions in the wee hours of the night.
I was even awarded Best Business Analyst in the entire academy.
My hard work eventually paid off because I received four different interview invitations once I started applying for jobs.
In fact, I was the first person in my cohort to secure a job.
This happened just two weeks after completing the training.
So, what worked for me?
I locked in for those six months.
I attended every single training session, actively researched and deepened my business analysis knowledge, practised the core BA skills and applied myself as though my life depended on it.
I was also very prayerful during that period.
I promised myself that I wasn’t going back to the school job I was doing at the time, and I was determined not to break that resolve.
I paid the price, and by the grace of God, I got the result.
So yeah, when you hear people talking about locking in, please take it seriously.
Because it will change your life.
You must learn to see what others cannot, and then develop the ability to articulate it with such fidelity that neither the integrity of your vision nor the understanding of your audience is compromised.
Creativity often bears an uncomfortable resemblance to lunacy.
I'm just going to dump my whole agentic setup out here, because I see too many people missing giant chunks of this and it's hurting them.
Here's what I have and recommend:
0. an AGENTS.md that is a router -- it sends the agent to the right skills, docs, tools
1. a standard workflow doc/skill customized to my needs ... (grab Matt Pocock skills if you don't already have something) ... I tag this in most sessions with `@/AGENT_WORKFLOW.md` and it pulls it in.
2. self-healing docs for every system, and agents are instructed to keep them updated ... I tag the ones I know I need, or let the agent find them through AGENTS.md ... I also provide a more detailed summary in the first 7 lines of every doc, so they're easily greppable to find the right thing, and this is documented in AGENTS.md
3. agents always run the app ... the agent should always actually run the app itself, and test its work and fix issues as it goes, especially if running autonomously / asynchronously
4. end-to-end tests and instructions to write more and keep up to date, and docs on how to write tests, what to avoid, and a list of all the tests and what they test in yet another markdown doc ... write and run targeted tests during implementation, improve and commit with work
5. custom linters at precommit hooks looking for any problems you run across, with `--fix` fixing the problems automatically, OR if that's not feasible, it shells out to a cheaper LLM like Composer 2.5 or Sonnet to fix the problems -- NOT just flagging them, but actually resulting in cleaned code
6. cross-agent review at each major point: research, plan, implementation, and wrap-up. I mean codex, claude, cursor, whatever -- but it shouldn't be the same model reviewing the same code. And specific docs for agent review, what to look for, how to approach it. Also, personas -- looking at the code from different perspectives, such as maintainability, code quality, security, performance, AI smells, domains (e.g. "financial services expert" or whatever) ... and each persona also "owns" a set of system docs too and keeps them up to date
7. agent traces / worksheets that track what the agent is doing each session. if the agent fails partway through, you should be able to hand this worksheet to another agent and it could finish the job. commit this worksheet with the work so it's all connected and easy to reference later (you will reference these later!!), also have the agent apply git tags that correspond to specific worksheet names so they're easy to find
8. automatic agent feedback to you at the end of the session, added to a doc that is also committed with the work, that you periodically ingest into an interactive session and improve your workflows
9. a tools or bin folder that contains python or bash scripts that the agent has skills to make to make its job easier (for example, I have an `agent_review` bash script that lets the agent kick off agent reviews via CLI without knowing each agent's particular incantations) ... docs on how to make scripts effectively, and instructions to constantly build these out more
10. periodic agent sweeps through recent commits, looking for problems / gotchas from a higher level across commits
11. a coding conventions doc that is just for specific coding conventions you want to see in the code base, your review agents use these a lot (but a lot of this should be in linters)
12. an agent loop / night shift skill for autonomous work, that lays out how the agent is to approach this, from an orchestration standpoint
13. a task queue that is accessible to the agent (mine is just a TODOS.md, but yours might be in Linear etc, with a CLI to fetch via API)
14. a periodic false-confidence test audit skill that looks for tests that aren't actually testing what you think they're testing, and that fix those
15. visual regression tests -- take screenshots, compare via tool and with agent visual review, commit with work (git lfs useful here) or at least push into the PR
16. automatic performance benchmark tests that notice when performance degrades
17. performance profiling tools that can be used by agents for targeted benchmarking, trying new techniques, comparing outputs, and comparing profiles
18. end-of-shift full validations, including running all tests, performance, agent reviews, sweeps, everything -- when you return, it's all as pristine as it can be
If you have all this, your agentic coding experience is going to be very different than dry prompting and manually guiding it toward the right thing every time.
I genuinely can't fathom how unbelievably dumb the average APC supporter can be.
Listening to what the President's wife said on live TV genuinely made me question the IQ of any educated person who still supports this party without asking serious questions.
At some point, blind loyalty stops being politics and starts looking like a complete abandonment of critical thinking.
It's one thing to support a party. It's another thing to defend everything they say and do, no matter how absurd it sounds.
Once you learn how to shop directly from China, E.g Temù or shien your wardrobe changes completely. Call me cheap I don't care I ain't rich, I don't do fraud.😭
It's knowing what to search for.
Here's my style after making plenty of mistakes.
1. T-shirts:
Skip 100% polyester unless you're buying gym wear.
Instead, search:
• 100% Cotton
• Combed Cotton
• Heavyweight Cotton
• 240-300 GSM Cotton
• Premium Cotton
• Mercerized Cotton
The heavier the GSM, the thicker and more premium the shirt usually feels.
2. Jeans:
Denim Jeans
Temu is surprisingly good for denim if you know what to search.
Search:
• Denim Jeans
• Cotton Denim
• Raw Denim
• Selvedge Denim (if available)
• 98% Cotton + 2% Elastane
• 99% Cotton
Avoid jeans with high polyester content. The more cotton, the better they'll age and feel.
3. Body-hug clothing:
Search:
• Ribbed Knit
• Modal
• Viscose Blend
• Cotton-Spandex Blend
They hold their shape much better than cheap polyester.
4. Hoodies
Search:
• 400 GSM
• French Terry
• Cotton Fleece
• Heavyweight Hoodie
5. Chains
Search:
• 316L Stainless Steel
• Titanium Steel
• PVD Gold Plated
• Vacuum Plated
These are far more resistant to fading than ordinary fashion jewelry.
6. Earrings
Search:
• 925 Sterling Silver
• 316L Stainless Steel
• Hypoallergenic
• Moissanite (if you're buying stones)
7. Scarves
Search:
• Mulberry Silk
• Silk Blend
• Cashmere Blend
• Wool Blend
• Viscose
Avoid the shiny, thin polyester scarves if you're after a premium look.
8. Loafers
Search:
• Genuine Leather
• Cow Leather
• Full Grain Leather (rare but worth looking for)
• Rubber Outsole
9. Sneakers
Search:
• Rubber Outsole
• EVA Midsole
• Breathable Mesh
• Leather Upper
• Stitched Sole
Pictures lie a lot
The description usually tells the truth.
Here's how I shop:
1. Read the material composition before anything else.
2. Sort by Most Orders or Best Selling, not cheapest.
3. Only buy products with lots of reviews or pictures or even better when a Nigerian has purchased it before they always tell the truth.
4. Read the 1-star reviews first. They'll tell you what the seller won't.
5. Look at customer photos, not the product photos.
6. Check the weight of the product. Better quality clothing is often heavier.
7. Read the size chart. Don't assume your Nigerian size matches.
8. If the title has words like "luxury," "premium," or "designer" but the material is 100% polyester, not everything but still move on.
Your best friend isn't the product picture.
It's the material, the reviews, and the customer photos.
That's how you separate the gems from the junk.
I hope this help.
Things are to expensive for a country this poor.
lol 😂 on this mandate I shall stand. I stand firmly and astutely with you my commander sir.
Shishi……unless you earn it.
They’ll say you’re wicked, but yes, let me be wicked…
All of us are not yahoo boys or people who saw money from casino and betting or updates 🤣
the fact the US used the full force of the federal government to eliminate the Black Panthers while the KKK is still running around tells you a lot about this country
Speaking of protocols…
Hello @fkeyamo, I’m just curious…..
I can share the link for you to read through, sir. The publication is still available on the publisher’s website, @SaharaReporters ….
Ir�� o
You're asking why is a Police man attached to Peter Obi.
Of course, this is a very good question and I believe the IGP should answer soon.
But that should be after he explains why Seyi Tinubu is moving with security that's big enough to end terrorism in the North.
Just as Wole Soyinka earlier pointed out.