This file contains hidden or 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
name: 'Eric Venarusso' | |
age: '21' | |
sex: 'male' | |
sports: | |
- name: 'soccer' | |
team: | |
name: 'corinthians' | |
- name: 'basketball' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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 Amp\Emitter; | |
use Amp\Iterator; | |
use Amp\Promise; | |
class CsvReader implements Iterator { | |
/** @var EventEmitter */ | |
private $eventEmitter; | |
This file contains hidden or 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 | |
const BASE = ''; | |
const COUNT = 1; | |
$pages = []; | |
for ($i = 1; $i <= COUNT; $i++) { | |
$suffix = $i > 1 ? '/page' . $i : ''; | |
$pages[] = $page = 'page' . $i . '.pdf'; | |
$url = BASE . $suffix; |
This file contains hidden or 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
# Determine wireless device model (manufacturer 14e4 for Broadcom): | |
lspci -vvnn | grep 14e4 | |
# Install Broadcom STA driver for BCM43227: | |
sudo apt-get update | |
sudo apt-get install --reinstall linux-headers-generic build-essential dkms bcmwl-kernel-source | |
sudo modprobe -r b43 ssb wl brcmfmac brcmsmac bcma | |
sudo modprobe wl | |
# Connect (press Fn+F3 to enable wifi if necessary first): |
NewerOlder