Friday, April 29, 2016

plus mûrs

opl-small

Arty minimal One Pager for French studio, plus mûrs. The Single Page site features a wild hover-sensitive project "index" that scrolls you up to relevant project sliders. There is also quite a unique horizontal accordion revealing an Instagram feed and more information about the studio.

by Rob Hope via One Page Love

Starting a Business with Laravel Spark

I am really excited about Laravel Spark. By the time you read this, there will probably be a multitude of posts explaining how you can set it up. That's not as interesting to me as the journey I'm about to take in creating an actual business with Spark!

The idea is simple. I have created a Pagekit module which you can use to back up and restore site data. The module makes it easy to store and download these backups, and restore them on different servers.

The trouble is, getting those backup files to the remote server takes time and a bit of hassle. I have often wanted a way to quickly and painlessly transfer this application state from one server to another, and make automated offsite backups. So I'm going to set that up for myself, and perhaps others will find it useful enough to pay for it.

Spark splash screen

Getting Started

I'm using Stripe, and intend to have a single plan with no trial. The setup for this is quite easy, but I've made a note of the plan ID. I'll need that to set the plan up in Spark...

Stripe welcome screen

Next, I reset my secret and public Stripe keys and update to the latest API (through the same screen, http://ift.tt/1rnQsJq).

I forgot that the settings in .env do not automatically reload while the Laravel development server is running, so I was getting needlessly frustrated at the keys which wouldn't seem to update.

Spark has a few expected registration/profile fields, but I want to add a few more. I would like to ask users if they would like automatic backups and I'd also like to collect their billing address, so I can show it on their invoice. First I'll have to create a migration for the new field:

php artisan make:migration add_should_backup_field

To do this, we can add the column (making sure to remove it if the migrations are rolled back):

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddShouldBackupField extends Migration
{
    public function up()
    {
        Schema::table("users", function (Blueprint $table) {
            $table->boolean("should_backup");
        });
    }

    public function down()
    {
        Schema::table("users", function (Blueprint $table) {
            $table->dropColumn("should_backup");
        });
    }
}

Continue reading %Starting a Business with Laravel Spark%


by Christopher Pitt via SitePoint

How to Authenticate Users With Twitter OAuth 2.0

Now You See Me 2

THE CLOSER YOU LOOK, THE LESS YOU SEE. Scroll to zoom out as you work your way through various scenes that showcase various illusions tied to the film.
by via Awwwards - Sites of the day

Google AMP: What Bloggers Need to Know

ms-podcast195-leslie-samuel-560

Have you heard of Google AMP? Want to know how it will impact your blog? To discover more about Google AMP and the future of blogging, I interview Leslie Samuel. More About This Show The Social Media Marketing podcast is an on-demand talk radio show from Social Media Examiner. It’s designed to help busy marketers [...]

This post Google AMP: What Bloggers Need to Know first appeared on .
- Your Guide to the Social Media Jungle


by Michael Stelzner via

Listy : jQuery plugin for Lists browsable through Keyboard

Listy is a jQuery plugin which aim to facilitate developer making lists browsable through keyboard.

The post Listy : jQuery plugin for Lists browsable through Keyboard appeared first on jQuery Rain.


by Admin via jQuery Rain

XSiteBuilder : Drag Drop Site Builder with PHP & jQuery

With XSiteBuilder, We can create websites by drag and drop, We can publish that site to any hosting server via ftp. We create websites faster that will save a tons of time working.

  • Unlimited html websites
  • Unlimited html files
  • Power user manager system, we can set permission via user group
  • Publish html website to any hosting server via ftp
  • Create, edit, delete html websites
  • Create, edit, delete html file
  • Create, edit, delete html layout
  • Design html file with drag and drop component elements
  • Support preview html file
  • Support test environment for desktop, tablet, mobile
  • Support bootstrap theme

The post XSiteBuilder : Drag Drop Site Builder with PHP & jQuery appeared first on jQuery Rain.


by Admin via jQuery Rain