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
| <!DOCTYPE NETSCAPE-Bookmark-file-1> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> <TITLE>Bookmarks</TITLE> <H1>Bookmarks Menu</H1> <DL><p> <HR> <DT><H3 ADD_DATE="1512088815" LAST_MODIFIED="1512088815">Imported</H3> <DL><p> | |
| <DT><A HREF="https://www.google.com/">google</A> | |
| <DT><A HREF="https://www.amazon.com.mx/">amazon</A> | |
| <DT><A HREF="https://sometools.netlify.com/">sometools</A> | |
| <DT><A HREF="http://obed33.blogspot.com">obed'sBlog</A> | |
| </DL><p> </DL> |
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
| https://www.google.com/ | ||
|---|---|---|
| amazon | https://www.amazon.com.mx/ | |
| sometools | https://sometools.netlify.com/ | |
| obed'sBlog | http://obed33.blogspot.com/ |
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
| CREATE TABLE t1 ( | |
| id NUMBER, | |
| company VARCHAR2(15 CHAR), | |
| location VARCHAR2(15 CHAR), | |
| CONSTRAINT t1_pk PRIMARY KEY (id) | |
| ); | |
| INSERT INTO t1 VALUES (1, 'OCorp', 'Bräunlingen'); | |
| INSERT INTO t1 VALUES (2, 'ocorporation', 'BrÄunlingen'); | |
| INSERT INTO t1 VALUES (3, 'Oscorp', 'Braunlingen'); |
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
| drop directory data_pump_dir; | |
| create directory data_pump_dir as '/u01/oracle/export/'; |
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
| set /atg/commerce/endeca/cache/DimensionValueCacheTools.minimumCacheRefreshIntervalSecs 0 | |
| set /atg/commerce/endeca/cache/DimensionValueCacheTools.checkMDEXUpdated false | |
| call /atg/commerce/endeca/cache/DimensionValueCacheTools refreshCache | |
| set /atg/commerce/endeca/cache/DimensionValueCacheTools.minimumCacheRefreshIntervalSecs 7200 | |
| set /atg/commerce/endeca/cache/DimensionValueCacheTools.checkMDEXUpdated true |
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
| SET SERVEROUTPUT ON; | |
| DECLARE | |
| CURSOR get_all_table_names IS | |
| SELECT | |
| table_name | |
| FROM | |
| user_tables | |
| ORDER BY table_name ASC; |
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
| <property name="thumbnailImageUrl" display-name-resource="thumbnailImageUrl" data-type="string" | |
| property-type="com.myCompany.repository.ValueFromMapPropertyDescriptor"> | |
| <attribute name="property" value="imagesMap"/> | |
| <attribute name="key" value="thumbnailImage"/> | |
| </property> |
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
| package com.myCompany.repository; | |
| import atg.core.util.StringUtils; | |
| import atg.nucleus.logging.ApplicationLogging; | |
| import atg.nucleus.logging.ClassLoggingFactory; | |
| import atg.repository.RepositoryItemImpl; | |
| import atg.repository.RepositoryPropertyDescriptor; | |
| import java.util.Map; |
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
| formatParamName=myCustomNotEasyToGuessName |
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
| find /u01/oracle/nodejs/apps/myApp/ -type f -name "*.js" -exec md5sum {} + | awk '{print $1}' | sort | md5sum |