-
T.M. Pollock & S. Tin (2006) – “Nickel-Based Superalloys for Advanced Turbine Engines: Chemistry, Microstructure, and Properties”
Direct PDF (free): https://deepblue.lib.umich.edu/bitstreams/7e6da156-597e-4aaa-84a5-82c08d5a3dc1/download -
A. Kracke (2010) – “Superalloys, the Most Successful Alloy System of Modern Times – Past, Present and Future”
Direct PDF (free): https://www.tms.org/superalloys/10.7449/2010/Superalloys_2010_13_50.pdf -
G. Conduit et al. (2018) – “Design of a nickel-base superalloy using a neural network”
arXiv full PDF (free): https://arxiv.org/pdf/1803.03039.pdf
This file has been truncated, but you can view the full file.
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
| { | |
| "openapi": "3.1.0", | |
| "info": { | |
| "title": "FastAPI", | |
| "license": { | |
| "name": "Apache 2.0", | |
| "url": "https://www.apache.org/licenses/LICENSE-2.0.html" | |
| }, | |
| "version": "0.1.0", | |
| "x-logo": { |
the script will download the correct version based on os/arch and save the binary as "hfdownloader" in the same folder
bash <(curl -sSL https://g.bodaay.io/hfd) -h./hfdownloader -m lmsys/vicuna-7b-v1.5
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
| #!/bin/bash | |
| # Define the directory where your driver's source code is located | |
| DRIVER_DIR="/home/admin/LINUX/driver" | |
| # Navigate to the driver directory | |
| cd $DRIVER_DIR | |
| # Compile the driver | |
| apt update |
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
| import asyncio | |
| import json | |
| import time | |
| from foxglove_websocket import run_cancellable | |
| from foxglove_websocket.server import FoxgloveServer, FoxgloveServerListener | |
| from foxglove_websocket.types import ChannelId | |
| async def main(): | |
| class Listener(FoxgloveServerListener): | |
| def on_subscribe(self, server: FoxgloveServer, channel_id: ChannelId): |
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
| ctrl_interface=/var/run/wpa_supplicant | |
| network={ | |
| ssid="sMobileNet" | |
| proto=WPA | |
| key_mgmt=WPA-EAP | |
| pairwise=TKIP | |
| group=TKIP | |
| eap=PEAP | |
| identity="itsc username" |
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
| import numpy as np | |
| from math import pi, log | |
| import pylab | |
| from scipy import fft, ifft | |
| from scipy.optimize import curve_fit | |
| i = 10000 | |
| x = np.linspace(0, 3.5 * pi, i) | |
| y = (0.3*np.sin(x) + np.sin(1.3 * x) + 0.9 * np.sin(4.2 * x) + 0.06 * | |
| np.random.randn(i)) |
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
| /* Flatten das boostrap */ | |
| .well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid { | |
| -moz-box-shadow: none !important; | |
| -webkit-box-shadow: none !important; | |
| box-shadow: none !important; | |
| -webkit-border-radius: 0px !important; | |
| -moz-border-radius: 0px !important; | |
| border-radius: 0px !important; | |
| border-collapse: collapse !important; | |
| background-image: none !important; |
- node.js
- Installation paths: use one of these techniques to install node and npm without having to sudo.
- Node.js HOWTO: Install Node+NPM as user (not root) under Unix OSes
- Felix's Node.js Guide
- Creating a REST API using Node.js, Express, and MongoDB
- Node Cellar Sample Application with Backbone.js, Twitter Bootstrap, Node.js, Express, and MongoDB
- JavaScript Event Loop
- Node.js for PHP programmers
NewerOlder