Advanced Search

Here are a few examples of how you can use the search feature:

Entering this and that into the search form will return results containing both "this" and "that".

Entering this not that into the search form will return results containing "this" and not "that".

Entering this or that into the search form will return results containing either "this" or "that".

Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.

Assuming quick is required, the following 244 results were found.

  1. Zoho Deluge: Convert Hex to RGBhttp://www.joellipman.com/articles/crm/zoho/zoho-deluge-convert-hex-to-rgb.html

    A quick article to document a Zoho Deluge function converting a hexadecimal color reference to a Red Green Blue value (RGB). Why? It's likely that Zoho will avail their color picker at some point as an input but at the time of print, this hasn't...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  2. Zoho CRM: Remove Duplicate Product Recordshttp://www.joellipman.com/articles/crm/zoho/zoho-crm-remove-duplicate-product-records.html

    may be a better way of doing this. What I'm trying to have is a generic function that will work on any CRM and possibly be quick to adapt to a module other than products. This function will also try to delete the duplicate but if the duplicate is the...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  3. ZohoCRM / Client Script / Canvas: Hide Tab based on Pipelinehttp://www.joellipman.com/articles/crm/zoho/zohocrm-client-script-canvas-hide-tab-based-on-pipeline.html

    A quick article with snippets of code to hide and show certain tabs on a deal record based on the pipeline. Why? A request from a customer asked if a tab specific to the pipeline selected can be shown while others hidden. Standard tabs such as Notes,...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  4. Zoho Deluge: Connect to Shopifyhttp://www.joellipman.com/articles/crm/zoho/zoho-deluge-connect-to-shopify.html

    A quick article showing 2 ways of connecting to Shopify's REST API with a custom app. Note that this is not for an app embedded in the Shopify instance but for a third-party app, such as a Zoho Creator app, to connect to the data within Shopify. Why? At...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  5. Zoho CRM: JS Widget: Generic Script to pass the Record ID to a CRM functionhttp://www.joellipman.com/articles/crm/zoho/zoho-crm-js-widget-generic-script-to-pass-the-record-id-to-a-crm-function.html

    How? There are links to how to create a widget in detail which I'll link to at the bottom of this page. What follows are the quick steps to create a widget.html file and how to get whatever the Zoho Deluge CRM function returns. Create a JS Widget on...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  6. Zoho People: Get Performance Records over APIhttp://www.joellipman.com/articles/crm/zoho/zoho-people-get-performance-records-over-api.html

    Took us a while to find this and perhaps others would have a quicker way but here's the instructions on getting the records from the performance module in Zoho People API. Why? Cos it took us a while. The online forums seem to go back over a decade and...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  7. Zoho Survey: Zoho CRM Webhookhttp://www.joellipman.com/articles/crm/zoho/zoho-survey-zoho-crm-webhook.html

    Time" Save and close the CRM function You should know how to set up a CRM function as a REST API function but here goes a quick recap: Login to ZohoCRM as a user who has permission to create functions Create a CRM function, I'm calling mine "Fn - Submit...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  8. Mirror's Edge Prologue Speedrun Under 2:00http://www.joellipman.com/articles/_other-misc/mirrors-edge-prologue-speedrun-under-200.html

    Blinding run in Mirror's Edge which is one of my favorite games. Yes it's quick to complete but if you've ever youtube'd the levels, there isn't another game so quick-paced and varied giving you that freedom of completing the game your way. The...

    • Type: Article
    • Author: Joel Lipman
    • Category: Hobbies
    • Language: *
  9. Does Google Chrome Frame really improve performancehttp://www.joellipman.com/articles/google/does-google-chrome-frame-really-improve-performance.html

    have to carry out proper tests on the weekend. Instructions to a hard-coder The Google Chrome Frame (or ChromiumBrowser) is quick to enable. Simply ask your webmaster to put the following meta tag in between the head tags of the page: For Joomla v1.5.x...

    • Type: Article
    • Author: Joel Lipman
    • Category: Google
    • Language: en-GB
  10. Increment a column in MySQL using the UPDATE queryhttp://www.joellipman.com/articles/database/mysql/increment-a-column-in-mysql-using-the-update-query.html

    WHERE column1='this_article' Combined with a PHP script this could be a few lines for something really small. The quick trick to this is to do it all in one query: UPDATE table1 SET counter_field_value=counter_field_value+1 WHERE column1='this_article'

    • Type: Article
    • Author: Joel Lipman
    • Category: MySQL
    • Language: en-GB
  11. Windows 7 and Google Chrome incognito mode by defaulthttp://www.joellipman.com/articles/google/windows-7-and-google-chrome-incognito-mode-by-default.html

    if you've just started using "incognito" mode with the Google Chrome web-browser, this article is just how to switch the quick launch shortcut (next to your start button). All the articles I googled were windows vista so I thought I'd share one for...

    • Type: Article
    • Author: Joel Lipman
    • Category: Google
    • Language: en-GB
  12. SSRS Report Builder 2.0 - Error during processinghttp://www.joellipman.com/articles/microsoft/ssrs/ssrs-report-builder-20-error-during-processing.html

    name '@GroupName' has already been declared. Variable names must be unique within a query batch or stored procedure. The Quick Fix Return to the Design interface of Report Builder 2.0 for the problematic report: Right-click on the reported DataSet (in...

    • Type: Article
    • Author: Joel Lipman
    • Category: SQL Server Reporting Services
    • Language: en-GB
  13. AutoHotkey Ternary Operatorhttp://www.joellipman.com/articles/automation/autohotkey/autohotkey-ternary-operator.html

    Just a quick note for the moment on how to use ternary operators in AutoHotkey. A ternary operator for those who are unfamiliar with this is an "If...Then...Else..." statement written in a small amount of code, usually on one line, and exists in most...

    • Type: Article
    • Author: Joel Lipman
    • Category: AutoHotkey
    • Language: en-GB
  14. If Then Else in Report Builder 2.0 Expressionshttp://www.joellipman.com/articles/microsoft/ssrs/if-then-else-in-report-builder-20-expressions.html

    Yes, well don't laugh, I could not find this on the WWW so I was obviously not using Google properly. Anyway here's just a quick note on how to do if else statements in Report Builder 2.0 I'm looking at the following if statement: If (MyFieldName = 0)...

    • Type: Article
    • Author: Joel Lipman
    • Category: SQL Server Reporting Services
    • Language: en-GB
  15. Change Regional Settings for your Reporthttp://www.joellipman.com/articles/microsoft/ssrs/change-regional-settings-for-your-report.html

    were dependent on either the server or the client machine. Realised that this was actually specified in the report. Here's a quick note on how to set Dates and Times used in parameter fields to UK format (dd/MM/yyyy). You can override this in the report...

    • Type: Article
    • Author: Joel Lipman
    • Category: SQL Server Reporting Services
    • Language: en-GB
  16. Added a Launcher and Unduplicaterhttp://www.joellipman.com/component/content/article/added-a-launcher-and-unduplicater.html?catid=87

    can modify in any text editor in order to tweak the program to suit your needs. Launcher v2.0 is crude replacement to the quick launch toolbar which arranges your icons in a grid that you define (the default is 7x7). Change the links and icons by...

    • Type: Article
    • Author: Joel Lipman
    • Category: Products
    • Language: *
  17. Frontpage Item Orderinghttp://www.joellipman.com/articles/cms/joomla/frontpage-item-ordering.html

    wondering where it was taking the order it puts the articles in the front page (or landing page) was confusing me. The quick answer is that it is within the menu manager > main menu > menu item section of your Joomla! Admin Panel. Certain Advanced...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  18. MySQL Oracle equivalentshttp://www.joellipman.com/articles/database/mysql-oracle-equivalents.html

    rather odd and upcoming considering that Sun Microsystems bought MySQL and Oracle bought Sun. But in fact, this is just a quick list of some regular commands in MySQL that I need in Oracle: Objective MySQL Oracle - See if a table exists SHOW TABLES...

    • Type: Article
    • Author: Joel Lipman
    • Category: Databases
    • Language: en-GB
  19. Yesterday's time in PHPhttp://www.joellipman.com/articles/web-development/php/yesterdays-time-in-php.html

    Quick tip or note to self: How to get yesterday's date irrespective of date format or daylight savings time. $today=date("Y-m-d"); $yesterday = date('Y-m-d', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y")));

    • Type: Article
    • Author: Joel Lipman
    • Category: Personal Home Page
    • Language: en-GB
  20. Mouseover Links in AutoHotkeyhttp://www.joellipman.com/articles/automation/autohotkey/mouseover-links-in-autohotkey.html

    If you copy the above code into an AutoHotkey file, you'll find this is remarkably temperamental. If the user is too quick with their mouseovers and mouseouts, then the GUI will sometimes leave the link as blue despite the mouse cursor not being...

    • Type: Article
    • Author: Joel Lipman
    • Category: AutoHotkey
    • Language: en-GB
Results 181 - 200 of 244

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Please publish modules in offcanvas position.