This page describes my experience with the Creality Ender 3.
- Tweezers missing
- Mini USB cable missing
- No exposed serial port to attach e.g., an ESP8266
Need to check
- Tension of belts. Too loose = bad print quality
| require 'resolv' | |
| class Domain | |
| def mxers(domain) | |
| mxs = Resolv::DNS.open do |dns| | |
| ress = dns.getresources(domain, Resolv::DNS::Resource::IN::MX) | |
| ress.map { |r| [r.exchange.to_s, IPSocket::getaddress(r.exchange.to_s), r.preference] } | |
| end | |
| return mxs |
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # @kyletcarlson | |
| # | |
| # This skeleton also assumes you're using the following gems: |
| #!/bin/bash | |
| DIR=/home/httpd/DIR_LOCATION; | |
| DB=(DATABASE_NAME); | |
| DATE=$(/bin/date '+%Y%m%d'); | |
| TENDAY=$(/bin/date -d'10 days ago' '+%Y%m%d'); | |
| /bin/mkdir -p $DIR/$DATE/; | |
| for d in "${DB[@]}" | |
| do | |
| pg_dump -f $DIR/$DATE/$d.sql $d; |
| #!/bin/bash | |
| echo 'This script will set up your Ubuntu 18.04 for Rails development.' | |
| echo 'Press ENTER to continue with installation, press ^C to cancel.' | |
| read | |
| # Install required software | |
| echo "------Installing requirements------" | |
| sudo apt install -y curl git-core gdebi-core gdebi rar unrar gnupg2 vim |
| FROM ruby:2.3.1 | |
| # Install dependencies | |
| RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
| # Set an environment variable where the Rails app is installed to inside of Docker image: | |
| ENV RAILS_ROOT /var/www/app_name | |
| RUN mkdir -p $RAILS_ROOT | |
| # Set working directory, where the commands will be ran: |
| config/initializers/devise.rb : | |
| config.mailer_sender = "[email protected]" | |
| config/environments/production.rb : | |
| config.action_mailer.default_url_options = { :host => 'your.websitedomain.com' } | |
| ActionMailer::Base.smtp_settings = { | |
| :address => "smtp.sendgrid.net", | |
| :port => "25", | |
| :authentication => :plain, |
| package com.company; | |
| import java.io.*; | |
| import java.net.*; | |
| public class FileClient{ | |
| public static void main(String[] args){ | |
| try( | |
| Socket socket = new Socket("localhost", 8000);//Nawiızywanie po³ıczenia z serwerem |