23 April 2013
There are times when you may want to hide a column from view without actually removing it from the DOM. This can be useful if you want to keep the data accessible for other operations but don’t want it visible on the front end.
Quick Solution: Use CSS # One straightforward way to achieve this is by using CSS. This allows you to keep the column data in the DOM, but just not display it in the table.
...
14 April 2013
<?xml version="1.0″ encoding="UTF-8″?> <GeteBayDetailsResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <Timestamp>2013-04-13T07:54:20.770Z</Timestamp> <Ack>Success</Ack> <Version>813</Version> <Build>E813\_INTL\_BUNDLED\_15816370\_R1</Build> <ShippingServiceDetails> <Description>Standard Int'l Postage</Description> <InternationalService>true</InternationalService> <ShippingService>UK_SellersStandardInternationalRate</ShippingService> <ShippingServiceID>50301</ShippingServiceID> <ServiceType>Flat</ServiceType> <ValidForSellingFlow>true</ValidForSellingFlow> <DetailVersion>74</DetailVersion> <UpdateTime>2013-04-08T14:42:28.000Z</UpdateTime> <ShippingCategory>STANDARD</ShippingCategory> </ShippingServiceDetails> <ShippingServiceDetails> <Description>Collect+ Tracked: drop at store-delivery to door</Description> <ShippingService>UK_CollectPlusTrakedDeliveryToDoor</ShippingService> <ShippingServiceID>330</ShippingServiceID> <ShippingTimeMax>5</ShippingTimeMax> <ShippingTimeMin>3</ShippingTimeMin> <ServiceType>Flat</ServiceType> <ValidForSellingFlow>true</ValidForSellingFlow> <DetailVersion>74</DetailVersion> <UpdateTime>2013-04-08T14:42:28.000Z</UpdateTime> <ShippingCategory>ECONOMY</ShippingCategory> </ShippingServiceDetails> <ShippingServiceDetails> <Description>Royal Mail Airmail (Small Packets)</Description> <InternationalService>true</InternationalService> <ShippingService>UK_RoyalMailAirmailInternational</ShippingService> <ShippingServiceID>50302</ShippingServiceID> <ServiceType>Flat</ServiceType> <ValidForSellingFlow>true</ValidForSellingFlow> <DetailVersion>74</DetailVersion> <UpdateTime>2013-04-08T14:42:28.000Z</UpdateTime> <ShippingCategory>NONE</ShippingCategory> </ShippingServiceDetails> <ShippingServiceDetails> <Description>Hermes Tracked</Description> <ShippingService>UK_myHermesDoorToDoorService</ShippingService> <ShippingServiceID>322</ShippingServiceID> <ShippingTimeMax>5</ShippingTimeMax> <ShippingTimeMin>3</ShippingTimeMin> <ServiceType>Flat</ServiceType> <ValidForSellingFlow>true</ValidForSellingFlow> <DetailVersion>74</DetailVersion> <UpdateTime>2013-04-08T14:42:28.000Z</UpdateTime> <ShippingCategory>ECONOMY</ShippingCategory> </ShippingServiceDetails> <ShippingServiceDetails> <Description>Royal Mail 1st Class</Description> <ShippingService>UK_RoyalMailFirstClassStandard</ShippingService> <ShippingServiceID>301</ShippingServiceID> <ShippingTimeMax>2</ShippingTimeMax> <ShippingTimeMin>1</ShippingTimeMin> <ServiceType>Flat</ServiceType> <ValidForSellingFlow>true</ValidForSellingFlow> <DetailVersion>74</DetailVersion> <UpdateTime>2013-04-08T14:42:28.
...
6 April 2013
Introducing BottomToolBar: A Customizable Tool for Your Website # Have you ever noticed the sliding bar at the bottom of your TV screen displaying text messages and images? It’s a common feature on news channels and entertainment programs. BottomToolBar (BTB) takes that concept and brings it to your website, enhancing user engagement and content discovery.
What is BottomToolBar? # The BottomToolBar is a feature that can be added to any website.
...
12 January 2013
Download the Complete Guide to System Hardening # Introduction to System Hardening # System hardening is the art of strengthening your computing environment against potential threats. At its core, the philosophy is about implementing the principle of ’least privilege.’ This involves:
Knowing exactly what services and applications need to run on a system Creating documentation that outlines policy, standards, and guidelines Securely configuring operating systems, virtual servers, and software Managing application settings to enhance security Streamlining database setup and configuration Securing network devices and portable equipment Why Platform Hardening Matters # Platforms, such as servers or databases, are the foundation of your data infrastructure.
...
24 November 2012
30 August 2012
The Blueprint for a Smooth Release Engineering Process # Isn’t it satisfying when everything falls into place just as you’d hoped? In the complex world of development, where multiple cogs are in motion at any given time, having a well-defined plan can make all the difference. Here’s a streamlined guide to setting up a robust Release Engineering (Releng) system that ensures efficient and error-free deployments.
Step-by-Step Implementation # 1. Version Control with Git # We begin by storing all our configuration files and Puppet manifests in a Git repository.
...
21 February 2012
Basic Perl “Hello World” Script (hello.pl) # Let’s start with the basics. Here is a straightforward “Hello World” script written in Perl. Create a new file and name it hello.pl.
#!/usr/bin/perl use strict; use warnings; use diagnostics; print "-----------\n", "Hello World\n", "-----------\n"; In this script, we’re using Perl’s built-in modules for error handling (use strict; use warnings; use diagnostics;) to make sure the code is robust.
Introducing Expect Bindings with Perl (test.
...
2 January 2012
Mastering the art of Continuous Delivery is about more than just pushing code onto a server. It’s a delicate balance of managing your technology and the people who interact with it. One major stumbling block? The tiny differences between machines that happen when someone decides to make ad-hoc changes. These may seem trivial, but they can cause massive headaches when it comes to debugging and troubleshooting.
The endgame here is clear: Create a system so streamlined that there’s no need for anyone to manually log in to make changes.
...
10 December 2011
vmstat -s -SM | grep "free memory" | awk -F" " '{print$1}'
11 November 2011
Download Full Guide: Comprehensive OTC Flow Document
Managing an Order-to-Cash (OTC) process can be challenging, but it’s a crucial part of any business operation. In the world of SAP, understanding how to manage this flow effectively can significantly improve your business processes. Here’s a step-by-step guide on how to navigate through Sales Order, Delivery, and Billing stages within SAP.
1. Creating a Sales Order # Essential Details:
Company Code: 4700 Sales Document Type: ZOR Sales Area: 4700/10/10 Steps:
...