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
#!/bin/bash | |
set -e # fail on nonzero status | |
cd $1 | |
files=`find . \ | |
-not \( -path ./vendor -prune \) \ | |
-not \( -path ./tmp -prune \) \ | |
-name '*.html' -o -name '*.js' -o -name '*.coffee' -o \ |
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
demo | |
*.swp |
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
demo | |
*.swp |
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
class Note { | |
short frequency; | |
int tempo; | |
public: | |
String name; | |
Note(String name) { | |
this->name = name; | |
this->tempo = 150; |
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
<%= | |
begin | |
render "pages/#{foo}/data" | |
rescue ActionView::MissingTemplate | |
render "pages/data" | |
end | |
%> |
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
char * | |
pad(char *in, size_t width) | |
{ | |
char *padded = NULL, | |
*fmt = NULL; | |
check(asprintf(&fmt, "%%%lds", width) >= 0); | |
check(asprintf(&padded, fmt, in) >= 0); | |
free(in); |
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
realloc | |
*.o | |
*.dSYM |
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
calc | |
*.o | |
*.dSYM |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <malloc/malloc.h> | |
int | |
main() | |
{ | |
char *thing = malloc(1 * sizeof(char)); | |
printf("Alloc'd: %ld bytes\n", malloc_size(thing)); |
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
main | |
*.o | |
*.dSYM |