This repo was created to store all my productions and notes throughout the Data Science for All course.
ds4a/
└── week1/
│ case_1.1_student/
// trello variables | |
/** | |
The spreadsheet sheet with the raw data from trello is called 'Raw' | |
List prefixes: | |
(P) = Product Backlog | |
(S) = Sprint Backlog | |
(U) = Urgente/volta de homologação - Não planejado!! | |
(F) = Feito - pronto para homologação/em homologação/em produção | |
*/ | |
var api_key = "z2x1c65a1c3z1x65c1a61c32z1xc561a6s5c1"; |
<?php | |
trait ClientMockTrait | |
{ | |
// [...] | |
public function debugRequest(string $method, string $location, array $options, string $action = '') : void | |
{ | |
// data/logs/3rd_party_requests/request_{time}.log |
server { | |
listen 80; | |
server_name foobar.com www.foobar.com; | |
index index.html; | |
root /path/to/site; # i.e. /var/www/mysite | |
location / { | |
try_files $uri$args $uri$args/ $uri/ /index.html =404; | |
} | |
} |
# First execute: | |
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/bin/airport | |
# Then execute: | |
sudo airport -s |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Net; | |
using System.Text; | |
namespace DownloadTest | |
{ | |
public class Class1 |
$ yum install bison gettext glib2 freetype fontconfig libpng libpng-devel libX11 libX11-devel glib2-devel libgdi* libexif glibc-devel urw-fonts java unzip gcc gcc-c++ automake autoconf libtool make bzip2 wget | |
$ cd /usr/local/src | |
$ wget http://download.mono-project.com/sources/mono/mono-3.12.0.tar.bz2 | |
$ tar jxf mono-3.12.0.tar.bz2 | |
$ cd mono-3.12.0 |