Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
After installing debian 8 (jessie) on my GA-H170N-WIFI with Nvidia GTX970, there are many hardwares not working properly. After digging for some time, I finally get everything working. So I am going to write this simple note to help people might need this in the future (for me as well).
Today is 2016/6/25, many things may be fixed in the future
Things not working properly after installation:
Realtec ALC1150
built on GA-H170-WIFI/** | |
* Simple routine that performs the following: | |
* 1. Configures the software UART on pins 2 and 4 (RX,TX) | |
* 2. Increments a 32-bit variable every 500ms | |
* 4. If it receives a '1' character from bluetooth, it toggles an LED | |
* | |
* @author Justin Bauer - mcuhq.com | |
* @date 4.24.2016 | |
*/ |
A common task when developing iOS apps is to register custom cell subclasses for both UITableView
and UICollectionView
. Well, that is if you don’t use Storyboards, of course.
Both UITableView
and UICollectionView
offer a similar API to register custom cell classes:
public func registerClass(cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)
public func registerNib(nib: UINib?, forCellWithReuseIdentifier identifier: String)
下载链接 http://www.charlesproxy.com/download/ | |
Registered name: | |
Rajax Network Technology Co., Ltd. | |
License key: | |
2dcd56e6f3cbacaa7e |
using System.Windows; | |
using System.Windows.Controls; | |
using JetBrains.Annotations; | |
namespace Foo | |
{ | |
public class MarginSetter | |
{ | |
private static Thickness GetLastItemMargin(Panel obj) | |
{ |
#!/bin/bash | |
####################################################################### | |
# This is a helper script that keeps snapraid parity info in sync with | |
# your data and optionally verifies the parity info. Here's how it works: | |
# 1) It first calls diff to figure out if the parity info is out of sync. | |
# 2) If parity info is out of sync, AND the number of deleted files exceed | |
# X (configurable), it triggers an alert email and stops. (In case of | |
# accidental deletions, you have the opportunity to recover them from | |
# the existing parity info) | |
# 3) If partiy info is out of sync, AND the number of deleted files exceed X |
###################### | |
# Options | |
###################### | |
REVEAL_ARCHIVE_IN_FINDER=false | |
FRAMEWORK_NAME="${PROJECT_NAME}" | |
SIMULATOR_LIBRARY_PATH="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework" |
package macko; | |
import javafx.beans.Observable; | |
import javafx.collections.FXCollections; | |
import javafx.collections.ObservableList; | |
import javafx.geometry.Pos; | |
import javafx.geometry.Side; | |
import javafx.scene.Cursor; | |
import javafx.scene.Node; | |
import javafx.scene.chart.Axis; |