Created
December 10, 2012 23:51
-
-
Save awreece/4254460 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| outdir="." | |
| if [ $# -gt 0 ] | |
| then | |
| outdir=$1 | |
| fi | |
| for conf in asplos hcpca isca sigmetrics | |
| do | |
| for year in `seq 2000 2012` | |
| do | |
| echo "getting $conf$year" | |
| curl -s -m 5 "http://www.informatik.uni-trier.de/~ley/db/conf/$conf/$conf$year.html" | grep '<br><b>' | sed 's/<br><b>\(.*\)/\1/' > $outdir/$conf$year.titles | |
| while [ ${PIPESTATUS[0]} -ne 0 ] | |
| do | |
| echo "try again for $conf$year" | |
| curl -s -m 5 "http://www.informatik.uni-trier.de/~ley/db/conf/$conf/$conf$year.html" | grep '<br><b>' | sed 's/<br><b>\(.*\)/\1/' > $outdir/$conf$year.titles | |
| done | |
| done | |
| done |
This file contains hidden or 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
| $ grep -i -E "(alloc|heap)" * | |
| asplos2000.titles:Power Aware Page Allocation. | |
| asplos2000.titles:Hoard: A Scalable Memory Allocator for Multithreaded Applications. | |
| asplos2006.titles:Comprehensively and efficiently protecting the heap. | |
| asplos2006.titles:HeapMD: identifying heap-based bugs using anomaly detection. | |
| asplos2010.titles:Shoestring: probabilistic soft error reliability on the cheap. | |
| asplos2011.titles:NV-Heaps: making persistent objects fast and safe with next-generation, non-volatile memories. | |
| asplos2012.titles:DejaVu: accelerating resource allocation in virtualized environments. | |
| isca2001.titles:Dynamically allocating processor resources between nearby and distant ILP. | |
| isca2002.titles:Avoiding Initialization Misses to the Heap. | |
| isca2004.titles:Immunet: A Cheap and Robust Fault-Tolerant Packet Routing Mechanism. | |
| isca2005.titles:Optimizing Replication, Communication, and Capacity Allocation in CMPs. | |
| sigmetrics2000.titles:Comparing random data allocation and data striping in multimedia servers. | |
| sigmetrics2002.titles:High-density model for server allocation and placement. | |
| sigmetrics2003.titles:Dynamic resource allocation for shared data centers using online measurements. | |
| sigmetrics2004.titles:A resource-allocation queueing fairness measure. | |
| sigmetrics2004.titles:Quantifying trade-offs in resource allocation for VPNs. | |
| sigmetrics2009.titles:Optimal power allocation in server farms. | |
| sigmetrics2010.titles:A unified modeling framework for distributed resource allocation of general fork and join processing networks. | |
| sigmetrics2011.titles:Weighted proportional allocation. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment