PostsCommentsPayoutschuqui (25)in #programming • 7 years agoRE: A very precise condition😂chuqui (25)in #dev • 7 years agoRE: Coding Journal #4: Local Storage, JSON Web Tokens & Wallaby.jsExcellent post! It's always easy to read and understand your posts!chuqui (25)in #spanish • 7 years agoRE: Hola Steemit!...bienvenido! éxitos!chuqui (25)in #dev • 7 years agoRE: Chingu Cohorts: Free Group Projects With Other Web Development StudentsInteresting! thanks for sharing!chuqui (25)in #steemdev • 7 years agoRE: My First Steem.js Adventure, Part 4: Fixing My API Timeout Bug & Finishing Up!Excellent postchuqui (25)in #steemdev • 7 years agoRE: Designing My First Full-Stack JavaScript Project in SketchExcellent! As for mongoDB, I recommend you taking a look on mongo atlas. It'll save you several headaches. 😉chuqui (25)in #utopian-io • 7 years agoRE: Basic Tutorial Javascript : Learn To Program To Determine Odd Number Or Even NumberRemember JS evaluates numbers as booleans as C does, so the == 0 part in the if sentence is not needed. If you still want to use it, do it a triple equals ( === ) instead.…chuqui (25)in #security • 7 years agoRE: Is Cryptocurrency exchange regulations good or bad ? SK fined $130k for poor securityRegulation or compliance doesn't necessarily mean security. That's a huge misconception. Most of the hacks I've read on are related to implementation issues. Another point to…chuqui (25)in #blog • 7 years agoRE: Red flash sales in this bearish market / picking the winners / American investing in EOSIt was something I noticed when trying to buy EOS.. The limitation is both for americans and chinese. I don't understand why. Back to the topic, how would they know you are…chuqui (25)in #steem • 7 years agoRE: Steem JavaScript Development LinksThanks! I'll take a look..chuqui (25)in #steemdev • 7 years agoRE: My First Steem.js Adventure, Part 2: Lessons From My Mentor About PromisesSorry the typo, it's prom i sify: es6-promisify Bluebird promisifychuqui (25)in #utopian-io • 7 years agoRE: NPM Explained - How to Upload your Own JavaScript Module to npm!A practice I follow, from "experience" , is to locally test the package I'm creating with npm link before publishing. Regards!chuqui (25)in #utopian-io • 7 years agoRE: ERRORGood tutorial! You can easily see the how the components are glued together. For new devs I recommend using a generator ( Yeoman ), that provide with project templates with…chuqui (25)in #steemdev • 7 years agoRE: My First Steem.js Adventure, Part 2: Lessons From My Mentor About PromisesGood job!, Keep in mind that you can also use a promesify-type library to transform all the node standard async functions to return promises. It does exactly the same you end…chuqui (25)in #utopian-io • 7 years agoRE: Translation of a file (OWASP ZAP) ( 1042 words from English to Spanish) #15Good job! How can I help with the translation?chuqui (25)in #life • 7 years agoRE: Bicycle Travel Basics – Stop thinking, Start Pedalling!1 word: sunscreen! 😅chuqui (25)in #life • 7 years agoRE: How to start your own successful project?Excellent post! In point 2, I'd explicitly mention the importance of value and its perception. Basically, how your idea adds value or provides a different value from the…chuqui (25)in #security • 7 years agoRE: Introduction to Blockchain SecurityExcelent post! thanks!chuqui (25)in #technology • 7 years agoRE: BRUTE FORCE AUTHENTICATION ATTACKSThis vulnerability is a really easy one to defend.. As dev you can block the account after a number of failed login attemps or just add an exponential delay, like 3 tries, 1…chuqui (25)in #technology • 7 years agoRE: Forensics 101: Basic Approach to File AnalysisThanks! Really good approach. I've seen many forensics tutorials that are encase or ftk tutorials and you actually don't learn what's happening behind the scenes. Good work!