Suchergebnisse für „Perl“

TOP

YAPC::EU 2012 day 3 notes

Last day of YAPC::EU 2012 (for Max, it's Friday today) and time for the last YAPC day report.

Weiterlesen
TOP

YAPC::EU 2012 heat wave two

I wrote about the first day of YAPC::EU 2012 yesterday and told you that the weather was really hot. Today is much cooler, only slightly above 30°C outside but in a building... without air conditioning... but with >400 people... you don't wanna know now.

Weiterlesen
TOP

YAPC::EU 2012 - hot like hell

There has been no summer in Germany. Few warm days, but not real hot - until last weekend. Today is very, very hot in Frankfurt, over 35°C and only one YAPC room has a slight touch of air conditioning and everybody is melting.

Weiterlesen
TOP

Upcoming: YAPC::EU

How to get 400 Perl-geeks in one building? It's easy: Run the next YAPC::EU! Frankfurt.pm did that and will start suffering tomorrow: Participants from all over the work will come to the German capital of the Internet and money to talk about Perl and meet other Perl guys.

Weiterlesen
TOP

Hash to string race

How to convert a hash to a string? Perl is TIMTOWTDY but which way is the fastest? I need a checksum (hash, digest) for the hash, so the string must be the same for the same hash every time. Hash keys are not sorted, even a simple join('', keys(%hash)) may be different for each call (if the hash has at least two keys).
Weiterlesen
TOP

git und github für SVN-Umsteiger

Ich bin svn-User und alle meine Begegnungen mit github endeten in Frust, denn die Useability ist mies, auch wenn sich in den letzten Jahren einiges getan hat. Git ist das gleiche wie github, oder? Dennoch, ich möchte ein OpenSource-Projekt unterstützen und dieses nutzt nunmal github, also bleibt mir keine andere Wahl.
Weiterlesen
TOP

Wetter, Luft und Mittagessen

Eigentlich wollten wir heute einen kleinen Rundflug machen und heute früh sah es auch noch vielversprechend aus - und dann kam das Wetter.
Weiterlesen
TOP

Perl bits: Passing @_ to a subroutine

Perl subroutines may be called with or without leading & and with or without () at the end. Either one is strongly recommended - the command might end up as something else than a function call if both are missing.
Weiterlesen
TOP

Die mySQL NULL Falle

SELECT-INSERT-UPDATE - Kombinationen sind unzuverlässig, die Gefahr eines doppelten Datensatzes der eigentlich einmalig sein sollte, ist zu groß. Die Alternativen funktionieren aber auch nicht immer, denn mySQL verhält sich inkonsistent.
Weiterlesen
TOP

DESTROY or __DIE__ - choose one

Some people always complain, even about the language they've been working with for years while they has other options. One of them recently complained that Perl cleans up objects in unpredictable order during global destruction (after exit; and all END blocks). Here is what happend, how we tracked it down and solved it.
Weiterlesen