Archive for the 'Joomla!' Category
New job!
Hello!
This week I started in a new company as a web developer (still working with PHP and mainly with Joomla!, which is not bad but not that challenging…). Christian has also switched jobs and now he is a Java developer (at least he has left Delphi behind, which is good news). I would like to tell you that our distributed hash cracking system (aka Bifröst) is in “sleep” mode until we find some time to re-activate it.
I’ve presented a technical session at the Joomla!Day Brazil which occurred in São Paulo on the 11th. My plane got a 22 hours delay which were not funny at all. The event was great but unfortunately I had missed half of it :/ It is always nice to speak about new geeky features to an excited audience…
My new job is allowing me to create some really cool stuff with JQuery, Ajax and Flash. And I have plenty of time to keep this blog up to date.
I don’t remember if i’ve mentioned this before, but I’m also trying to add Bluetooth capability to the great JGroups. DIdn’t have much success so far. As many of you are new visitors, I was wondering if anyone knows how to do multicast with Bluetooth
(someone told me I’ll need a PAN Profile enabled device, but for now I just would like to test it on simulators). I’ve been trying to find answers and help in the Java community but didn’t get many insights. I don’t care to implement it on my on I just would like to know if it hasn’t been implement by someone before.
anyway.. if you have any suggestion/sample/idea to share, please get in touch.
-bigo
1 commentFlash and Joomla! integration (part II )
Hello,
due to popular demand :D, I'm posting a different example to ilustrate how easy is to export Joomla! content to a XML format and then use it inside your flash movies (as you learned in the first part of this "article"). Today I'm gonna show a quick-and-dirty way to export your frontpage items.
Before we start:
- Make sure you've read the first part (link is above) of the article otherwise you won't understand nothing that is posted here.
- You don't need to change anything in the XmlGenerator class. This script will just USE it.
- I'm sorry I'm not posting the .fla, I've gotta write my final project for college and didn't have enough time to code the actionscripts (any volunteer?)
Ok, here's a small script I've wrote to export frontpage items and then generate the xml.
-
<?php
-
/**
-
* Joomla! FrontPage - XML-Generator
-
* @author Matheus Mendes aka bigodines - http://www.joomla.com.br
-
* @date May, 2007
-
* @license GNU GPL v2.0
-
*
-
*/
-
-
// joomla stuff
-
include_once("../configuration.php");
-
include_once("../includes/database.php");
-
// XmlGenerator
-
include_once("clsXmlGen.php");
-
-
/* database object */
-
$database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
-
-
$database->setQuery("SELECT content_id id FROM #__content_frontpage");
-
$front_items = $database->loadObjectList();
-
-
foreach($front_items as $item) {
-
$database->setQuery("SELECT id, title, introtext, created FROM #__content WHERE id = {$item->id}");
-
$content = null;
-
$database->loadObject($content);
-
// filling the array
-
$source[$content->id]['title'] = $content->title;
-
$source[$content->id]['introtext'] = $content->introtext;
-
$source[$content->id]['link'] = $mosConfig_live_site . 'index.php?option=com_content&task=view&id='.$content->id.'&Itemid=2';
-
}
-
// array is ready. Next step: call the XmlGenerator to do its thing
-
$xml = new XmlGenerator("latestNews", $source );
-
-
?>
I hope it works
cheers,
bigo
Flash and Joomla integration
One of the most requested things in the content management world is to make dynamic content to be displayed inside a flash movie. Flash has a feature that allows it to display content from a xml file, in this article I'm gonna explain how to display Joomla! content in your flash pages. With a little imagination you can change this "how-to" and make it work with other CMSes like Drupal, Xoops, or even your own CMS
You can check a integration example accessing: http://www.mmoraes.com
Before we start:
- This is a script I wrote a while ago, it is probably not the best (or even the right) way to do this integration, but it works.
- You can use, change, set fire... do whatever you want with these classes but please keep my name and URL in the credits.
- Suggestions are always welcome
ok, let's roll
Read more
distributed rainbow tables project
Hello! It has been a long time without blogging anything new here so this is a quick update on what's going on.
- We are planning a revolutionary distributed rainbow table generator. I know there are a few projects regarding this but none will be like ours (I still cannot provide much more info about how we are going to do this but it's gonna rock. Trust me hehe). It's going to be coded in Java because I plan to use it at college.... sorry python fans. BTW: We are still looking for a nice name for this project so if you have any suggestions, feel free to submit
- My analytics account has been upgraded to the new beta. It became pretty cool to watch the statistics now and it looks much nicer (although it has small css errors in firefox2 and linux).
- Please guys, don't change Joomla's license! What happened to the "because open source matters"? It looks like it doesn't matter that much anymore
Cheers for all Gremio supporters!
3 commentsParty time!
Joomla! 1.5 beta 2 is out!! after almost 6 months of waiting we can finally test the new litle baby!
Don't forget to report bugs and learn the new stuff. I'll see you in RC1 my friend.
BTW: I got owned in my test
simply forgot to answer two questions. o_O DAMN!
dear diary (1)
This is a quick update. I just would like to make sure everyone is fallowing the discussions over the Joomla! Forums, especially this one regarding non-GPL extensions and Joomla!. There are some interesting points of view and most of the posts are very polite, so it tends to be a really good thread to fallow.
Another thing: Me and Christian were chatting earlier and we decided to create some funny things using DistrIT. I cannot provide much information about it right now but stay tunned and you'll see.
Ok. that's all folks. Gotta study for my test later today.
bye
-bigo
