loading...

The Art of macro photography: Beginners Approach

 My approach as a beginner to macro photography comes with subtle stances at a very simple collection of peripheral whereabouts of my house.

This is a practical approach and will consist of my own little experience with macro photography experiments.




The above photograph was shot with the intension to focus on the beautiful colours that can be captured in macro photography and the subject which is a flower in this case is properly justified by this stance at least according to my opinion.
Now please look carefully at the next shot


This is a shot of a physical object and is made up of PVC. The details that were captured was quite mesmerising. I apologise for flattering myself but the efforts for the finesse is quite visible and is visually appealing to some of my critics. 
Another shot where i have used my skills in macro photography making the subject larger than life but do not take a dig at i too critically as it was mere a playful intent to capture a random object when i actually capture it so just take a look at it


Some of my suggestions at the time of macro photography since some challenged me during my ventures at it are the lighting condition and the stability and proximity of the subject.
The lighting conditions should be good and the subject should be well lit as i can say that i found it to not worth if it was tried to take macro shots during low-lit conditions. The proximity of the object affects a lot and changes the perspective of the subject.
Stability is another object to be taken care of while all kinds of photography as we all know but specially in case of macro photography stability carries a major impact.
So these are some of the aspects of macro photography and some real-life experience and a beginner's take at macro photography. Hope the reader will like it and i welcome all critics.





Genre-Nature; Style: Macro Photography


A budding flower is being portrayed in the above picture  

Use of GNU Octave over MATLAB and a general comparison between them


Introduction: 
GNU Octave is a high-level language, primarily intended for numerical computations. It provides a convenient command line interface for solving linear and non-linear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with MATLAB.

Abstract: 
GNU Octave is basically an open-source software and can be easily downloaded and freely used for solving almost all the critical problems as much as is possible in the case of Mathworks (Trade Mark.) MATLAB. Although you have to pay a high fee for access to the large library and functions provided by MATLAB, whereas in case of GNU Octave it is not so. GNU Octave is a free of cost and open-source software (comes with the perks of being an open-source software), easily customizable software. Specially for students who are spared with just one month of free subscription for the expensive MATLAB software, GNU Octave comes as a boon.

How to download: Below I will be providing with the links to download both GNU Octave and MATLAB and explain the steps to do so:

       To install GNU Octave follow the steps given below:

        
Download (gnu.org)
Download the Octave installer file from the link above.
Save the downloaded file to your computer.
Double-click on the downloaded Octave installer file.
Now, a smart screen might appear and ask for a confirmation.
Click “Yes” to confirm.
Finally, follow the installation instructions until you get a confirmation notification of a successful installation process.

      To install MATLAB follow the steps as provided below:



    1. Double click on the MATLAB icon (the binary file which we downloaded earlier). After clicking the icon, a pop-up will ask for the installer to run, click on the Run. A MathWorks Installer window will pop-up on the screen.
    2. A license Selection window will appear, a preselected license id will be highlighted with a blue background. Here you have to select your license id; this is the id which we have saved during STEP 9 of downloading of the installer (we urged to note down that id during that time) and again click on Next. 
    3. Next is Product Selection window, the first product is MATLAB 9.6, this is mandatory to select because it is the MATLAB environment, and from other products, you can choose as many of your choices and click on Next. 
    4. After downloading of all products and completion of the installation, a window appears that says to Activate the MATLAB, no need to do anything, click on the Next button. 
    5. A MATLAB shortcut will be created on the desktop as per our choice during the installation process. Now we can work with MATLAB by clicking on the icon placed there on the desktop.

Features of GNU Octave:

1. Command and variable name completion

Typing a TAB character on the command line causes Octave to attempt to complete variable, function, and file names (similar to Bash's tab completion). Octave uses the text before the cursor as the initial portion of the name to complete.

2. Command history

When running interactively, Octave saves the commands typed in an internal buffer so that they can be recalled and edited.

3. Data structures

Octave includes a limited amount of support for organizing data in structures. In this example, we see a structure "x" with elements "a", "b", and "c", (an integer, an array, and a string, respectively):
octave:1> x.a = 1; x.b = [1, 2; 3, 4]; x.c = "string";
octave:2> x.a
ans =  1
octave:3> x.b
ans =

   1   2
   3   4

octave:4> x.c
ans = string
octave:5> x
x =
{
  a =  1
  b =

     1   2
     3   4

  c = string
}

4.Short-circuit boolean operators
Octave's '&&' and '||' logical operators are evaluated in a short-circuit fashion (like the corresponding operators in the C language), in contrast to the element-by-element operators '&' and '|'.
5.Increment and decrement operators
Octave includes the C-like increment and decrement operators '++' and '--' in both their prefix and
postfix forms. Octave also does augmented assignment, e.g. 'x += 5'.

6.Unwind-protect
Octave supports a limited form of exception handling modelled after the 'unwind_protect'of Lisp. The general form of an unwind protect block looks like this:
unwind_protect
   body
unwind_protect_cleanup
   cleanup
end_unwind_protect
7.Variable-length argument lists
Octave has a mechanism for handling functions that take an unspecified number of
arguments without explicit upper limit. To specify a list of zero or more arguments,
use the special argument varargin as the last (or only) argument in the list.

function s = plus (varargin)
   if (nargin==0)
      s = 0;
   else
      s = varargin{1} + plus (varargin{2:nargin});
   end
end
8.Variable-length return lists

A function can be set up to return any number of values by using the special return
value varargout. For example:
function varargout = multiassign (data)
   for k=1:nargout
      varargout{k} = data(:,k);
   end
end
9.C++ integration
It is also possible to execute Octave code directly in a C++ program. For example,
here is a code snippet for calling rand([10,1]):

#include <octave/oct.h> ...
ColumnVector NumRands(2);
NumRands(0) = 10;
NumRands(1) = 1;
octave_value_list f_arg, f_ret;
f_arg(0) = octave_value(NumRands);

f_ret = feval("rand", f_arg, 1);

Matrix unis(f_ret(0).matrix_value());

C and C++ code can be integrated into GNU Octave by creating oct files, or using the MATLAB compatible MEX files.

Conclusion:
Majority of the features similar to MATLAB are debuted by this open source, free software
and thus GNU Octave can be fully utilised by an Engineer and other interested fellow doing
mathematical computations in higher levels.

Thus it is a very useful, and proven alternative for MATLAB alongside SCILAB and has been
providing a truly remarkable service over the years and years to come.

        Review of a story book: Anne Frank - The Diary of a Young Girl


         While being productive ranks high on seemingly every soul's list this quarantine, I still believe (and sincerely hope from the bottom of my heart) that the planet is inhabited by a bunch of gems who look beyond the mundane, possess an uncanny resemblance of serendipity and stand by the sheer beauty of doing absolutely nothing. After all, this is a pandemic and not a productivity contest. That being said, one profound source of influence in these times for me has been derived from the book 'Diary of a Young Girl' by Anne Frank. Although I read it way back in tenth grade, it still remains one of those literary works that stay with you and are relevant for years to come. What sets apart this highly nuanced book is that it captures the adolescent musings and frailties in a truly impeccable manner. I don't think that Anne realised that by putting her mere teenage rambles and whims she was leaving behind a great treasure, the treasure of thought.

        The most beautiful aspect of the book is the accuracy with which it portrays human relationships-those with your peers as well as family and goes on to discuss matters of war religion, philosophy and everything under the sun where a human mind can possibly go. It is the relatability of this exceedingly personal account that makes one go and open the same pages again and read them with the same smile you once read it with as a tenth grader in school. Anne's account offers a fascinating commentary on human courage and is a compelling self portrait of a spirited young lady with whom I share several commonalities-our interests in the royal No suggestions to view relationships and our ever-thinking overboard minds!

        Anne is also a dreamer who dwells on the deeply philosophical often igniting controversial issues and finding herself in hilarious sticky spots owing to that.

        However, one thing is for sure that Anne believes in the inherent beauty of people and life, she believes in magic and is ever hopeful for a better tomorrow when she will encounter better things. History might disagree with me and say that Anne's wish remained unfulfilled for her promise was tragically cut short but for those who know Anne right from the personal pages from her diary would know that she would be laughing her head off seeing those rather unflattering descriptions of people now reading her book, her incessant chatter almost on the verge of the book being banned in certain areas. Anne's diary is conclusive proof that words have power, they have the power to change and outlive human life, the power to make one's life worth remembering even while one thought one was doing nothing all this time.

        Somewhere in the book, Anne mentions-"What a wonderful thought it is that some of the best days of our life haven't even happened yet" and today I have an after-thought as an answer to her, just like she has had so many for me and that is the fact that the best days of your life are not found in number, age or experiences even. They are only a determinant of how much you loved and were loved. Love of any form is the force that makes life worth living and makes your day worth being counted and that Anne, you have truly earned.

        Also, I would definitely like to add her words as she left them for the reader:

        'I hope I shall be able to confide in you completely, as I have never been able to do in anyone before, and I hope that you will be a great support and comfort to me.'

        Moreover, a brief of the author and what happened to her should be know just as a reminder of how war on humanity looks like and to provide a glance at that I would like to share with you that this diary of a young Jewish girl, Annelies Marie Frank who was a thirteen-year-old girl, who had to go in hiding with her entire family during second world war, has described the horror of world war in her diary.

        Anne Frank was eventually transferred to the Bergen-Belsen concentration camp by the Nazis, where she died in March 1945.



        Coding Solution: C program to calculate simple interest

         Program Input:

        #include <stdio.h>

        int maim()

        {

        int p,r,t,int_amt;

        printf("Input principle, Rate of interest & time to find simple interest:\n");

        scanf("%d%d%d",&p,&r,&t);

        int_amt=(p*r*t)/100;

        printf("Simple interest = %d,int_amt");

        return 0;

        }


        Below, I have represented the inputs that I have used in an online c program compiler:




        Program Output:

        Input principle = 1000
        Input Rate of interest = 10(%)
        Input time = 2(Year)

        Below, I have represented the Outputs that I have obtained from  the online c program compiler:



        Output is showing
        Simple interest as 200

        Preparation of gold coin from copper coin.

        -: Preparation of gold coins from copper coin :-

        Material:-
                     1. Copper coins / copper sheets.
                     2. Zinc sulfate (ZnSO4).
                     3. Pieces of metallic zinc.
                     4. distilled water.
                     5. Beaker.
                     6. Pinch.
                     7. Stand.
                     8. Bunsen burner.
                     9. Metalic Net.

        Procedure :-
                       First, the solution of zinc sulphate (ZnSO4) should be prepared with distilled water in a small beaker. The beaker containing the solution must be heated with a Bunsen burner, placed on a stand with radiance. When heated, a piece of metallic zinc should be added to the solution. Then the copper coin should be placed in the solution. Putting it this way will put a silver lining on the connector after some time. In that case, the pin should be lifted with a pinch. Then remove the beaker and heat the coin with a bunsen burner over the metalic-net which will have a golden color. Then, once the coin is cooled in water, the golden coin will be ready.

        Observation: -
                         Copper has been converted into gold coins by the sale of chemicals. It was not converted into gold coins. The test time may not be specified.

        Sound proofing

        Creating a sound-proof dome




        To get a totally sound-proof space whatever the requirements may be.....I'd suggest a rather bizarre solution to that, may you like it someday.
        Let's make a dome with sound proofing materials like acoustic polyester or rigid fibre-glass  insulation . Now let's build the outside layer for our dome.
        We will to your surprise use magnetic materials. Let's put it in this way,...we will take a sphere and outside of it is a magnet of say N pole and inside of that consists of our soundproofing material.Now we will with the help of another magnet of N-pole,set the dome suspend in the air.The phenomena is somehow know to us to be magnetic levitation.
        So finally we get a sound proof room(dome) to read out delightful books in perfect silence.
        P.S. We suspended the sphere to avoid any kind of solid contact with the outside medium thus making it perfectly sound proof. Which otherwise would let sound pass, since most solid media are good conductor of sound .
        Further analysis made me realise to add one extra layer to my  dome. And  that is the central layer lying between inner and outer layer and that would consist of vacuumed out space.We will do this by leaving a hole in the outer layer and drawing our the gas inside.
        Thus our soundproofed dome is finally ready-to-go.

        Fact of the Sun


        The sun is the main source of our most familiar and almost all the energy of this world. Every organism is directly or indirectly dependent on solar energy. The source of this sun's energy is the reaction of the nucleus, which causes the hydrogen atoms present in the sun to become helium atoms and produces a lot of heat energy. But there is no flame blaze in the sun, because the flame can not survive in the absence of oxygen. Then it looks like a super hot, red-colored iron

        Range of Light


        The flow of photon particles is called light. Light is one type of electromagnetic wave. The light can not travel far enough because the light is scattered through various obstacles in the atmosphere of the Earth.  Because there is no atmosphere in the space, there is almost no presence of light distillatory material. So the light of a general intense light source can also pass an infinite distance. 

        Building Super Conductor

        Building Super Conductor 

        By far inventions and discoveries made less progress regarding superconductivity none the less efforts to do so brought subtle break-throughs.
        Starting with manufacture of economic superconductors for transmission and distribution of electrical power with minimal transmission losses.
        We shall now talk about LTS(low temperature superconductors)
        Superconducting is possible at low temperatures.
        Having that simple fact in mind we need not go to the roots but only certain links,it is possible to know how to make superconductivity possible.
        Thanks to Dr.Alex Muller for his contributions toward finding a cost effective cooling.
        Liquid helium can do the job.
        At -452°F it provides required low temperatures for superconductivity.
        Moreover thick ceramic oxide compounds in place of copper  as transmission wires


        is required to complete the job.
        A High Voltage transmission cables with an extra layer(jacket) for the coolant to flow should be used for conducting power with minimal resistance.