Skip to main content

Posts

Showing posts from April, 2018

Gmail: Confidential Mode Features For Security & Privacy

Source: https://thehackernews.com/2018/04/new-gmail-redesign.html

Text editor: vim

VIM is really powerful text editor. VIM stands for V i IM proved. It is originally written by Bram Moolenaar .

IBM Domino: Install a hotfix on RHEL

Reference:  http://www-01.ibm.com/support/docview.wss?uid=swg21381950 The hotfix installation MUST be run as root (sudo root is not recommended). Shut down all Domino server partitions. All Domino server partitions must be shutdown during the hotfix installation. Example of install FP7 on RHEL. tar -xvf  ./domino901FP7_linux64_x86.tar Set NUI_NOTESDIR environmental variable and run install NUI_NOTESDIR=/opt/ibm/domino/ export NUI_NOTESDIR ./install Login as notes to start server su notes cd /local/notesdata /opt/ibm/domino/bin/server

Online Learning: Free to Learn, Learn to Free

Photo Credit:  Gerd Altmann - pixabay.com Just make time to keep learning, practicing, and sharing.

Free eBook: Jump Start HTML5

Author: Matthew Hughes Download link:  Jump Start HTML5

Free eBook: Get Started With HTML5

Author: Matthew Hughes Download link: Get Started With HTML5

Windows: Get local environment variables

Using Powershell Get-ChildItem Env: Do not forget colon (" : ") after Env . Powershell: Get local environment variables Get a specific local variable, such as Path, ComputerName... Get-ChildItem Env:Path | Format-List Remember to add " | Format-Lis t" to display full result. Get Path local environment variable Using Command Prompt Just type SET without any parameters to display all the current environment variables. Command Prompt: Get local environment variables

Free eBook: Learn to Build with PHP - A Crash Course

Download link: Learn to Build with PHP - A Crash Course  by Matthew Hughes.

Windows command: takeown - Take Onwership

IBM i: DB2 for i

IBM DB2 for i DB2 for i is a member of IBM’s family of DB2 databases. What makes DB2 for i unique is its integration with the platform, the IBM i operating system and Power Systems. This unique integration means you do less managing of your database, and more building of applications for analytics, mobile, cloud, or day to day operational purposes. DB2 for i’s open standards support allows you to leverage the world of development tools while protecting your investment in legacy applications. Self managing is what DB2 for i is all about ! Let's ST a R t SQL  with STRSQL command. Query all databases SELECT DISTINCT table_schema FROM systables Query returns list of all databases

Free eBook: HTML5 Programming Cookbook

Download link:  HTML5 Programming Cookbook

Free online resources to practice

Photo Credit:  johnhain  - pixabay.com There are many free online resources for us to practice almost any or specific skills as long as we have an Internet connection.

Free eBook: The Ultimate HTML Reference

Title: The Ultimate HTML Reference Author:  Ian Lloyd Download link:  The Ultimate HTML Reference

Free PDF ebook: Cloud Management for Dummies

Learn to: Assess business needs Implement cloud management Deliver results Download link:  Cloud Management for Dummies from VMware by Jad El-Zein and Shobhana Viswanathan .

Windows command: icacls

Icacls is a command-line utility that can be used to display or modify discretionary access control lists (DACLs) on specified files, and apply stored DACLs to files in specified directories.

Docker: Run Microsoft IIS

Pull IIS image pull, run, check, stop, remove

Free PDF eBook: Thinking in HTML

For anyone who wants to understand the web and how it works, HTML is an essential place to start. This free eBook provides you with everything you need to know to get to grips with HTML and to begin building your own web pages. Explore how HTML code structures a web page and use and adapt the examples for yourself to begin building your own web pages today. What You Will Learn Explore the structure of HTML and find out how tags and elements structure a web page Format your web pages and learn how to include links and incorporate images Collect user input by creating forms for your web page Discover and explore the future of HTML today with HTML5 Click  Thinking in HTML  and fill in your details to receive your free eBook and get started with HTML today.

Docker: Run Microsoft SQL Server Developer

Try Microsoft SQL Server Developer with Docker.

Windows: Get memory information

Get memory information using wmic memorychip wmic memorychip Get all information about memorychip wmic memorychip get capacity,manufacturer,partnumber,serialnumber,speed Get some specific properties

Powershell: Get-ChildItem

List, search/find files and directories with Get-ChildItem cmdlet.

Check Microsoft Windows version

There are several ways to check Microsoft Windows version.

Microsoft Windows Server 2012 R2 Standard Evaluation Product Key

Microsoft Windows Server 2012 R2 Standard Evaluation D2N9P-3P6X9-2R39C-7RTCD-MDVJX DBGBW-NPF86-BJVTX-K3WKJ-MTB6V

IBM Domino: Check history change of mail file

Check who and when changed a mail file in IBM Domino. IBM Domino: Open Access Control List of mail file IBM Domino: Check history change of mail file

IBM i: Hello RPG

Write code Using SEU to write code  /free                                           dsply 'Hello RPG on IBM i PUB400.COM free';    return;                                  Compile Using option 14 to compile Compile successfully Run program Run program

Powershell: Get-ComputerInfo

In case you have not known yet. In GUI, we can use CTRL + Pause/Break to quickly open System Properties. Windows Management Framework (WMF) 5.1 has a new cmdlet called Get-ComputerInfo to get a consolidated object of system and operating system properties. We can also use command systeminfo.exe to display operating system configuration information for a local or remote machine, including service pack levels. Powershell: Get-ComputerInfo Run Get-ComputerInfo to get consolidated object of system and OS properties

Who is logged on to Windows

query user Check who is logged on to Windows: query user In Linux: who

Most MISPRONOUNCED words in HI-TECH

algorithm developer editor automation architecture firewall hardware & software framework server infrastructure

Avoiding burnout at work

Burnout is a state of complete mental and physical exhaustion that makes you seriously question what you're doing in life. This tutorial gives you a few ideas you can use to help your team avoid burnout and achieve balance in your professional life.

Docker for Windows

Docker for Windows 10 and Server 2016 Use Windows container Install Docker for Windows Must log out of Windows to complete installation Enable Container feature Check Docker version:  docker version Docker Windows container Build demo container to print environment variables docker run the demo container