Samstag, 28. September 2013

Userscripts for OTR @ Fernsehserien.de

These userscripts will add search links for OnlineTVRecorder files to the air dates list of all series and episodes on Fernsehserien.de. No need to search seperate for an episode anymore.

OtrKeyFinder @ Fernsehserien: userscripts.org, greasyfork.org

OtrDatenkeller @ Fernsehserien: userscripts.orggreasyfork.org


To use these userscripts You need:
Chrome and Tampermonkey or Firefox and Greasemonkey

Both scripts can be installed at the same time without interferences.

Update 2014.07.17:
Userscripts seems to be down. Now the scripts are additionally hosted at https://greasyfork.org/
https://greasyfork.org/de/scripts/3369-otrkeyfinder-fernsehserien-de

Mittwoch, 3. Juli 2013

Vodster.de: Compare prices of german video on demand movies

I'm proud to present my latest project: Vodster.de

At Vodster.de You can instantly find and compare thousands of movies, which come from 17 video on demand provider.


Actually Vodster is just for the german market.

Samstag, 30. März 2013

FNET - Embedded TCP/IP Stack

The FNET TCP/IP stack is a free, open source, dual TCP/IPv4 and IPv6 Stack for building an embedded communication software on 32bit MCUs.

Bug Reports:
#12 ISR Unlock w'ont execute pending interrupt handlers
http://sourceforge.net/p/fnet/bug-reports/12/

#13 ARP responses are too long
http://sourceforge.net/p/fnet/bug-reports/13/
During testing I noticed that Wireshark marks the length of the ARP responses as invalid (too long).
The investigation shows that the FCS of the request is copied to the response.

#14 fnet_fec_rx_buf_next
http://sourceforge.net/p/fnet/bug-reports/14/
Compiler error:
../../Ethernet/fnet_stack/cpu/common/fnet_fec.c:524:
error: static declaration of 'fnet_fec_rx_buf_next' follows non-static

Feature Requests:
#15 Support for GCC
http://sourceforge.net/p/fnet/feature-requests/15/

#16 Support for MCF5372

Sonntag, 20. Januar 2013

Shell: Delicious bookmark export with Curl

There are a lot of solution, how we can automate the export of the delicious bookmarks via the API into an XML file, but nothing for exporting the HTML backup file. The advantaqge of the HTML file, it can be imported into Firefox, Chrome ... Here is my solution, which runs fine on my Synology NAS:
       
#!/bin/ash

# By http://tecjunkie.blogspot.com/
# 2013 

CookieFileName=cookies.txt
username=user
password=password

curl --cookie $CookieFileName --cookie-jar $CookieFileName \
  --data "username=$username&password=$password" \
  https://previous.delicious.com/login --silent --insecure --location

curl --cookie $CookieFileName \
  --form "include_notes=yes&include_tags=yes" \
  http://export.delicious.com/settings/bookmarks/export --silent --insecure --location \
  --output "delicious.html"