- http://www.proxmox.com/proxmox-ve
- http://pve.proxmox.com/wiki
- https://pve.proxmox.com/wiki/Roadmap
- Based on Debian with latest RHEL kernel, including OpenVZ kernel patches, and finally a hardware detection system.
apex:page controller="SiteLoginController" id="loginComponent" showheader="false" standardStylesheets="false"> | |
<h1 style="color: gray"> Community Login </h1> | |
<apex:form id="loginForm" forceSSL="true"> | |
<apex:outputPanel layout="block"> | |
<apex:pageMessages id="error"/> | |
<apex:outputLabel value="{!$Label.site.username}" for="username"/> | |
<apex:inputText id="username" value="{!username}"/> |
public class DeskSample | |
{ | |
private static String OAUTH_KEY = 'youroauthkey'; | |
private static String OAUTH_SECRET = 'youroauthsecret'; | |
private static String ACCESS_TOKEN = 'youraccesstoken'; | |
private static String ACCESS_TOKEN_SECRET = 'youraccesstokensecret'; | |
public static String DESK_SITENAME = 'yoursite'; | |
public static Void doRequest() |
# | |
# The MySQL database server configuration file. | |
# | |
# You can copy this to one of: | |
# - "/etc/mysql/my.cnf" to set global options, | |
# - "~/.my.cnf" to set user-specific options. | |
# | |
# One can use all long options that the program supports. | |
# Run program with --help to get a list of available options and with | |
# --print-defaults to see which it would actually understand and use. |
Organization name: [email protected] | |
Serial Key: eNrzzU/OLi0odswsqslJTa3IzHJIz03MzNFLzs+tMTQyNrcwsTQyAIEa5xpDAIFxDy8k | |
Download : https://balsamiq.com/wireframes/desktop/archives/?prefix=obsolete/mockups-desktop/3.5.17/ |
#!/usr/bin/env bash | |
# To run this script you need to install https://rclone.org/ first | |
# Use current date and time for future backup folder name | |
TIMESTAMP=$(date +"%Y-%m-%d_%H-%M-%S") | |
# Declare the directory where the temporary backup files will be stored | |
BACKUP_DIR="/backup/$TIMESTAMP/mysql" | |
# State the username for your MySQL / MariaDB instace that can access the neccessary databases | |
MYSQL_USER="" | |
# Point this script to mysql executable file | |
MYSQL=/usr/bin/mysql |
This gist was essentially created out of my own rant about Netflix being hostile to IPv6 tunnel services since June 2016. You are welcome to read my opinion on the matter, this is the more technical side to the issue and how to combat it within your own network.
Since I wrote this, various GitHub users have contributed their thoughts and ideas which has been incorporated into this gist. Thank you to everyone who have contributed their own methods and implementations.
Netflix now treats IPv6 tunnel brokers (such as Hurricane Electric) as proxy servers. A while ago it became apparent to users and Netflix that somewhat by accident, IPv6 tunnel users were being served content outside of their geolocation because of the way Netflix was identifying the tunnel servi
<aura:component > | |
<aura:method name="myMethod" action="{!c.executeMyMethod}"> | |
<aura:attribute name="param1" type="String"/> | |
<aura:attribute name="param2" type="String"/> | |
</aura:method> | |
</aura:component> |
/* | |
* @class FileUploaderClass | |
* @desc Lets you uplaod a file in Salesforce by giving a base64 string of the | |
* file, a name for the file, and the Id of the record that you want to attach | |
* the file to. | |
* | |
* @example: | |
* FileUploaderClass.uploadFile(myBase64String, 'Invoice.pdf', '906F0000000kG2UIAU') | |
*/ | |
public class FileUploaderClass { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Wheel of Fortune Bingo</title> | |
<!-- | |
MIT License |