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
    
  
  
    
  | import os | |
| from progressbar import ProgressBar, Percentage, Bar, ETA | |
| print "----------------- Icon Generator ------------------" | |
| print "Usage: icon-generator.py" | |
| print "See files_ios { } in icon-generator.py" | |
| print "icon-ios.png and icon-android.png" | |
| print "---------------------------------------------------" | |
| input_ios = './icon-ios.png' | 
  
    
      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
    
  
  
    
  | module.exports = function(config) { | |
| config.set({ | |
| basePath: '../../', | |
| frameworks: ['jasmine', 'jquery-2.1.0'], | |
| plugins: [ | |
| 'karma-babel-preprocessor', | |
| 'karma-jquery', | |
| 'karma-jasmine', | |
| 'karma-mocha-reporter', | |
| ], | 
  
    
      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
    
  
  
    
  | class DummyController < ApplicationController | |
| def do | |
| render json: { balance: 50 } | |
| end | |
| end | 
  
    
      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
    
  
  
    
  | // Creating Meteor HOCs | |
| import { Meteor } from 'meteor/meteor'; | |
| import { createContainer } from 'meteor/react-meteor-data'; | |
| import React from 'react'; | |
| import { compose } from 'recompose'; | |
| // Assuming we have a Meteor collection here... | |
| import TodosCollection from '../api/TodosCollection'; | 
  
    
      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
    
  
  
    
  | # frozen_string_literal: true | |
| # config/initializers/colorized_logger.rb | |
| # This initializer adds color to the Rails logger output. It's a nice way to | |
| # visually distinguish log levels. | |
| module ColorizedLogger | |
| COLOR_CODES = { | |
| debug: "\e[36m", # Cyan | |
| info: "\e[32m", # Green | |
| warn: "\e[33m", # Yellow | 
OlderNewer