29
Oct
by admin
When you spent half of your day integrating with external systems, you’ll get into a point where reading a xml message is an extremely tiring event.
By making the xml message with the right indentation your life will become 100x easy.
Just copy the xml message into your computer memory, and then run this command.
pbpaste | xmllint --format - > pretty-xml.xml
You’ll get a pretty and nice readable xml file on your destination file “pretty-xml.xml”.
25
Jul
by josedasilva
Often i step into discussions why isn’t a team doing WOW or creating amazing features on most of projects teams work.
I found 3 main reasons that will lead into that scenario.
- Persons are overloaded with development work, therefore they don’t get out of the forest to see the big picture, and that means that long term goals or wow features will never occur. Give it a rest, and people will start to became more pro-efficient.
- You hired the wrong persons for the job, and you have no visionaries or creative minds on your teams, you should start thinking on joining one thinker to the team.
- You micro manage your teams, and they don’t have space to take their own decisions, so you should not complain that they are not doing it. If you give them some space, most probably you’ll get surprised.
If you can’t change the way you are doing things, at least you should stop complaining about not having great things.
28
Apr
by josedasilva
Over the past few week, the company were i currently work, just opened an additional PHP developer position, the required skills are:
- Professional experience with :
- University degree, preferable in Computers, Math or Physics
- Bonus points: Zend Certified Engineer (PHP 5.3)
Looking for candidates from all over the world.
Full time remote job position for the right candidate.
Just contact me, jose (at) josedasilva (dot) net for more details.
04
Mar
by admin
On this quick post i will try to explain the basics of understanding a .xsd file.
What is a XSD file ?
XSD stands for Xml Schema Definition, and has the name indicates defines every element on your XML file.
Simple Element
A simple element is one element that contains only text, can’t contain any other element.
Example of a simple element:
<xs:element name=”age” type=”xs:integer”/>
This will result on the following XML data:
<age>12</age>
01
Mar
by admin
PHP 5.4 was officially released as a stable version. There are some new features on this PHP version, but maybe the surprisingly one is: it comes with a built-in web server for development purposes.
What’s new on PHP 5.4 (Key Features) :
- Traits
- Shortened Array Syntax
- Built-in web server for development purposes