Entries by Vectorilo

How to integrate OneSignal Push Notification in Ionic React

Complete integration steps OneSignal Push Notification Ionic React Install npm Package npm install onesignal-cordova-plugin npm install @ionic-native/onesignal ionic cap sync React apps must use Capacitor to build native mobile apps. However, Ionic Native (and therefore, Cordova plugins) can still be used. // Install Core library (once per project) npm install @ionic-native/core In you App.tsx import […]

Outsource Software Development

Software Outsourcing:        Software outsourcing, means an organization chooses other third party software agencies to carry out their software development project. It is a process of delegating control of their own business, to an eligible external organization, that has the capability to handle their business requirements. Services of Software Outsourcing:        The general software outsourcing services are […]

Amazon WorkMail migration

Do you want to move your email to amazon workmail?. This article helps you to relocate your email to amazon work mail. Amazon Web services (AWS) developed the business email and calendaring service called amazon workmail. You can easily access this work mail on desktop using email clients or their own Android and IOS applications. […]

Create PPT From Excel Macro

Sub CreateSlides() ‘Open the Excel workbook. Change the filename here. Dim OWB As New Excel.Workbook Set OWB = Excel.Application.Workbooks.Open(“E:\viratkohli.xlsx”) ‘Grab the first Worksheet in the Workbook Dim WS As Excel.Worksheet Set WS = OWB.Worksheets(1) ‘Loop through each used row in Column A For i = 1 To WS.Range(“B65536”).End(xlUp).Row ‘Copy the first slide and paste at […]

access a cookie’s value immediately after calling the setcookie()

If you want to access a cookie’s value immediately after calling the setcookie() you can’t use $_COOKIE. The reason for this is in the nature of the protocol (see https://tools.ietf.org/html/rfc6265). When you use setcookie() it defines a Cookie to be sent along with the rest of the HTTP headers to the client (see http://php.net/manual/en/function.setcookie.php). But […]

Use of MYSQL Limit vs Offset

MySQL provides a LIMIT clause that is used to specify the number of records to return. The LIMIT clause makes it easy to code multi page results or pagination with SQL, and is very useful on large tables. Returning a large number of records can impact on performance. Assume we wish to select all records […]