This file contains 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
use std::fs::File; | |
use std::io::BufReader; | |
use std::io::BufRead; | |
use std::io::Lines; | |
struct FileLinesIteratorWrapper { | |
iterator: Lines<BufReader<File>> | |
} | |
impl Iterator for FileLinesIteratorWrapper { |
This file contains 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/python | |
import argparse | |
import os | |
import shutil | |
import sys | |
def parse_arguments(): | |
parser = argparse.ArgumentParser(description='Process a directory for images') |
This file contains 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 <QCoreApplication> | |
#include <QDebug> | |
#include <QFileSystemWatcher> | |
#include <QThread> | |
#include <QTimer> | |
#include <cstdlib> | |
#include <QProcess> | |
int main(int argc, char *argv[]) | |
{ |