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
<!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; } |
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
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; | |
} |
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
// 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 { |
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
// Facade | |
// Intent: wrap a complex subsystem with a simpler interface | |
class Payment | |
{ | |
public void deduct(int orderId) | |
{ | |
System.out.println("Payment check"); | |
} | |
} |
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
/** | |
* @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) { |
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
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. |
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
server { | |
listen 80; | |
# All calls to port 3000 | |
location / { | |
proxy_pass http://localhost:3000; | |
} | |
# Any /api/* call, redirect to another instance | |
location ~api/ { |
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
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.*; |
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
// Index | |
@Repository | |
public class InvoiceByLastNameRepository extends IndexRepository<String> { | |
public InvoiceByLastNameRepository() { | |
super("invoice_by_lastname", "lastname", Invoice::getLastName); | |
} | |
} | |
public abstract class IndexRepository<T> { |
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
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; | |
OlderNewer