| # | Blink Color | Description | enum value in EC firmware |
|---|---|---|---|
| White | Start of diagnosis | DIAGNOSTICS_START |
|
| 1 | Red/Green | Battery connected check | DIAGNOSTICS_HW_NO_BATTERY |
| 2 | Red/Green | Power Good 3V5V supply | DIAGNOSTICS_HW_PGOOD_3V5V |
| 3 | Red/Green | Power Good VCCIN_AUX | DIAGNOSTICS_VCCIN_AUX_VR |
| 4 | Red/Green | CPU deassert sleep S4 | DIAGNOSTICS_SLP_S4 |
| 5 | Red/Green | Power boot core VR | DIAGNOSTICS_HW_PGOOD_VR |
date
This agreement is made between customer name ("you") of company name located at customer address and developer name ("us") of developer's company located at company address.
You desire to retain us as an independent contractor to develop the name of application (the "application") described in the section, Technical specifications.
We are ready, willing and able to undertake the development of the application and agree to do so under the terms and conditions set forth in this agreement.
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### | |
| ############################################################################### |
| <?php | |
| namespace Acme\Bundle\OAuthBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; | |
| use Symfony\Component\Console\Input\InputArgument; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Input\InputOption; | |
| use Symfony\Component\Console\Output\OutputInterface; |
| {% set terms_link %}<a title="{% trans %}Read the General Terms and Conditions{% endtrans %}" href="{{ path('get_general_terms_and_conditions') }}">{% trans %}General Terms and Conditions{% endtrans %}</a>{% endset %} | |
| {% set general_terms_and_conditions %}{{ 'I have read and accept the %general_terms_and_conditions%.'|trans({ '%general_terms_and_conditions%': terms_link })|raw }}{% endset %} | |
| <div> | |
| {{ form_errors(form.acceptGeneralTermsAndConditions) }} | |
| {{ form_widget(form.acceptGeneralTermsAndConditions) }} | |
| <label for="{{ form.acceptGeneralTermsAndConditions.vars.id }}">{{ general_terms_and_conditions|raw }}</label> | |
| </div> |
| /* Drag'n drop stuff */ | |
| var drag = document.getElementById("drag"); | |
| drag.ondragover = function(e) {e.preventDefault()} | |
| drag.ondrop = function(e) { | |
| e.preventDefault(); | |
| var length = e.dataTransfer.items.length; | |
| for (var i = 0; i < length; i++) { | |
| var entry = e.dataTransfer.items[i].webkitGetAsEntry(); | |
| var file = e.dataTransfer.files[i]; |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] | |
| "EnableLinkedConnections"=dword:00000001 |
| #!/bin/sh | |
| # Hurricane Electric IPv6 Tunnel Broker script for Ubuntu | |
| # /etc/network/if-up.d/he-ipv6.sh | |
| # Written by Jesse B. Hannah (http://jbhannah.net) <[email protected]> | |
| # Based on instructions provided by Hurricane Electric (http://tunnelbroker.net) | |
| ### | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal |