Wednesday, June 22, 2022

Cognizant Career Management

Cognizant will send employees an email inviting to GoPerform. GoPerform https://onecognizant.cognizant.com/Home?GlobalAppId=1989 GoPerform is also known as MyCareer App includes Profile and SkillUp. Profile is where you list your existing skills. The Profile Status should show 100%. To complete profile: add skills then click Provile Complete button. SkillUp (link to My Learning Studio) is where you setup a development plan (select a course you plan to take). https://onecognizant.cognizant.com/Home?GlobalAppID=1738 SkillUp has a video tutorial explaining the process of setting your goals. A plan must be submitted. Then you take the course. Associates set their development plan based on goals set by the business unit. Goal setting is due on 29 April. You are requested to complete goal setting at the earliest to avoid last minute hold-ups. Log in to GoPerform and Go to the My Goals page. Review your pre-populated Organizational Metrics in Section 1. Review your pre-populated Key Role Outcomes in Section 2. Discuss with your Manager if this section requires changes. Consider what you hope to accomplish till June 2022. Break down larger goals into smaller targets and ensure they’re SMART – specific, measurable, achievable, relevant and time bound. View the Goal Setting Flipbook for help in crafting effective goals. Discuss these goals with your manager, along with your action plans to achieve them. Add them as Deliverables in Section 3 of your My Goals page in GoPerform. Review your Deliverables frequently. Update their status on GoPerform, seek feedback from relevant stakeholders, add notes and have regular conversations with your manager about your progress. For more resources on how to set effective goals, why it is essential to do so and instructions on how to use GoPerform, leverage the Goal Setting Kit. Although the deadline for goal setting is April 29, GoPerform will be open for modification of existing goals and addition of new goals throughout the half-year period. Please visit the Navigator app for more details. For managers Manager can open MY TEAM ROLE DEVELOPMENT PLANS (RDPS) It may display No active RDP generated...

Thursday, May 20, 2021

Chrome SyncDisabled

Chrome SyncDisabled The Chrome sync may be disabled using Google Chrome Policy. To check if it is disabled open chrome://policies and search for Sync. On Windows Chrome settings are stored under Registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome To check from Command Prompt, run reg query HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome /v SyncDisabled To change from Command Prompt, run reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome /v SyncDisabled /t REG_DWORD /d 0 BUT you may get an error: ERROR: Access is denied. In this case, try running regedit... and take ownership of the Chrome key... No luck... What's next? Also you can change the default home page: HomepageLocation

Wednesday, April 20, 2011

Today I was asked to rate my Data Architect skills as: Basic, Intermediate, Advanced, or Expert. The definition for each level were expressed in terms of size and complexity of designed data models:
Basic • Create accurate object models of domains of small size and simple complexity
Intermediate • Create accurate object models of domains of medium size and moderate complexity
Advanced • Create accurate object models of domains of medium size and difficult complexity
Expert • Create accurate object models of complex of large size and difficult complexity

I’ll be modest here. The size and complexity used in definition are relative. Is 70 tables a large size? Do you prefer an expert who designed a model of large size and difficult complexity or intermediate who designed a model of medium size and moderate complexity that solves the same business problem?

Thursday, February 10, 2011

How to Allow JavaScript in Local HTML Files For Specific Files Only

This little annoying thing happens when you author an HTML file on your local computer and include JavaScript in it.

If you use Internet Explorer with default Security options your JavaScript code does not run and you get this information bar message:

"To help protect your security, Internet Explorer has restricted this webpage from running scripts or ActiveX controls that could access your computer. Click here for options..."

IE Help explains:
A webpage being displayed on your computer tried to run a script or ActiveX control. If you want to allow the control to run, click the Information bar, and then click Allow Blocked Content.
There is a way to turn this feature off. But it is not recommended by Microsoft. IE Help goes on:

"Can I turn off the Information bar?
Yes, you can, but we don't recommend it. If you do want to turn it off, you have to turn it off for each type of message..."
Turn it off for each type of message means you need to make several changes in several different places to disable protection. And they don't even have a map of where and how to turn off each type of message, only give a couple of examples.

OK, there is more help online, thanks to Google. Open Internet Options, Advanced tab, scroll down to Security section check "Allow Active Content to run in files on My Computer".

But what if I don't want to lower the advanced security settings? I want to be protected from potential risk and just allow running scripts from local files I created myself. Is there a way to disable the information bar message for some local files, without modifying IE security options? For example, I want all files blocked, except my own local HTML files that include JavaScript I need to run automatically?

It turns out there is a way to mark file as safe to run scripts in it. I tested it on IE 8 on Windows 7. All you need to do to automatically enable script is add a HTML commented indicating that the file was saved from some internet URL. There is a little trick - the comment needs to include a certain number equal to the number of characters in the URL.

Here is an example:

<!-- saved from url=(0020)http://regmagik.com/ -->
<html>
If you add saved from url line abouve to the local HTML file the script will not be blocked by IE.

<script>
your script goes here
</script>
</html>