Category: <span>Uncategorized</span>

After download all files i just want to rename the files to presentation titles. I search for a rename software but the problem was not about software. The problem was how to get the relationship with the file and the presentation name.

I open every pdf file and get the presentation title and create the relationship. After that a small java program rename all files on a folder.

The file bellow has the relationship

renamer.txt

The java code bellow rename the files on the folder. Just put the reanamer.txt and Rename.jar on the same folder of the dowloaded files and run java -jar Rename.jar

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class Rename {

    public static void main(String[] args) throws FileNotFoundException {
        BufferedReader br = null;
        String line = "";
        String cvsSplitBy = ",";
        String csvFile = "renamer.txt";
        br = new BufferedReader(new FileReader(csvFile));

        try {
            while ((line = br.readLine()) != null) {
                    
                    String[] oldName = line.split(cvsSplitBy);
                    
                    System.out.println(oldName[0]);
                    System.out.println(oldName[1]);
                    
                    File oldfile = new File (oldName[0]+".pdf");
                    File newfile = new File (oldName[1]+".pdf");
                    if (oldfile.renameTo(newfile)) {
                        System.out.println("Rename sucessfull");
                    }
                    
                }
        } catch (IOException e) {
            
            e.printStackTrace();
        }

        
            try {
                br.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }        
    }

}

Rename.jar

 

Uncategorized

This is a video series about the new features of WebSphere Portal 8.5 CF08

Creating a site with Site Builder: Administrator

Creating a site with Site Builder: Content Authors

Exploring the site toolbar and site manager

Creating pages

Editing options in the site manager

Uncategorized

This tool allows Help Desk / Support personnel to generate automated emails to a user having difficulty with a Calendar event.  The email contains a button for the receiving user to click which will allow them to select the problematic document, automatically extract and email the requested data back to the requestor (or a mail-in database).

See this technote from IBM

Uncategorized

For the first time i was nominated IBM Champion for Middleware.  Since the beginning of the program (2011) i was nominated  IBM Champion.

Thanks IBM.   New category new opportunities

Screenshot2014-12-0221.53.15

The list of all IBM Champions for Middleware class 2016

Uncategorized

Yesterday i was installing a TSM Server for our company. The db2 installer complain about the /tmp size.

The installer need 2,5GB and my /tmp has only 2 GB.

I create a “disk” using dd command with 4GB on a partition with lots of space.

dd if=/dev/zero of=/usr/tmpDSK bs=1024k count=4096
mkfs -t ext3 /usr/tmpDSK
file /usr/tmpDSK
umount /tmp

mount -o loop,exec,nosuid,rw /usr/tmpDSK /tmp

After the db2 installation i umount the /tmp and mount it back using fstab -a

Linux Uncategorized

Today i search for IBM Connections 5.5 download on Software Catalog and i found it

BM Connections V5.5 Multiplatform Multilingual eAssembly (CRY8GML)

IBM Connections 5.5 has many new features.

Whatch the webcast replay here.

 

Connections Uncategorized

Today i can’t open the TDI Configuration Editon on one of my servers.

One dialog box appears with the error ” Review the .metadata\.log for details.”

To solve the problem:

Go to the <workspace>/.metadata/.plugins/org.eclipse.core.resources/ directory.

If there is a .snap file, then delete or move to different location.

For reference read this IBM TN

Uncategorized

There are multiple vulnerabilities in IBM® SDK Java™ Technology Edition, Version 6 SR16FP7 that is used by IBM Notes and Domino. These issues were disclosed as part of the IBM Java SDK updates in October 2015. They are fixed as part of IBM® SDK Java™ Technology Edition, Version 6 SR16FP15.

See the security bulletim here

Uncategorized

A compressed file of your Liberty profile containing a server runtime environment, server configuration, and applications can be created using the included packaging wizard. Because a Liberty profile server is lightweight, it is useful to package up applications and the server in a compressed file. You can then store this package, distribute it to colleagues, use it to deploy the application to a different location or to another machine.

To package your Liberty profile environment:

  1. Stop the server.
  2. Right-click your Liberty profile server, and select Utilities > Package Server.
  3. In the Archive field on the Package Server panel, type a filename and path for your archive package, or click Browse to locate a filename and path. This filename can include a full path name.
  4. In the Include field, select one of these options, depending on what you want in your packaged file:
    • All server content, which includes binary files
    • Only server configuration and applications
  5. Click Finish

Uncategorized

A smart host is a directory server to which SMTP-routed messages are sent when the message recipient cannot be found in the IBM® Lotus® Domino® Directory or other secondary directories configured on the server.

Typically, a smart host is used in organizations that employ multiple mail systems within a single Internet domain. Users on these systems may not be in the Domino Directory. For example, if some users are on a UNIX® sendmail system but their inbound messages are routed through the Domino mail system, you can set up a smart host to ensure proper address resolution.

Last week i need to setup a kind of odd routing.  I need to relay messages sent to Domino users to an Smart Host.  This routing is odd because the users exist on Domino Directory with the same smtp domain.

On the person document set mailsystem to Other Internet Mail and Internet Address and Forward Address to the same address like [email protected].

Configure the Smart Host on the server configuration document

 

Uncategorized