exiftool "-datetimeoriginal<filename" -overwrite_original .
exiftool '-datetimeoriginal-=00:00:00 01:00:00' -overwrite_original .
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
# based on https://stackoverflow.com/a/73978756/684253 | |
import requests | |
from datetime import datetime | |
import csv | |
token = "<a personal token>" | |
def export_projects(base_urls, token, out_filename): | |
final_dataset = [] | |
fmt = "%Y-%m-%dT%H:%M:%SZ" |
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
# -*- coding: utf-8 -*- | |
# Credits: | |
# Chris Rodgers - https://github.com/cxrodgers/my/blob/master/stats.py | |
# Brent Pedersen - https://gist.github.com/brentp/853885 | |
# Filipe Correia | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# The next block was borrowed and adapted from Chris Rodgers | |
# https://github.com/cxrodgers/my/blob/master/stats.py |
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> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define MAXSIZE 1024 | |
#define READ 0 | |
#define WRITE 1 | |
int main(int argc, char *argv[]){ |
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
Build_all matplotlib | |
Build matplotlib for i386, x86_64, armv7, arm64 (filtered) | |
Build matplotlib | |
Prebuild matplotlib for i386 | |
Build matplotlib for i386 | |
Could not find platform dependent libraries <exec_prefix> | |
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] | |
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.28.tar.gz | |
Extracting in /tmp/tmpy6FNo8 | |
Now working in /tmp/tmpy6FNo8/distribute-0.6.28 |
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
class Octave < Formula | |
desc "High-level interpreted language for numerical computing" | |
homepage "https://www.gnu.org/software/octave/index.html" | |
revision 3 | |
stable do | |
url "https://ftpmirror.gnu.org/octave/octave-4.0.3.tar.gz" | |
sha256 "5a16a42fca637ae1b55b4a5a6e7b16a6df590cbaeeb4881a19c7837789515ec6" | |
# Fix alignment of dock widget titles for OSX (bug #46592) |
bin/kafka-topics.sh --zookeeper localhost:2181 --list
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000
... wait a minute ...
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --delete-config retention.ms
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
import scala.collection.mutable | |
import org.apache.flink.api.common.functions.FlatMapFunction | |
import org.apache.flink.streaming.api.scala._ | |
import org.apache.flink.streaming.api.functions.sink.SinkFunction | |
import org.apache.flink.streaming.util.StreamingMultipleProgramsTestBase | |
import org.apache.flink.util.Collector | |
import org.junit.{Before, Test} | |
import org.junit.Assert.assertEquals | |
/* Non-working example of an unit test for a flink program. Somehow this |
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/python | |
# | |
# Peter Hewett (Modified by Filipe Correia) | |
# Copyright GPL 2012 | |
# | |
# reorder Gramps dot file to minimise crossings in rel chart | |
# usage: | |
# run rel_graph in Gramps to produce .gv file | |
# copy .gv file and this .py file to the same directory | |
# in that directory, run |
NewerOlder