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
| mkdir -p $1/mobile/video | |
| mkdir -p $1/veryHigh/video | |
| mkdir -p $1/high/video | |
| mkdir -p $1/medium/video | |
| mkdir -p $1/low/video | |
| ffmpeg -threads 8 -i $2 -acodec libfaac -aq 100 -vcodec libx264 -preset slow -crf 24 -r 15 -s 480x320 -profile:v baseline $1/mobile/video/video.mp4 | |
| ffmpeg -threads 8 -i $2 -acodec libfaac -aq 100 -vcodec libx264 -preset slow -crf 18 -r 15 -s 720x576 -profile:v baseline $1/veryHigh/video/video.mp4 | |
| ffmpeg -threads 8 -i $2 -acodec libvorbis -aq 100 -vcodec libvpx -preset slow -crf 18 -r 15 $1/veryHigh/video/video.webm |
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
| 9 | |
| MobiVulp. | |
| 19 | |
| Mori vulputate nul. | |
| 29 | |
| Morbi vlputate nu MorbiVulpl | |
| 99 |
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
| <h1>TestHello</h1> | |
| <p>Hi there, this is an AXIS service!</p> | |
| <i>Perhaps there will be a form for invoking the service here...</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
| /* Pirapa Sirawuttinanon | |
| * Quick Sort Serial */ | |
| #include <stdio.h> | |
| #include "gettimeofday.h" | |
| #include <cilk/cilk.h> | |
| #include <time.h> | |
| void srand( unsigned seed ); | |
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
| Finding a working MD5 command.... | |
| Found a working MD5 command. | |
| Computing results. | |
| Warning! Unclosed PHP file /Users/NAzT/Desktop/ploiitopoi/the_hook.php, mode=1 | |
| SLOC Directory SLOC-by-Language (Sorted) | |
| 2206 ploiitopoi cpp=1633,php=573 | |
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
| Total Physical Source Lines of Code (SLOC) = 1,633 | |
| Development Effort Estimate, Person-Years (Person-Months) = 0.33 (4.02) | |
| (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05)) | |
| Schedule Estimate, Years (Months) = 0.35 (4.24) | |
| (Basic COCOMO model, Months = 2.5 * (person-months**0.38)) | |
| Estimated Average Number of Developers (Effort/Schedule) = 0.95 | |
| Total Estimated Cost to Develop = $ 45,214 | |
| (average salary = $56,286/year, overhead = 2.40). | |
| SLOCCount, Copyright (C) 2001-2004 David A. Wheeler |
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
| if (this->A->getOrderVector()->size() == this->B->getOrderVector()->size()) | |
| { | |
| this->totalStmt = this->A->getOrderVector()->size()-1; | |
| this->equalStmt = imitate_count; | |
| this->similarity_percent = this->equalStmt/this->totalStmt; | |
| llvm::outs() << " Similarity Percentage: " <<this->A->getOrderVector()->size()/imitate_count<< "%\n"; | |
| llvm::outs() << " Similarity Percentage: " << this->A->getOrderVector()->size()/imitate_count << "%\n"; | |
| this->similarity_percent = this->A->getOrderVector()->size()/imitate_count*100; |
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
| //#include <stdio.h> | |
| int main() { | |
| int test=950; | |
| float number[10]={12,334,1,2,3,4,5,6,7,8}; | |
| int i; | |
| float A=1.1; | |
| int B = 3.1; | |
| char ch1 = 'E'; | |
| char ch2; | |
| float min = number[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
| void MyASTConsumer::HandleTopLevelDecl( clang::DeclGroupRef d) | |
| { | |
| llvm::SmallVector<Decl*, 2> Decls; | |
| static int count = 0; | |
| clang::DeclGroupRef::iterator it; | |
| for( it = d.begin(); it != d.end(); it++) | |
| { | |
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
| #include "SieveStmtPrinter.h" | |
| #include <string> | |
| #include "collection.h" | |
| #include <vector> | |
| #include <sstream> | |
| using namespace clang; | |
| using namespace llvm; | |
| int number = 0; | |
| int orderNum = 0; |
NewerOlder