expo init [path]
To make a new project use expo init [path]
. The path is optional and it will use the current directory if not specified (all commands that need a path behave similarly).
npx react-native init AwesomeApp --directory .
Я конечно понимаю, что функция нужна, но зачем её вызывать столько раз...
A large proportion of the computers in this world manipulate money, so it’s always puzzled me that money isn’t actually a first class data type in any mainstream programming language. The lack of a type causes problems, the most obvious surrounding currencies. If all your calculations are done in a single currency, this isn’t a huge problem, but once you involve multiple currencies you want to avoid adding your dollars to your yen without taking the currency differences into account. The more subtle problem is with rounding. Monetary calculations are often rounded to the smallest currency unit. When you do this it’s easy to lose pennies (or your local equivalent) because of rounding errors.
Implement a reusable Money class in PHP, using all the best practices and taking care of all the subtle intricacies of handling money.
Возвращает расширенную информацию о пользователях.
Определяет тип объекта (пользователь, сообщество, приложение) и его идентификатор по короткому имени screen_name.
set COMPOSER_MEMORY_LIMIT=-1 && php -d memory_limit=-1 composer.phar <...>
export COMPOSER_MEMORY_LIMIT=-1 && php -d memory_limit=-1 composer.phar <...>
API (программный интерфейс приложения, интерфейс прикладного программирования) (англ. application programming interface, API [эй-пи-ай][1]) — описание способов (набор классов, процедур, функций, структур или констант), которыми одна компьютерная программа может взаимодействовать с другой программой.
API определяет функциональность, которую предоставляет программа (модуль, библиотека), при этом API позволяет абстрагироваться от того, как именно эта функциональность реализована.
Если программу (модуль, библиотеку) рассматривать как чёрный ящик, то API — это множество «ручек», которые доступны пользователю данного ящика и которые он может вертеть и дёргать.
scp file.txt username@remote.host:/some/directory
ini_set('pcre.backtrack_limit', 10000000); // Лимит обратных ссылок
The configure() method is called automatically at the end of the command constructor. If your command defines its own constructor, set the properties first and then call to the parent constructor, to make those properties available in the configure() method:
//... public function __construct(bool $requirePassword = false) { // best practices recommend to call the parent constructor first and // then set your own properties. That wouldn't work in this case // because configure() needs the properties set in this constructor $this->requirePassword = $requirePassword; parent::__construct(); } //...
SHELL := /bin/bash
tests:
symfony console doctrine:fixtures:load -n
symfony php bin/phpunit
.PHONY: tests
$ symfony composer require dama/doctrine-test-bundle --dev
...
<extensions>
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
</extensions>
...
$ make tests
class HeadersParser:
def __init__(self,
max_line_size: int=8190,
max_headers: int=32768,
max_field_size: int=8190) -> None:
...
class HttpParser(abc.ABC):
def __init__(self, protocol: BaseProtocol,
loop: asyncio.AbstractEventLoop,
max_line_size: int=8190,
max_headers: int=32768,
max_field_size: int=8190,
...