Skip to content

Instantly share code, notes, and snippets.

View edriso's full-sized avatar
🌱
How do you eat an elephant? One bite at a time. 🐘 \n Third time's a charm 🐱‍💻

Mohamed Idris edriso

🌱
How do you eat an elephant? One bite at a time. 🐘 \n Third time's a charm 🐱‍💻
View GitHub Profile
@discoveryluca
discoveryluca / DivisibleBy.php
Last active June 9, 2024 09:46
DivisibleBy kata - 11988 tests that run in under 3 seconds, from 302 lines of code, using dataProviders
<?php
namespace App;
class DivisibleBy
{
public function isDivisibleByTwo($number)
{
// if last number is divisible by 2
return is_int(substr($number, -1) / 2);
@hofmannsven
hofmannsven / README.md
Last active August 30, 2024 10:34
Git CLI Cheatsheet