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
root@------# pdffonts old_draft1.pdf | |
name type emb sub uni object ID | |
------------------------------------ ----------------- --- --- --- --------- | |
MMNOLU+NimbusRomNo9L-Medi Type 1 yes yes no 4 0 | |
QRJGLY+NimbusRomNo9L-MediItal Type 1 yes yes no 5 0 | |
ZKJODE+NimbusRomNo9L-Regu Type 1 yes yes no 6 0 | |
VDWPAT+CMSY8 Type 1 yes yes no 7 0 | |
VFEFVW+NimbusRomNo9L-ReguItal Type 1 yes yes no 8 0 | |
TXZOPV+CMMI10 Type 1 yes yes no 20 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
Please note that only first ten lines of the file is displayed. | |
1 1 Tu 1 . + CDS 1 - 1812 497 | |
2 2 Op 1 . + CDS 2397 - 3584 482 | |
3 2 Op 2 . + CDS 3651 - 4865 369 | |
4 3 Tu 1 . - CDS 4812 - 4949 81 | |
5 4 Tu 1 . + CDS 5098 - 5427 113 | |
6 5 Tu 1 . + CDS 5702 - 7612 974 | |
7 6 Tu 1 . - CDS 7694 - 8128 308 | |
8 7 Tu 1 . - CDS 8702 - 8914 84 |
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
Please note that only first ten lines of the file is displayed. | |
>Genoma_CpI19_Refinada_v2 | |
GTGTCGGAGGCTCCATCGACATGGAACGAGCGGTGGCAAGAAGTTACTAATGAGCTGCTG | |
TCACAGTCTCAGGACCCGGAAAGTGGTATTTCCATTACGCGACAGCAAAGCGCCTACCTG | |
CGTCTGGTTAAACCAGTTGCTTTTGTAGAGGGTATTGCCGTTTTAAGCGTTCCTCACGCC | |
CGAGCGAAAAAAGAGATTGAAACTACGCTGGGACCTGTTATCACAGAGGTATTGTCTCGT | |
AGACTAGGTCGACAATACAGTCTTGCAGTGAGCGTTCATGCTCCAGAGGAAAATCCAGAA | |
GTATCCTCGGCCACTCCAGATGCTGTGTCTTATTACCAGGAACAATCTGCAGTTTCTGGA | |
CAATACGGAGCAACTTCAGCCAATGCTGACTTCCAGAATCAACAAAGCACGATATATCGC |
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
y = [100, 97.72044539209, 96.44059464582, 88.38326226012....]; % upto 20 values | |
for index = 1:4 | |
text(index-0.35, y(index)+1.5, 'text'); | |
end | |
% I have four sets of five-stacked columns. I have displayed annotation for four columns (one in each 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
<form action="multiple_file_upload.php" method="POST" enctype="multipart/form-data"> | |
<table> | |
<tr><td>File 1</td> <td><input name="userfile[]" type="file" class="multi"/> </td></tr> | |
<tr><td>File 2</td> <td><input name="userfile[]" type="file" class="multi"/> </td></tr> | |
<tr><td></td> <td> <input type="submit" name="upload" value="Upload"><input type="reset"> </td> </tr> | |
</table> | |
</form> |
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 | |
$stri='[0-9]*' | |
sed -i -e 's/ '"$stri"'....' |
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
<?php | |
echo "<script language='javascript'>alert('Try to be nice, OK? Please try again :-) ')</script>"; | |
?> |
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
/* Add the following lines */ | |
<Directory "/var/www/folderName"> | |
Options -Indexes | |
</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
# G is a directed graph | |
num_nodes = G.number_of_nodes() | |
t7 = time() | |
if ffl == 1: | |
for i in range(0,num_nodes): | |
for j in range(0,num_nodes): | |
for k in range(0,num_nodes): | |
if G.has_edge(i, j) and G.has_edge(j,k) and G.has_edge(i,k): |