New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 14:16, 26 March 2025OPS445 Assignment 2 (hist | edit) ‎[6,881 bytes]Andrew (talk | contribs) (Created page with "= !!! THIS PAGE IS NOT READY YET !!! = = Assignment 2 - LoadBalancer = In this assignment you will create the beginning of what could theoretically one day become a monitoring system for a load balancing setup. The general idea is that you'll have a '''LoadBalancer''' object, which will contain some number of '''Node''' objects. When it's all working, you'll be able to: * Add/remove slaves to/from your load balancer. * Call a single LoadBalancer function to check the...") Tag: Visual edit: Switched
  • 13:35, 7 March 2025OPS445 Assignment 1 Part 2 (hist | edit) ‎[4,691 bytes]Andrew (talk | contribs) (Created page with "=Assignment 1 - Parsing a log file= =Part 2 - Parser= '''Weight''': 5% of the overall grade. '''Due Date''': Ask your professor for exact date. '''Late penalty''': 10% per day, and note the assignment must be completed satisfactorily in order to pass the course no matter what grade you get. == Overview == In part 1 of this assignment you created a program with command-line menu-based navigation that didn't do anything. In this part 2 yo...") Tag: Visual edit
  • 08:53, 9 February 2025OPS445 Assignment 1 Part 1 (hist | edit) ‎[6,187 bytes]Andrew (talk | contribs) (Created page with "= Assignment 1 - Parsing a log file = = Part 1 - Menu = '''Weight''': 10% of the overall grade. '''Due Date''': Ask your professor for exact date. '''Late penalty''': 10% per day, and note the assignment must be completed satisfactorily in order to pass the course no matter what grade you get. == Overview == Often, system administrators need to analyze log files. This can be done using a paginator such as <code>less</code> when your system has just been set up and/...") Tag: Visual edit: Switched
  • 12:02, 21 January 2025OPS435 Assignment 1 (hist | edit) ‎[6,971 bytes]Andrew (talk | contribs) (Created page with "=!!! THIS IS AN OLD ASSIGNMENT, IT'S NOT READY YET !!!= = Assignment 1 - Parsing a log file = '''Weight''': 15% of the overall grade. '''Due Date''': Ask your professor for exact date. '''Late penalty''': 10% per school day, and note the assignment must be completed satisfactorily in order to pass the course no matter what grade you get. == Overview == Often, system administrators need to analyze log files. This can be done using a paginator such as <code>less</cod...") Tag: Visual edit: Switched
  • 16:35, 11 January 2025OPS445 Assignment 1 (hist | edit) ‎[112 bytes]Andrew (talk | contribs) (Created page with "= !!! This assignment is not ready yet !!! = = Assignment 1 - Parsing a log file = '''Weight''': 15% of the overall grade. '''Due Date''': Ask your professor for exact date. '''Late penalty''': 10% per school day, and note the assignment must be completed satisfactorily in order to pass the course no matter what grade you get. == Overview == Often, system administrators need to analyze log files. This can be done using a paginator such as <code>less</code> when you...")
  • 16:31, 11 January 2025OPS445 Lab 8 (hist | edit) ‎[12,945 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = LAB OBJECTIVES = :Completing this course will give you the prerequisites for getting into the DevOps field. A DevOps professional is a system/network administrator with programming skills. As an introduction to that field, we will look at '''Fabric''' in this lab. Using Fabric you can automate deploying software, monitoring, and updating many systems at the same time, without using a terminal to connect to each of them separately....")
  • 16:30, 11 January 2025OPS445 Lab 7 (hist | edit) ‎[8,687 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = LAB OBJECTIVES = :Object-oriented programming is one level of complexity higher than simply structured programming as you've experienced in languages such as Bash or C. In this second lab on objects we're going to look at slightly more complex issues that come up when using them. == PYTHON REFERENCE == :In previous labs, you have been advised to make notes and use online references. This also relates to learning about object orient...")
  • 16:30, 11 January 2025OPS445 Lab 6 (hist | edit) ‎[13,419 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = LAB OBJECTIVES = * Create new type of objects using the Class construct and investigate different ways in using them. :Python is an object oriented programming language. Python uses the concept of "object" to store data(attributes) and code(methods) efficiently for later use. By using objects, programming languages gain the advantage of making large/complex programs into smaller and modular codes, which can be used or shared with o...")
  • 16:30, 11 January 2025OPS445 Lab 5 (hist | edit) ‎[25,973 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = LAB OBJECTIVES = :So far, you have created Python scripts to prompt a user to input data from the keyboard. When creating Python scripts, you may also need to be able to process large volumes of information, or store processed data for further processing. The first investigation in this lab will focus on file management, opening files, saving data to files, and reading files. :'''NOTE:''' Since many tasks that system administrator...")
  • 16:29, 11 January 2025OPS445 Lab 4 (hist | edit) ‎[20,646 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = OBJECTIVES = :The '''first investigation''' in this lab will focus on '''Data Structures'''. Each data structure has its own advantages and limitations. This lab will emphasize the most important differences between them. :The '''second investigation''' will focus on strings. You have been using and storing strings since our first class, however in this lab we will dive into the more complex nature of string manipulation. Finally...")
  • 16:29, 11 January 2025OPS445 Lab 3 (hist | edit) ‎[22,406 bytes]Andrew (talk | contribs) (Created page with "= !!!THIS LAB IS NOT READY YET!!! = = LAB OBJECTIVES = :In previous labs, you learned some programming tools in order to make your Python scripts '''more functional''' and allowed your Python script to run differently based on different data or situations. These tools included '''objects/variables''', '''condition statements''' and '''loops'''. The utilization of these basic tools not only apply to Python scripts, but basically all programming languages including inter...")
  • 11:11, 10 January 2025OPS445 Lab 2 (hist | edit) ‎[23,519 bytes]Andrew (talk | contribs) (Created page with "= !!! THIS LAB IS NOT READY YET !!! = = User Input = Asing the program user for input on the command-line is a rather unusual thing to do these days, but it will help you get used to several basic concepts. * To begin, let's start out with a very basic script. This script will use objects that will display specific values to your terminal. Create the file '''lab2a.py''' in the '''~/ops435/lab2''' directory, containing the following content:<syntaxhighlight lang="python...") Tag: Visual edit: Switched