|
Mirrored Weblogs
-
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. Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
Από σχετική ιστοσελίδα της Ελληνικής Αστυνομίας: Οι παρακάτω τριψήφιοι και τετραψήφιοι αριθμοί αντιστοιχούν σε τηλεφωνικές γραμμές που λειτουργούν σε 24ωρη βάση και στις οποίες οι πολίτες μπορούν να απευθύνονται για πληροφορίες, παράπονα και καταγγελίες: 100: Τηλεφωνική επικοινωνία για άμεση αστυνομική επέμβαση σε κάθε νομό της χώρας. 109: Τηλεφωνική επικοινωνία με τις Υπηρεσίες Δίωξης Διαβάστε περισσότερα »...
|
-
When working with Xaf and MVC pattern in order to create actions we are using controllers and initialize them upon them. The default behavior of Xaf is to place our actions in the default toolbar of our view. What if we want to position our actions somewhere else in the view? Then we need to create a custom detailviewItem and write our code against the interface exposed by the detailviewitem. I really did not like the idea , I really wanted to continue to design my actions behavior against the controller interface so i have added an ActionButtonDetailItem for both win and web platforms that can be installed declaratively using the model like bind it to the action we want like and position it anywhere we want using Dx layout component to create our views like Διαβάστε περισσότερα »...
|
-
Ένα μικρό tip που μπορεί να σας σώσει από εκνευρισμό ειδικά αν είστε αρχάριος με τον SQL 2008, είναι όταν πάτε να κάνετε μια αλλαγή σε ένα πίνακα που έχετε ήδη δημιουργήσει, πχ. να αλλάξετε τον τύπο (datatype) μιας στήλης (field). Ξαφνικά παίρνετε αυτό το ωραίο warning pop-up window Για να το ξεπεράσετε και να μπορέσετε να κάνετε τις αλλαγές μέσα από τον SSMS , πρέπει να πάτε Tools --> Options να βρείτε το Designers section και να απενεργοποιήσετε την επιλογή "Prevent saving changes that require table recreation" , όπως φαίνεται παρακάτω: Ελπίζω να σας φανεί χρήσιμο. Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
Well I stumbled upon a webcast that introduced to me this feature of Word and this is me testing it! Let's see… V. P.S.: This may seem useless but I think not! J Διαβάστε περισσότερα »...
|
-
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; Διαβάστε περισσότερα »...
|
-
After working with MVC pattern exposed by Xaf I have realized that the best way to to pass parameters between controllers is by using events like public class PricePricetypeController : ViewController { public event EventHandler < AdjustingPriceTypeEventArgs > AdjustingPriceType; public void OnAdjustingPriceType( AdjustingPriceTypeEventArgs e) { EventHandler < AdjustingPriceTypeEventArgs > handler = AdjustingPriceType; if (handler != null ) handler( this , e); } protected override void OnFrameAssigned() { Διαβάστε περισσότερα »...
|
-
When I first met DevExpress I was amazed by their XtraGrid control. What a configuration monster!. Xaf exposes some of the configuration but not all. eXpand allows you to control all configurations of XtraGridControl per view as shown bellow Διαβάστε περισσότερα »...
|
-
I created a small screen cast that shows how to enable SSL on IIS for testing or development purposes. Procedure involves creating a self-signed SSL certificate and then enabling SSL (https binding) on IIS using that certificate. Permalink | Leave a comment »...
|
-
We can permanently redirect traffic to the new pages without losing page rankings by using the 301 permanent redirect. RedirectPermanent help us to achieve that. Διαβάστε περισσότερα »...
|
-
The important setting that was added in ASP.Net 4.0 is the last setting, compressionEnabled="true". Διαβάστε περισσότερα »...
|
-
This one is the most complex implementation of the logic architecture cause this module is really a facade module. ActionState and ControllerState modules are hosted within it. But the implementation for each one of them as you see in the image bellow really looks alike In order to control the different in model schema than the one that is provided bu defaul I have override the require methods of ControllerStateModule public class ControllerStateModule : ConditionalLogicRuleProviderModuleBase <TArtifactStateRule> where TArtifactStateRule : IConditionalLogicRule { public override string LogicRulesNodeAttributeName { get { return ControllerStateRulesNodeWrapper Διαβάστε περισσότερα »...
|
-
The FireWire Reference Tutorial was officially announced a few days ago by the 1394 Trade Association. This is a free guide to help engineers understand FireWire and it teaches FireWire starting from scratch. It assumes no prior knowledge. The tutorial... Διαβάστε περισσότερα »...
|
-
AdditionalViewControlsProvider is a module that it only knows how to display a given control in a given position . So one could easily define an interface for the parameters needed when this behavior is implemented as public interface IAdditionalViewControlsRule : IConditionalLogicRule { string Message { get ; set ; } string MessagePropertyName { get ; set ; } Type DecoratorType { get ; set ; } Type ControlType { get ; set ; } AdditionalViewControlsProviderPosition AdditionalViewControlsProviderPosition { get ; set ; } bool UseSameIfFound { get ; set ; } } take a note that I inherit IConditionalLogicRule thus logic engine can evaluate Διαβάστε περισσότερα »...
|
-
Say you want to make your rules conditional , meaning that you want your rules to be executed when certain criteria are valid for a given object. That is implemented at eXpand .ExpressApp.ConditionalLogic.dll assembly. I have extend ILogicRule interface like public interface IConditionalLogicRule : ILogicRule { /// <summary> /// Criteria to apply when show DetailView or filled ListView /// </summary> string NormalCriteria { get ; set ; } /// <summary> /// Criteria to apply when show ListView empty /// </summary> string EmptyCriteria { get ; set ; } } and create derived classes 1.from Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
Πριν από μερικές μέρες (στις 4 Μαρτίου για την ακρίβεια) έγινε στο Microsoft Innovation Center μία πρωτότυπη μονοήμερη δωρεάν εκπαίδευση με τίτλο “.Net Training μέρα - όλη μέρα!”, που είχε ως θέμα μια εισαγωγή στο Microsoft .NET Framework. Τι το ιδιαίτερο είχε; το εξής: οι συμμετέχοντες (περίπου 90 άτομα) χωρίστηκαν σε 3 ομάδες των 30 και κάθε μία ομάδα πήρε από έναν εκπαιδευτή που Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
Xaf architecture and especially the model part is great. What it really teach us is how to parameterized our logic/behavior/code and store that parameter in the model in the form of attributes on already existing nodes or on rule nodes see Xaf Validation system or ConditionalEditorState system. eXpand has provided a similar architecture through its ModelArtifactState module. But after you start using such “ruling” modules for some times the most “logical” question will come into your mind. How I could define a uniform way of describing a behavior in terms of an interface and apply a ruling system upon it. The above problem exactly is address by logic module. What it does ? First look at ILogicRule interface public interface ILogicRule { string Διαβάστε περισσότερα »...
|
-
I have been pretty silent the last few weeks , but I have not been lazy so eXpand has now many more modules and features that I am going to speak about in my next posts. A Logic Module has been implemented and that lead to some breaking changes to ModelArtifactState / AdditionalViewControlsProvider modules ModelArtifactState The previous schema of ModelArtifactState rules was like < ModelArtifact > < ConditionalControllerState IsNewNode = " True " > < ControllerStateRule ID = " tests " TypeInfo = " DevExpress.ExpressApp.SystemModule.AboutInfo " IsNewNode = " True " /> </ ConditionalControllerState > </ ModelArtifact > Διαβάστε περισσότερα »...
|
-
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 Διαβάστε περισσότερα »...
|
-
A few months back I’ve started working with Giorgio Sardo on a Facebook IE8 Web Slice. In fact there were a few people that already were aware of that and have been bugging me for the download link ;-) since my TechEd 2009 interview and my IE8 talk at Microsoft Dev Days where I’ve shown just a glimpse of it. Well your wait is over, yesterday Microsoft officially released a set of very Διαβάστε περισσότερα »...
|
|
|
|