Explore >> Select a destination


You are here

fabianlindfors.se
| | abuisman.com
11.2 parsecs away

Travel
| | Blog about solving problems with code, mostly Ruby, and other things I have learned working as an engineer and a technical leader
| | blog.codeminer42.com
9.3 parsecs away

Travel
| | As we all know, it is quite easy to create database tables with Ruby On Rails. However, some cases require personalizations to reproduce real world situations and the relationships between them. Here, we have two models: User and Meeting, with a 1..N relation where one Meeting has two User (yes, a two-person meeting.) The problem
| | brendanbondurant.com
9.5 parsecs away

Travel
| | This falls under the "things I wish I knew at Turing" category. I've been adding a lot more tests in BonsaiBid, and using Selenium for a lot of them. I didn't know about Selenium until relatively recently, and it would have solved some testing problems I had during the consultancy project in Mod3. It took...
| | www.rasikjain.com
88.8 parsecs away

Travel
| Here are three scenarios for implementing authentication workflows. Internet Applications (Public facing) For internet web applications and APIs, Session based (SessionID cookie) and Token Based (JWT) Authentication can be implemented. Session Based: Implemented for a majority of traditional and stateful web applications. Once the user is authenticated, A Session state is created and stored in an external State server or SQL database. The Session state is identified by a unique SessionID....