As the title says, Brazil made the biggest linux implementation worldwide at one time. All the election electronic voting boxes are with Linux installed.
Even before, Brazillian election system is the most advanced in the world. Now it beaten the record again: the most technologicaly advanced.
Following article explains more about voting boxes:
Linux voting boxes – Brazillian elections
- Por Emil Beli em 14/October/2008
- Nenhum Comentário »
Other Languages:
Newest revolutionary Google’s browser Chrome is finally ported to Linux and Mac.
Company, CodeWeavers, that is known by porting various applications and games from one platform to another, has ported Chrome to Linux and Mac, naming it Chromium.
For Linux: DEB, RPM or Other distros
For Mac: Chromium Mac OSX
- Por Emil Beli em 17/September/2008
- Nenhum Comentário »
Other Languages:
To who is web developer, no matter is it Flex, Flash, Java, HTML, and use Firefox as browser, there is an extension which is a MUST-HAVE.
Plugin enables you to control all aspects of broswser and page contents details, like enabling/disabling cache, forms, styles and much more.
Web developer extension
When installed, it will be placed in TOOLS menu.
- Por Emil Beli em 26/August/2008
- Nenhum Comentário »
Other Languages:
Seems that FF3 has a slight problem with cache handling due to anti-phishing algorythms. I found this somewhere on the net, and it really works.
Go to FF preferences -> Security and un-check 2nd and 3rd checkbox,
“Tell me if …”
Close preferences and close Firefox.
Go to your users settings where firefox keeps it’s files for the account. I Windows should be somewhere in “Application Data”, I am not sure, but for Linux, open terminal and write
#> cd .mozilla/firefox
and enter in tou your account directory (should be something like “of6wel65.default”) , name is pretty random.
- Delete files urlclassif*.sqlite
- Start firefox.
that is it.
- Por Emil Beli em 22/August/2008
- Nenhum Comentário »
Other Languages:
Mozilla labs addressed a call to all people to participate in ideas and collaboration for the next generation web browser. Call can be viewed here:
http://labs.mozilla.com/2008/08/introducing-the-concept-series-call-for-participation/
Some video presentation reveals really futuristic design. It is worth to see it.
http://adaptivepath.com/aurora/themes.php
- Por Emil Beli em 11/August/2008
- Nenhum Comentário »
Other Languages:
There is a case when one needs to make a structural representation of data which resides in a single table, with records referenced to one another. This is not difficult to make, but sometimes people just doesn't have time.
I had small table with linked records, that I had to represent structurally. Table was something like:
CODE:
-
1, "Father node", 0
-
2, "Child node", 1
where record Id 2, links to record Id 1, by third field.
I have found a component on the internet from Singapore Flex Usergroup, but it didn't worked for my case as I needed to.
So I took the liberty to alter the component and share it.
D-Click developers already have this component set in flex_library.
You may download small Flex3 demo application along with the component from following link:
TreeCollection demo
- Por Emil Beli em 6/August/2008
- Nenhum Comentário »
Other Languages:
Last night, I lost a few hours and two kilogramms of nerves to solve the problems I didn't even supposed to have. Something was wrong with the debugger and I couldn't get the job done as debugger was highly uncooperative. Some of the issues were:
- Clicking on one line to toggle breakpoint, it appears in another
- Debugger skips the lines
- Changes in code sometimes doesnt't effect the results in the firefox
- Feeling of a Gremlim infestation of your putter.
Some of you may laugh, but for the certain things, I didn't have any knowledge of, and I didn't find it anywhere, until my collegue Henrique Marino came to explain me how to end the suffering.
So, hereby I share it with you.
- If you have a CVS controlled code, with a branches, be sure that compiler is set to the particular branch that you work on at the moment. Go to (eclipse) Project -> Properties, select Flex Compiler and see what is written in "Additional compiler arguments". Problem is probably there. This is the reason of debugger skipping the lines, if it is set wrongly.
- Close all projects except the one you use at the moment. Right click on a project and select "Close unrelated projects"
- If you use Jetty, since it's not doing boring and time consuming deployment as JBoss, it creates another flaw: cache might not be cleaned. Go to Firefox, Tools -> Web developer -> Disable -> Disable cache.
This will kill the Gremlin(s).
I hope this post will shorten one's suffering.
- Por Emil Beli em 5/August/2008
- Nenhum Comentário »
Other Languages: