Eric Steven Raymond, Thyrsus Enterprises, < [email protected] >
Rick Moen, < [email protected] >
翻译:柯非, < [email protected] >
这篇译文基于2014.05.21更新的原文修订版3.10。
特别感谢王刚,此前本文的翻译是由他进行的。
----------- | |
From idea to products: | |
- Ideation, wireframes, mockups, design and development | |
- The design to development handoff | |
- Build views from mockups | |
Front end frameworks | |
- Haml | |
- Sass | |
- Twitter Bootstrap |
#!/bin/gawk | |
BEGIN{ | |
cnt=1; | |
cnt_2=0; | |
cnt_10=0; | |
cnt_499=0; | |
cnt_500=0; | |
total_time=0; | |
cnt_portal=0; | |
cnt_portal_2=0; |
require 'mail' | |
require 'date' | |
yesterday=Date.today.prev_day.strftime("%Y%m%d") | |
yesterdayLogFile="./" + yesterday + ".log" | |
subject="技术指标 " + yesterday | |
body="请查看附件。" | |
options = { | |
:openssl_verify_mode => OpenSSL::SSL::VERIFY_NONE, |
#!/bin/sh | |
# author: zheng | |
# date: 201505 | |
# version: 0.0.0 | |
# this file for merged the error-report log file | |
#path_work="/home/" | |
path_work="/home/" | |
echo $path_work |
``` | |
email address: [email protected] | |
email passwd: h9LH | |
``` | |
import smtplib | |
import email.utils |
Eric Steven Raymond, Thyrsus Enterprises, < [email protected] >
Rick Moen, < [email protected] >
翻译:柯非, < [email protected] >
这篇译文基于2014.05.21更新的原文修订版3.10。
特别感谢王刚,此前本文的翻译是由他进行的。
.markdown-here-wrapper { | |
font-size: 16px; | |
line-height: 1.8em; | |
letter-spacing: 0.1em; | |
background-color: #EFF2F2; | |
} | |
pre, code { | |
font-size: 14px; |
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker
now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
Android Emulator (ARM64) on EC2 - 2022 | |
--------------------------------------- | |
1. Launch EC2 ARM based Instance (a1.metal / a1.2xlarge): (16 Gb RAM, 32Gb Disk), Ubuntu Server 22.04 LTS (HVM) ARM x64 | |
2. sudo apt update && sudo apt upgrade | |
3. sudo apt install default-jdk python3-pip repo python-is-python3 unzip libpcre2-dev adb | |
4. wget https://dl.google.com/android/repository/commandlinetools-linux-8512546_latest.zip | |
5. unzip commandlinetools-linux-8512546_latest.zip -d android-sdk | |
6. sudo mv android-sdk /opt/ | |
7. mkdir /opt/android-sdk/cmdline-tools/latest | |
8. mv /opt/android-sdk/cmdline-tools/* /opt/android-sdk/cmdline-tools/latest (ignore the error) |
Update (2022): https://gist.github.com/atyachin/2f7c6054c4cd6945397165a23623987d | |
Steps for installing the Android Emulator from EC2 console: | |
----------------------------------------------------------- | |
sudo apt install default-jdk | |
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
unzip sdk-tools-linux-4333796.zip -d android-sdk | |
sudo mv android-sdk /opt/ | |
export ANDROID_SDK_ROOT=/opt/android-sdk |