Developers & Links
This is a blog, for developers of software... here i will publish some interesting links with resources for developers of the different technologies and languages...
domingo, 30 de octubre de 2016
martes, 9 de febrero de 2010
Recursos Gratuitos para IGU - Free resources for design GUI - Freie Ressourcen für die GUI
enlaces a recursos gratuitos para los desarrolladores web, en esta
entra les paso una lista buenos sitios a continuación:
* http://www.cssblog.es/recursos-gratuitos-para-el-diseno-de-la-interfaz-de-usuario/
* http://www.smashingmagazine.com/2009/12/14/50-beautiful-free-icon-sets-for-your-next-design/
* http://www.smashingmagazine.com/2009/01/19/12-useful-techniques-for-good-user-interface-design-in-web-applications/
Now the internet has a lot of resources for designing good graphic
user interfaces check the following links:
* http://www.cssblog.es/recursos-gratuitos-para-el-diseno-de-la-interfaz-de-usuario/
* http://www.smashingmagazine.com/2009/12/14/50-beautiful-free-icon-sets-for-your-next-design/
* http://www.smashingmagazine.com/2009/01/19/12-useful-techniques-for-good-user-interface-design-in-web-applications/
Jetzt ist das Internet eine Menge an Ressourcen für die Gestaltung
gute grafische Benutzer-Schnittstellen überprüfen Sie die folgenden
Websites:
* http://www.cssblog.es/recursos-gratuitos-para-el-diseno-de-la-interfaz-de-usuario/
* http://www.smashingmagazine.com/2009/12/14/50-beautiful-free-icon-sets-for-your-next-design/
* http://www.smashingmagazine.com/2009/01/19/12-useful-techniques-for-good-user-interface-design-in-web-applications/
jueves, 8 de octubre de 2009
How To Remove Foreign Keys In MySQL
ALTER TABLE myTable DROP FOREIGN KEY FK_nameDefinition;
You can check for more information with the ALTER TABLE instrucction on:
http://dev.mysql.com/doc/refman/5.1/en/alter-table.html
But browsing i have find a really cool solution to drop all foreign Keys or just get the names of this
foreign keys in the following blog:
http://www.justin-cook.com/wp/2006/05/09/how-to-remove-foreign-keys-in-mysql/
I have found it in a commet by "Jason" he recommends this cool query:
select concat('alter table ',table_schema,'.',table_name,' DROP FOREIGN KEY ',constraint_name,';') from information_schema.table_constraints;
Try out... see you... MySQL still Rules !!!
viernes, 2 de octubre de 2009
NetBeans IDE 6.7.1
viernes, 25 de septiembre de 2009
ALTER TABLE ON MYSQL
developers, on MYSQL, you should try using the ALTER TABLE.
Check the documentation on: http://dev.mysql.com/doc/refman/5.1/en/alter-table.html
miércoles, 23 de septiembre de 2009
Making an NO AJAX H:INPUT AN AJAX COMPONENT !
<h:inputText id="lastNameFilter"
value="#{batchOrderItemListView.batchOrderItemFilter.lastName}">
<a4j:support event="onchange" reRender="lastNameFilter" ajaxSingle="true" limitToList="true" />
</h:inputText>
Hora / Bolivia
Tags
- A4J (1)
- AJAX (1)
- CHEAT SHEETS (1)
- Facelets (1)
- HIBERNATE (2)
- ICEFaces (1)
- JAVA (5)
- JSF (1)
- ORACLE (1)
- Seam (1)
- SVN Tools (1)
- Tag References (1)
- Tortoise SVN (1)