This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
newLove = life.find('love); | |
} catch (e) { | |
life.mistakes.push(e); | |
life | |
.mistakes() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
'use strict'; | |
angular | |
.module('app.shared') | |
.service('FakeService', FakeService); | |
FakeService.$inject = ['$timeout', '$q']; | |
function FakeService ($timeout, $q) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-ExecutionPolicy AllSigned | |
chocolatey (CMD) -> @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
chocolatey (PS) -> iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
git -> choco install git // instala também o ssh | |
git config --global user.name "Andrei Paz" | |
git config --global user.email [email protected] | |
7zip -> choco install 7zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Database\Seeder; | |
class CountriesTableSeeder extends Seeder | |
{ | |
/** | |
* Run the database seeds. | |
* | |
* @return void |