This file contains hidden or 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
| /** | |
| * Japanese locale file for Sencha Touch 2 | |
| * File: ext-lang-ja.js | |
| * Auther: sunvisor/Xenophy (hisashi.nakamura@xenophy.com) | |
| * history: 2012-09-15 Prototype Version (test is not completed) | |
| **/ | |
| Ext.onReady(function() { | |
| var cm = Ext.ClassManager, | |
| exists = Ext.Function.bind(cm.get, cm); |
This file contains hidden or 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
| demo | |
| *.swp |
This file contains hidden or 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
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains hidden or 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
| find . -type f | xargs -I {} bash -c "iconv -f utf-8 -t utf-16 {} &>/dev/null || echo {}" > utf8_fail |
This file contains hidden or 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
| /* | |
| Copyright 2011 Martin Hawksey | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
This file contains hidden or 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
| # add extra coloum for fullname in sencha touch model | |
| Ext.define('Sencha.model.Employee', { | |
| extend: 'Ext.data.Model', | |
| config: { | |
| fields: [ | |
| {name: 'firstName', type: 'string'}, | |
| {name: 'lastName', type: 'string'}, | |
| { | |
| name: 'fullName', |
This file contains hidden or 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
| /* | |
| * 2017 <Janar Sööt> http://opensource.org/licenses/mit-license.php | |
| * Based on the work from @jhsa (http://openrcforums.com/forum/viewtopic.php?f=85&t=8471) | |
| * | |
| * I do not take any responsibility for this program. Use at your own risk. | |
| ___ ___ | |
| D5(A0) RESET PCINT5 B5 -| o |- VCC | |
| D3(A3) ADC3 PCINT3 B3 -|atiny|- B2 PCINT2 SCK ADC1 D2(A1) | |
| D4(A2) ADC2 PCINT4 B4 -|45/85|- B1 PCINT1 MISO D1 | |
| GND -|_/25_|- B0 PCINT0 MOSI D0 |
This file contains hidden or 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
| Ext.define('App.security.Firewall', { | |
| singleton: true, | |
| requires: [ | |
| 'App.security.TokenStorage' | |
| ], | |
| login: function(username, password) { | |
| var deferred = new Ext.Deferred(); | |
| Ext.Ajax.request({ |
git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git pull upstream master