Filter
Exclude
Time range
-
Near
We already had a 2FA screen for login. It shows a code input, user enters their Google Authenticator code, hits submit. Now we need 2FA for password change too. Option A: Build a second 2FA screen for password change Option B: Reuse the same screen React Native's philosophy: build once, reuse everywhere. We went with B. But there's a catch. #ReactNative #CodeReuse #CleanCode #AppDevelopment #DevTips
2
20
15 Nov 2025
ShadowMQ: How Code Reuse Spread Critical Vulnerabilities Across the AI Ecosystem - oligo.security/blog/shadowmq… by @avi_lum at @OligoSecurity Over the past year, Oligo Security’s research team disclosed a series of critical Remote Code Execution (RCE) vulnerabilities lurking inside some of the most widely used AI inference servers, including frameworks from Meta, NVIDIA, Microsoft, and PyTorch projects like vLLM and SGLang. These vulnerabilities all traced back to the same root cause: the overlooked unsafe use of ZeroMQ (ZMQ) and Python’s pickle deserialization. But what surprised us the most wasn’t the bug itself. It was how it spread. As we dug deeper, we found that code files were copied between projects (sometimes line-for-line) carrying dangerous patterns from one repository to the next. We call this pattern ShadowMQ: a hidden communication-layer flaw propagated through code reuse in the modern AI stack. #ShadowMQ #AISecurity #LLMSecurity #InferenceSecurity #RuntimeSecurity #ZeroMQ #PickleDeserialization #RCERisk #SupplyChainSecurity #OpenSourceSecurity #CodeReuse #ShadowVulnerabilities #CloudSecurity #GPUClusters #ModelSecurity #PythonSecurity #AppSec #ThreatResearch #AIEcosystem #DevSecOps #OligoSecurity
1
1
5
292
💻 C#: ¿Qué son los Genéricos? Piensa en los Generics como plantillas para tu código 🧩. En lugar de escribir métodos separados para cada tipo de dato, puedes crear uno solo que funcione para todos 🔥. ✨ Beneficios de los Genéricos en C# 🔁 Reutilización de código 🛡️ Seguridad en tipos garantizada por el compilador 🧼 Código más limpio siguiendo el principio DRY (Don’t Repeat Yourself) Ya sea que construyas librerías, utilidades o APIs escalables, dominar los Generics es clave para llevar tu código C# al siguiente nivel 🚀. 📌 Ejemplo práctico En la imagen te muestro un método genérico que devuelve un tipo T. Mira cómo funciona 👇 🔹 El método genérico T 👉 es un parámetro de tipo genérico (una “caja vacía” que se sustituye por el tipo real al invocar el método). List<T> 👉 la lista puede ser de cualquier tipo (List<string>, List<int>, etc.). items[0] 👉 devuelve el primer elemento de la lista. public T 👉 el método regresa el mismo tipo que recibe. 🔹 Lo importante 👉 Con un solo método (GetFirstItem<T>) resolvemos el problema para cualquier tipo de lista. ⚠️ Sin genéricos, tendrías que escribir múltiples métodos (uno para string, otro para int, etc.) ❌. ✅ En resumen: los Genéricos hacen tu código más reutilizable, seguro y elegante ✨. 💬 ¿Y tú, ya estás usando Generics en tus proyectos? #dotnet #csharp #efcore #dotnetcore #dotnetdev #programming #codequality #cleanarchitecture #webaapi #backend #developers #devcommunity #codingtips #softwareengineering #learncsharp #apidevelopment #dotnetdeveloper #genéricos #codereuse
4
200
30 Jul 2025
Here is my video about Compositional Software Design ! This video explains what I mean by compositional design, and explains the SCIFI principles that can guide you when designing for composition. It also explains concepts such designing for replaceability and two-way reusability. It also discusses when to use an interface, and when not. I have been working on the content of this video for more than 1.5 years - and promised this video several times inhere - before I finally got the core ideas distilled enough to convey in a video 😊 The ideas are reasonably simple - but it has taken a long time for me to make them this simple 😁 youtube.com/watch?v=rmEh3E1Z… #SoftwareDesign #CompositionalSoftwareDesign #OOP #FP #CodeReuse
1
15
1,326
Leftover ingredients can inspire new dishes, just as reusable code components can be utilized in multiple projects. #codereuse
3
18
No, don't use traits, use interfaces and composition for reusable code. Traits are terrible in maintenance, and even worse for static analysis. They bring the illusion of flexibility with a huge maintenance cost. This is not how you should build reusable code, I have beed doing this for 16 years already. #PHP #CodeReuse
⚡️ Take advantage of the power of Traits in Laravel to reuse code efficiently! Organize and share common functionalities across different classes without duplicating code. 💻 #Laravel #PHP #CodeReuse
2
1
14
551
⚡️ Take advantage of the power of Traits in Laravel to reuse code efficiently! Organize and share common functionalities across different classes without duplicating code. 💻 #Laravel #PHP #CodeReuse
2
11
1,437
🚀 Cómo uso ChatGPT en el desarrollo de videojuegos Te dejo algunos tips prácticos para que aproveches la IA y optimices tu trabajo en motores como Unity, Godot o Unreal. 👾👇 #GameDev #Unity3D #GodotEngine #UnrealEngine #IA 🔧 Resolución de errores técnicos Cuando aparece un error en el código y no sabés por dónde empezar, describí el problema en ChatGPT. Te devuelve soluciones rápidamente, como identificar conflictos o sugerir dónde buscar el problema. #Debugging #Developers 🧩 Optimización de la estructura del código Si tu código empieza a ser un caos, podés pedirle a ChatGPT sugerencias para organizarlo mejor: cómo dividir funciones, agruparlas en clases o cuándo usar instancias estáticas. Te ayuda a mantener el proyecto prolijo. #CleanCode 🌐 Manejo de APIs y librerías externas A veces integrar una API o librería externa puede ser complicado. ChatGPT te da una mano para entender la documentación o generar el código necesario para las llamadas a la API, evitando perder tiempo. #APIs #CodingTips 📊 Conversión y manipulación de datos Cuando necesitás convertir o formatear datos, como estructuras JSON o tablas de bases de datos, y te trabás, pedile ejemplos a ChatGPT. Te explica de manera clara cómo hacerlo, con ejemplos concretos. #DataHandling #JSON #BasesDeDatos 🎮 Implementación de lógica de juego Si estás desarrollando la lógica interna del juego, ChatGPT te da ideas y sugerencias para implementarla. Te ayuda a definir reglas, interacciones entre personajes o cómo estructurar mecánicas de juego. #GameLogic #IndieDev 🤖 Automatización de tareas repetitivas Si tenés que escribir código repetitivo, ChatGPT te puede ayudar a crear snippets reutilizables o patrones que agilicen esas tareas. Es ideal para manejar eventos o generar código similar para varias clases. #Automation #CodeReuse 📝 Documentación y buenas prácticas ChatGPT también te puede guiar en cómo documentar bien tu código o aplicar buenas prácticas. Te sugiere cómo organizar tus archivos y aprovechar los recursos de manera eficiente para que tu proyecto sea más fácil de mantener. #DevTips #BestPractices Así uso ChatGPT para mejorar mi trabajo en motores como Unity, Godot o Unreal. ¿Vos cómo lo usás? Comentá abajo cómo te ayuda la IA en tu flujo de trabajo o si te gustaría probarlo. Y si querés que explique mas en profundidad alguno de estos conceptos.👇 #IA #Developers #IndieDev
5
138
1 Oct 2024
Excited to share a highlight from our recent #webinar! 🚀 Maximizing code reusability is a game-changer in automation. Watch the full webinar here: youtube.com/watch?v=5T9zsFBZ… and reach out to learn more! #AITesting #CodeReuse #Automation #BlinqIO #Innovation
2
3
63
Maximize Code Reuse in Java! Discover 8 essential tips for writing reusable, maintainable, and efficient Java code to boost your programming skills. 🔗 bit.ly/3TCtYMc #Java #CodeReuse #ProgrammingTips #SoftwareDevelopment
2
8
511
I still remember first reading the original book "Design patterns: elements of reusable object-oriented software", often called the "Blue Book", almost 25 years ago now. It was full of little marvels that made me enthusiastic about #codereuse, #patterns in code and...
1
4
1,096
Thank you @tonymartinn and Cloud Poker Night for hosting us and our fab partner @Microsoft. We loved practicing knowing when to hold 'em and when to fold 'em. It's great to play on an application that was built on Crowdbotics! ♠️♦️♣️🃏 #codereuse #codeops #softwaredevelopment
1
1
2
147
🎉 It was fantastic connecting with everyone at the Gartner AIBS Summit! 🌟 We demo'd the Crowdbotics platform, turning healthy skepticism into excitement as we showcased our AI-powered app development. 🚀 youtu.be/SliYiT8aor8 #SoftwareDevelopment #AI #CodeReuse #Innovation
2
122
🥇Crowdbotics platform earns prestigious 2024 @CODiEAwards for Best Platform as a Service! More validation for our approach to application development with CodeOps and code reuse Read about it here: tinyurl.com/avxukvnv #codeops #codereuse #softwaredevelopment #CODiEAwards
1
2
72
Pre-existing code can be reused to carry out the same task or modified to carry out a related but marginally different task. Read more : megamindstechnologies.com/bl… #customwebsolution #softwaredevelopment #software #lowcode #coding #codereuse
2
18
Many companies now employ microservice architecture, which is a fantastic example of how code reuse may be applied in actual software development projects. Read more : megamindstechnologies.com/bl… #coding #microservices #code #codereuse #dotnet #databases #megaminds #suratithub
1
30
Generics in C#: Because writing reusable code is an art form. What's your favorite use case for generics? ♻️🖋️ #CSharpGenerics #CodeReuse
2
184
10 Jan 2024
🧠 Thinking in Custom Hooks: Custom hooks in React are a mind-bending concept! Extracting and reusing logic across components has never been this elegant. Share the love, create custom hooks! 💙🔄 #ReactCustomHooks #CodeReuse
1
1
6