This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "searchCriteria":"VIN:1N4AA5AP6DC820278", | |
| "count":116, | |
| "message":"Results returned successfully", | |
| "results":[ | |
| { | |
| "valueId":"", | |
| "variable":"Suggested VIN", | |
| "value":"", | |
| "variableId":142 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Los imports, que son un buen*/ | |
| @Named | |
| public class MyStored extends StoredProcedure{ | |
| private JdbcTemplate firstTemplate; | |
| private JdbcTemplate secondTemplate; | |
| @Inject | |
| public MyStored(DataSource firstDataSource, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # For mac it's better to use gsed | |
| # install it from Hombebrew (brew install gnu-sed). | |
| # In case you're using GNU/Linux you can simply use sed. | |
| cat my.xml.file | grep -i markup-tag-to-find | gsed -r 's/<\/?markup-tag-to-find>//g' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| function saveFileLocation(){ | |
| echo $(pwd)/$@; | |
| } | |
| #usage: | |
| #> x=`saveFileLocation file.name.extension` | |
| #> cd /another/folder/away/from/folder | |
| # several operations right after that |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #usage: | |
| # -> openapp Safari | |
| function openapp(){ | |
| open "/Applications/$@.app" | |
| } |