Apply yourself, or submit others as a candidate, Build a recruitment team to submit others as a candidate, submit RFP to be considered for projects in future, Try to become a vendor so that you are asked to submit consultants/resources in future
Jul 27
#Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-07-27
Jul 27
CDN Networks #CDN: Content Delivery Network
- Akamai. Akamai is known globally to speed up networks and connections. …
- MaxCDN. MaxCDN was founded in 2009 and is based in Los Angeles, California. …
- Incapsula. …
- Rackspace. …
- Cloudflare. …
- Amazon’s AWS. …
- EdgeCast/Verizon. …
- Fastly.
From: http://sitestree.com/?p=11323
Categories:CDN: Content Delivery Network
Tags:
Post Data:2017-09-19 10:23:46
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Automating Digital Delivery with Paypal Payment Processing System #Classic ASP
Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1283&title=Automating%20Digital%20Delivery%20with%20Paypal%20Payment%20Processing%20System
the time-period: 2007 – 2008
In the past, I implemented an automatic notification and digital product delivery system with Paypal Payment Processing System. The concept is, when a person buys products from your web-sites, he gets his products automatically as email attachments after you have confirmed the transaction. The most important part is – collecting payment data and buyer information from Paypal to ensure that the transaction is legitimate and the payment really went through. You can use either Paypal IPN or Paypal PDT to collect these data and email products on successful verification. Either will/should work. For me, PDT worked alright. Check the following web-pages/documents. Also, from PDT section, check the sample examples. For me the sample example with ASP/VBSCript worked alright.
- Paypal Order Management Guide
- IPN Code Sample
- From the first link, also check PDT code sample
In the past, I have worked with MiraServ, and Moneris payment processing systems. You can find short-notes and video tutorials in this web-site on them. Just search through our web-sites.
A relevant code in ASP is provided below. The code collects the payer’s information just after someone has paid. The code also checks, if the payment was successful, if so prints some details about the transaction and the payer
The flow of actions (in terms of code and operations)
- Create a paypal button, provide return URL for successful payment and canceled payment.
- In your successful payment page, write down the following code
- Your paypal account needs to be configured properly to make the following code work – consult the documents as listed above
- You need to use the authentication code from your paypal account to/in the following code
- The follwing code section
authToken = "ytrtyrtr45654hgfhgfjhfsfdsfdsfds;ljlk" 'auth code for your paypal account txToken = Request.Querystring("tx") 'as sent from paypal query = "cmd=_notify-synch&tx=" & txToken & "&at=" & authToken set objectHttp = Server.CreateObject("Microsoft.XMLHTTP") objectHttp.open "POST", "http://www.paypal.com/cgi-bin/webscr", false objectHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded" objectHttp.Send querysubmits to the paypal to grab transaction details. (remember, after payment the control is required to come to this page, then based on authentication code and tx-id, the code grabs detail transaction information)
<% @LANGUAGE="VBScript" %>
<%
Dim query
Dim objectHttp
Dim strQuerystring
Dim i, result
Dim firstName, lastName, itemName, curGross, mcCurrency, email
Dim authToken, txToken
Dim strParts, intParts, aParts
Dim strResults, strKey, strValue
authToken = "ytrtyrtr45654hgfhgfjhfsfdsfdsfds;ljlk" 'auth code for your paypal account
txToken = Request.Querystring("tx") 'as sent from paypal
query = "cmd=_notify-synch&tx=" & txToken & "&at=" & authToken
set objectHttp = Server.CreateObject("Microsoft.XMLHTTP")
objectHttp.open "POST", "http://www.paypal.com/cgi-bin/webscr", false
objectHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
objectHttp.Send query
strQuerystring = objectHttp.responseText
If Mid(strQuerystring,1,7) = "SUCCESS" Then
strQuerystring = Mid(strQuerystring,9)
strParts = Split(strQuerystring, vbLf)
intParts = UBound(strParts) - 1
ReDim strResults(intParts, 1)
For i = 0 To intParts
aParts = Split(strParts(i), "=")
strKey = aParts(0)
strValue = aParts(1)
strResults(i, 0) = strKey
strResults(i, 1) = strValue
Select Case strKey
Case "first_name"
firstName = strValue
Case "last_name"
lastName = strValue
Case "item_name"
itemName = strValue
Case "mc_gross"
curGross = strValue
Case "mc_currency"
mcCurrency = strValue
Case "payer_email"
email = strValue
email = Replace(email, "%40", "@")
End Select
Next
email = Replace(email, "%40", "@")
Response.Write("We have received your order ") Response.Write("Details") Response.Write("
Home Page |
From: http://sitestree.com/?p=3716
Categories:Classic ASP
Tags:
Post Data:2016-07-16 10:05:06
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Code: Send Emails using ASP #Classic ASP
<%
dim email
email = Request.Form("email") 'if you are collecting user emails from a form - POST method
'send email
Dim myObject
Set myObject = Server.CreateObject("CDO.Message")
'set the To and From
myObject.To = "webmaster@justetc.net"
myObject.From = "webmaster@justetc.net"
myObject.Bcc = "sayed@justetc.net"
myObject.Subject = "Email Sending Code"
myObject.TextBody = "The person with the email address " & email & " submitted the form"
myObject.Send()
'Set objects to "nothing" to free up the
'the computer memory
Set myObject = nothing
%>
From: http://sitestree.com/?p=3714
Categories:Classic ASP
Tags:
Post Data:2016-07-16 14:52:59
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Introduction to Capability Maturity Model Integration for Services (CMMI-SVC) #CMMI
http://www.youtube.com/watch?v=FvkUUS-oAcU From: http://sitestree.com/?p=163
Categories:CMMI
Tags:CMMI, Business Process
Post Data:2013-01-01 15:53:27
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Oracle WebCenter Sites Features (OWCS) #CMS
- Easy-To-Use Content Authoring and Design Tools For Business Users
-
Sophisticated Customer Segment-Based Targeting and Predictive Targeting via Oracle Real-Time Decisions Integration
-
Granular Analytics for Optimizing Web Content, Promotions, and Offers
-
User-Generated Content and Personalized,Customizable Gadgets with Enterprise Moderation, Including Comments, Ratings, Reviews, and Blogs
-
Highly Scalable Web Content Management (WCM) Platform for Delivery of a High Volume, Global Web Presence
-
Access Content Stored Across the Enterprise and Integrate with Oracle’s CRM and E-Commerce Applications
-
Mobile Option Enables Centralized Business-User Management of Both Mobile and Traditional Websites with Delivery to Thousands of Mobile Device Types, including iPhone, iPad, BlackBerry, Android, and Many More
Reference: https://www.oracle.com/middleware/webcenter/sites/features.html From: http://sitestree.com/?p=10965
Categories:CMS
Tags:
Post Data:2017-07-30 15:06:34
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Web Content Management, Content Management System: OpenCMS, LifeRay, DNN, Kentico, WordPress, Drupal, SharePoint #CMS
Content Management is an Integral Part for Most Businesses including Enterprises. Actually, enterprises need them more than the others. Government will always need CMS.
Apparently, CMS market is Pretty Crowded:
http://www.cmsmatrix.org/
But I see WordPress has better ranking than OWCS : https://www.trustradius.com/compare-products/oracle-webcenter-vs-wordpress
10 Reasons Why a CMS is Important to Your Business
http://www.oshyn.com/blogs/2016/april/10-reasons-why-a-cms-is-important-to-your-business?page=NaN
What is a CMS and why is it so important? https://www.alberon.co.uk/blog/what-is-a-cms-and-why-is-it-so-importan
Some Big Names From The Big Players:
Oracle WebCenter Sites : Oracle WebCenter Portal : Oracle WebCenter Content
Adobe Experience Manager : AEM is a leader in the CMS
MS Sharepoint
SiteCore: .Net
OpenText Teamsite
IBM: Digital Experience Manager
EMC: Document Review
Alfresco
Salsify
IBM Notes
Open Source:
LifeRay : Java Based
OpenCMS : Java Based
DNN : .Net Based
Kentico : .Net Based
WordPress: PHP Based
Drupal: PHP Based
Why enterprise content management?
Enterprise content management – Wikipedia
From: http://sitestree.com/?p=10957
Categories:CMS
Tags:
Post Data:2017-07-30 12:21:14
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Hubspo #CMS
“HubSpot’s all-in-one inbound marketing software allows businesses to transform the way that they market and sell online. Our software includes everything marketers and sales teams need to attract, convert, and close customers.”
https://www.hubspot.com/products/faq/hubspot-vs-wordpress-cms From: http://sitestree.com/?p=10442
Categories:CMS
Tags:
Post Data:2017-03-14 20:51:11
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Open Source Content Management Systems #CMS
Drupal, Joomla, Plone, and WordPress are some good examples. xCatalyst is another one. You can find more information on your CMS at (under this web-site):
Check the following resources for more information on CMSes.
- http://geeksandgod.com/forum/calendar-drupal
- http://www.linux.com/feature/60948
- http://www.alledia.com/blog/general-cms-issues/joomla-and-drupal-which-one-is-right-for-you/
- http://wordpress.org/extend/plugins/events-calendar/
- http://wordpress.org/extend/plugins/events-calendar/
- http://codex.wordpress.org/Photoblogs_and_Galleries
- http://www.joomlashack.com/tutorials/158-creating-a-blog-site-with-joomla
- http://extensions.joomla.org/extensions/content-&-news/random-news
- http://www.esxinc.com/images/ESX/Documents/xCatalyst-Modules-Summary.pdf
From: http://sitestree.com/?p=3561
Categories:CMS
Tags:
Post Data:2016-07-04 15:19:00
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
Jul 27
Add Calendar/Event Support in Drupal #CMS
Required modules: Views, Date, Calendar, CCK (content), Text, Node Reference, Options Widgets. You can download the modules from Drupal web-site. For calendar, http://drupal.org/project/calendar. For date replace calendar with date in the previous url (http://drupal.org/project/calendar => date). For views, replace with views.
How to install: unzip and upload to the modules folder in the Drupal installation. Afterward, from Site Building -> Modules under Administration (in Drupal), check these modules (and also check them on what these modules are dependent)
How to work? Areas you need to play with to have customized calendars/event calendars for your site:
- Administer->Site Building->Views
- Site Configuration -> Date and Time
- Administer -> Content Management -> Date Tools
- You have to create calendar styles/customized calendars using the above options. Then you will see an option under create content to create calendars for your web-site.
- using site building -> Blocks, you can place these calendars anywhere you want
- You can also embed calendars in pages
From: http://sitestree.com/?p=3559
Categories:CMS
Tags:
Post Data:2016-07-05 15:29:55
Shop Online: https://www.ShopForSoul.com/
(Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
In Bengali: http://Bangla.SaLearningSchool.com
http://SitesTree.com
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada
