There are variations on Newton’s root finding method that use higher derivatives and converge faster. Alston Householder developed a sequence…
Continue Readingmethod
Encryption as secure as factoring
RSA encryption is based on the assumption that factoring large integers is hard. However, it’s possible that breaking RSA is…
Continue ReadingFactory Method and Abstract Factory in Swift and iOS Universe
Factory Method and Abstract Factory in Swift and iOS UniverseExploring creational design patternsNikita Lazarev-ZubovBlockedUnblockFollowFollowingMay 31Photo by Fabian Grohs on UnsplashThe word factory is…
Continue ReadingSHAKE Stirs-up Crypto
SHAKE Stirs-up CryptoProf Bill Buchanan OBEBlockedUnblockFollowFollowingJun 12When I teach cryptography, I normally define the hashing methods (MD5, SHA-1, SHA-256, and so…
Continue ReadingRuby Return Values
I get back the same value I put in, even though I tried to change the data?Turns out, every method…
Continue Reading10 Eloquent Features That You Might Not Know About
10 Eloquent Features That You Might Not Know AboutDaanBlockedUnblockFollowFollowingMay 30With all the features that are out-of-the-box available in Laravel it is…
Continue ReadingMocks aren’t Stubs
Mocks aren’t StubsXhoi KallupiBlockedUnblockFollowFollowingMay 26Photo by Dietmar Becker on UnsplashI want to clarify a confusion which has been on my mind lately.…
Continue ReadingWhat are Traits in PHP and how to use them
That’s the Single inheritance problem. So how do we solve this, here comes our Hero -> Traits. Traits was introduced…
Continue ReadingDeveloping the Simplex Method with NumPy and Matrix Operations
Developing the Simplex Method with NumPy and Matrix OperationsSam GrassiBlockedUnblockFollowFollowingMay 25In this post, I seek to address the paucity of…
Continue ReadingProtect Your JavaScript Applications from Api Data
Protect Your JavaScript Applications from Api DataRobert S (codeBelt)BlockedUnblockFollowFollowingMay 20Photo by James Pond on UnsplashIn this article I am going to talk…
Continue ReadingA simple Tic Tac Toe game using Blazor
A simple Tic Tac Toe game using BlazorRajesh VijayBlockedUnblockFollowFollowingMay 18In this article we will create a simple Tic Tac Toe game…
Continue ReadingUnderstanding Python List
Instead, we’ll be covering when lists should be used, and their nature as objects. If you don’t know how to…
Continue ReadingDesign Patterns: The Decorator Pattern
Design Patterns: The Decorator PatternLearn how to make your code cleaner and more modular with the Decorator patternNitin VermaBlockedUnblockFollowFollowingMay 6Prerequisites:If…
Continue ReadingSpring AOP
Spring AOPBushra SaifiBlockedUnblockFollowFollowingMay 1AOP stands for Aspect oriented programming. It is a design principal of Spring Framework. Dependency injection helps…
Continue ReadingTips For Following the Law (of Demeter)
Why would I do that?What does this mean for how we actually write our code though?In a basic Rails application, if…
Continue ReadingPHPStorm: Enabling code completion where there isn’t
PHPStorm: Enabling code completion where there isn’tWhen you just want to document “__magic" but you’re no “__magician”Italo BaezaBlockedUnblockFollowFollowingApr 22Photo by Jens…
Continue ReadingUnderstanding JSP Servlets
Understanding JSP ServletsServlets is the main technology for developing servlets. Understanding the Servlet API is your gateway to becoming a formidable…
Continue ReadingHow (and why) to cook equals() and hashCode() in Java
This collection uses hashCode() and equals() method to proceed put() and get() operations. Warning: as HashMap is not the main…
Continue ReadingManaging VMs like a Data Scientist
It’s just a table — that’s it. However, it’s got some pretty cool built-in methods to make your data manipulation, interrogation and…
Continue ReadingChunking Results — How I Implemented the Chunk Method in Laravel 4.1
The chunk method was introduced in the early stages of Laravel 5; implementing this method on my Query Builder in…
Continue ReadingLaravel 5.8 From Scratch: Config, ENV, Migrations, and Todos CRUD
: $todo->body }}</textarea> @if($errors->has('body')) {{– <-check if we have a validation error –}} <span class="invalid-feedback"> {{$errors->first('body')}} {{– <- Display the…
Continue ReadingOptimizing a Sort & Match Method in Pandas
Such a wide array of individuals provides many unique perspectives and various specialized subskills which will expose you to new…
Continue ReadingLaravel Tips: Making your own trait ‘hooks’ for tests
Laravel Tips: Making your own trait ‘hooks’ for testsPeter FoxBlockedUnblockFollowFollowingMar 29Photo by Cameron Kirby on UnsplashWhen writing feature tests there’s often a…
Continue ReadingThe Factory Method Pattern for Developers
The Factory Method Pattern for DevelopersJanessa TranBlockedUnblockFollowFollowingMar 24In the previous article, we had an overview of the definition of design…
Continue ReadingIterating Asynchronously: How to use async & await with foreach in C#
Iterating Asynchronously: How to use async & await with foreach in C#Toby Mason-BarneyBlockedUnblockFollowFollowingMar 19Photo by Verne Ho from BurstIn this post, we…
Continue Reading