Μάρτιος 2010 - Δημοσιεύσεις

Workaround: iTunes+QuickTime installer failing to abort if not enough space for recovery info
31 Μαρτίου 10 06:34 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
.png" width="538" height="231" /> Interesting dialog showing when there's not enough space for iTunes+QuickTime installer to save recovery info. It says you can press Cancel button, but there's only an Abort one there. Maybe that's the reason [:-p] it does nothing (this message just keeps reappearing when you press Abort)? Apart from the joke, there's a possibility the reason for the

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Visual Studio 2010 launches in 2 weeks
30 Μαρτίου 10 11:38 πμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Visual Studio 2010 launches in two weeks, and you can either join the global launch live in Las Vegas or join at the virtual launch event . And if you still haven't tried Visual Studio 2010, go download the release candidate today .

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Fix: Blogger stopped showing your Gravatar image?
29 Μαρτίου 10 07:22 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Automattic (makers of WordPress ) recently upgraded the Gravatar service into a home-page to a user's profile and social networks, as pictured at the following article: http://thenextweb.com/apps/2010/03/26/wordpress-turns-gravatar-social-network/ However you may find that Google's Blogger service is now showing a broken image link instead of your Gravatar image at your blog on blogspot.com.

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Specifying .JAR file dependencies (at APPLET tag's ARCHIVE parameter or at JAR's manifest file)
29 Μαρτίου 10 06:39 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
To specify multiple .JAR files at HTML APPLET's tag ARCHIVE parameter, edit the applet tag in the HTML page and change the following parameter: ARCHIVE = "myapplet.jar" to say ARCHIVE = "myapplet.jar,lib/jbcl-rt.jar,lib/jgl.zip" assuming you place all those JAR files together on the server (the "lib/..." ones in a subfolder called "lib") with

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
On Run-Length-Encoding (RLE) compression
29 Μαρτίου 10 06:16 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
If you ever have to work with legacy code directly manipulating BMP image files, this Wikipedia article on RLE is a useful reading, since RLE (Run-Length-Encoding) is one of the popular compression schemes used in the BMP image container format. Although simple, RLE when used on palletized images (especially drawings on simple Paint-like programs) can do a decent compression. Can even

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Τηλεφωνικοί αριθμοί άμεσης επικοινωνίας με την Ελληνική Αστυνομία
29 Μαρτίου 10 02:33 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Από σχετική ιστοσελίδα της Ελληνικής Αστυνομίας: Οι παρακάτω τριψήφιοι και τετραψήφιοι αριθμοί αντιστοιχούν σε τηλεφωνικές γραμμές που λειτουργούν σε 24ωρη βάση και στις οποίες οι πολίτες μπορούν να απευθύνονται για πληροφορίες, παράπονα και καταγγελίες: 100: Τηλεφωνική επικοινωνία για άμεση αστυνομική επέμβαση σε κάθε νομό της χώρας. 109: Τηλεφωνική επικοινωνία με τις Υπηρεσίες Δίωξης

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Links on Visualization
27 Μαρτίου 10 09:38 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Edward Tufte: http://www.edwardtufte.com/tufte/ Julie Steele, Noah Iliinsky / Beautiful Visualization - O'Reilly Media: http://oreilly.com/catalog/0636920000617 Ben Fry: http://benfry.com/ Rick Barraza: http://www.cynergysystems.com/blogs/page/rickbarraza Descry - Lab - MIX Online: http://www.visitmix.com/labs/descry/ FlowingData - Data Visualization and Statistics: http://flowingdata.com

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Converting C structs and unions to Pascal (or Object Pascal / Delphi) records
27 Μαρτίου 10 02:54 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
I've been recently adding support for QuickTime TimeCode tracks to the JEDI QuickTime library's "qt_QuickTimeComponents.pas" file and I thought I should share a quick reminder on how we convert C structs (records) and unions (sets) into Pascal (Delphi / Object Pascal in this case) records: Structs: struct TimeCodeCounter { long counter; }; typedef struct TimeCodeCounter TimeCodeCounter;

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Windows 2000, XP SP2 and Vista End of Life Support
18 Μαρτίου 10 10:53 πμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Just yesterday got this announcement from Microsoft: Windows 2000 Professional and Windows 2000 Server are approaching 10 years since their launch and both products will go out of support on July 13, 2010 . Windows XP was launched back in 2001. While support for the product will continue, Service Pack 2 will go out of support on July 13, 2010 . From that date onwards, Microsoft will

Διαβάστε περισσότερα »

MySQL command for manual backup (as used by OSCommerce)
15 Μαρτίου 10 05:23 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Here's the command OSCommerce 's administration panel launches in order to backup the e-shop's MySQL database: mysql -h DOMAIN -u USER -p DATABASE < /var/www/vhosts/ MYDOMAIN.COM /subdomains/ SUBDOMAIN /httpdocs/admin/backups/db_ DATABASE -DATETIME.sql

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Classifieds@Greece / Μικρές αγγελίες
13 Μαρτίου 10 07:10 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
http://www.xe.gr http://www.aggeliopolis.gr http://www.rento.gr http://www.mikresaggelies.com.gr http://www.mikri-aggelia.gr http://www.yper-aggelies.gr http://www.aggeliestanea.gr http://www.aggelioxoros.gr http://www.24net.gr http://www.agelia.gr http://www.aggelia.gr http://www.neo.gr/modules.php?name=NukeC http://www.kathimerini.gr/aggelies http://www.adfinder.gr http://www.mikres-agelies.gr

Διαβάστε περισσότερα »

Δημοσίευση στην κατηγορία:
Ημερίδα “Το επόμενο βήμα στο επιχειρηματικό λογισμικό – 100% on the Cloud” (Microsoft & Interworks)
13 Μαρτίου 10 12:46 μμ | Μπιρμπίλης Γεώργιος | 0 σχόλια   
Η Interworks σε συνεργασία με τη Microsoft και τις εταιρίες λογισμικού, εφαρμογών και υπηρεσιών του κλάδου πληροφορικής SoftOne, Regate, Syscom και Algosystems σας προσκαλούν στην εκδήλωση με τίτλο “Το επόμενο βήμα στο επιχειρηματικό λογισμικό – 100% on the Cloud” που θα πραγματοποιηθεί την Πέμπτη, 18 Μαρτίου 2010 στο ξενοδοχείο Athenaeum Intercontinental (Λεωφ. Συγγρού 83-93, 117 45,

Διαβάστε περισσότερα »

Aποκατάσταση της πρόσβασης για φοιτητές, διδάσκοντες και ερευνητές στα ηλεκτρονικά περιοδικά
02 Μαρτίου 10 06:28 μμ | Μπιρμπίλης Γεώργιος | 2 σχόλια   
ΥΠΕΠΘ - Δελτίο Τύπου 02/03/2010 Η πολιτική ηγεσία του Υπουργείου Παιδείας, αντιλαμβανόμενη τον ζωτικό ρόλο που διαδραματίζει η πρόσβαση σε Επιστημονικές Ηλεκτρονικές Πηγές, για την ακαδημαϊκή και την ερευνητική κοινότητα, αντιμετώπισε το πρόβλημα της πρόσβασης που οφειλόταν σε σειρά από άστοχες ενέργειες του παρελθόντος. Το κόστος χρηματοδότησης της πρόσβασης στις Ηλεκτρονικές Πηγές

Διαβάστε περισσότερα »

Search

Go

Ιστορικό Δημοσιεύσεων

Συνδρομές