Skip to main content

Posts

Blender 3D Graph Builder Addon Tutorial

Graph Builder Addon lets you generate 3D Bar Graphs from simple values. The bars can have simple animation.In this tutorial,I will be making a simple 3D graph in blender with this Addon. You can download the addon on Github and download the data that I am going to use  and end result from here , in case you want to follow along . Though you can use any data you want, just make sure data values are integer and each value is separated by a comma.  Just to give you an idea Graph Builder addon work like this.   Installation Just extract the file. Open Blender and go to user preferences and select “install from the file”. Then locate and choose the graph.py file. Tutorial: There are 4 panels in the addon. We will go to them one by one and see what are their usage. Step1:  Copy Data into the data values and set the factor. Here, you want to enter the values that will be used to draw the graph. Each value represents a bar on the grap...

[Inkscape] : How to import inkscape SVGs in Html file

[Inkscape To Web]: Make beautiful sites with SVGs In this tutorial we will make a SVG drawing in Inkscape and will use it in a webpage. The goal of this tutorial is to know how to make beautiful SVG Drawing for your website. Before starting you should have following things, Familiarity with SVGs/Inkscape and HTML  Inkscape Installed. How to Embbed Step 1: Open Inkscape. Now make a simple Shape. I am making a polygon,                                       [Click on the Image to Enlarge] Step 2: Now save it as a svg. The inkscape saves its files as svgs but it is not compatiable with html. It a lot Inkscape specific(useless) data. To save it as plain Svg. Click on File->Save as. Then from dropdown box in the dialog box. Choose the .PlainSvg.  [Click on the Im...

How to Detect AdBlocker on your Website

How to Detect Ad-Blocker on your Website This article is for blogger like me who support their passion for blogging through running Ad sense or any other ads on their blog. We know(even use) Ad blockers keep annoying pop up ads away.But it also blocks the Ad-sense ads(or no so annoying ads). This is the reason why bloggers get less ad-impressions than the visitors on their blog/site.So in this post I will show you how to detect ad blocker on your site using JavaScript(and earn more :) ). This will be also useful for those who are learning web development. What is an AdBlocker(and how to deal with them)? The Ad Blocker is usually a browser plugin that disables the ads in the browser.Adblocker are really popular now-a-days and almost everyone uses it. Most of the ad blockers if not all of them lets you choose where(which site) to block ads and where to not. Hence we can force our users to whitelist our site(i.e. turn off ad blocker for our site). That is what we are g...

Termux : Linux on Android(Without Root)

Termux : Linux on Android(Without Root) Hey guys hope you all doing great, this post is little different than what i usually do but i thought it would be worth sharing it with you. I hope you find it useful and if you do tell me in the comments. Android is Based on Linux, But we cannot use it as a typical Linux distribution as Linux only forms the core part of android and Google did not added all the software and libraries as included in Linux distribution like Ubuntu or Debian. But can we have Linux like experience on the android???... well Yes and No!!. There are multiple ways to do that. Though, you may not get as good experience on a Linux distribution but very close to that. One of the and the easiest way is to use an Linux emulator for that. Termux is one such emulator that I wanted to share with you.It is a terminal emulator and Linux environment app that works directly with no rooting or setup required. It gives you a lot options for customization. Ter...

How to make Make money with Inkscape

How to make Make money with Inkscape Inkscape is a free and open source but professional vector graphics editing program for Windows, Linux and Macintosh. A Free alternative to Adobe Illustrator and is used by a lot of enthusiasts, art students and artist all around the world. Ah.. you knew this already? Right!! Otherwise why would you read this post. So here are the ways to make money with inkscape. Selling Vectors This is an obvious one but not as easy as it seems, you see there is a lot of competition, you will  hundreds of sites if not thousands for selling vectors with tens of thousands of sellers on them also it's not that you can sell anything made with inkscape you need to follow some standards.For example here is an article which might be helpful, http://sellingvector.blogspot.com/p/how-to-start-selling-vectors.html?m=1 Tutorials If you want to know more about how to sell vectors created in inkscape then you should read ...

A Quick Look at Machine learning

A Quick Look at Machine learning Ever heard of ‘Artificial intelligence’, of course you did after all we all watch sci-fi movies. But if you ever tried to know more about AI then you might have heard about Machine learning. Also in past few years it's been a hot topic in computer science. So, what is machine learning??. Let's talk about this…, Computer are everywhere today, even in your pocket (your phone).They help us do a lot of thing but in reality these are just calculators with logic and control circuitry.Therefore we can program them to do different tasks.But there are scenarios where we cannot predict the situation and its nearly impossible to program the computer for that.For instance , CCTV Cameras are installed at many places and surveillance has become very easy as it can be done remotely but we need a human to process the video from the cameras as a computer cannot tell us if everything is ok or not.Now imagine if the computer can automatically dete...

Creating Cookies in JavaScript

Creating Cookies in JavaScript   We all use a browser which automatically logs us in to our favorite sites without us having to login manually every time. A cookie is sent from a web site and stored locally on your computer. It is just a piece of data which allows web sites to remember their users. In this post we will learn how to create cookies with JavaScript. How are cookies stored? Cookies are stored in name-value pairs i.e. like this, user = deecoder This value is stored in a text file. Whenever the site related to this is visited, the cookie is added to the web request. Hence web-server doesn’t have to remember about you. How to create Cookies in JavaScript? Cookies can be created by assigning a name-value pair to the document.cookie object. This can be done like this.., document.cookie="username=Yourname; expires=Wed, 19 Nov 2018 12:00:00 UTC; path=/";     // username, expires, path are called parameters. Here we have created a...

Awesome games made in Blender Game Engine

Awesome games made in Blender Game Engine Hey guys, blender game engine is great software for making games if you are an artist especially if you are familiar with blender. (--And know python--).Over the time several games have been produced using it, though I haven't played all of them but many of them are amazing piece of art. So here's the list of awesome games that you should play at least once if you are a blender user.The list is not ordered by anything. KRUM - Edge Of Darkness KRUM is hardcore story based action RPG set in a fantasy world. The player has to survive and reach the end of the story.The player will fight enemies and bosses as the story reaches to the end.The game was developed by HA Studios Ltd and is available in 9 different languages.KRUM - Edge Of Darkness is currently available on steam. Tomato jones A physics-based puzzle/adventure game. The game is set in indiana jones like environment .”The  goal is to collect all coins and the h...

OOP : A Quick Introduction

Basics Concepts in OOP    One of the major drawbacks of procedural programming is that it's hard to model Real world problems with it as it is more action oriented. In object oriented programming we divide problem into a number of entities. These entities are called objects. An object have its own data and methods(or functions) which operate on this data. The data is hidden i.e. it cannot be access by functions outside of the object. OOP allows us to model real life problems in our program in a much easier way and makes the program more secure, extensible as compared to procedural approach. Basic concepts of object oriented programming There are some basic concepts in object oriented programming which must be understood before learning  any object oriented programming language. These are, Objects and classes Data encapsulation Data abstraction Inheritance Polymorphism Dynamic binding Message passing So let's discuss these one by one, Objects and ...

Best News Sites for web developers

Best News Sites for Web Developers,Designers and Enthusiasts  In the world of web development it is hard to keep track of everything happening around you. To keep yourself updated you need to be constantly observing the industry. Here are 5 best sites to help you out in this case. thenextweb (TNW) Founded in 2006 thenextweb provides the latest tech news from around the world. Internet of things, development, coding, infrastructure, security, cloud. Being a very popular blog among the developers thenextweb is a huge and is just more then a blog. The company have many other branches  TNW News, TNW Deals, TNW Conference. If you visited the site yet i will encourge you to do so. You will news on varying topics such as tech trends from the world including web development and much more. Link : https://thenextweb.com/ developerdrive   From their about page " DeveloperDrive is an ever-evolving creative blog by web developers, for web developers....