Skip to content

Instantly share code, notes, and snippets.

<?php
$app = new \Slim\App();
$app->group('/users/{id:[0-9]+}', function () {
$this->map(['GET', 'DELETE', 'PATCH', 'PUT'], '', function ($request, $response, $args) {
// Find, delete, patch or replace user identified by $args['id']
})->setName('user');
$this->get('/reset-password', function ($request, $response, $args) {
// Route for /users/{id:[0-9]+}/reset-password
// Reset the password for user identified by $args['id']
@exts
exts / itsdatboi.cs
Last active December 20, 2016 02:17
namespace CvsProject
{
internal class Program
{
public static void Main(string[] args)
{
var filename = "csvfile.csv";
var reader = new CsvReader(filename);
reader.ParseContent();
//idiotcoder.com
class Post
{
private long timestamp = 0;
public long HourAgo {
get { return timestamp - (60 * 60); }
}
public Post(long unixTimestamp)
@exts
exts / gist:f11259874bb9f781192f
Last active March 28, 2016 21:45
kotlin for loop is weird
//normal for in
fun fizzBuzz(start: Int = 1, end: Int = 15) {
for(foobar in start..end) {
println(when {
foobar % 5 == 0 && foobar % 3 == 0 -> "FizzBuzz"
foobar % 3 == 0 -> "Fizz"
foobar % 5 == 0 -> "Buzz"
else -> "$foobar"
})
}
interface ConfigFileInterface
{
public function load();
public function save();
}
class YamlConfigFile implements ConfigFileInterface
{
public function load()
{