programming

  • How to Run Your First Flask Application

    How to Run Your First Flask Application

    Flask is micro web development framework unlike Django flask doesn’t comes with everything with end to end solution like ORM etc. Sometimes which good because you don’t want bhramhastra…

    neotam Avatar
  • Javascript: Arrow function Expression

    Javascript: Arrow function Expression

    Arrow functions were introduced in ES6 (EcmaScript 6) which provides the more compact way to work with anonymous functions with smaller and compact syntax making code more readable and…

    neotam Avatar
  • How to convert webp image file format to jpeg image format using python

    How to convert webp image file format to jpeg image format using python

    WebP is the image format that provides the effective lossy and lossless compression compared with other formats like PNG and JPEG for images on the web. Using WebP formats…

    neotam Avatar
  • How to Export and Import Fixtures in Django

    How to Export and Import Fixtures in Django

    A fixture is a collection of file that hold the serialized content of the database. Files that comprise the fixture can be distributed across multiple directories and application in…

    neotam Avatar
  • scanf() vs gets() functions in c-language

    Difference between scanf() and gets() in C Language

    Both functions scanf() and gets() are used to read the input from standard input (keyboard) But, there are differences in how they treat the input. scanf() Function gets() Function…

    neotam Avatar
  • Characters and Strings in Go Language

    Characters and Strings in Go Language

    Go Programming language has two data types rune and string that are used to define characters and strings in go respectively Characters in Go Characters are runes in go…

    neotam Avatar
  • Looping in Go Programming Language

    Looping in Go Programming Language

    Go language has only one looping construct, that is for. There are three forms of for loops in Go. For can be used with single condition much like while…

    neotam Avatar
  • How to use python built-in function filter with example

    How to use python built-in function filter with example

    Python built-in function filter is helpful sometimes to write a compact code. Filter function takes two arguments “function” and “iterable”. Each element of iterator which is returned by iterable…

    neotam Avatar
  • How to write a program to find if given year is leap year in Go Language

    How to write a program to find if given year is leap year in Go Language

    A leap year is the year which divisible by 4. But all century(multiples of 100) years that are divisible 4 are not leap years, in such a case it…

    neotam Avatar
  • Compile and install python from source on Linux

    Compile and Install Python from Source On Linux

    All Linux distributions come with latest stable python release. Yet, if you want to try out new python for its elegant new features. You can compile and install it…

    neotam Avatar