Quantcast
Image

Search Results for: plugins

How to install plugins in DokuWiki

By  •  May 28, 2023

DokuWiki is a powerful but simple to use Wiki and is mainly aimed at creating documentation. Another great thing about it is that it supports plugin. You can find various plugins hosted at DokuWiki’s plugin page

There are 2 methods i]to installing plugins for DokuWiki, and you can choose any of these 2 methods;

How to change the proxy settings for Google Chrome

By  •  November 28, 2023

Google Chrome is one of the most popular web browser, offering a fast and secure browsing experience. By default, Chrome uses the default proxy settings of your operating system …
Read More

What is the best position for AdSense in blog

By  •  November 28, 2023

Placing AdSense ad units in blogs is generally the same as placing AdSense ad units in other sites, focusing on places where visitors' eyes linger the most, though it …
Read More

How to install plugin for ExtJS

By  •  November 28, 2023

ExtJS is a JavaScript library for building rich internet applications. It’s compatible with major browsers and is used to build rich, sustainable web applications, fast.

One of the good thing about ExtJS is that it supports plugin. Another good thing is, ExtJS plugins doesn’t need any installation. What you have to do to use it is to just include the plugin in your HTML code the same way as you include other JavaScripts, as the following example.

<script type="text/javascript" src="myextjsplugin.js"></script>

What’s important is the loading sequence. Depending on your code, and plugin, you might need to load the plugin before loading the core ExtJS libraries, but that just depends.

How to fix GC overhead limit exceeded in Eclipse

By  •  November 28, 2023

Eclipse will throw the below error when it runs out of memory. It normally occurs on big projects when performing memory-intensive operations, such as building workspace.

An internal error occurred during: "Building workspace".
GC overhead limit exceeded

Memory is allocated via Eclipse‘ configuration file which is executed during Eclipse‘ startup. It is located in its installation directory and named eclipse.ini. The default values are good enough for small projects, but not suffice for the bigger ones.

Below is the file’s content for Eclipse Neon;

-startup
plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.400.v20160518-1444
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.8
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m

Fixing the problem means allocating more memory for Eclipse. This is done by increasing the values of some parameters in the configuration file. You should only be concerned of the following lines;

-Xms256m
-Xmx1024m

Each lines allocate memory in Megabytes for different aspect of the program, namely the followings;

  • Xms
    • Initial memory allocation pool
  • Xmx
    • Maximum memory allocation pool for Java Virtual Machine (JVM)

There’s no one-size-fits-all solution for this issue as it depends on how much memory you need versus how much memory you have. You can start by probably doubling the amounts as in the below example and then go from there.

-Xms512m
-Xmx2048m

The changes will take effect after Eclipse is restarted.

How to enable sortable table in DokuWiki

By  •  November 28, 2023

DokuWiki’s default table is nothing but static HTML table. If you’re looking to automatically sort your tables in DokuWiki with your default installation, then you’re out of luck. Luckily there are plugins that can help extend DokuWiki’s table function.

How to change proxy setting in Google Chrome

By  •  May 28, 2023

Google Chrome is by default set to directly connect to the Internet. You can configure it to connect through a proxy by following these steps;

  1. Open Chrome‘s Setting page by going to chrome://settings from the URL bar
  2. Go to the bottom of the page and click Advanced
  3. Scroll down till you come to the System section and click on Open proxy settings to configure your proxy

    Proxy management browser plugins such as FoxyProxy will be listed in the section if installed

  4. This will open your system’s proxy configuration page and is different between operating systems. Below are examples for macOS and GNOME 2 (Linux)

  5. Configure your proxy accordingly.

How to speed up website load time

By  •  December 2, 2021

It is crucial to optimize page load time as it helps with user experience (UX) and conversion. It's also important for SEO with Google now officially using Core Web …
Read More

How to install Unity Desktop on Ubuntu

By  •  December 2, 2021

Canonical developed Unity as a graphical shell for GNOME and was first introduced in Ubuntu 10.10. Canonical has since stopped the development of Unity though UBports now maintains it. …
Read More

How to install proprietary media codecs and font on Ubuntu

By  •  December 2, 2021

Ubuntu does not automatically install some multimedia media codecs and fonts due to licensing and legal reasons. Ubuntu considers DVD, MP3, Quicktime, Windows Media and a few other as …
Read More

Top