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 | |
# Path variables | |
csvPath="/tmp" | |
echo Please, enter the initial portion of the filename you want to modify | |
read filename | |
echo The following file will be modified: | |
file=$(ls -t $csvPath | grep -v NEG | grep TEST_POS_$filename | head -1) | |
echo "Labelled file: ${file}" |
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
0,"Drammatico","final_cinema_event",748987,475122,412593,0,1,1,0 | |
0,"Commedia","final_cinema_event",778845,784652,787974,0,0,1,0 | |
1,"Biografia","final_cinema_event",998511,475122,143153,0,0,1,0 |
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
1,"Fantasy","final_cinema_event",612578,784652,412593,1,1,0,0 | |
0,"Animazione","final_cinema_event",665355,765651,412593,1,1,0,1 | |
1,"Commedia","final_cinema_event",326814,448159,456148,1,1,0,1 |
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
@relation trainingSet-weka.filters.unsupervised.attribute.Remove-R2 | |
@attribute titleAffinity integer | |
@attribute genre string | |
@attribute category string | |
@attribute director integer | |
@attribute actor1 integer | |
@attribute actor2 integer | |
@attribute imageFeature1 integer | |
@attribute imageFeature2 integer |
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 | |
echo Please, enter the string to append: | |
read pattern | |
echo Please, enter the initial portion of the filename you want to modify | |
read filename | |
echo The following file will be modified: | |
ls -t | grep $filename | head -1 | |
ls -t | grep $filename | head -1 | xargs sed "s/$/$pattern/" -i |
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 | |
ls -t | head -1 | xargs sed 's/$/,yes/' -i |
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
void setup() | |
{ | |
Serial.begin(115200); | |
} | |
void loop() | |
{ | |
SerialRoutine(); | |
} |
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
[indigo_trusty] | |
description=Ubuntu 15.10 for installing ROS Indigo | |
directory=/srv/chroot/indigo_trusty | |
root-groups=root | |
type=directory | |
users=YOUR_USERNAME | |
personality=linux | |
preserve-environment=false |
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
void setup() | |
{ | |
Serial.begin(115200); | |
} | |
void loop() | |
{ | |
SerialRoutine(); | |
} |
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
// ** MySQL settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define('DB_NAME', 'wordpress'); | |
/** MySQL database username */ | |
define('DB_USER', 'wpuser'); | |
/** MySQL database password */ | |
define('DB_PASSWORD', 'YOUR_PASSWORD'); |