Mapa de Mexico para colorear con google chars js api.
El archiv html va en tu documento, el JS puede cargarse afuera u antes de la llamada a los bloques html.
produce esto / your get tomething like this:
https://goo.gl/kPIMZR (jsfiddle)
Mapa de Mexico para colorear con google chars js api.
El archiv html va en tu documento, el JS puede cargarse afuera u antes de la llamada a los bloques html.
produce esto / your get tomething like this:
https://goo.gl/kPIMZR (jsfiddle)
/** | |
* Extract formula from a cell | |
* | |
* @param {reference} a cell reference from which to extract the formula | |
* @return a string representation of the formula in {reference} | |
* @customfunction | |
*/ | |
function CELLFORMULA(reference) { | |
var ss = SpreadsheetApp; |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
cat bsd.commands.mk | | |
grep -v -Ee "^\#|^$|^_|^\.|\@|^PKG|builtin" | | |
while read line | |
do | |
CMD=`echo $line | tr -s "\t" | cut -f2 | cut -f1 -d\ ` | |
stat $CMD 1>>/dev/null 2>>/dev/null | |
if (($? )) then | |
echo "${CMD} failed" | |
else | |
echo "${CMD} ok" |
/** | |
* Test function for onEdit. Passes an event object to simulate an edit to | |
* a cell in a spreadsheet. | |
* | |
* Check for updates: http://stackoverflow.com/a/16089067/1677912 | |
* | |
* See https://developers.google.com/apps-script/guides/triggers/events#google_sheets_events | |
* | |
* on Script editor, set to debug THIS function, but create breakpoints | |
* on the onEdit Function |
From This other answer on the same thread
Based on Chris Johnsen's answer:
I added this line to the [alias]
section of my git config file (~/.gitconfig
):
squash = "!f(){ git reset --soft HEAD~${1} && git commit --edit -m\"$(git log --format=%B --reverse HEAD..HEAD@{1})\"; };f"