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
apksystems@apps:/var/www/html/var/log$ cat apk_fail_tambovtd-451.log | |
Picked up _JAVA_OPTIONS: -Xmx384m -Xms384m -XX:MaxPermSize=384m | |
FAILURE: Build failed with an exception. | |
* Where: | |
Build file '/var/www/html/var/tmp/applications/ionic/android/tambovtd-451/build.gradle' line: 20 | |
* What went wrong: | |
A problem occurred evaluating root project 'tambovtd-451'. |
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
On a terminal: | |
mplayer -ao null <video file name> -vo jpeg:outdir=output | |
Use ImageMagick to convert the screenshots into an animated gifs. | |
convert output/* output.gif | |
you can optimize the screenshots this way: | |
convert output.gif -fuzz 10% -layers Optimize optimised.gif |
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
def create(**kwargs): | |
SLACK_CHANNEL = kwargs.get('SLACK_CHANNEL', '') | |
SLACK_ACCESS_TOKEN = kwargs.get('SLACK_ACCESS_TOKEN', '') | |
SSH_HOSTNAME = kwargs.get('SSH_HOSTNAME', '') | |
SSH_PORT = kwargs.get('SSH_PORT', '') | |
SSH_USERNAME = kwargs.get('SSH_USERNAME', '') | |
SSH_PASSWORD = kwargs.get('SSH_PASSWORD', '') | |
SSH_KEY = kwargs.get('SSH_KEY', '') |
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
def delete(**kwargs): | |
connection_id = kwargs.get('connection_id', '') | |
service = Service.get(name = connection_id) | |
delete_status = service.delete() | |
return delete_status |
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
def delete(**kwargs): | |
connection_id = kwargs.get('connection_id', '') | |
service = Service.get(name = connection_id) | |
return service |
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
FROM node:latest | |
ADD . /app/content | |
RUN apt-get update && apt-get install -y imagemagick graphicsmagick | |
RUN cd /app/content && \ | |
node bin/install.js | |
EXPOSE 8080 |
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
wget https://github.com/Azure/azurefile-dockervolumedriver/releases/download/v0.5.1/azurefile-dockervolumedriver | |
chmod +x azurefile-dockervolumedriver | |
sudo cp azurefile-dockervolumedriver /usr/bin/ | |
rm azurefile-dockervolumedriver | |
git clone https://github.com/Azure/azurefile-dockervolumedriver.git | |
sudo cp azurefile-dockervolumedriver/contrib/init/systemd/azurefile-dockervolumedriver.default /etc/default/azurefile-dockervolumedriver | |
sudo vi /etc/default/azurefile-dockervolumedriver | |
sudo cp azurefile-dockervolumedriver/contrib/init/systemd/azurefile-dockervolumedriver.service /etc/systemd/system/azurefile-dockervolumedriver.service | |
sudo passwd docker-user | |
sudo systemctl daemon-reload |
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
target 'SlideOutMenu' do | |
project 'SlideOutMenu.xcodeproj' | |
source 'https://github.com/CocoaPods/Specs.git' | |
platform :ios, '7.0' | |
pod 'Google/Analytics' | |
pod 'Fabric' | |
pod 'Crashlytics' |
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
# General Configuration: | |
# Name: ubuntu-16-04-d4-v2 | |
# Labels: docker | |
# Virtual Machine Size: Standard_D4_v2 | |
# Storage Account Name: [leave blank] | |
# Retention Time: 0 | |
# | |
# Image Configuration: | |
# Image Reference: | |
# Image Publisher: canonical |
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
Started POST "/admin/deals" for 127.0.0.1 at 2017-01-24 01:43:46 +0300 | |
ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" | |
Processing by Admin::DealsController#create as HTML | |
Parameters: {"utf8"=>"✓", "authenticity_token"=>"D6MqHlK8O1Z56IzKH0UDPSisGn0Wc3Wz4Q3/cLL4coY=", "deal"=>{"organization"=>"Доккур", "organization_id"=>"1", "category_ids"=>["", "11", "13", "15", "17", "19"], "coupon_count"=>"200", "coupons_per_user"=>"200", "start_date"=>"2017-01-23", "end_date"=>"2017-03-31", "theme"=>"Хостинг бесплатно", "alias"=>"hosting-besplatno", "location_ids"=>["", "1", "2", "3"], "features"=>"<p>Всем хостинг бесплатно</p>", "terms"=>"<p>Просто берете и получаете</p>", "how_coupon_works"=>"<p>Он просто берет и работает</p>", "extra_text"=>"<p>Тут дополнительная информация</p>", "phones"=>"+79051222266", "address"=>"Moscow street, 56", "metro"=>"Кавалерийская", "district"=>"", "longitude"=>"27.593600708984354", "latitude"=>"53.881055228815754", "full_price"=>"3000", |