The team works according to the The Heartbeat release process.
Github is used as the main version control, tracking, collaboration tool.
Wordpress iOS app
| require 'rest_client' | |
| require 'json' | |
| require 'addressable/uri' | |
| def write_to_file(file_name, info) | |
| open(file_name, 'a') do |f| | |
| p info | |
| f.puts info | |
| end | |
| end |
The team works according to the The Heartbeat release process.
Github is used as the main version control, tracking, collaboration tool.
Wordpress iOS app
| alias q3="/Applications/ioquake3/ioquake3.app/Contents/MacOS/ioquake3fe& watch sudo renice -15 -p `ps -ax | awk '/ioquake3.app/ {print $1}'`" |
| <?php | |
| final class Image { | |
| private $file; | |
| private $image; | |
| private $info; | |
| public function __construct($file) { | |
| if (file_exists($file)) { | |
| $this->file = $file; |