Skip to content

Instantly share code, notes, and snippets.

View stankusl's full-sized avatar

exe1 stankusl

View GitHub Profile
@stankusl
stankusl / javascript_resources.md
Last active August 29, 2015 14:21 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@stankusl
stankusl / css_resources.md
Last active August 29, 2015 14:21 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

@stankusl
stankusl / Add Tab to Facebook Script.md
Last active August 29, 2015 14:21
Add tab to Facebook page script
@stankusl
stankusl / facebook_page_foreced_height.md
Created May 27, 2015 15:25
Facebook page app force height.

provide these lines when calling initialization:

FB.Canvas.setSize({ height: (newHeight+20) }); setTimeout(function() { FB.Canvas.setSize({ height: (newHeight+40) }); }, 100);

Full code:

window.fbAsyncInit = function() {

<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
use Illuminate\Support\Facades\Route;
class OfficeRequests extends Request
{
/**
TRIGGER
https://registry.hub.docker.com/u/exe1/test/trigger/2979d576-fdd4-44c8-91c5-e25d4c5c3296/
TOKEN
2979d576-fdd4-44c8-91c5-e25d4c5c3296
curl -H "Content-Type: application/json" --data '{"build":true}' -X POST https://registry.hub.docker.com/u/exe1/test/trigger/2979d576-fdd4-44c8-91c5-e25d4c5c3296/
https://dashboard.tutum.co/api/v1/service/d7b3110e-88ce-4fde-8165-04817ecc058c/trigger/55892f67-7da7-471a-8fd7-994e8fbafbcf/call/
remote.origin.url=https://github.com/stankusl/test.git
WP:
image: "centurylink/wordpress:3.9.1"
links:
- "DB:DB_1"
ports:
- "8080:80"
environment:
- "DB_PASSWORD=pass@word01"
- DB_NAME=wordpress
dns:
// Use Case:
// Get all values from API. Loop thru collection and provided control with value.
<div class="btn-group" data-toggle="buttons">
<label ng-repeat="cover in Benefit.availableCovers track by $index" class="btn btn-default-outline large-button-switch {{ Benefit.BenefitData.benefit_cover_type_id == $index ? 'active' : null }}">
<input
ng-click="Benefit.BenefitData.benefit_cover_type_id = $index"
type="checkbox"
name="benefit-renewal"
ng-model="Benefit.BenefitData.benefit_cover_type_id"
@stankusl
stankusl / excerpt.md
Created May 27, 2015 15:07
Text Excerpt PHP function

Function:

function shorten_text($text, $max_length = 140, $cut_off = '...', $keep_word = false)
{
    if(strlen($text) <= $max_length) {
        return $text;
    }

if(strlen($text) > $max_length) {