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
| SELECT subgroupid, item_order, id, code, eduname, stdate, enddate, edudate, eduprice, edudiscount, completeness, shown, no_reg | |
| FROM `tbleducation` | |
| WHERE groupid =26 AND shown = 1 | |
| ORDER BY subgroupid, item_order | |
| LIMIT 0 , 1000 | |
| ------------------------- | |
| SELECT id, eduname, description | |
| FROM `tbleducation` |
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
| Sorted list of directories consuming gigabytes of hard disk in [dir]: | |
| du -h [dir] | grep '^[0-9,]\+G' | sort -nr | |
| --------------------------------------------------------------------- |
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
| <persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" | |
| version="2.0"> | |
| <persistence-unit name="xyz"> | |
| <provider>org.hibernate.ejb.HibernatePersistence</provider> | |
| <class>domain.Person</class> | |
| <properties> | |
| <property name="javax.persistence.jdbc.driver" value="org.postgresql.Driver"/> |
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
| <?xml version="1.0" encoding="ISO-8859-1" ?> | |
| <web-app xmlns="http://java.sun.com/xml/ns/j2ee" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" | |
| version="2.4"> | |
| <servlet> | |
| <servlet-name>abc</servlet-name> | |
| <servlet-class>web.MyServlet</servlet-class> | |
| </servlet> | |
| <servlet-mapping> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans | |
| http://www.springframework.org/schema/beans/spring-beans-4.1.xsd"> | |
| <bean id="bookDAO" class="co.karans.phonebook.web.domain.DefaultBookDAO" /> | |
| </beans> |
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
| SHA1 for '12345': | |
| 8cb2237d0679ca88db6464eac60da96345513964 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
| <mirrors> | |
| <mirror> | |
| <id>nexus</id> | |
| <mirrorOf>*</mirrorOf> | |
| <url>http://[NEXUS_SERVER_ADDRESS]:8081/nexus/content/groups/public</url> | |
| </mirror> |
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
| http://www.webometrics.info/en/asia/iran%20%28islamic%20republic%20of%29?sort=asc&order=World%20Rank |
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
| import my_ejb_api.MyNumberGeneratorLocal; | |
| import my_ejb_api.MyNumberGeneratorRemote; | |
| import javax.naming.InitialContext; | |
| import javax.naming.NamingException; | |
| import java.util.Properties; | |
| public class Test { | |
| public static void main(String[] args) throws NamingException { | |
| Properties p = new Properties(); |
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
| <dependency> | |
| <groupId>org.apache.openejb</groupId> | |
| <artifactId>openejb-client</artifactId> | |
| <version>4.7.1</version> | |
| </dependency> |
OlderNewer