READY/IN DEVELOPMENT/HOLD
YES | NO
A few sentences describing the overall goals of the pull request's commits.
| Paperclip::Attachment.any_instance.stubs(:save).returns(true) | |
| Paperclip::Attachment.any_instance.stubs(:post_process).returns(true) |
| sudo add-apt-repository 'deb [arch=amd64,i386] http://mirror.edatel.net.co/mariadb/repo/10.0/ubuntu precise main' | |
| sudo apt-get update | |
| sudo apt-get install mariadb-server | |
| log into mariadb from terminal | |
| mysql --user=your_user | |
| then | |
| INSTALL PLUGIN cassandra SONAME 'ha_cassandra.so'; |
| add this lines in /etc/apt/sources.list (sudo) | |
| deb http://www.apache.org/dist/cassandra/debian 10x main | |
| deb-src http://www.apache.org/dist/cassandra/debian 10x main | |
| then | |
| sudo apt-get update | |
| sudo apt-get install cassandra | |
| start cassandra |
| model.trigger('destroy', model) |
| it { should validate_uniqueness_of(:field_id).scoped_to(:other_field, :other_field).with_message("your message") } |
| security cms -D -i name_of_config_file.mobileconfig |
| #!/bin/bash | |
| # Install a custom Influxdb version - https://docs.influxdata.com/influxdb/v1.2/ | |
| # | |
| # Add at least the following environment variables to your project configuration | |
| # (otherwise the defaults below will be used). | |
| # * export INFLUX_VERSION=1.2.1 | |
| # * export INFLUX_DB=your_database | |
| # | |
| INFLUX_VERSION=${INFLUX_VERSION:="1.2.2"} |
| 1- Open encrypt_decrypt.html file in browser | |
| 2- Get public key from developer console | |
| 3- Copy and paste public key in RSA.rb | |
| 4- Decrypt message in developer console using crypt.decrypt("encrypted message from ruby"); |