Monday, January 2, 2023

remove Tid or Nid from Exposed filter of views Drupal9

 This is small code for remove Tid or Nid from Exposed filter of views Drupal9.

you need to add code into your custom javascript


(function($, Drupal, drupalSettings){

  'use strict';


   Drupal.behaviors.my_module = {

     attach: function(context) {


    // Remove TID's onload.

    Drupal.my_module.remove_tid();


    // Remove TID's onchange.

    jQuery('body').find('#your form ID').find('.form-autocomplete').on('autocompleteclose', function() {

      Drupal.my_module.remove_tid();

    });

                jQuery('body').find( '# your form id').find('.form-autocomplete').on('autocompleteclose', function() {

      Drupal.my_module.remove_tid();

    });


  }

  };


  Drupal.my_module = {

    remove_tid: function () {

      let field_autocomplete = jQuery('body').find('.form-autocomplete');

     // let autocomplete_tid_stripped = field_autocomplete.val().split(' ')[0];

//      console.log(autocomplete_tid_stripped);

                field_autocomplete.val(field_autocomplete.val().replace(/\(\d+\)/i, ""));

    },

  };


  })(jQuery, Drupal, drupalSettings);



Tuesday, January 12, 2021

कोरोना





२०२० हे पूर्ण वर्ष कोरोना  मुळे  गेले , नवीन असा काही करता आला नाही .  माझा स्वतःचा असा अनुभव कि मार्च  ते जुलै पुणे मध्ये कसे बसे काढले . 

औगेस्ट मध्ये होऊ नये या  भीती ने मी रत्नागिरी मध्ये निघून गेलो. तिकडे मस्त ३ ते ४ महिने काम व आराम केला. 

पुणे मध्ये परत नोव्हेंबर ला आलो दिवाळी साठी . डिसेंबर ला नेमका १ तारखेला ताप आलाच. 


जवळचा डॉक्टर दाखवून घेतले तर त्यांनी २ ३ दिवस गोळ्या देऊन पण ताप येतच होता. मग आमचा आयुर्वेद डॉक्टर ना दाखवून ३ ४ दिवस काढले  तरी काय जात नव्हता ताप . ह्या मध्ये ६ ते ७ दिवस घालवले. 

मग मात्र मला कॉरोन ची टेस्ट हे करावी लागली. हि टेस्ट मी स्वतः दीनानाथ मंगेशकर हॉस्पिटल मध्ये दाखवून  घेतले . 

कोविड सती असलेले ते वॉर्ड मध्ये जाऊन चेकिंग करणे खूप धैर्य लागते . भीती निघून गेली होती पोस्टिव्ह किंवा नेगीतिवे चा टेन्शन नव्हता, ताप लवकर जावा हे वाटत होत. 


मागील ८ दिवस हा त्रास म्हणजे असा कि रात्री ताप भरून येणे आणि झोप अजिबात न लागणे .  मळमळ मुळे जेवण तर जाताच नवहतं .  खूप थकवा असा येत होता .  


मग जसे रिपोर्ट हे पोस्टिव्ह आले तास डॉक्टर नि मला पूर्ण १ महिनेच चा गोळ्याचा कोर्से दिला . आणि लगेच १ दिवसात ताप  जाऊन मग आराम मिळाला 

पण १५ दिवस मात्र घर मध्ये बंद होते पण मुलगा आणि पत्नी दोघे पण माझा सोबत असून त्यांना त्रास नाही झाला . 


१ २ दिवस मात्र आम्ही लांब राहिलो पण नंतर मात्र आम्ही एकत्र चा होतो. कारण माणूस त्या मध्ये मानसिक खूप थकवा येतो . त्याचा मनात चांगला असा काही येत नाही आत्मविश्वास कमी होतो . 


मला थोडा हृदय  मध्ये धडधड वाढत असताना मी डॉक्टर ना दाखवून सर्व चेक करून घेतले . सर्व नॉर्मल आहे तेव्हा  बर कुठं  वाटलेलं 


गोळी तापाची ५ दिवसाची होती .  आणि सि आणि बी  व्हिटॅमिन च्या गोळी ह्या पूर्ण महिना होता. रक्त पातळ होयची गोळी पण घेतली १ महिना. 

थकवा आणि स्ट्रेस दोनी हळू हळू कमी होत होत.



म्हणता म्हणता १४ दिवस गेले. झोप येत नव्हती म्हणून झोपे चे गोळी घेतली.  फक्त थकवा बाकी काही त्रास नव्हता . 


एक महिना मध्ये मस्त झालो पण थकवा काही जात नव्हता .  १ महिना उलटून जसा गेला तास परत एकदा झोरात काम पहिला सारखी चालू झाली 





Sunday, July 19, 2020

Responsive Css for Mobile Device

From few days Im facing issue on Responsive Css for bootstrap. I have try to make responsive Css but unable to do this css.
after that i discuss with my UI friend and he solved my issue. he given below CSS benchmark.

only solution is that we can write our desktop CSS after that write the below media query into CSS.
Media query write with from max 1280 then 768 and 312px.

@media only screen and (max-width: 1280px) {}
@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1024px) {}
@media only screen and (max-width: 959px) {}
@media only screen and (max-width: 800px) {}




@media only screen and (max-width: 768px) {}
@media only screen and (max-width: 753px) {}
@media only screen and (max-width: 736px) {}
@media only screen and (max-width: 711px) {}
@media only screen and (max-width: 640px) {}
@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 569px) {}
@media only screen and (max-width: 568px) {}
@media only screen and (max-width: 533px) {}




@media only screen and (max-width: 480px) {}
@media only screen and (max-width: 424px) {}
@media only screen and (max-width: 414px) {}
@media only screen and (max-width: 400px) {}
@media only screen and (max-width: 384px) {}
@media only screen and (max-width: 375px) {}
@media only screen and (max-width: 360px) {}
@media only screen and (max-width: 320px) {}

Friday, March 6, 2020

Passport Process for Pune India


Passport Process for Pune India

Recently I have reissue passport , struggle lot but finally got passport.

What are the steps to get for passport

1)      First a fall goto Indian passport website and open you account.
Then login into system
2)      You will get lot of option on left side link
4)      After submitting your application goto payment option and paid payment
5)      Select appointment date and finish online process. Print Form and receipt. check address of your passport office
6)      Goto Passport Office with your Forms with Address Proof and Identity Proof self attested xerox copy with original
7)      First Show your mobile appointment SMS or Show Appointment receipt on Gate
8)      Then go for Token show your again passport form and details
9)      After getting Token then goto  (A) Waiting room, your token number should display on TV screen with count number.
10)   Then goto A Counter number and show your form and proofs.
11)   A counter  validate your form , taking your thumb hand print on screen.
12)   After A counter complete then goto B counter
13)   B counter  Person check your Orignal Proof and send to C counter
14)   C counter waiting time is longer 
15)   When you goto C counter then show again proof and forms
16)   C counter person check your all proof and submit online request and granting your passport.
17)   This is final stage and submit your token on exit gate.
18)   You will get after 1 day police verification call
19)   Submit pan card,aadhar card to police verification
20)   By Post you will get Passport.

Friday, December 8, 2017

गणेशगुळे समुद्र किनारा



गणेशगुळे हा समुद्र कोकणात रत्नागिरी मध्ये आहे .  हा समुद्र फार लोकांना माहित नसल्यामुळे लोकांची गर्दी कमी असते. म्हणजे लोक हि नसतात असा म्हणा.
अतिशय शांत असा परिसर असा आहे. हॉटेल व खायची सोय फार नाही, पण हा समुद्र पावस या गावा जवळ आहे त्यामुळे राहची आणि खायची सोय होईल.

जाण्याची सोय म्हणजे तुम्ही रत्नागिरी मधून पावस या गावी जावा. तिकडून गणेशगुळे या ठिकाणी हा समुद्र मिळेल. ताडी आणि माडी ची सोय सुद्धा होईल.

समुद्र थोडा जवळ गेला कि खोल आहे. त्यामुळे जरा जपूनच जावा. ट्रिप स्पॉट म्हणून मस्त स्पॉट आहे.

Sunday, October 23, 2016

CodeIgniter Features

  • Model-View-Controller Based System
  • Extremely Light Weight
  • Full Featured database classes with support for several platforms.
  • Query Builder Database Support
  • Form and Data Validation
  • Security and XSS Filtering
  • Session Management
  • Email Sending Class. Supports Attachments, HTML/Text email, multiple protocols (sendmail, SMTP, and Mail) and more.
  • Image Manipulation Library (cropping, resizing, rotating, etc.). Supports GD, ImageMagick, and NetPBM
  • File Uploading Class
  • FTP Class
  • Localization
  • Pagination
  • Data Encryption
  • Benchmarking
  • Full Page Caching
  • Error Logging
  • Application Profiling
  • Calendaring Class
  • User Agent Class
  • Zip Encoding Class
  • Template Engine Class
  • Trackback Class
  • XML-RPC Library
  • Unit Testing Class
  • Search-engine Friendly URLs
  • Flexible URI Routing
  • Support for Hooks and Class Extensions
  • Large library of “helper” functions

Thursday, January 23, 2014

Drupal Basic

Nodes
Content types in Drupal are derived from a single base type referred to as a node. Whether it’s a blog
entry, a recipe, or even a project task, the underlying data structure is the same. The genius behind this
approach is in its extensibility. Module developers can add features like ratings, comments, file
attachments, geolocation information, and so forth for nodes in general without worrying about whether
the node type is blog, recipe, or so on. The site administrator can then mix and match functionality by
content type. For example, the administrator may choose to enable comments on blogs but not recipes
or enable file uploads for project tasks only.
Nodes also contain a base set of behavioral properties that all other content types inherit. Any node
can be promoted to the front page of the web site, published or unpublished, or even searched. And
because of this uniform structure, the administrative interface is able to offer a batch editing screen for
working with nodes.

Fields
Content in Drupal is composed of individual fields. A node title is a field, as is the node body. You can
use fields in Drupal to construct any content type that you can think of—for example, an Event. If you
think about an Event, it typically contains a title, a description (or body), a start date, a start time, a
duration, a location, and possibly a link to register for the event. Each of those elements represents a
field. In Drupal we have the ability to create content types using fields—either programmatically by
creating a module, or through the Drupal administrative interface by creating a new content type and
assigning fields through the user interface. The great news is that the Field API makes it extremely easy
to create simple to complex content types with very little programming.

Blocks
A block is information that can be enabled or disabled in a specific location on your web site’s template.
For example, a block might display the number of current active users on your site. You might have a
block containing links to the most popular content on the site, or a list of upcoming events. Blocks are
typically placed in a template’s sidebar, header, or footer. Blocks can be set to display on nodes of a
certain type, only on the front page, or according to other criteria.
Often blocks are used to present information that is customized to the current user. For example,
the user block contains only links to the administrative areas of the site to which the current user has
access, such as the “My account” page. Regions where blocks may appear (such as the header, footer, or
right or left sidebar) are defined in a site’s theme; placement and visibility of blocks within those regions
is managed through the web-based administrative interface.