Pink Pather on Chromatic harmonica and bluesharp

-1*  2  -2*   3 .. -1*  2  -2*   3  ..

5  -4 ..  2     3   -4  -3*……..-3    3   2  -1    2. …..

-1*  2   -2*   3 .. -1*  2   -2*   3 ..

5    -4 ..   2     -4     6     -5*……………

-1*   2    -2*   3 .. -1*   2    -2*   3 .

5   -4 ..  2    3    -4    -3*……..-3     3     2    -1     2. …..

6    -5    -4   -3    3     2     -3* -3 ..  -3*  -3 .. -3*  -3 .. -3*  -3 .

3    2     -1     2      2…………………

 

http://www.slidemeister.com/forums/index.php?topic=3677.0

 

Laravel Quickstart installation in Windows environment – Laravel telepítés Windows alatt

,

I followed Laravel Quickstart (http://laravel.com/docs/quick ) installation in Windows environment

Earlier I had installed Composer in the E:composer directory (https://getcomposer.org/doc/00-intro.md#installation-windows)

I am using UniServer but You also can create installation in your (Wamp, Xampp ) web directory.

First I created a laravel directory in my web directory :wwwprojectslaravel
The project name will be testproject.

The commands in the console (cmd):

Microsoft Windows [verziószám: 6.1.7601]

C:WindowsSystem32>E:

E:>cd E:serverUniServerZ_2014wwwprojectslaravel

E:serverUniServerZ_2014wwwprojectslaravel>E:composercomposer create-project laravel/laravel testproject
Installing laravel/laravel (v4.2.0)
– Installing laravel/laravel (v4.2.0)
Downloading: 100%

Created project in testproject
Loading composer repositories with package information
Installing dependencies (including require-dev)
****************
laravel/framework suggests installing doctrine/dbal (Allow renaming columns and dropping SQLite columns.)
Writing lock file
Generating autoload files
Generating optimized class loader
Compiling common classes
Compiling views
Application key [RDwdAkh5WxWAgVkQwTdMcTFlJLpMb73t] set successfully.

E:serverUniServerZ_2014wwwprojectslaravel>

//////////////////////////

E:serverUniServerZ_2014wwwprojectslaravel>cd testproject

E:serverUniServerZ_2014wwwprojectslaraveltestproject>php artisan migrate:make create_users_table
Created Migration: 2014_07_04_071018_create_users_table
Generating optimized class loader
Compiling common classes
Compiling views

E:serverUniServerZ_2014wwwprojectslaraveltestproject>

////////////////////////////

E:serverUniServerZ_2014wwwprojectslaraveltestproject>php artisan migrate
**************************************
*     Application In Production!     *
**************************************

Do you really wish to run this command?
Migration table created successfully.
Migrated: 2014_07_04_071018_create_users_table

E:serverUniServerZ_2014wwwprojectslaraveltestproject>

//////////////////////////////////////////////////////

Symfony 2 WordPress Entity generation

,
php app/console generate:doctrine:entity


 Welcome to the Doctrine2 entity generator



This command helps you generate Doctrine2 entities.

First, you need to give the entity name you want to generate.
You must use the shortcut notation like AcmeBlogBundle:Post.


The Entity shortcut name: BloggerBlogBundle:Wordpress

Determine the format to use for the mapping information.

Configuration format (yml, xml, php, or annotation) [annotation]:

Instead of starting with a blank entity, you can add some fields now.
Note that the primary key will be added automatically (named id).

Available types: array, simple_array, json_array, object,
boolean, integer, smallint, bigint, string, text, datetime, datetimetz,
date, time, decimal, float, blob, guid.

New field name (press  to stop adding fields): post_title
Field type [string]:
Field length [255]:

New field name (press  to stop adding fields): post_date
Field type [string]: datetime

New field name (press  to stop adding fields): post_status
Field type [string]:
Field length [255]:

New field name (press  to stop adding fields): post_type
Field type [string]:
Field length [255]:


New field name (press  to stop adding fields):

Do you want to generate an empty repository class [no]? yes


  Summary before generation


You are going to generate a "BloggerBlogBundle:Wordpress" Doctrine2 entity
using the "annotation" format.

Do you confirm generation [yes]? yes


  Entity generation