IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。
This file contains 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
"Meteor" Forschungsergebnisse = "Meteor" Forschungsergeb. | |
2D Materials = 2D Mater. | |
3D Printing and Additive Manufacturing = 3D Print. Addit. Manuf. | |
AACN Clinical Issues = AACN Clin. Issues | |
AACN Clinical Issues in Critical Care Nursing = AACN Clin. Issues Crit. Care Nurs. | |
AADE Editors Journal = AADE Ed. J. | |
AANA Journal = AANA J. | |
AANNT Journal = AANNT J. | |
AAOHN Journal = AAOHN J. | |
AAPG Bulletin = AAPG Bull. |
This file contains 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
import ipyvolume.pylab as p3 | |
import numpy as np | |
element_list = [ | |
"H", "He", "Li", "Be", "B", "C", "N", "O", "F", "Ne", | |
"Na", "Mg", "Al", "Si", "P", "S", "Cl", "Ar", "K", "Ca" | |
] | |
class IPyVolume_GC: | |
""" |
This file contains 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
# This xorg configuration file will start a dummy X11 server. | |
# move it to /etc/X11/xorg.conf | |
# don't forget apt install xserver-xorg-video-dummy; | |
# based on https://xpra.org/Xdummy.html | |
Section "ServerFlags" | |
Option "DontVTSwitch" "true" | |
Option "AllowMouseOpenFail" "true" | |
Option "PciForceNone" "true" | |
Option "AutoEnableDevices" "false" |
This file contains 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
#!/bin/bash | |
# A simple test script to demonstrate how to find the | |
# "absolute path" at which a script is running. Used | |
# to avoid some of the pitfals of using 'pwd' or hard- | |
# coded paths when running scripts from cron or another | |
# directory. | |
# | |
# Try it out: | |
# run the script from the current directory, then |