... obscene, threatening, defamatory, invasive of privacy, infringing of intellectual property rights, or otherwise injurious to third parties or objectionable and does not consist of or contain software viruses, ...
What?
This is an article documenting how to access ZohoCRM with API v2 using PHP and cURL. The first few functions are to manage OAuth v2 and generate the refresh and access tokens. The second snippet ...
... be done via the documented methods (base64, urlencode or AES) as this exceeds 255 characters (it could be a multiline but this would defeat the objective of an Etag).
How?
Well I was going to documen ...
... for PHP. So no classes or built-in functions that you didn't write or know what they're doing.
Why?
The objective here is to upload a video file to my Google Drive. This assumes you have already ...
... convert to a JavaScript array of objects
var my_object_array = [
,
,
];
What I want again:
Read a CSV file already uploaded with JavaScript
Populate a JS array with each ...
... newSortedArrayObject = JSON.stringify(my_records_copy); // note: will convert single apostrophes to double-quotes
// split by closing curly brace
var myRecords = newSortedArrayObject.split('}');
...
... called read_product_id.vbs
Copy the following code to the file:
Set wshShell = CreateObject("Wscript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))
Function ...
... Demo Content (eg. 3rd-party QuickStarts):
[Personal Option] Modify admin ID to NOT use a text editor (ie. "Text-editor=None")
If you are going to delete an object (eg. contacts), make a note ...
... Strict Standards Issue: New Operator removed for PHP5+.
- Fixed Bug: Object without reference: Child object design converted to Object array.- Date Uploaded: Thu, 31st Oct 2013 3.0 - Fixed Bug: Version ...
... Date Uploaded: Mon, 25th Oct 2010 1.2.1 - Removed some word OTT extraction functions (eg. applet, map, object, etc).- Date Uploaded: Mon, 25th Oct 2010 1.2.0 - Fixed compatibility with UTF8 (International) ...
Applies to:
TravelPort Universal API
PHP 4 or 5
cURL
What?
An article on how to resolve errors and setup a standard ping request using the TravelPort Universal API. This is to be achieved using ...
... connection
curl_close($ch);
// convert the response to xml
$xml_result = simplexml_load_string($ch_result) or die("Error: Cannot create object");
// convert the xml to json
$json_result = json_encode($xml_result);
// ...
What?
A quick article on how to create a middleware script which accepts the values from a submitted HTML form and sends it to a server on another domain for processing. This applies to Linux Apache ...
... mMap.setMyLocationEnabled(true);
// Get LocationManager object from System Service LOCATION_SERVICE
LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
...
What?
So this is an article exploring how to convert UPPERCASE text into mixed case. The feed is originally for a personnel feed so it won't be converting long paragraphs of English text. Instead it ...
... following image:
Cycle through each static object and set FixedData to False (ensure all items are set to false or it will error):
Save and test on the ReportServer.
Background:
If you ...
What?
I'm writing a Joomla 2.5.x component for logging time and projects and need a dropdown to have selectable options restricted to the logged-in user. This is specified in the XML file of the custom ...
... (or whatever your script is trying to do).
Method #2: FileSystemObject ComObjCreate
UserFolder:="C:"
-- to return file count in a folder
ItemCount := ComObjCreate("Shell.Application").NameSpace(UserFolder).Items.Count
FileCount ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.