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
| cp -r -v -i --reply=no /path/to/source/* /path/to/target/ |
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
| <HTML WEB="2.0"> | |
| <HEAD> | |
| <TITLE> | |
| xkcd - A Webcomic - Nachos - HOSTED BY GEOCITIES | |
| </TITLE> | |
| <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="/atom.xml" /> | |
| <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/rss.xml" /> | |
| <link rel="icon" href="/static/favicon.ico" type="image/x-icon" /> | |
| <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" /> | |
| </HEAD> |
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 | |
| #This script simply splits up the reuters-21578 dataset into separate files for each article. | |
| for f in reut2-*.sgm | |
| do | |
| echo $f | |
| sed '1d' $f | csplit -ks -n 3 -f split/${f%.sgm} - '/<REUTERS/' {100000} | |
| 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
| package edu.berkeley.nlp.starcraft.collect; | |
| import java.util.AbstractCollection; | |
| import java.util.AbstractMap; | |
| import java.util.ArrayList; | |
| import java.util.Collection; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.Map; | |
| import java.util.Set; |
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
| mknod: /dev/loop5: File exists | |
| losetup: /dev/block/loop5 | |
| mount: mounting /dev/block/loop5 on /data/local/ubuntu failed: No such device | |
| mount: mounting devpts on /data/local/ubuntu/dev/pts failed: No such file or directory | |
| mount: mounting proc on /data/local/ubuntu/proc failed: No such file or directory | |
| mount: mounting sysfs on /data/local/ubuntu/sys failed: No such file or directory | |
| ./bootubuntu: cannot create /data/local/ubuntu/etc/resolv.conf: directory nonexistent | |
| ./bootubuntu: cannot create /data/local/ubuntu/etc/resolv.conf: directory nonexistent | |
| ./bootubuntu: cannot create /data/local/ubuntu/etc/hosts: directory nonexistent | |
| chroot: can't execute '/bin/bash': No such file or directory |
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
| crw------- 1 root root 10, 243 Jun 3 17:37 HPD | |
| crw------- 1 root root 10, 131 Jun 3 17:37 adc | |
| crw-rw-r-- 1 system radio 10, 57 Jun 3 17:37 alarm | |
| crw-rw---- 1 adb adb 10, 59 Jun 3 17:37 android_adb | |
| crw-rw---- 1 adb adb 10, 60 Jun 3 17:37 android_adb_enable | |
| crw------- 1 root root 10, 134 Jun 3 17:37 apm_bios | |
| crw-rw-rw- 1 root root 10, 61 Jun 3 17:37 ashmem | |
| crw------- 1 root root 10, 40 Jun 3 17:37 backlightnotification | |
| crw-rw-rw- 1 root root 10, 54 Jun 3 17:37 binder | |
| drwxr-xr-x 3 root root 2320 Jun 4 14:51 block |
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
| #!/usr/bin/env bash | |
| echo "Generating eclipse projects for all ROS projects in this directory" | |
| for MKFILE in `find $PWD -name Makefile`; do | |
| DIR=`dirname $MKFILE` | |
| echo $DIR | |
| cd $DIR | |
| make eclipse-project | |
| 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
| #!/usr/bin/env bash | |
| URI=$(roslocate uri $1) | |
| VCS=$(roslocate vcs $1) | |
| echo $VCS $URI | |
| case $VCS in | |
| 'svn') | |
| svn co $URI | |
| ;; |
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
| #The thing you do to make grafts permanent | |
| git filter-branch --tag-name-filter cat -- --all | |
| #Move everything from a subdirectory to the root | |
| git filter-branch --subdirectory-filter subdir/ -- --all |
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
| planning_scene_diff: | |
| robot_state: | |
| joint_state: | |
| header: | |
| seq: 0 | |
| stamp: | |
| secs: 0 | |
| nsecs: 0 | |
| frame_id: '' | |
| name: [] |
OlderNewer