forked from fayausa/techmyrmidons-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
FAYA-macmini-ui-02
authored and
FAYA-macmini-ui-02
committed
Jun 27, 2016
1 parent
f3efee3
commit fcd5ae6
Showing
10,251 changed files
with
1,441,147 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"directory": "app/bower_components", | ||
"json": "bower.json" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
// JSHint Default Configuration File | ||
// See http://jshint.com/docs/ for more details | ||
|
||
"gcl" : true, // if JSHint should be compatible with Google Closure Linter | ||
"maxerr" : 50, // {int} Maximum error before stopping | ||
|
||
// Custom Globals | ||
"predef" : ["$", "_"], // additional predefined global variables | ||
|
||
// Enforcing | ||
"bitwise" : false, // true: Prohibit bitwise operators (&, |, ^, etc.) | ||
"camelcase" : false, // true: Identifiers must be in camelCase | ||
"curly" : true, // true: Require {} for every new block or scope | ||
"eqeqeq" : false, // true: Require triple equals (===) for comparison | ||
"forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty() | ||
"immed" : true, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` | ||
"indent" : 2, // {int} Number of spaces to use for indentation | ||
"latedef" : true, // true: Require variables/functions to be defined before being used | ||
"newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()` | ||
"noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee` | ||
"noempty" : true, // true: Prohibit use of empty blocks | ||
"nonew" : false, // true: Prohibit use of constructors for side-effects (without assignment) | ||
"plusplus" : false, // true: Prohibit use of `++` & `--` | ||
"quotmark" : "single", // Quotation mark consistency: | ||
// false : do nothing (default) | ||
// true : ensure whatever is used is consistent | ||
// "single" : require single quotes | ||
// "double" : require double quotes | ||
"undef" : true, // true: Require all non-global variables to be declared (prevents global leaks) | ||
"unused" : true, // true: Require all defined variables be used | ||
"strict" : false, // true: Requires all functions run in ES5 Strict Mode | ||
"trailing" : true, // true: Prohibit trailing whitespaces | ||
"maxparams" : 4, // {int} Max number of formal params allowed per function | ||
"maxdepth" : 3, // {int} Max depth of nested blocks (within functions) | ||
"maxstatements" : 20, // {int} Max number statements per function | ||
"maxcomplexity" : 7, // {int} Max cyclomatic complexity per function | ||
"maxlen" : 80, // {int} Max number of characters per line | ||
|
||
// Relaxing | ||
"asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons) | ||
"boss" : false, // true: Tolerate assignments where comparisons would be expected | ||
"debug" : false, // true: Allow debugger statements e.g. browser breakpoints. | ||
"eqnull" : false, // true: Tolerate use of `== null` | ||
"es5" : false, // true: Allow ES5 syntax (ex: getters and setters) | ||
"esnext" : false, // true: Allow ES.next (ES6) syntax (ex: `const`) | ||
"moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features) | ||
// (ex: `for each`, multiple try/catch, function expression) | ||
"evil" : false, // true: Tolerate use of `eval` and `new Function()` | ||
"expr" : true, // true: Tolerate `ExpressionStatement` as Programs | ||
"funcscope" : false, // true: Tolerate defining variables inside control statements" | ||
"globalstrict" : false, // true: Allow global "use strict" (also enables 'strict') | ||
"iterator" : false, // true: Tolerate using the `__iterator__` property | ||
"lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block | ||
"laxbreak" : false, // true: Tolerate possibly unsafe line breakings | ||
"laxcomma" : false, // true: Tolerate comma-first style coding | ||
"loopfunc" : true, // true: Tolerate functions being defined in loops | ||
"multistr" : false, // true: Tolerate multi-line strings | ||
"proto" : false, // true: Tolerate using the `__proto__` property | ||
"scripturl" : false, // true: Tolerate script-targeted URLs | ||
"smarttabs" : false, // true: Tolerate mixed tabs/spaces when used for alignment | ||
"shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` | ||
"sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation | ||
"supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;` | ||
"validthis" : true, // true: Tolerate using this in a non-constructor function | ||
|
||
// Environments | ||
"browser" : true, // Web Browser (window, document, etc) | ||
"devel" : true, // Development/debugging (alert, confirm, etc) | ||
"node" : true, // Node.js | ||
"couch" : false, // CouchDB | ||
"dojo" : false, // Dojo Toolkit | ||
"jquery" : false, // jQuery | ||
"mootools" : false, // MooTools | ||
"nonstandard" : true, // Widely adopted globals (escape, unescape, etc) | ||
"prototypejs" : false, // Prototype and Scriptaculous | ||
"rhino" : false, // Rhino | ||
"worker" : false, // Web Workers | ||
"wsh" : false, // Windows Scripting Host | ||
"yui" : false, // Yahoo User Interface | ||
|
||
// Legacy | ||
"nomen" : false, // true: Prohibit dangling `_` in variables | ||
"onevar" : true, // true: Allow only one `var` statement per function | ||
"passfail" : false, // true: Stop on first error | ||
"white" : true // true: Check against strict whitespace and indentation rules | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>TechMyrmidons</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"><!--[if lte IE 8]> | ||
<script src="/scripts/ie/html5shiv.js"></script><!<![endif]--> | ||
<!--link(rel='stylesheet', href='/styles/tab.css')--> | ||
<link rel="stylesheet" href="/styles/colorbox.css"> | ||
<link rel="stylesheet" href="/styles/main.css"><!--[if lte IE 9]> | ||
<link rel="stylesheet" href="/styles/ie9.css"><!<![endif]--> | ||
<!--[if lte IE 8]> | ||
<link rel="stylesheet" href="/styles/ie8.css"><!<![endif]--> | ||
<link href="favicon.ico" rel="icon" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<div id="wrapper"> | ||
<!-- Header--> | ||
<header id="header"> | ||
<div class="inner"> | ||
<!-- Logo--> | ||
<div class="logo"><span class="symbol"><img src="images/logo.svg" alt=""></span><span class="title">Android Myrmidons</span></div> | ||
<!-- Nav--> | ||
<nav> | ||
<ul> | ||
<li><a href="#menu">Menu</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
<!-- Menu--> | ||
<nav id="menu"> | ||
<h2>Menu</h2> | ||
<ul> | ||
<li><a href="/">Home</a></li> | ||
<li><a href="android.html">Android Myrmidon</a></li> | ||
<li><a href="frontend.html">Front End Myrmidon</a></li> | ||
<li><a href="ios.html">iOS Myrmidon</a></li> | ||
<li><a href="web.html">Web Myrmidon</a></li> | ||
<li><a href="qa.html">QA Myrmidon</a></li> | ||
<li><a href="security.html">Security Myrmidon</a></li> | ||
</ul> | ||
</nav> | ||
<!-- Main--> | ||
<div id="main"> | ||
<div class="inner"><span class="image main"><img src="images/android-myrmidon.jpg" alt=""></span> | ||
<div class="list-wrap"> | ||
<h2>Tools & Technologies</h2> | ||
<ul class="icon-list"> | ||
<li><a href="#android_studio" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Android Studio 2.2</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/android-studio.jpg" alt=""></div></a></li> | ||
<li><a href="#git" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Git</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/git.jpg" alt=""></div></a></li> | ||
<li><a href="#firebase" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Firebase</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/firebase.jpg" alt=""></div></a></li> | ||
<li><a href="#fastlane" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Fastlane</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/fastlane.jpg" alt=""></div></a></li> | ||
<li><a href="#testfairy" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Testfairy</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/testfairy.jpg" alt=""></div></a></li> | ||
<li><a href="#gradle" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Gradle</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/gradle.jpg" alt=""></div></a></li> | ||
<li><a href="#crashlytics" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Crashlytics</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/crashlytics.jpg" alt=""></div></a></li> | ||
<li><a href="#flurry" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Flurry</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/flurry.jpg" alt=""></div></a></li> | ||
<li><a href="#asset_studio" class="popup-link"> | ||
<div class="iconlist__title"> | ||
<h4>Android Asset Studio</h4> | ||
</div> | ||
<div class="icon-list__img"><img src="images/android/android-asset-studio.jpg" alt=""></div></a></li> | ||
</ul> | ||
</div> | ||
<div class="list-wrap"> | ||
<h2>Follow the Best Sources</h2> | ||
<ul class="text-list"> | ||
<li> | ||
<div class="text-list__title"><a href="http://developer.android.com/index.html" target="blank"> | ||
<h4>Android Developer</h4></a></div> | ||
</li> | ||
<li> | ||
<div class="text-list__title"><a href="http://www.vogella.com/tutorials/android.html" target="blank"> | ||
<h4>Vogella</h4></a></div> | ||
</li> | ||
<li> | ||
<div class="text-list__title"><a href="https://www.raywenderlich.com" target="blank"> | ||
<h4>Raywenderlich</h4></a></div> | ||
</li> | ||
</ul> | ||
</div> | ||
<div style="display:none"> | ||
<div id="android_studio" class="popup"> | ||
<h4>Android Studio 2.2</h4> | ||
<p>Android Studio is the official IDE for Android platform development. It encompasses the fastest tools for building apps on Android devices.</p> | ||
<p>The latest version 2.2 of the Studio was announced on May 18, 2016 during the Google I/O Conference. It is powered with a reengineered UI Designer and a Constraint Layout. Plunge deeper into the new version<a href="http://android-developers.blogspot.in/2016/05/android-studio-22-preview-new-ui.html"> here</a><br><a href="https://developer.android.com/studio/index.html#downloads">Download Here</a></p> | ||
</div> | ||
<div id="git" class="popup"> | ||
<h4>Git</h4> | ||
<p>Git is a free distributed version control system. Android Studio comes with Git client. All we need to do is just enable and start using it. As a prerequisite, you need to have Git installed in the local system.</p> | ||
<p>Dive deeper into Git<a href="https://source.android.com/source/developing.html"> here</a><br><a href="http://git-scm.com/downloads">Download Here</a></p> | ||
</div> | ||
<div id="firebase" class="popup"> | ||
<h4>Firebase</h4> | ||
<p>Firebase is a mobile platform that helps you quickly develop high-quality apps, grow your user base, and earn more money. Firebase is made up of complementary features that you can mix-and-match to fit your needs.</p> | ||
<p>Dive deeper into Firebase<a href="https://firebase.google.com/"> here</a></p> | ||
</div> | ||
<div id="fastlane" class="popup"> | ||
<h4>Fastlane</h4> | ||
<p>Fastlane is a set of tools that helps you unify and automate the app deployment or release process within a single streamlined workflow. With fastlane, you establish Continuous Delivery (CD), a design practice used in software development to automate and improve the process of software delivery.</p> | ||
<p>Get started with fastlane<a href="https://fastlane.tools/"> here</a></p> | ||
</div> | ||
<div id="testfairy" class="popup"> | ||
<h4>Testfairy</h4> | ||
<p>TestFairy is an Android app Beta Testing and Deployment platform that lets the developer know when and how people are using the app, and provides with any metric needed to optimize for better user experience and better code.It paves way for better understanding of how the app performs on real devices.</p> | ||
<p>All you need to do is just upload your android build (.apk) file to your TestFairy account and invite the beta testers. Once the users start playing around with the app, you will get to see the reports real time.</p> | ||
<p>Know more about Testfairy<a href="https://testfairy.com/"> here</a><br><a href="http://docs.testfairy.com/">Testfairy API documentation</a></p> | ||
</div> | ||
<div id="gradle" class="popup"> | ||
<h4>Gradle</h4> | ||
<p>Gradle is an advanced build toolkit used to automate and manage the build process, while allowing the developer to define flexible custom build configurations. Each build configuration can define its own set of code and resources, while reusing the parts common to all versions of the app..</p> | ||
<p>Know more about Gradle<a href="http://gradle.org/getting-started-android/"> here</a></p> | ||
</div> | ||
<div id="crashlytics" class="popup"> | ||
<h4>Crashlytics</h4> | ||
<p>Crashlytics delivers deep, rich crash reporting across devices in real-time. It performs a detailed analysis of every thread on every Android device to identify the most important issues.</p> | ||
<p>Know more about Crashlytics<a href="http://try.crashlytics.com/"> here</a><br><a href="https://docs.fabric.io/android/crashlytics/index.html">SDK Documentation</a></p> | ||
</div> | ||
<div id="flurry" class="popup"> | ||
<h4>Flurry</h4> | ||
<p>Flurry optimizes the mobile experience through better apps and more personal ads. It provides the tools and resources needed to gain a deep level of understanding about the users’ behavior in the apps. The user’s habits and performance can be tracked better by setting up advanced analysis of complex events, with metrics, segments and funnels.</p> | ||
<p>Get started with Flurry Analytics<a href="https://developer.yahoo.com/flurry/docs/analytics/gettingstarted/android"> here</a></p> | ||
</div> | ||
<div id="asset_studio" class="popup"> | ||
<h4>Android Asset Studio</h4> | ||
<p>The Android Asset Studio web app by Roman Nurik is a great resource for creating icons for your Android applications. Moreover it offers a growing list of utilities to help developers create good-looking widgets.</p> | ||
<p>Know more about the Android Asset Studio<a href="https://romannurik.github.io/AndroidAssetStudio"> here</a></p><br> | ||
<h4>Android Arsenal</h4> | ||
<p>It is an online directory of libraries and tools for Android developers.</p> | ||
<p>Get started with Android Arsenal<a href="https://android-arsenal.com/"> here</a><br><a href="http://git-scm.com/downloads">Download Here</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<footer id="footer"> | ||
<div class="inner"> | ||
<section> | ||
<h2>Get in touch</h2> | ||
<form method="post" action="#"> | ||
<div class="field half first"> | ||
<input id="name" type="text" name="name" placeholder="Name"> | ||
</div> | ||
<div class="field half"> | ||
<input id="email" type="email" name="email" placeholder="Email"> | ||
</div> | ||
<div class="field"> | ||
<textarea id="message" name="message" placeholder="Message"></textarea> | ||
</div> | ||
<ul class="actions"> | ||
<li> | ||
<input type="submit" value="Send" class="special"> | ||
</li> | ||
</ul> | ||
</form> | ||
</section> | ||
<section> | ||
<h2>Follow</h2> | ||
<ul class="icons"> | ||
<li><a href="#" class="icon style2 fa-twitter"><span class="label">Twitter</span></a></li> | ||
<li><a href="#" class="icon style2 fa-facebook"><span class="label">Facebook</span></a></li> | ||
<li><a href="#" class="icon style2 fa-github"><span class="label">GitHub</span></a></li> | ||
<li><a href="#" class="icon style2 fa-envelope-o"><span class="label">Email.</span></a></li> | ||
</ul> | ||
</section> | ||
<ul class="copyright"> | ||
<li>© techmyrmidons.com</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
<script src="/scripts/jquery.min.js"></script> | ||
<script src="/scripts/skel.min.js"></script> | ||
<script src="/scripts/util.js"></script> | ||
<script src="/scripts/ie/respond.min.js"></script> | ||
<script src="/scripts/jquery.colorbox.js"></script> | ||
<script src="/scripts/jquery.easytabs.min.js"></script> | ||
<script src="/scripts/main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.