CSS Tutorial-Part 2

List=> List property is used to create a list. There are two types of lists: . Unordered lists- An unordered list uses bulleted as the list item markers. Ordered lists…

Read more »
script-to-list-the-clients-in-descending-access-date-order

Script to list the clients in descending access date order

  Write a script to list the clients in descending access date order (for deleting obsolete clients).   #!/usr/bin/ruby require “P4” p4 = P4.new p4.tagged p4.connect clients = p4.run_clients.sort {|a,b|…

Read more »