Saturday, April 19, 2014

Crowdpruning for evolutionary algorithm


Make use of crowd pruning to increase diversity

Nsga-ii use crowd pruning for pruning the excessive items (more than n), it prefers things at less crowded areas. (crowd pruning)


IBEA (indicator-based)

Torrent downloader

I have encountered a new torrent downloader which I have never heard before, and it works pretty well for downloading torrent.


Tixati

Record slides to pdf from camera

1. Batch Rotate - Right click the images and select "Rotate Clockwise" or  "Rotate counterclockwise"
2. Batch crop -
File > Preferences > Special, Uncheck Update PPI on Crop (If not it will appear to small after the pdf merge)
Edit  > Synchronize Crops, to get the selection apply to all slides.
3. PDF Merge - Select the images and right click and choose "Combine files in Acrobat"

4. Reduce Image Size (for Adobe XI) - Choose Save as Others > Reduced Size PDF.

Wednesday, April 2, 2014

CMS

http://stackoverflow.com/questions/243655/what-is-the-best-open-source-net-content-management-system-cms

Magento

Install with IIS


Successful e-commerce involves a long list of to-do's, from
payment methods, shipping methods, products, content, e-mail templates, forms,

and much more. 

Online Advertising Knowledge

Networks
Exchanges
Supply side platforms (SSP)
Demand Side platforms (DMP)
Data management platforms (DMP)

Real Time Bidding

IPOnline

DSP->DMP
<100ms

Jscamp.asia
NUSHACKERS

Analytics.adzhub.com


text-to-speech synthesizers

Yii


how to change cwidget->how to create a theme
how to validate
user roles
how to change the site login

site/index.php and so on is the default
 'components' => array(
        'user' => array(
            // enable cookie-based authentication
            'allowAutoLogin' => true,
            'loginUrl' => array
            (
                '0' => '/admin/login/site/login'
            )
        ),
To change default login page




110 (drop down list)
remember to set this
<?php
$yii='/wwwroot/framework/yii.php';
$config=dirname( FILE ).'/protected/config/main.php';

With this con guration, we can access the DB connection object using Yii::app()->db
at any place in our code. Note that Yii::app() returns the application instance that we
create in the entry script.

LoginForm.php
$duration=$this->rememberMe ? 3600*24*30 : 0; // 30 days
Yii::app()->user->login($this->_identity,$duration);

validation rules set in models rules method

<?php echo CHtml::activeDropDownList($post,'status',Lookup::items('PostStatus')); ?>

Tag::model()->updateFrequency($this-> oldTags, $this->tags);

access controller

$dataProvider=new CActiveDataProvider('Post', array(
'pagination'=>array(
'pageSize'=>Yii::app()->params['postsPerPage'],
),
'criteria'=>$criteria,
));

<?php $this->widget('zii.widgets.CListView', array(
'dataProvider'=>$dataProvider,
'itemView'=>' view',
'template'=>"fitemsgnnfpagerg",
)); ?>


cgridview

<?php $this->widget('CAutoComplete', array(
'model'=>$model,
'attribute'=>'tags',
'url'=>array('suggestTags'),
'multiple'=>true,
'htmlOptions'=>array('size'=>50),
)); ?>

$this->redirect(array('index'));


smartgit
open project
stage
commit
push to


C:\wamp\www\emplify\api\protected\views\layouts\main.php

Yii::app()->params['basetitle']