Follow these instructions:
-
Follow steps 1-15 from here:
-
Follow steps 1-5 from here:
| ## | |
| ## This script uses OLE automation to set the out of office message at a given date | |
| ## | |
| require 'win32ole' | |
| outlook = WIN32OLE.new('MAPI.Session') | |
| outlook.Logon 'Outlook' | |
| puts "Out of Office = #{outlook.OutOfOffice}" | |
| outlook.OutOfOffice = true | |
| outlook.Logoff |
| <cache-id> | |
| <component id="" type="pathinfo"> | |
| <required>true</required> | |
| <value>/ProductDisplay</value> | |
| </component> | |
| <component id="storeId" type="parameter"> | |
| <value>10151</value> | |
| <required>true</required> | |
| </component> | |
| <component id="catalogId" type="parameter"> |
| <HttpAdapter | |
| deviceFormatId="-10000" | |
| deviceFormatType="XmlHttp" | |
| deviceFormatTypeId="-10000" | |
| enabled="true" | |
| factoryClassname="com.ibm.commerce.programadapter.HttpProgramAdapterImpl" name="XML/HTTP"> | |
| <ProgramAdapter> | |
| <SessionContext class="com.ibm.commerce.messaging.programadapter.security.CredentialsSpecifiedProgramAdapterSessionContextImpl"> | |
| <SessionContextConfig/> | |
| </SessionContext> |
| Steps: | |
| 1. Download "https://github.com/downloads/adoxa/ansicon/ansi150.zip" | |
| 2. Copy the files under the "x64" directory to somewhere in your path, for example "c:\windows\system32" | |
| 3. Download "https://github.com/downloads/adoxa/ansicon/ansi6432.zip" | |
| 4. Copy the files under the "x64" directory to somewhere in your path, use the same location as step #2 | |
| This should overwrite ANSI32.DLL and ansicon.exe | |
| 5. Install ansicon by typing "ansicon -I" at a command prompt |
Follow these instructions:
Follow steps 1-15 from here:
Follow steps 1-5 from here:
Enable protected mode on all security zones
1.1. Click on the "Start" button
1.2. Go to "Control Panel"
1.3. Select "View by: Large Icons"
1.4. Click on "Internet Options"
| # I have an array where each element is a hash containing a few values and a count. | |
| result = [ | |
| {"count" => 3,"name" => "user1"}, | |
| {"count" => 10,"name" => "user2"}, | |
| {"count" => 10, "user3"}, | |
| {"count" => 2, "user4"} | |
| ] | |
| # I can sort the array by count as follows: |
1.1. Navigate in the RAD menu to the software update setup:
Help -> Software Updates -> Available Software -> Add Site
1.2. Enter the following URL: http://m2eclipse.sonatype.org/sites/m2e-e34/
| require 'find' | |
| require 'set' | |
| # Make sure to start in ENV['WCS_HOME'] | |
| entries = ['\.metadata/'] + Dir['*'].select{|file| File.directory?(file) } | |
| extensions = Set.new | |
| Find.find('.') do |path| | |
| extensions << "*#{File.extname(path)}" unless FileTest.directory?(path) | |
| end |
| import java.io.*; | |
| import java.net.*; | |
| public class ProxyServer | |
| { | |
| /** | |
| * Thread to handle a single client connection | |
| * This way the server can handle other incoming requests | |
| */ | |
| public static class ClientHandler extends Thread |