The goal of this app is to show basic Angular.js Material Design components in action together. It can also be used as a starting point if you're looking to try things out.
A Pen by Marcy Sutton on CodePen.
The goal of this app is to show basic Angular.js Material Design components in action together. It can also be used as a starting point if you're looking to try things out.
A Pen by Marcy Sutton on CodePen.
| /** | |
| * Copyright © 2016, QIAGEN Aarhus A/S. All rights reserved. | |
| */ | |
| package com.qiagen.sky.buildutil; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.io.PrintWriter; | |
| /** |
| /** | |
| * Copyright © 2016, QIAGEN Aarhus A/S. All rights reserved. | |
| */ | |
| package com.qiagen.sky.executor.dummy; | |
| import javax.xml.bind.DatatypeConverter; | |
| /** | |
| * FIXME | |
| */ |
A Pen by Erik Martino Hansen on CodePen.
This gist is extracted from wayback machine and is a blogpost by winterstream Submitted by winterstream on Fri, 07/18/2008 - 17:25
I use git-svn to interoperate with out Subversion repository at Sourceforge. I did the original checkout via HTTP and continued working like this until Sourceforge's recent site-wide SVN upgrade (from version 1.3 to 1.5). After the upgrade, I could no longer do Subversion commits (that is, git svn dcommit failed).
I had two options; I could:
| #!/bin/bash | |
| echo "Starting update: `date`" | |
| rm -f svnupdate.* stderr.txt stdout.txt | |
| ls -d1 */.svn/.. 2>/dev/null | split -l40 - svnupdate. | |
| echo "`cat svnupdate.* 2>/dev/null | wc -l` projects updated in `ls -1 svnupdate.* 2>/dev/null | wc -l` parallel processes" | |
| for f in svnupdate.* | |
| do svn update `cat $f` 2>>stderr.txt 1>>stdout.txt & | |
| done 2>/dev/null | |
| wait |
| const int max_iterations = 255; | |
| vec2 complex_square( vec2 v ) { | |
| return vec2( | |
| v.x * v.x - v.y * v.y, | |
| v.x * v.y * 2.0 | |
| ); | |
| } | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| int main() | |
| { | |
| printf ("kill -9 <parent>\n"); | |
| kill (getppid(), 9); | |
| } |