Monday, December 30, 2019

MS-DOS – 30 Tips in 30 Minutes Instructor Guide II

MS-DOS – 30 Tips in 30 Minutes Instructor Guide II

https://www.amazon.com/dp/B0839NJFT9

The following instructor guide is meant for one to review pertinent tips and tricks in regard to MS-DOS (Microsoft Disk Operating System).  MS-DOS famously became the foundation of the personal computer revolution. It has stood the test of time and still holds value as the backbone of the personal computers operating system. Therefore, this guide is meant to be utilized by an individual whom will be reviewing via a demonstration format some cool tips that a general user who will be using MS-DOS – can utilize in order to save time. The guide can also be utilized by any individual interested in self-study learning some core and key aspects of MS-DOS.

Core tips reviewed are:

Basic Run Line Commands
1. devmgmt.msc
2. mmsys.cpl
3. intl.cpl
4. magnify
5. userinit
DIR Commands
6. dir /s /l
7. dir /o-d /p
8. dir /a-d
9. dir /s/w/o/p
10. dir /s/w/o/p/a:-d
Tasklist
11. tasklist /fi "status eq not responding"
12. tasklist /fi "status eq running"
13. tasklist /fi "username ne system"
Simple Batch Commands
14. set /a 2+2
15. color 1b
16. start /min notepad
17. Create Batch File
18. Echo. Blank Line
Environment Variables
19. %ALLUSERSPROFILE%
20. %COMPUTERNAME%
21. %NUMBER_OF_PROCESSORS%
22. %OS%
23. $USERNAME%
24. %DATE%
Miscellaneous Commands
25. powercfg /batteryreport
26. attrib /s battery*.*
27. start /max battery-report.html
28. netsh wlan show profile
29. netsh wlan show wirelesscapabilities
30. Exit Batch File

Friday, November 22, 2019

Original pen drawing

Original pen drawing:

Sunday, August 25, 2019

General Quiz

General Quiz http://www.amazon.com/dp/B00ZO25T8M #general #quiz

Network Quiz

Network Quiz http://www.amazon.com/dp/B00ZO26BCU #network #quiz

KMO Alternative Music Quiz

KMO Alternative Music Quiz http://www.amazon.com/dp/B00HV5MDW0 #alternative #music #quiz

You May Not See Me Tomorrow: A Bob Dylan Trivia Book

You May Not See Me Tomorrow: A Bob Dylan Trivia Book  https://www.amazon.com/dp/B01MT50FF5 #bobdylan #trivia

Monday, July 8, 2019

Manager Quick Notes

Manager Quick Notes https://www.amazon.com/dp/B0086O208M #manager #managers #notes 

Manager Quick Notes - is a guide to not only quickly brush-up on common business techniques and processes but information technology items as well so one can broaden their spectrum of business and technology knowledge. 
Common and advanced techniques are covered such as business basics, planning, operations management, forecasting, project management, accounting, information technology (mobile and virtual machines etc.) and social media.
Great for before interviews or for further knowledge.

IT Web Job Descriptions

IT Web Job Descriptions https://www.amazon.com/dp/B009N4PBYY #IT #Web #Descriptions

The following book is a quick guide of information technology (IT) web job descriptions that one can use to guide them through internal and external job postings within their organization. Each description contains an overview, requirements and responsibilities amongst other information. Descriptions listed include genres of Web Administration, SharePoint, Systems Analyst, Software Developer, Java Developer and Business Process Management amongst other descriptions.

You May Not See Me Tomorrow: A Bob Dylan Trivia Book

You May Not See Me Tomorrow: A Bob Dylan Trivia Book  https://www.amazon.com/dp/B01MT50FF5 #bobdylan #trivia

Over 170 questions covering the following topics: Personal Albums Songwriting Tidbits of Songs Misc. Album Liner Notes Fun with Song/Poetry titles


Tuesday, May 28, 2019

Windows Command Line 30 Tips in 30 Minutes Instructor Guide

Windows Command Line 30 Tips in 30 Minutes Instructor Guide

https://www.amazon.com/dp/B07S88JSK4

The following instructor guide is meant for one to review pertinent tips and tricks in regard to the Windows Command Line (WCL). WCL is the core bare-bones way to interact with a windows desktop or server.
Therefore, this guide is meant to be utilized by an individual whom will be reviewing via a demonstration format some cool tips that a general user who will be using WCL – can utilize in order to save time. The guide can also be used by any individual interested in self-study learning some core and key aspects of WCL.
Core tips reviewed are:
Basic Commands
1.help
2.title /?
3.assoc .txt
4.vol
Input and Output
5.cmd /c “ipconfig > ipconfig.txt”
6.dir | find “.txt”
7.netstat –a > netstat.txt
8.hostname & ipconfig & netstat –a > hin.txt
File System & Disk Administration
9.fsutil fsinfo volumeinfo c:
10.fsutil volume diskfree c:
11.driverquery /fo table
12.systeminfo | findstr “Total Physical Memory”
13.wmic memorychip list full
14.schtasks /query /fo table
15.tasklist /fi "memusage gt 10000"
Networking
16.net view /all /domain
17.getmac /fo table /v
18.netsh http show
19.netsh http show servicestate
20.nslookup –querytype=hinfo
System Performance
21.perfmon /res
22.tasklist /fi “Status eq running”
23.netstat –s –p tcp
24.wmic path softwarelicensingservice get OA3xOriginalProductKey
Miscellaneous
25.dir /w | clip
26.sysdm.cpl
27.msinfo32
28.doskey /history
29.wevtutil -ep
30.sc query

Thursday, April 4, 2019

Linux IP and Netstats Commands


Some common ways to display core network items can be obtained by running these commands:

ip link show  - lists the network interfaces
ip addr show  - lists addresses for interfaces
ip route show - lists routing table
netstat -tupl - lists the Internet services on a system
netstat -tup  - lists the active connections to and from a system

Unix System Shutdown Commands


The common ways to shut down a Unix system properly via the command line is as such:

halt - takes system down right away
init 0 - powers off the system using system scripts
init 6 - reboots the system completely
poweroff - shuts down system by powering it off
reboot - reboots system
shutdown -  shuts down system

Tuesday, March 26, 2019

The UNIX Programmer - Part 1



The following are some fun UNIX exercises to utilize to sharpen your skill set.

The boss has asked you to show your new UNIX intern how to format a report in the following manner – since these are the kinds of reports the intern will be creating all summer long:

1) Output the word count of a report1 then append it to the existing report2:

            Answer: wc –l report1 >> report2
 

2) Using awk show how to extract column 5 (the file size) from the output of ls -l

            Answer: ls –l | awk ‘{print $5}’
 

3) Using sed show how to substitute a change in words globally taking the input from a file

            Answer: sed –e ‘s/platform/computer/g’ < file.txt


4) Using tr convert a file from uppercase to lowercase

            Answer: tr ‘A-Z’ ‘a-z’ < file.txt

 
5) Using grep to search for text in a file at the beginning of a line that starts with the word the

            Answer: grep ‘^The’ the.sh

 
6) Using grep to search for text in a file at the end of a line with the word of

            Answer: grep ‘of$’ the.sh
 

7) Use grep to search for a dollar sign in a file 

            Answer: grep ‘.$’ the.sh

Thursday, January 31, 2019

Word 30 Tips in 30 Minutes Instructor Guide

http://www.amazon.com/dp/B07N62P3KH

The world of Word is one that many users utilize but also need guidance on. Therefore, this guide is meant to be utilized by an individual whom will be reviewing via a demonstration format some cool tips that a general user who will be using Word – can utilize in order to save time. The guide can also be utilized by any individual interested in self-study learning some core and key aspects of Word.

Viewing document
1. Zoom.
2. Alt + Tab keys.
3. Go to Start of a Document.
4. Go to End of a Document.
5. Ruler Tab Markings and Justification.
Shortcut keys
6. Start a New Document.
7. Close a Document.
8. Open a Document.
9. Insert an Endnote.
10. Access and Add Borders.
Formatting
11. Insert Equation.
12. Remove Page Border.
13. Page Colors.
14. Text Headings.
15. Switch Show/Hide Formatting Items.
Editing
16. Ctrl + Z (Undo).
17. Select All.
18. Find and Replace.
19. Horizontal Line.
20. Font Kerning.
Calculating
21. Table Formula.
22. Add Calculator to Toolbar.
23. Tables to Graphs.
24. Change Formula.
25. Select Paragraph.
Document Utilization
26. Outline View.
27. Navigation Pane.
28. Change Default Font.
29. Change Line Spacing.
30. Move Rows of Text in Table.

Excel 30 Tips in 30 Minutes Instructor Guide

http://www.amazon.com/dp/B07JYFT23Z

The world of Excel is one that many users utilize but also need guidance on. Therefore, this guide is meant to be utilized by an individual whom will be reviewing via a demonstration format some cool tips that a general user who will be using Excel – can utilize in order to save time. The guide can also be utilized by any individual interested in self-study learning some core and key aspects of Excel.

Viewing worksheet
1. Zoom.
2. Namebox.
3. Ctrl + D.
4. Ctrl +` Accent Key.
5. Freeze Panes.
Shortcut keys
6. Close a Workbook.
7. Open a Workbook.
8. Go to the Data Tab.
9. Go to the View Tab.
10. Go to Insert Tab.
11. Access and Add Borders.
Formatting
12. Format Painter.
13. Clear Formats.
14. Page Borders.
Editing
15. Ctrl + Z (Undo).
16. Esc.
17. Fn + F2 to Edit.
18. Fn + F2 while Typing.
19. One Click to Select All.
20. Enter #’s as Text.
21. Paste Special Values.
22. Quick Fill Handle for Months & Days.
Calculating
23. Status Bar - Average, Count and Sum.
24. AutoSum.
25. Text to Columns.
26. Using Formulas to combine text.
Multiple Worksheets
27. Ctrl + Drag a Worksheet.
28. Rename a Sheet.
29. Edit the Same Cell on Multiple Worksheets.
30. Delete Multiple Worksheets.

Tuesday, January 22, 2019

MS-DOS – 30 Tips in 30 Minutes Instructor Guide

http://www.amazon.com/dp/B07MXRMQT9

The following instructor guide is meant for one to review pertinent tips and tricks in regard to MS-DOS (Microsoft Disk Operating System). MS-DOS famously became the foundation of the personal computer revolution. It has stood the test of time and still holds value as the backbone of the personal computers operating system. Therefore, this guide is meant to be utilized by an individual whom will be reviewing via a demonstration format some cool tips that a general user who will be using MS-DOS – can utilize in order to save time. The guide can also be utilized by any individual interested in self-study learning some core and key aspects of MS-DOS. 
Core tips reviewed are:

Basic Fundamentals
1.Ver
2.Ver > ver.txt
3.Dir
4.Dir /w /p
5.Type ver.txt
6.* Wildcard symbol
7.Cls
8.Dir |Find "ver"
9.Print
10.Help | more
Core Commands
11./? Switch
12.Dir /s /b > files.txt
13.Notepad files.txt
14.Dir *ver*. * /s
15.CD..
16.Tree /a > tree.txt
17.Dir /o:-n
18.Fn – F7
Networking Commands
19.Ipconfig /all | more
20.Start
21.Ping
22.Systeminfo | more
23.Driverquery | more
24.Netstat
25.Net accounts
Directory Commands
26. Dir /a:d
27. Dir | find /v
28. Dir /s /q /a:sh /p
29. Dir /s *.txt;*.xls
30. Dir /o:d /t:w /a:-d

Finance Managers Quiz

http://www.amazon.com/dp/B07MQRL3J7

The following is a quiz book of some core finance managerial and related aspects that are worthy of knowing.
This quiz which contains 155 questions, is meant for an individual, student or group interested in testing their knowledge of finance managerial items via the following subjects:
Investment Based Terms
Investment Based Terms II
Investment Based Terms III
Investment Based Terms IV
Investment Based Terms V
Annuity Based
Annuity Based II
Services for Shareholders
Formulas Managerial Accounting
Formulas Managerial Accounting II
Formulas Managerial Accounting III
Financial Statements
Investment Company Act of 1940 Provisions
Miscellaneous Terms of Risk
Managerial Economics – Formulas
Insurance Terms

Wednesday, January 2, 2019

Design Elements Quiz

https://www.amazon.com/dp/B07ML1WVWB

The following is a quiz book of some core graphic design and related principals that are worthy of a true design master.
This quiz which contains 140 questions, is meant for an individual, student or group interested in testing their knowledge of design elements via the following subjects:

Graphic Design Terms
Offset Litho Printing
Paper – Print Production
Type as Navigation
Colors
Content
Type Size
Designer and Developer Definitions
Graphics
Multimedia
Web-based
Open Systems Interconnection
Design Guru Terms
Design Guru Term II

Blockchain Quiz

https://www.amazon.com/dp/B07M992DHH

Blockchain is a system that records transactions that are created in a cryptocurrency and then maintained across computers that are linked in a peer-to-peer (P2P) network.
This quiz which contains 120 questions, is meant for an individual, student or group interested in testing their knowledge of blockchain via the following subjects:

Blockchain History
Common Blockchain Based Acronyms
Blockchain Technical Terms
Blockchain Technical Terms II
Blockchain Components
Blockchain Core Aspects
Blockchain Applications
Blockchain – How do they work?
Blockchain Issues
Initial Coin Offering (ICO)
Blockchain Considerations
Blockchain Blocks