Posts Tagged ‘Photo’

Sonntag, 9. Juli 2023

Arbeitsplätze dieser Welt: David Heinemeier Hansson

Der Schöpfer von Ruby on Rails und Mitbegründer der Projekt-Management-Software Basecamp David Heinemeier Hansson (kurz: „DHH“) hat kürzlich seinen Arbeitsplatz vor einem szenischen Panorama auf Twitter gepostet:

Wow. Da kann ich absolut nicht mithalten: Sowohl bezüglich der Lokalität (offenbar in den Bergen Malibus, bei Los Angeles, in Kalifornien, angeblich mit Blick auf Santa Catalina Island, obwohl die Insel auf beiden Photos unter einer Wolkendecke versteckt zu sein scheint), der Hardware (das sichtbare Setup muss zehntausende Dollars gekostet haben), als auch auf Grund der Ordentlichkeit (ist das ein Museum, oder leistet da jemand wirklich tagtäglich produktive Arbeit?).

Bei mir ist der Schreibtisch wie auch das gesamte Büro konstant mit Material überstellt und mein Arbeitszimmer hat so verdächtige Züge eines Büros eines Universitäts-Professors.

Tags: , , , , ,
Labels: Gesellschaft

Keine Kommentare | neuen Kommentar verfassen

Mittwoch, 14. Oktober 2020

Lechts ist Rinks

Quelle: Tragen wir bald alle Li-Nings statt Nikes?

War heute (resp. am 12. August) der Praktikant für die Bildunterschriften zuständig?

Tags: , , , ,
Labels: Funny

Keine Kommentare | neuen Kommentar verfassen

Dienstag, 17. September 2019

iPhone 11 in einem Wort zusammengefasst

Als (ernsthafte) Hintergrundlektüre sei John Grubers Review des iPhone 11 und iPhone 11 Pro empfohlen:

Apple spent the vast majority of the stage time for the iPhone 11 and iPhone 11 Pro talking about their cameras. They spent no time — not a word — talking about phone calls. […] Driven by the iPhone, the word phone has simply taken on a new definition — a pocket-sized touchscreen personal computer with wireless networking and front- and rear-facing cameras capable of shooting photographs and video. Try convincing a six-year-old that a landline telephone is a “phone” — they won’t believe you.

Quelle: The iPhone 11 and iPhones 11 Pro

Tags: , , , , ,
Labels: Apple

Keine Kommentare | neuen Kommentar verfassen

Samstag, 17. November 2012

Bilddateien unter Mac OS X mit Rechtsklick auf Flickr laden (Python und Automator)

Rückblickend — wie so vieles — eine ganz simple Aufgabe.

WICHTIG: Das neueste, überarbeitete Script findet sich auf Github unter emeidi/flickrUpload

flickrUploaderLean.py

#!/usr/bin/env python

import os
import sys
import re
import flickrapi

api_key = ''
api_secret = ''

flickr = flickrapi.FlickrAPI(api_key, api_secret)

(token, frob) = flickr.get_token_part_one(perms='write')
if not token:
    raw_input("Press ENTER after you authorized this program")
flickr.get_token_part_two((token, frob))

numArgs = len(sys.argv)
if(numArgs < 1):
	sys.exit("Usage:" + sys.argv[0] + " ")

photo_path = sys.argv[1]

if(os.path.isfile(photo_path) == False):
	sys.exit("File not found: " + photo_path)

res = flickr.upload(filename=photo_path, is_public=u'1')

t = res[0]
if t.tag == 'photoid':
	print 'http://www.flickr.com/photos/upload/edit/?ids=' + t.text
else:
	print 'http://www.flickr.com/upload+failed'

sys.exit(0)

Anschliessend erstellt man mittels Apple Automator einen Service, welcher nach dem Abspeichern mittels eines Rechtsklick auf eine Datei im Untermenu „Services“ aufgeführt wird:

Konkret:

  • Service receives selected files or folders in Finder.app
  • Run Shell Script
    • Shell: /bin/bash
    • Pass Input: as arguments
    • (Textfeld): /Users/mario/Scripts/flickrUploadLean.py „$@“
  • Display Webpages

Tags: , , , , , ,
Labels: IT

Keine Kommentare | neuen Kommentar verfassen