Posts

Bad NaCl helper startup ack ERROR:nacl_fork_delegate_linux.cc

Image
Got following error after installation of google chrome and solved by running solution command: ERROR:nacl_fork_delegate_linux.cc(315)] Bad NaCl helper startup ack (0 bytes) [4895:4895:0729/220859:ERROR:browser_main_loop.cc(231)] Running without the SUID sandbox! See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox_development.md for more information on developing with the sandbox on. [4895:4895:0729/220859:ERROR:gconf_listener.cc(117)] Error with gconf key '/apps/metacity/general': Client failed to connect to the D-BUS daemon: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. Gkr-Message: couldn't connect to dbus session bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply t

intl ICU version installed on your system (56.1) should match the ICU data bundled with Symfony (55.1

Image
intl ICU version installed on your system (56.1) should match the ICU data bundled with Symfony (55.1) In most cases you should be fine, but please verify there is no inconsistencies between data provided by Symfony and the intl extension. See https://github.com/symfony/symfony/issues/15007 for an example of inconsistencies you might run into. Configuration Checker This script analyzes your system to check whether is ready to run Symfony applications. RECOMMENDATIONS To enhance your Symfony experience, it’s recommended that you fix the following: intl ICU version installed on your system (56.1) should match the ICU data bundled with Symfony (55.1) In most cases you should be fine, but please verify there is no inconsistencies between data provided by Symfony and the intl extension. See https://github.com/symfony/symfony/issues/15007 for an example of inconsistencies you might run into. a PHP accelerator should be installed Install and/or enable a  PHP accelerator  

OCMOD Modification System opencart 2.3 example for Show all products module ecommerce

Image
Things to take care while making OCMOD file: File extension must be either .ocmod.zip or .ocmod.xml. Upload from admin section, Admin>>Extensions >> Extension Installer, Upload the .xomod.zip or .ocmod.xml file from here. Now go to following link and download "Display all Products" module Download show all products module You will find following ocmod example which shows how to show "All Products" links at the top menu bar. For example: <modification> <version>OpenCart Version 2.2</version> <vqmver>2.0.0</vqmver> <author>Rupak Nepali</author>    <code>List_all_Products</code> <file name="catalog/view/theme/*/template/common/header.tpl" error="skip"> <operation> <search position="after"><![CDATA[ <ul class="nav navbar-nav"> ]]></search> <add><![CDA

Statement of Purpose (SOP) written for Macquarie University

My name is FULLNAME from ADDRESS. I am very much pleased to write this Statement of Purpose to upfront myself with my intention for the further studies in Australia. I would like to pursue Master of Information Technology with a specialization in Web Engineering for 2013/2014 at Macquarie University, Sydney. Me, working as IT professional and web developer, I found many gaps between the working procedure and use of technology while developing system and websites so I am interested to improve myself thus I researched throughout the internet and find out that my advancements and improvements can be fulfilled by the Master of Information Technology with a specialization in Web Engineering thus I choose this course and your university and will be focused to achieve mastery of subject area and web technology and like to be an integral part for betterment of technology. I have done my schooling from NAMEOFSCHOOL scoring SCORE and my Higher secondary level in science scoring SCORE. Accord

Searching for best apps to develop class diagram then use nulab Cacoo

Image
Being a developer I have to design class diagram, flow charts, business organizational chart, matrix diagram, venn diagram, SWOT diagram and schedule diagram and many more. I was looking for free and  private class diagram and found this cacoo and am very happy to use it and it's drag and drop system is so easy to use. We can draw: Business Diagram like: Business organizational chart, matrix diagram, venn diagram, SWOT diagram and schedule diagram Flow Chart Mind Map Network Map like: network diagram and AWS design template Office layout Sitemap Wireframe for different devices UML where you can draw state machine diagram, use case diagram, sequence diagram, class diagram, activity diagram, package diagram Database design Greeting Card design, Happy New Year, happy holidays, happy birthday and many more Electronics diagrams like Ohm's law And also contained User defined Templates. So containing many drawing section, I am happy to use it and hope it keeps on providing free accoun

Android Development, Understanding Hello World

Image
With that confirmed, let’s take a step back and have a real look at your first Android application. Activity is the base class for the visual, interactive components of your application; it is roughly equivalent to a Form in traditional desktop development. The following snippet shows the skeleton code for an Activity-based class; note that it extends Activity, overriding the onCreate method. package com.paad.helloworld; import android.app.Activity; import android.os.Bundle; public class HelloWorld extends Activity {     /** Called when the activity is first created. */    @Override    public void onCreate(Bundle icicle) {        super.onCreate(icicle);    } } What’s missing from this template is the layout of the visual interface. In Android, visual components are called Views, which are similar to controls in traditional desktop development. In the Hello World template created by the wizard, the onCreate method is overridden to call setContentView, which lays out the user interface b

Android Application Development Tutorials, installing android sdk, java ide and ecplise

Image
Versions of the SDK, Java, and Eclipse are available for Windows, Mac OS, and Linux. Android code is written using Java syntax, and the core Android libraries include most of the features from the core Java APIs. The biggest challenge with Android, as with any new development toolkit, is learning the features and limitations of its APIs. The power of Android comes from its APIs, not from Java, so being unfamiliar with all the Java specific classes won’t be a big disadvantage. To get started, you’ll need to download and install the following:  The Android SDK  Java Development Kit (JDK) http://java.sun.com/javase/downloads/index.jsp Downloading and Installing the SDK The Android SDK is completely open. http://code.google.com/android/download.html you can use any text editor or Java IDE you’re comfortable with and use the developer tools in the SDK to compile, test, and debug the code snippets and sample applications. Developing with Eclipse Using Eclipse with the ADT plug-in for your An