A curated list of awesome Swift frameworks, libraries and software. Inspired by awesome-php.
#include <FastLED.h> | |
/** BASIC CONFIGURATION **/ | |
//The amount of LEDs in the setup | |
#define NUM_LEDS 200 | |
//The pin that controls the LEDs | |
#define LED_PIN 6 | |
//The pin that we read sensor values form | |
#define ANALOG_READ 2 |
// Define a state | |
this.state = { | |
name: "Jon Snow", | |
age: 28 | |
} | |
// get value of the state | |
this.state.name |
import React, { Component } from 'react'; | |
Class ParentComponent extends Component{ | |
this.state = { | |
title: "CodeFights", | |
description: "Online website" | |
} | |
constructor(props){ | |
super(props); | |
} |
Verifying my Blockstack ID is secured with the address 1F2BFT4XPMyUJ4wzNNnk2717a3nVZQch32 https://explorer.blockstack.org/address/1F2BFT4XPMyUJ4wzNNnk2717a3nVZQch32 |
function haversineGreatCircleDistance( | |
$latitudeFrom, $longitudeFrom, $latitudeTo, $longitudeTo, $earthRadius = 6371000) | |
{ | |
// convert from degrees to radians | |
$latFrom = deg2rad($latitudeFrom); | |
$lonFrom = deg2rad($longitudeFrom); | |
$latTo = deg2rad($latitudeTo); | |
$lonTo = deg2rad($longitudeTo); | |
$latDelta = $latTo - $latFrom; |
$hourdiff = round((strtotime($time1) - strtotime($time2))/3600, 1); | |
echo $hourdiff; |
I recently had the need to write a small url shortening application. I am aware that this problem has been solved quite a few times before, but what is being a developer if not reinventing the wheel just for the heck of it? Custom CMS anyone?
Knowing that this was going to be a tiny RESTful API and also knowing that Laravel 5.2 had API rate limiting built in, I was eager to give it a try. Taylor Otwell being Taylor Otwell shipped 5.2 with the rate limiting defaults set up out of the box and I had my application building out short url's in a matter of minutes. The problem for me came when I wanted to start associating those short urls with a user.
Typically my applications have a UI and authentication is done through a simple login page. Obviously for a RESTful API, having a login page isn't ideal. Instead, my hope was to have users append an api_token to the end of their query string and use that to authenticate their request. I was happy to find that 5.2 also ships with a TokenGuard(link) class that allows
Other people's projects:
- https://github.com/laracasts/URL-Shortener URL Shortener by Jeffrey Way
- https://github.com/basco-johnkevin/laravelsnippets Source code of http://laravelsnippets.com website
- https://github.com/jesseterry/FusionInvoice FusionInvoice is built for freelancers and small businesses who need a simple, yet powerful self-hosted web based invoicing system.
- https://github.com/ezynda3/burnmsg is a self-destructing encrypted message app. A demo is also running on https://burnmsg.com
- https://github.com/martindilling/auto-generating-gallery the demo is at http://gallerydemo.martindilling.com/
My projects (tutorials are on my blog at http://maxoffsky.com):
- https://github.com/CodepadME/laravel-tricks - Source of Laravel-tricks.com