Flutter for Desktop: Create and Run a Desktop Application
[Desktop Embedding for Flutter
Flutter for Desktop: Create and Run a Desktop Application
[Desktop Embedding for Flutter
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
set :repository, "[email protected]:repo/repo.git" | |
set :user, "deploy" | |
set :use_sudo, false | |
set :scm, :git | |
set :keep_releases, 5 | |
set :domain, "000.000.000.000" | |
set :application, "my_app" | |
set :rails_env, "production" | |
set :branch, "master" | |
set :deploy_to, "/var/www/#{application}" |
#You should do all your LAMP development in a Virtual Machine
##Here's Why:
Many of us develop on Macintoshes. There are many reasons for this, but one of them is that it's based on a Unix platform of some sort. This allows us to run common server software such as Apache, Ruby, Python and Nodejs on our Macs.
Our computers become powerful develoment machines similar to the servers our apps will eventually live on.
Sometime we start our computer only to find Apache won't start, or MySQL can't create a PID file, or we've updated to Mountain Lion and Apache needs to be reconfigured. Death!
package examples.database; | |
import com.google.common.collect.Lists; | |
import examples.database.dao.PeopleDAO; | |
import examples.database.model.PeopleInfo; | |
import org.apache.commons.lang.time.StopWatch; | |
import org.apache.commons.logging.Log; | |
import org.apache.commons.logging.LogFactory; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; |
HAI 1.2 | |
HOW DUZ I FIBONACCEH YR NUMBEH | |
I HAS A NUMBE | |
I HAS A NUMB | |
I HAS A NUMNUM | |
NUMBE R DIFF OF NUMBEH AN 1 | |
NUMB R DIFF OF NUMBE AN 1 | |
HAI 1.3 | |
IM IN YR fizz UPPIN YR i TIL BOTH SAEM i AN 100 | |
I HAS A i ITZ SUM OF i AN 1 BTW, ALL LUPZ START AT 0 :/ | |
I HAS A mod3 ITZ NOT MOD OF i AN 3 | |
I HAS A mod5 ITZ NOT MOD OF i AN 5 | |
mod3, O RLY?, YA RLY, VISIBLE "Fizz"!, OIC | |
mod5, O RLY?, YA RLY, VISIBLE "Buzz"!, OIC | |
package models; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* Sample Department bean to demostrate main excel export features | |
*/ | |
public class Department { | |
private String name; |