TO THE NEW Blog PAGES

Technology

Integrating SpringBoot with Gradle

Springboot support is provided by most of the build tools e.g. Gradle and Maven. Though grails 3.x comes with Springboot and gradle integration, there might come scenarios where you just want to create a very small and simple build that does specific task e.g. a build that will just run some threads and trigger some […]

Technology

The power of YouTube Analytics

  YouTube, the most widespread and popular video site on the web today is humongous in many aspects. YouTube’s growth is still fast-tracking despite taut competition from Facebook and others. Since its launch in November- 2009, YouTube has been home to everything from shaky home movies to fully produced videos. As well as being the […]

Technology

How to Create an Awesome Thumbnail for YouTube

Working on YouTube is fun! Not only limited to video-sharing, YouTube includes video clips, TV clips, music videos, and other content such as video blogging, short videos, and educational videos. Yes, you do the uploading and sharing of your content, but is that all? How is it that you will market your content for the […]

Application SecurityTechnology

Preventing Brute Force attacks due to OpenSSH Vulnerability (MaxAuthTries bypass)

About OpenSSH OpenSSH is an open-source suite of programs that helps us to secure network communications by encrypting the network traffic over many authentication methods and it provides secure tunneling. It eliminates eavesdropping, connection hijacking, and other such attacks. Let’s learn Preventing Brute Force attacks due to OpenSSH Vulnerability (MaxAuthTries bypass). Vulnerability We have servers […]

Technology

10 Ultimate Ways to Optimize Your Videos on YouTube

  YouTube being the second-largest search engine, it owns the most videos shared and watched within social networks like Facebook and Twitter. YouTube has over 4 billion videos being viewed every single day and has 60 hours of video being uploaded every minute. When it comes to the video market, YouTube is the biggest giant! […]

Technology

How to setup Jenkins for a Maven project

This blog post shows how to configure maven project in Jenkins. Follow these steps for Jenkins Maven project configuration: Step 1 – Starting Jenkins a) Download Jenkins Zip file and extract it(i have downloaded for windows as i am setting it up on windows7) b) In cmd go to the path you have extracted Jenkins (eg.C:\Program […]

Dipti
Dipti
Read

Technology

Git Branch Per Feature : Avoid repeated sync of feature branch using git “rerere”

In this blog we were going to discuss some “Feature branching and it’s repeated sync” disorder and it’s cure using git “rerere” to keep the sanctity of git BPF – Branch Per Feature. First of all, I would like to discuss benefits of git BPF and how we miss use it and fall in trap of “Feature branching […]

Technology

Perform any DB operation in an isolated transaction

Hi Friends, Sometimes we need to perform any DB operation in between a transaction, but due to transaction’s property, it’s getting committed only once the parent transaction will be finished. If you need to perform any operation that need to be committed immediately, irrespective of parent transaction (Example : for a dependent queuing operation etc.) […]

Digital Analytics

What is Analytics Led Marketing?

Digital Marketing is no more a buzz word as everyone seems to understand it well. At least they say so.  But each client and industry is different and needs to embrace and use Digital Marketing differently. Content Strategy, Campaign Ideas, Market Insights, Creatives are the 4 main components of any marketing strategy. Traditionally they have […]

GrailsJava/JVMTechnology

Sending Scheduled/delayed messages with RabbitMQ through java client

The requirement to send delayed/scheduled message is to publish any message with a delay time. To achieve this, earlier we had to use dead letter exchange but now we can send scheduled/delayed messages from RabbitMQ with “rabbitmq_delayed_message_exchange” plugin. we can send scheduled/ delayed messages from rabbitMQ by following these steps :- Step 1– Install rabbitMQ […]

Application SecurityTechnology

Is your MongoDB publicly accessible?

MongoDB is a NoSQL database that delivers a performance oriented, highly available and scalable database system. Recently, a large number of MongoDB instances were found to be publicly accessible over the Internet. A large amount of data was leaked due to the fact that these instances were running an outdated and unpatched version of MongoDB. […]

AWSTechnology

Configure NAT Instance on AWS

The purpose of this blog post is to configure NAT (network address translation) instance on AWS by setting up customized Virtual Private Cloud (VPC) . AWS EC2 Instances that we have launched into a private sub-nets in a VPC can’t communicate with the Internet. So we use NAT instance launched in our public sub-net in our VPC to […]