Skip to content

Instantly share code, notes, and snippets.

View alincc's full-sized avatar

Alin Capitanescu alincc

View GitHub Profile
@alincc
alincc / demo.html
Last active August 29, 2015 14:22 — forked from RichAyotte/demo.html
<!DOCTYPE html>
<html ng-app="test">
<head>
<title>Performance Comparison for Knockout, Angular and React</title>
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap.css" rel="stylesheet" />
<style type="text/css">
* { box-sizing:border-box; }
body { padding:30px 0; }
h2 { margin:0; margin-bottom:25px; }
h3 { margin:0; padding:0; margin-bottom:12px; }
@alincc
alincc / nginx.conf
Created November 20, 2015 14:29 — forked from calebwoods/nginx.conf
Sample Nginx config for deployment of Angular.js app
server { listen 80;
server_name example.com;
access_log /var/log/example.com/nginx.access.log;
error_log /var/log/example.com/nginx.error.log;
root /var/www/apps/example.com/public;
charset utf-8;
location / {
rewrite ^ https://$host$request_uri? permanent;
}
@alincc
alincc / Decorator.java
Last active February 2, 2016 16:56
Java Decorator sample
// Decorator
// Test it here: https://www.compilejava.net/
// Source: https://sourcemaking.com/design_patterns/decorator
// Intent: Attach additional responsibilities to an object dynamically
interface Widget {
void draw();
}
class TextWidget implements Widget {
// Facade
// Intent: wrap a complex subsystem with a simpler interface
class Payment
{
public void deduct(int orderId)
{
System.out.println("Payment check");
}
}
@alincc
alincc / draggable.js
Created February 21, 2016 22:44 — forked from siongui/draggable.js
AngularJS draggable element (position must be absolute)
/**
* @see https://github.com/siongui/palidictionary/blob/master/static/js/draggable.js
* @see http://docs.angularjs.org/guide/compiler
*/
angular.module('draggableModule', []).
directive('draggable', ['$document' , function($document) {
return {
restrict: 'A',
link: function(scope, elm, attrs) {
@alincc
alincc / java package.txt
Last active March 1, 2016 15:48
Java package organization
Source: http://stackoverflow.com/questions/3226282/are-there-best-practices-for-java-package-organisation
Credits: http://stackoverflow.com/users/2316982/thomasgran
I prefer feature before layers, but I guess it depends on you project. Consider your forces:
* Dependencies. Try minimize package dependencies, especially between features. Extract APIs if necessary.
* Team organization. In some organizations teams work on features and in others on layers. This influence how code is organized,
use it to formalize APIs or encourage cooperation.
@alincc
alincc / nginx.conf
Created March 1, 2016 16:45
nginx.conf for angular2 and spring boot
server {
listen 80;
# All calls to port 3000
location / {
proxy_pass http://localhost:3000;
}
# Any /api/* call, redirect to another instance
location ~api/ {
package org.robotninjas.util.concurrent;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.util.concurrent.*;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.*;
@alincc
alincc / CompletableFuture.java
Created March 2, 2016 07:49 — forked from jxerome/demo.java
Invoice Repository
// Index
@Repository
public class InvoiceByLastNameRepository extends IndexRepository<String> {
public InvoiceByLastNameRepository() {
super("invoice_by_lastname", "lastname", Invoice::getLastName);
}
}
public abstract class IndexRepository<T> {
@alincc
alincc / component.ts
Created March 3, 2016 20:01
angular2 - append child to body
import {Component, Input, Output, EventEmitter, ElementRef, ViewChild, DynamicComponentLoader} from 'angular2/core';
import {BrowserDomAdapter} from 'angular2/platform/browser';
@Component({
selector: 'parent',
providers: [BrowserDomAdapter]
})
export class ParentComponent {
@ViewChild(Child) child: Child;