- Вы заключаете контракт со своим клиентом (клиентами) или через фриланс биржи, используя юридические данные нашего бизнес-инкубатора;
- Полученные средства поступают на ваш фирменный суб-счет (валюта PLN, EUR, USD), которые вы потом себе выплачиваете как заработную плату в рамках договора с нами;
- Предоставив польским государственным органом подтверждение того, что вы тведете деятельность и проводите доход легально, вы получаете ВНЖ в Польше.
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 | |
declare(strict_types=1); | |
exec('git diff', $diff); | |
$currentFile = $chunkStart = null; | |
$fileChanged = false; | |
$chunkOffset = 0; | |
$fileLines = []; |
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
STOP_NOTE = 60 # stop on pressing the C note, you can use another MIDI or timer event to stop the synth | |
live_loop :midi_keys do | |
use_real_time | |
note, velocity = sync "/midi:*:1/note_*" | |
if velocity > 0 && note != STOP_NOTE | |
if (get :current_note) == nil | |
use_synth :dsaw | |
x = play note: note, note_slide: 0.3, amp: velocity / 127.0, sustain: 300 |
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 Brick\Math\BigInteger; | |
require __DIR__.'/vendor/autoload.php'; | |
global $digits; | |
$digits = [2, 3, 4, 6, 7, 8, 9]; | |
$maxLen = 0; |
- composer install ajt/guzzle-toggl
- Put your token into line 8
- Run getProjects(), put workspace and project ID in lines 9 and 10
- Run getTasks() or getCurrentTask()
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 | |
namespace App; | |
class Email | |
{ | |
protected $body; | |
public function setBody($body) | |
{ | |
$this->body = $body; |