Wednesday, May 10, 2017

Why to become a Software Developer?

Nowadays Software is everywhere. You can find it in your car, your TV, lights and watch are becoming "Smart". Your phone that is something that you use everyday is full of apps.
Software is not just for the few anymore, everyone has the tools in their hands to start doing some software and become a Software Developer.
I am going to list some of the benefits of becoming a Software Developer. I might be able to convince you.
The average salary of a Software Developer is high.
This is an interesting one and a big motivation to become a developer. You can easily get paid in an entry level the same salary as someone with 10 years of experience in other fields. Let me tell you something if I were you I would just stop reading this and start reading about coding.
There is always work
As a Software Developer you can find a job really easy. There are lots of jobs out there. I always struggle to find good people for my projects. And when I had to find a job doing development I always found myself with 3 or more opportunities to choose from.
You can get a job anywhere
Software is the same everywhere. Something that you do in one country can be applied and used in another. There are lots of companies that sponsor developers work locally. One day you can be working in Argentina and the next you can go and work in Singapore. There is paperwork always to do but that just take time.
You can travel the world while doing Software
You can find customers everywhere in the world and ship the software easily, only thing you need is a Internet connection and that's it. If finding customers is not your thing. Well you can find a company where you can work remotely. Today you can be working in Spain and enjoy a sangria after finishing your work and next week you can book a ticket and go to Italy. The only thing that you need is a bank account where your customers or the company that you work for pay into.
You can create your own company doing some coding in your room
eBay was founded by a guy working from home and now is a multi-billion dollar company. What are you waiting for?. Lets start coding.
You can work in cool stuff that lots of people use
One of the coolest and satisfying things that I have experienced is sitting next to a person that is using one of the apps that you have developed.
Everyone will be a Software Developer in 30 years from now
Software is everywhere and future generations will learn how to do coding in school. Governments are making mandatories software courses, then even if you are going to become a Doctor, Lawyer or Salesman you will know how to code. You don't want someone 20 years younger than you stealing your job. I think you should start coding.
Many more
There is many more reasons why you should become a Software Developer and start coding if you are not convinced let me know and I will try to convince you. But if you are don't waste any more time and start learning now. You are so behind.
Also if you want me to help you become a Software Developer. Subscribe to my course. There are some prerequisites but it is not something that you could not learn before we start.

Wednesday, March 8, 2017

Create an Angular app using Angular CLI and Deploy it using the AWS suite

Some months ago I found my self learning Angular 2, the final release wasn't available yet and I struggle to find a way to publish the app that I was developing in a easy and quick way.

We are going to do that just now. We will create an angular project first and after we will use AWS to deploy the code to a S3 bucket. Let's start.

We first need to create an Angular project. To do that, I found that the easiest way was using angular cli. As a result, that is what we are going to use to create the project.

Lets make some assumptions. I am going to assume that you are using a Mac. Also that you know how to use the terminal and that you have brew installed.

To begin with we need to install nodejs. To do that, we need to go to the terminal and run the following command.
brew install nodejs
After having nodejs installed we will use the NodeJS package manager npm for short, to install angular cli. Lets go to the terminal again and run.
npm install -g @angular cli
If that is successful you will be able to use the ng command in the terminal to see what version of node and angular cli you just install in my case is:
ng --version

node: 7.7.1
@angular-cli: 1.0.0-rc.1
We now should be ready to create our first angular project and run it locally. To create our first project run the following command, my project will be called hello-angular.
ng new hello-angular
This will create your project with all the files that it needs. Also it will download all the dependencies needed for your project to run. If everything goes well you will be able to run your project using the following command.
ng serve
After that you can go to http://localhost:4200 in your browser and you will see a lovely message in my case app works!
Now that we have create our first angular app and it is up an running. However, I want to release my app somewhere because I want everyone to see how awesome it is.
To do that, we need to add our code to a repository. We need it there in order to use CodePipeline to deploy the code to our S3 bucket, for those how didn't know we can use AWS S3 to host a website. Also why CodePipeline, well it is because we want to publish the app immediately every time that we commit any changes. 
If you are as lucky as me the angular cli command also create a local git repository. As a result, the only thing that I need to do is to add a remote to your local repository and push the code into origin. I am going to use GitHub as it is one of the options that CodePipeline gives me as Source Provider
I have create a project called hello-angular in my GitHub account, the same as above. After that, I need to add the remote and push the code. I will do that using the terminal with the following commands.
git remote add origin https://github.com/acastano/hello-angular.git

git push -u origin master
My GitHub account is acastano replace it with yours, I am using https to make it easier You just need to enter the username and password in the terminal. That way you don't have to deal with setting up SSH, I encourage you to do it your own way this is just for simplicity.
If everything went smoothly now the code is in the repository and we are ready to create our pipeline. But hold on, we are still missing something. We need to add the buildspec.yml file in the root directory of the project as we are going to use CodeBuildfrom AWS to get our artefacts to be deployed on S3.

Here is mine, I am not going to explain what everything means just change the bucket name for yours:
version: 0.1
environment_variables:
    plaintext:
        S3_BUCKET: "hello-world.andrescastano.com"
        BUILD_ENV: "prod"
phases:
    install:
        commands:
            - echo Installing source NPM dependencies...
            - npm install
            - npm install -g @angular/cli
    build:
        commands:
            - echo Build started on `date`
            - ng build --env=${BUILD_ENV}
    post_build:
         commands:
            - aws s3 cp dist s3://${S3_BUCKET} --recursive
            - echo Build completed on `date`
artifacts:
    files:
        - '**/*'
    base-directory: 'dist*'
    discard-paths: yes
Don't forget to add the file to the repository, in the terminal do
git add buildspec.yml
git commit -m "master - adding buildspec.yml"
git push -u origin master
Finally, we are ready to deploy. Lets go to the AWS console. The first thing that we are going to do is to setup our S3 bucket. For that, we need to open the S3 section and press create, my bucket name will be hello-word.andrescastano.com as state above, it is important to highlight that the bucket name needs to be what your website url is going to look like in my case is hello-world.andrescastano.com
After we created the bucket there is two things to do.
First, enable the bucket to allow website hosting. Go to properties and select Static Website Hosting, enable website hosting and use index.html for the index document and error document. Press save. You will see the endpoint that AWS has generated for you grab that because you are going to need later. Mine is hello-world.andrescastano.com.s3-website-eu-west-1.amazonaws.com.
Second, we need to attach a policy to allow external access. Go to permissions and click on add bucket policy. Paste the following and press save. Remember to change the bucket name for yours
{
 "Version": "2012-10-17",
 "Statement": [
  {
   "Sid": "2",
   "Effect": "Allow",
   "Principal": "*",
   "Action": "s3:GetObject",
   "Resource": "arn:aws:s3:::hello-world.andrescastano.com/*"
  }
 ]
}
This is pretty exciting we are ready now to create our pipeline. Lets go to the CodePipeline section. First hit create and add a name for your pipeline. After that you will have to pick the source in our case is GitHub. Select the project that you used above and the branch that you want to deploy. In my case is hello-angular and master. You will have to allow Amazon to access your GitHub account. Hit next. 
After that, we need to select our build provider, we are going to use AWS CodeBuildfor that. Select create a new build project, give it a name and select the environment image in our case we will leave the default one. Use an image managed by AWS CodeBuild. We will have to select an Operating System at the moment there is just one, Ubunto. Later, to build the app we need a runtime. Select Node.js as we are build and angular app. 
Lastly, you need to select a version, in my case aws/codebuild/nodejs:7.0.0, and create a service role in your account just leave the default value and take note of the name, mine is code-build-hello-angular-service-role. We will have to add some permissionsto that role to allow CodeBuild to push the artefacts for us to S3. Press save build project to continue. 
Before we continue let's go and add the access to that role, if we don't the pipeline will fail. Lets open a new tab in the browser and go to the IAM section, find the roles section and edit the the role that you created above. For convenience, I am going to add full S3 access to that role but you should just allow access to that specific S3 bucketthat you are using. To add the permissions I go to Permissions and select Attach Policy. Find AmazonS3FullAccess select and add it.
Let's go back to the Pipeline creation. We are going now to hit next step. You are going to be asked to select a deployment provider, here we select no deployment because we are already doing that with code build using our buildspec.yml file. The following is the line that does that.
    - aws s3 cp dist s3://${S3_BUCKET} --recursive
Lastly, you will have to select or create a AWS Service Role. Hit create role give it a name and leave all the default values. Select that role and hit next.
We are finally here. Now we can review everything that we have done but if we did everything right there is nothing to review. Just hit Create pipeline
If everything goes smoothly your pipeline should be running and the artefacts will be deployed to you S3 bucket. However, there is one thing that you need to do. I don't want to give my users the AWS url. As a result, you need to add a CNAME record to your domain. I will be using hello-world as host and the url that will point to is hello-world.andrescastano.com.s3-website-eu-west-1.amazonaws.com that is my bucket url. Remember, sometimes it takes a while for DNS records to get propagated.
If you have done everything correctly you should be able to see you website using your own domain. Until next time.

Tuesday, January 17, 2017

Tech City Visa and Endorsement


Andrés Castaño, 33, is Colombian and moved to the UK in 2009. He had already set up a technology company in Colombia in 2004, which grew to 12 employees and revenues of £300,000 before he sold it. Following that he came to the UK and did a MBA at the University of East London. At the end of his MBA he decided he wanted to stay here. “I saw the huge potential for starting another business here. To get experience in British tech companies he took roles at Sky and at Voucher Cloud. But he really wanted to start his own company and was already talking to investors.

In April 2016 the visa rules changed again and it became clear to him that he needed a visa that would give him the freedom to work for himself, rather than tying him to one particular company.

With Tech City’s help he gathered together all the paperwork and recommendations that he needed.

“Before this type of visa was very restricted but now the criteria are clearer. It actually only took four weeks to get the visa, once I had all the paperwork. With an endorsement you can work in the industry or create your own business. Tech City helped me to put my story together. It’s all about yourself and your skills.”

“The fact that there was someone at Tech City who was always there to answer my questions really helped. It gives you confidence. There’s no set rules about what sort of qualifications you have to have, so it is important to talk to someone,” Andrés says.

Now Andrés is working as founder and chief technology officer in ELEVEN and Patch Property App. Patch Property App includes amongst its investors the founder of the UK’s biggest estate agency chain. Andrés is also mentoring other entrepreneurs through MassChallenge UK, an accelerator programme.

“London is the tech hub where everything happens in Europe. The second place is Berlin, but London is the best place to be. I could go to the US – it was a choice of London or San Francisco or New York, but I decided to stay in London. I met my wife here and we are also having a baby now,” Andrés says.

“I like the culture here and the fact that people come here from everywhere. I call it my home now. To work in technology here and to raise money here is so much easier than in Colombia. Everyone here has a smart phone. In Colombia, your chances of buying and being able to afford an iPhone are much lower, because the standard of living is so much lower and lots of people are on minimum wage.”

“Brexit hasn’t changed my mind about staying here long term. It might be affecting the economy a little bit and it might affect our ability to get the right people for the skills – the industry has so much demand for people. When I worked for Sky we had to recruit people heavily from outside [the UK] because there weren’t the skills available.”

“I feel optimistic that we will still be able to recruit here. The VISAs are very restrictive but we think we will be able to apply and bring people in. The UK has become a tech hub that people want to be in.”