- sans-serif 100 = Helvetica Light
- sans-serif 200 = Helvetica Light
- sans-serif 300 = Helvetica Light
- sans-serif 400 = Helvetica Regular
- sans-serif 500 = Helvetica Regular
- sans-serif 600 = Helvetica Bold
- sans-serif 700 = Helvetica Bold
This file contains 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
var dojoConfig = { | |
asyc: true, | |
baseUrl: 'path/to/src', | |
tlmSiblingOfDojo: false, | |
packages: [ | |
'dojo', | |
'dijit', | |
'dojox', | |
{ name: 'doh', location: 'util/doh' } | |
] |
This file contains 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 | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative --all | |
sleep 1 | |
done |
This file contains 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
#!bash | |
# | |
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# |
This file contains 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
define(["dojo/_base/lang", "dojo/_base/declare", "dojox/app/Controller"], | |
function(lang, declare, Controller){ | |
// module: | |
// dojox/app/tests/mediaQuery3ColumnApp/controllers/LogAllAppEvents | |
// summary: | |
// This Custom controller created to log all dojox/app events to see when these events are fired. | |
return declare("dojox/app/tests/mediaQuery3ColumnApp/controllers/LogAllAppEvents", Controller, { | |
constructor: function(){ |
This file contains 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/sh | |
#Your app id which can be found in your config.xml file (widget id) | |
app=com.ionicframework.myNewApp | |
pathToAPK=platforms/android/build/outputs/apk/android-debug.apk | |
echo "Running Ionic Build" | |
ionic build |
- create a single page javascript application
- be as low-level as possible to be able to control performance (=minimize layers)
- masterize your dev/build environnement so you can work/play nicely
- Open safari console in development menu with simulator or attached devices (enable debug in ipad/safari dev options)
- Applescript to automate console open : https://gist.github.com/revolunet/bed17b9809fffa77b4b8 (works great with https://red-sweater.com/fastscripts/)
This file contains 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
# Makefile for transpiling with Babel in a Node app, or in a client- or | |
# server-side shared library. | |
.PHONY: all clean | |
# Install `babel-cli` in a project to get the transpiler. | |
babel := node_modules/.bin/babel | |
# Identify modules to be transpiled by recursively searching the `src/` | |
# directory. |
This file contains 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/sh | |
# Setting up some colors for helping read the demo output. | |
# Comment out any of the below to turn off that color. | |
bold=$(tput bold) | |
bright=$(tput setaf 14) | |
yellow=$(tput setaf 11) | |
red=$(tput setaf 196) | |
reset=$(tput sgr0) |
This file contains 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
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DT><H3 ADD_DATE="1576816453" LAST_MODIFIED="1578776782">CKAD</H3> | |
<DL><p> |
OlderNewer