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
поздравляю любовь Встретил радость Будет | |
поздравляю любовь Пусть радость Будет | |
в этот праздник день Встретил слава Настанет | |
поздравляю день Пусть защитник Будет | |
в этот праздник сила Пусть радость Будет | |
в этот праздник жизнь Встретил отечество Настанет | |
поздравляю дружба Встретил слава Будет | |
поздравляю день Встретил отечество Будет | |
поздравляю жизнь Пусть радость Будет |
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
core@ip-171-32-5-64 ~ $ /usr/bin/toolbox | |
Spawning container core-fedora-latest on /var/lib/toolbox/core-fedora-latest. | |
Press ^] three times within 1s to kill container. | |
[root@ip-171-32-5-64 ~]# |
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
# vim ~/.toolboxrc | |
TOOLBOX_BIND="--bind=/:/media/root/ --bind=/var/:/media/root/var/ --bind=/home:/media/root/home/" |
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 | |
class Animal { | |
public $name; | |
function __construct($name){ | |
$this->name = $name; | |
} | |
public function getName (){ | |
return $this->name; |
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
class BaseClass { | |
constructor() { | |
return { | |
baseRequest: this.baseRequest.bind(this), | |
postRequest: this.postRequest.bind(this), | |
}; | |
} | |
baseRequest(url) { |
OlderNewer