Skip to content

Instantly share code, notes, and snippets.

View PoslinskiNet's full-sized avatar
🐹
#TomsterOnTour

Dawid Pośliński PoslinskiNet

🐹
#TomsterOnTour
View GitHub Profile
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
value: `<div>
<p><span style="font-weight: bold;">Type: </span> exploration, adventure</p>
<br>
<p><span style="font-weight: bold;">Audio: </span> English</p>
</div>`,
pellOptions: {
@PoslinskiNet
PoslinskiNet / Broccoli analyzer.MD
Last active June 29, 2018 05:56
Analyze your ember app vendor file
  • npm install -g broccoli-concat-analyser
  • CONCAT_STATS=true ember s -e production
  • kill the server
  • broccoli-concat-analyser ./concat-stats-for

IMAGE

@PoslinskiNet
PoslinskiNet / tasks.md
Created December 15, 2017 08:07
Tasks

On the existing the application from the dev-path

  1. Make helper and use it in hbs that gets 2 attributes element and array of elements. It check that element is present in the array of elements and returns condition result as a boolean.
  2. Add-ons: Refactor one of controllers with ember-parachute
  3. Add-ons: Basic usage of ember-can
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'button',
mouseLeave() {
alert('leave!');
},
mouseEnter() {
alert('enter!');
}
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
steps: Ember.computed(function(){
return [
{
element: $('#step1'),
intro: 'Step 1!'
},
@PoslinskiNet
PoslinskiNet / read-directory.js
Created July 2, 2017 20:34
Ember Electron Read directory service - it fetches list of directories for the given path
import Ember from 'ember';
const fs = requireNode('fs')
const path = requireNode('path')
export default Ember.Service.extend({
/**
* Get list of the directories for the given path
* @param {String} absolutePath absolute path
* @return {Array} List of directories in the given path
@PoslinskiNet
PoslinskiNet / SPEC.md
Last active May 4, 2017 09:10
Moving Motivators Application

Moving Motivators App

Based on https://management30.com/practice/moving-motivators/

Guest: not logged user Member: logged user

  • Application sourcecode should be available in your Github repository
  • App is accessible for guests and members.
  • Guest can access Menu screen with the list of motivator decks created by members.
  • Guest can register & login (to simplify for end-users you can use google auth - optional)
@PoslinskiNet
PoslinskiNet / .travis.yml
Last active May 1, 2017 18:33
Sample QA gems setup for you CI - Part 1
env:
global:
- COVERAGE=true
- RAILS_ENV=test
before_script:
- bundle exec rubocop
- bundle exec bundle-audit check — update
- bundle exec license_finder
script:
- bundle exec rspec spec
@PoslinskiNet
PoslinskiNet / UIHelperColors.m
Created October 3, 2013 12:28
Colors helper
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
@interface FTUIHelper : NSObject
+ (UIImage *)createImageFromColor:(UIColor *)color;
+ (UIColor *)colorFromHexRGB:(NSString *)inColorString
@end