Skip to main content

POEM -વીસમીએ

હતો , બધો પ્રકાશ આપણાં ગ્રંથોમાં , તો ,
     દીવાઓ    કેમ   બુઝાયા  છેક   વીસમીએ ?
     ‎
હતા , અણુ-પરમાણું ના ઉલ્લેખો ગ્રંથોમાં , તો ,
    ધડાકા     કેમ     થયા      છેક   વીસમીએ ? 
    ‎
હતા , આપણે જ માત્ર જ્ઞાની વિશ્વમાં , તો , 
    કેવળ 'ભારતીય મુળના' કેમ રહી ગયા વીસમીએ ?
    ‎
હતા , સંજય અને નારદ આપણાં વેદોમાં , તો , 
     બધા 'પિત્રોડા' કેમ આવે છે વિદેશ થઈને વીસમીએ ?
     ‎
હતા,શસ્ત્રો અને શાસ્ત્રો શ્રેષ્ટ આદિકાળથી આપણાં , તો 
      ગુલામ  કેમ   હતા   આપણે  વીસમીએ  ? 
      ‎
હતું , પુષ્પક આપણાં વેદોમાં , તો 
   બધા 'રફાલો' ‎કેમ આવે છે યુરોપથી એક-વીસમીએ ? 
      ‎
છે , આખી દુનિયા ભૂખી જ્ઞાનની , તો 
  આપણે કેમ ફરીએ કહેવાતા ધરાયેલા,એક-વીસમીએ ?
      ‎
છે બધું અમારી પાસે કહેતાં કહેતાં , 
     ભીખ માંગતા કેમ ફરેએ આપણે  ‎, એક-વીસમીએ ?
      ‎
એમ નથી કહેતો કે છે , ' મીથ્યા ' બધુજ ,
       પંણ , અભિમાન આપણું 'મીથ્યા' છે જ ,
       ‎હજી કેમ નથી છોડતા આપણે , એક-વીસમીએ ? 
       ‎
ઊભો હું કૂપમુંડક આવીને કાંઠે ,
       હવે નથી લપાસવાનો ફરીથી ,
       ‎એ જ મારી સંકલ્પ એક-વીસમીએ .
      
                                    By VIRAJ SOLANKI
  







Popular posts from this blog

POEM - મૂંઝવણમાં

છું હું  મૂંઝવણમાં , વાંચીને દેશ નો ઈતિહાસ ; કરું  પ્રેમ   સંસ્કૃતિને   કે ઉડવું   એની હાસ ? કરું છું હું વિશ્વાસ , મતિવિહીન ગ્રંથો-વેદ-વાણીમાં; જ્યાં  કપિઓ  આવે  મદદે ને  પથ્થરો તરે પાણીમાં. તો હું ગર્વ પણ કરું છું જ્ઞાનસભર ચરકસંહિતા-આર્યભટ્ટીનો ; મહાન  આ ગ્રંથ  તબીબીશાસ્ત્રનો  ને  ઉલ્લેખ જેમાં શૂન્યનો. કરું  છું  હું  વિશ્વાસ , જ્યાં પવનને પણ હોય સૂત ; ધગધગતા સૂર્યને પણ આરોગવા સમર્થ એવા સપૂત . તો  હું  ગર્વ  પણ  કરું છું બ્રહ્મગુપ્ત , ભાસ્કર , વરાહમિહિરનો ; જેમની સચોટ  ગણતરીઓ ગ્રહણની ને ઉલ્લેખ પૃથ્વીના પથનો. કરું   છું   હું   યાદ   અપમાનો  એકલવ્ય-કરણના ; અનુભવો  કડવાએ , અસમાનતા - જાતિ-વરણના. તો  સ્મૃતિ  પણ કરું  હું ઉજ્જૈન , તક્ષશિલા , નાલંદાની ; આવકારે જે વિશ્વભરને , નીકળ્યા છે જે શોધમાં જ્ઞાનની . ભળી     ગયું   છે   દૂધમાં   પાણી...

How to create PostgreSQL database in Linux.

My chat with ChatGPT #46315 I have file name "emotion_dataset_jira.sql" how to look into data available in it The file "emotion_dataset_jira.sql" appears to be a SQL file, which is a type of file that contains structured query language (SQL) commands. To view the data contained in this file, you will need to use a program or tool that can execute SQL commands. Some popular options include: MySQL: A free, open-source relational database management system that can be used to execute SQL commands and view data in a SQL file. phpMyAdmin: A free, open-source web-based tool that can be used to manage MySQL databases and execute SQL commands. SQLite: A small, embeddable, open-source SQL database engine that can be used to execute SQL commands and view data in a SQL file. You can use any of these tool to open the SQL file and look into the data. tell me step by step process with commands, I am using linux. I...

How to server static files in Django in development step by step.

1. Create 'static' folder  app/static/<appname>/<files> 2.  update your urls.py in your project/urls as follows from django.contrib import admin from django.urls import path, include from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns = [ path('', include('order.urls')), path('admin/', admin.site.urls), ] urlpatterns += staticfiles_urlpatterns() 3. add the following line at the starting of any HTML temple page (base.html)       {% load static %}