Advertisement · 728 × 90

Posts by Mark Allen

Post image

There's a lot of fear-mongering about AI coding agents these days. But when you follow the right process, they're perfectly safe. Check out this screenshot of a proposed change that I'm definitely not merging 😁

8 months ago 0 0 0 0
Preview
GitHub - wiz-sec-public/secure-rules-files: Baseline rules files to improve the security of AI-generated code (Claude, Cursor, Copilot + more) Baseline rules files to improve the security of AI-generated code (Claude, Cursor, Copilot + more) - wiz-sec-public/secure-rules-files

Wiz is open‑sourcing baseline secure rules for popular languages/frameworks:
• Python: Flask, Django
• JavaScript: React, Node.js
• Java: Spring
• .NET
— And for all major AI assistants

github.com/wiz-sec-pub...

9 months ago 3 1 0 0

How to craft effective rules files
1. Make instructions clear, concise, actionable
2. Tailor rules by language or project context
3. Decompose complex guidance into atomic rules
4. Keep files under ~500 lines

9 months ago 0 0 1 0
Preview
Secure AI Vibe Coding with Rules Files | Wiz Blog Learn how to use open-source rules files to improve the security of AI-powered coding tools like Copilot, Claude, and Cursor.

Best practices show that including “secure” in prompts can reduce vulnerability density by up to ~43%, and prompting AI as a “security-aware developer” reduces vulnerabilities by ~47–56%

www.wiz.io/blog/safer-...

9 months ago 0 0 1 0
Claude Code overview - Anthropic Learn about Claude Code, the agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster through natural language commands.

Rules files:

Many coding assistants support rules files (e.g. Copilot
copilot-instructions.md, Claude’s CLAUDE.md, Cursor/Windsurf rules).

These files help shape AI-generated code towards specific standards.

9 months ago 1 0 1 0

Traditional security tools are still vital!

Static analysis (SAST), software composition analysis (SCA), secret scanners, and secure frameworks remain essential, whether or not AI is used. Integrating these in IDEs plus ongoing PR scans reduces risk

9 months ago 0 0 1 0

Reports show 25–70 % of AI generated code contains vulnerabilities.

Examples of this could be hardcoded secrets or missing auth-checks.

9 months ago 0 0 1 0
Advertisement

Vibe coding is all the rage, but code security often gets completely overlooked.

Check out the Rules for Safer Vibe Coding below...

9 months ago 0 0 1 0
Preview
Manus Manus是一个将你的想法变为行动的通用AI助手。它在工作和生活中擅长各种任务,让你休息的同时完成一切工作。

This is my referral link in case someone wants 500 free credits 😁

Meet Manus — your AI agent with its own computer. It builds websites, writes reports, and runs research tasks, even while you sleep.

manus.im/invitation/...

11 months ago 0 0 0 0
Post image

Is Manus AI the most polite AI agent??

It's so polite I feel mean asking it to do more!

11 months ago 0 0 1 0
Preview
Kids Ai Genius Make Learning Fun for Kids with personalized learning content that adapts to your child's interests and learning style. Turn any topic they love into an educational adventure!

kidsaigenius.com

1 year ago 0 0 0 0

Our Kids AI Genius waitlist is buzzing!

Despite only sharing it in a few replies and on IndieHackers we've had a constant stream of sign ups.

I was curious about where all this traffic is coming from, so I've got PostHog analytics on the case and we are just waiting for results.

1 year ago 1 0 1 0
Preview
What you’ll learn in “Hotwire Native for Rails Developers” | Masilotti.com Curious about my new book? Here’s a chapter-by-chapter breakdown of what you'll learn, with screenshots.

If you want to learn more check out Joe Masilotti's post:

masilotti.com/hotwire-nat...

1 year ago 0 0 0 0

For solo developers, this stack is a revelation. It has the potential to redefine the landscape for indie creators.

So, what's stopping you from diving in and experiencing this innovation firsthand? Embrace the change; it might just be the game-changer you've been searching for.

1 year ago 0 0 1 0

Consider this: A single codebase. Three distinct platforms. Immediate deployment.

Has anyone else delved into the Rails + Hotwire combo? Share your experiences below. I'm genuinely eager to know if you're witnessing the same transformative magic.

1 year ago 0 0 1 0

I've dabbled with every fashionable framework out there. Most only increased complexity without addressing genuine issues.

But this Rails and Hotwire duo? It feels like wielding a secret weapon, a turbocharged boost for productivity and efficiency!

1 year ago 0 0 1 0
Advertisement

Remember those times when Rails was dismissed as outdated? Well, think again. When paired with Hotwire Native, it transforms into a powerhouse for multi-platform development. Imagine maintaining just one codebase.

1 year ago 0 0 1 0

The "is Rails dead?" debate has finally met its demise.

In just ONE day, I crafted three apps—web, iOS, and Android—using Rails 8 combined with Hotwire Native. No exaggeration.

1 year ago 1 0 1 0

What hobby could you use to make your child love learning?

The waitlist for Kids AI Genius is open now...

kidsaigenius.com/

1 year ago 0 0 0 0

Can't get your kid to do math? Tried Fortnite math with my 8-year-old.

"If you eliminate 4 players in 3 matches, how many kills total?"

He went from hating multiplication to begging for more problems.

"You have 243 ammo and pick up 180 more. How much ammo do you have?"

1 year ago 2 0 1 0

Do you use the bun package manager and dependabot?

If so, you might want to try the experimental support for bun in dependabot.

Add `enable-beta-ecosystems: true` to your `dependabot.yml` and add the `npm` package ecosystem. You can see an example below.

Let me know if you try this!

1 year ago 0 1 1 0

So, I prototyped a math quiz app with questions based on his interest in Fortnite. He loved it! ❤️

"If your squad has 8 med kits and uses half of them, how many med kits are left?"

What math topics do your kids struggle with? What topic would light a fire in them? 🔥

1 year ago 0 0 0 0

I'm building an app to help my son love math. I want to help him practice elementary school mathematics with relatable topics. 🔢

"You start with 100 shield and lose 25 shield points in a battle. How much shield do you have left?"

1 year ago 0 0 1 0
Advertisement

My son hated multiplication until I turned it into a Fortnite game. 🎮

"If you eliminate 4 players in each of your 3 matches, how many total eliminations do you have?"

1 year ago 0 0 1 0
Preview
add support for `bun` · Issue #6528 · dependabot/dependabot-core Is there an existing issue for this? I have searched the existing issues Feature description https://bun.sh/ is quickly gaining traction and is now my preferred npm package manager. It is faster th...

eg:

version: 2
enable-beta-ecosystems: true
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

github.com/dependabot/...

1 year ago 0 0 0 0

Do you use the bun package manager and dependabot?

If so, you might want to try the experimental support for bun in dependabot.

Add `enable-beta-ecosystems: true` to your `dependabot.yml` and add the `npm` package ecosystem. You can see an example below.

Let me know if you try this!

1 year ago 0 1 1 0

Noah Gibbs (codefolio, YJIT team, Rebuilding Rails author) has passed away.

His big dream in life was to help build the Ruby community up. He wanted to be like the folks who worked to create the railroads during the industrial revolution.

1 year ago 103 35 1 14

Oh no. This is so sad 😢

1 year ago 1 0 0 0

It looks great. Is nice to see the progress 👏

1 year ago 2 0 1 0
Preview
The top 10 gifts for the developer in your life Whether you’re hunting for the perfect gift for your significant other, the colleague you drew in the office gift exchange, or maybe (just maybe) even for yourself, we’ve got you covered with our top 10 gifts that any developer would love.

github.blog/news-insigh...

1 year ago 0 0 0 0
Advertisement