Skip to content

Instantly share code, notes, and snippets.

View fischermatte's full-sized avatar

G. Ludewig fischermatte

View GitHub Profile
@nettakogo87
nettakogo87 / chips-autocomplete.component.html
Created August 16, 2019 14:51
Angular material control
<mat-chip-list
#chipList
[disabled]="itemsCtrl.disabled"
[required]="required"
>
<mat-chip
*ngFor="let selectedItem of selectedItems; let index = index"
color="primary"
selected="false"
@fischermatte
fischermatte / azure.md
Last active February 23, 2019 15:03
azure-az-300

VM

Fault Domain / Update Domain

@jbrackett
jbrackett / TestAppConfig.java
Created February 9, 2014 13:46
Load in memory database and generate schema from annotated Java files.
import java.util.Properties;
import javax.persistence.EntityManagerFactory;
import javax.sql.DataSource;
import org.hibernate.cfg.Environment;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;