A Developer Journey who codes for fun

Daily Dose Of Code

  • Home
  • Dot.Net Basics
    • .Net Basics
      • CTS
      • CLS
      • CLR
      • Strong Vs Weak Ref
      • .Net Framework
      • What is Manifest
    • Memory Management
      • Garbage Collection 1
      • Garbage Collection 2
      • Circular Reference
  • C Sharp
    • Abstract Class in C#
    • Interfaces in C#
    • Value type by Val and By Ref
    • Var keyword
    • Null Coalescing Operator
    • Buit-in code snippets
  • OOPS
    • Abstraction and Encapsulation
    • Polymorphism
    • Inheritence
    • Aggregation
  • Threading
    • Delegates
      • Calling Delegate using Invoke, BeginInvoke
      • Multicast Delegate
      • Exception Handling in Multicast Delegate
      • Action
      • Predicate
      • Func
    • Synchronization
    • Thread Pool
    • Exception Handling
    • TPL
  • Design Pattern
    • Creational Patterns
      • Singleton Pattern
      • Factory Pattern
      • Abstract Factory Pattern
      • Prototype Pattern
      • Builder Pattern
    • Structural Patterns
      • Adapter Pattern
      • Bridge Pattern
      • Composite Pattern
      • Proxy Pattern
      • Facade Pattern
      • Decorator Pattern
      • Flyweight Pattern
    • Behavioral Patterns
      • Command Pattern
      • Interpreter Pattern
      • Iterator Pattern
      • Mediator Pattern
      • Memento Pattern
      • Observer Pattern
      • State Pattern
      • Strategy Pattern
      • Visitor Pattern
      • Chain Of Responsibility Pattern
      • Template Pattern
  • Data Structures
    • Generic List in C#
    • 2d array to 1d array
    • 3d arrayto 1d array
    • Linked List
      • Singly Linked List in C#
    • Queue
      • Dummy Data 1
    • Stack
      • Dummy Data 2
    • Tree
      • Dummy Data 3
    • Graph
      • Dummy Data 4
  • WCF
    • WCF Service using VS 2015
  • Scripts
    • Chrome Extensions
      • Create a Chrome Extension
      • Facebook autologout script
      • Gmail autologout script

Auto logout chrome extension for Gmail

 Unknown     1:37 AM     54 comments   

Hello Friends, In the last article we learned to create a sample chrome extension. Here we are going to create auto logout Gmail script as an extension.

In case you want to learn how to create a sample extension please visit this link. So here we are not going to learn the basics of extension. Lets go through the code.

Step 1 - Create a manifest.json file. It should contain a valid json content –
e.g –
{
  "manifest_version": 2,
  "name": "Logout from Gmail",
  "description": "Auto logout from Gmail after 5 minute.",
  "version": "1.0",
  "author": "Saurabh Singh",
  "browser_action": {
    "default_title":"You will be logged out in 5 minute.",
    "default_icon": "icon.png",
    "default_popup": "popup.html"  },
  "content_scripts":[
    {
      "matches" : ["https://mail.google.com/*"],
      "js" : ["Gmail.js"]
    }],
  "permissions": [
    "activeTab",
    "idle",
    "storage",
    "tabCapture",
    "tabs",
    "https://mail.google.com/*"  ]
}
Step 2- In content Script we mentioned a js file which will be loaded after adding extension at chrome. Let’s see the code.
var timer = window.setInterval(logout, 500000);
function Validate(object){
   if(typeof object === 'undefined')
   {
      return true;
   }   return false;
}
function logout() {
   var signoutButton = document.getElementById("gb_71");
   if (!Validate(signoutButton)) {
      alert("Time is up. You will be logged out");
      signoutButton.click();
   }
   clearTimeout(timer);
}
Step 3 – Create an icon file icon.png and place it at the same folder structure.
<html>
<head>
    <style>
        body {
            font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
            font-size: 100%;
        }
        #status {
            /* avoid an excessively wide status text */
            white-space: pre;
            text-overflow: ellipsis;
            overflow: hidden;
        }
    </style>
    </head>
<body>
<h4>Auto Logout from Gmail</h4></body>
</html>

We are good with our Auto log out facebook extension. In case you want to download the code please ClickMe.
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook

Related Posts:

  • Send mail message to .net Environment (Enjoy Mail System)Namespaces:using System;using System.Web.Mail; Code:static void Main(string[] args){ MailMessage mailMsg = new MailMessage(); mailMsg.From =… Read More
  • Network Operations in C# (Play with system)Retrieve DNS computer namepublic static void Main(string[] args){ Console.WriteLine(“DNS: {0}”, System.Net.Dns.GetHostByName“LocalHost”).HostName);… Read More
  • Obtain IP address and hostNamespaces:using System;using System.Net; Code:static void Main(string[] args){ Get Host Name string host = Dns.GetHostName(); Console.… Read More
  • To get the system Icons(handle of system imagelist)[StructLayout(LayoutKind.Sequential)] public struct SHFILEINFO { public IntPtr hIcon; public IntPtr iIcon; … Read More
  • To close the application from task manager.If you have closed your appplication but still it runs in task manager then you can use this method to kill the thread.It happens only when some threa… Read More
Older Post Home

54 comments:

  1. NandhiniMarch 29, 2017 at 2:50 AM

    Great post! I am see the programming coding and step by step execute the outputs.I am gather this coding more information. It's helpful for me my friend. Also great blog here with all of the valuable information you have.
    Manpower Agencies in Chennai

    ReplyDelete
    Replies
      Reply
  2. Nicole BoltonJanuary 22, 2018 at 3:41 AM

    Excellent and very cool idea and the subject at the top of magnificence and I am happy to this post..Interesting post! Thanks for writing it. What's wrong with this kind of post exactly? It follows your previous guideline for post length as well as clarity..
    Manufacturing ERP
    ERP software companies
    Best ERP software
    ERP for the manufacturing industry
    CCTV Camera Installation in Chennai

    ReplyDelete
    Replies
      Reply
  3. Amelia LilyJanuary 22, 2018 at 6:14 AM

    Awesome post! A very good step-by-step guide especially for a beginner like me. It’s overwhelming with information, thank you for making it easy and very detailed.. I’ll pop some questions here, if I need help, hope that’s okay.
    Rainwater Harvesting chennai
    Turnkey Interior Contractors in Chennai
    Interior Contractors in Chennai
    Office Interiors in Chennai
    Best Architects in Chennai

    ReplyDelete
    Replies
      Reply
  4. MYOB SupportJune 5, 2019 at 3:17 AM

    Thanks for sharing such an informative post with us and for more further queries please do get in touch with our expert technician. contact MYOB Support .

    ReplyDelete
    Replies
      Reply
  5. qbcustomerhelpJuly 4, 2019 at 8:55 AM

    Quickbooks enterprise support

    Use QuickBooks Enterprise Support Team to fix QuickBooks Enterprise Issues. Please contact QuickBook Support Team (+1 (833) 400-1001) for help from a certified QuickBooks specialist.

    ReplyDelete
    Replies
      Reply
  6. qbcustomerhelpJuly 4, 2019 at 8:58 AM

    Quickbooks enterprise support number

    Call +1 (833) 400-1001 to solve QuickBooks Enterprise issues through QuickBook Enterprise Support. Please contact QuickBooks Support Team (+1 (833) 400-1001) for help from a certified QuickBooks specialist.

    ReplyDelete
    Replies
      Reply
  7. Quicken Tech Support NumberJuly 6, 2019 at 3:15 AM

    Updating your software with a free patch is the fastest and easiest way to ensure that your Quicken is working properly. If you are facing any issues regarding to Quicken contact directly to, Quicken Tech Support Number team.

    ReplyDelete
    Replies
      Reply
  8. DedicatedHosting4uJuly 27, 2019 at 4:01 AM

    It is often a very beautiful post. First, I would choose several reasons for swing stress, but the association plays a huge role in hosting. Fantastic stuff.

    DedicatedHosting4u.com

    ReplyDelete
    Replies
      Reply
  9. lexmark printer supportAugust 30, 2019 at 11:59 PM

    If you need a best technical support for all printers. You need to contact Lexmark printer support number is our toll-free number and it is available 24*7.

    hp printer support | Samsung printer support

    ReplyDelete
    Replies
      Reply
  10. Quickbooks ExpertSeptember 5, 2019 at 10:19 PM

    We are the one stop solution to all your glitches in the Quickbooks Payroll Support Phone Number 1-800-986-4607. We are Providing immediate & effective response to the user. Our team constitutes of various qualities.Our team is very friendly & polite. So, whatever the issue you are preoccupied .

    ReplyDelete
    Replies
      Reply
  11. Quickbooks ExpertNovember 5, 2019 at 8:39 PM

    Nice Blog ! Do you need instant help to fix your QuickBooks issues? If yes, we are here to help you. Dial our QuickBooks Toll Free Phone Number +1-800-986-4607 now.our team have are 24*7 availability & very Experienced.
    View on Map: https://tinyurl.com/yyah7zez.

    ReplyDelete
    Replies
      Reply
  12. The Qb PayrollNovember 6, 2019 at 8:47 PM

    Get connected with QuickBooks Phone Number Support +1(800)986-4591, to resolve error problems in the software. The experts deployed on the support line is to deliver immediate assistance regarding QuickBooks & its issues. If having trouble in QuickBooks, get connected with the experts by calling on the support phone Number. For More Visit: https://www.quickbooksphonenumbersupport.com/

    ReplyDelete
    Replies
      Reply
  13. FainahassanNovember 9, 2019 at 2:29 AM

    Thank you for sharing this interesting article, It was quite informative and looking for more such article from your end. We do have a article on printers. If you have any issue related to printers then you can contact or visit our websites and we will be happy to help you out.

    canon printer support

    ReplyDelete
    Replies
      Reply
  14. QuickBooks Payroll SupportDecember 2, 2019 at 9:12 PM

    Very well explained and informative blog click here for
    Quickbooks POS Support Phone Number and for more detail dial on our support number 844-908-0801

    ReplyDelete
    Replies
      Reply
  15. Tripu DesignDecember 3, 2019 at 4:29 AM

    Thank you for sharing your wonderful information. for professional graphics,
    work contacts me. I am afreelance designer in gurgaon.
    graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance logo designer in gurgaon
    freelance logo designer in gurgaon
    freelance web designer in gurgaon
    freelance website designer in gurgaon
    freelance designer in gurgaon
    freelance website designer in gurgaon
    freelance web designer in gurgaon
    freelance graphic designer services in gurgaon
    freelancer graphic designer services in gurgaon
    freelancer graphic designer services in gurgaon
    freelancer graphic services in gurgaon
    freelancer logo services in gurgaon
    freelancer logo services in gurgaon
    freelancer web designer services in gurgaon
    freelancer web designer services in gurgaon
    freelance web designer services in gurgaon
    freelance website designer services in gurgaon
    freelance website designer services in gurgaon
    freelance logo designer service in gurgaon
    freelance logo designer service in gurgaon
    logo designer in gurgaon
    brochure design in gurgaon
    logo design in gurgaon
    freelance logo design in gurgaon
    freelance logo designer in gurgaon
    freelance logo designer in gurgaon

    ReplyDelete
    Replies
      Reply
  16. Tripu DesignDecember 3, 2019 at 4:29 AM

    Thank you for sharing your wonderful information. for professional graphics,
    work contacts me. I am afreelance designer in gurgaon.
    graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance graphic designer in gurgaon
    freelance logo designer in gurgaon
    freelance logo designer in gurgaon
    freelance web designer in gurgaon
    freelance website designer in gurgaon
    freelance designer in gurgaon
    freelance website designer in gurgaon
    freelance web designer in gurgaon
    freelance graphic designer services in gurgaon
    freelancer graphic designer services in gurgaon
    freelancer graphic designer services in gurgaon
    freelancer graphic services in gurgaon
    freelancer logo services in gurgaon
    freelancer logo services in gurgaon
    freelancer web designer services in gurgaon
    freelancer web designer services in gurgaon
    freelance web designer services in gurgaon
    freelance website designer services in gurgaon
    freelance website designer services in gurgaon
    freelance logo designer service in gurgaon
    freelance logo designer service in gurgaon
    logo designer in gurgaon
    brochure design in gurgaon
    logo design in gurgaon
    freelance logo design in gurgaon
    freelance logo designer in gurgaon
    freelance logo designer in gurgaon

    ReplyDelete
    Replies
      Reply
  17. anaJanuary 28, 2020 at 8:53 AM

    Class College Education training Beauty teaching university academy lesson teacher master student spa manager skin care learn eyelash extensions tattoo spray

    daythammynet
    daythammynet
    daythammynet
    daythammynet
    daythammynet
    daythammynet
    daythammynet
    daythammynet
    daythammynet

    ReplyDelete
    Replies
      Reply
  18. QuickBooks Payroll SupportFebruary 4, 2020 at 2:00 AM

    Do you want help to get your QuickBooks issues resolved in seconds? If yes, Dial our QuickBooks Customer Service Number 855-907-0406 now! We will let you do your accounting duties without any interruptions.

    ReplyDelete
    Replies
      Reply
  19. Quickbooks ExpertFebruary 11, 2020 at 10:12 PM

    Nice Blog ! Do you Need instant help fixing problems with your QuickBooks? Now dial our QuickBooks Payroll Support Phone Number 855 -9O7-O4O6! We have technical experts who can instantly fix your problems.

    ReplyDelete
    Replies
      Reply
  20. Quickbooks ExpertFebruary 12, 2020 at 10:45 PM

    Dealing with QuickBooks Problems is no more a hassle now! Dial QuickBooks Support Phone Number 855-907-0406 when you experience the issue.
    View on Map: QuickBooks Customer Service

    ReplyDelete
    Replies
      Reply
  21. Quickbooks ExpertFebruary 17, 2020 at 1:35 AM

    If you need help in solving issues you are facing in any of the above versions, you can connect with us at our QuickBooks Support Phone Number New York 855-907-0406.
    View On Map: QuickBooks Support Phone Number.

    ReplyDelete
    Replies
      Reply
  22. RIA Institute of TechnologyMarch 12, 2020 at 12:46 AM

    Thank you so much for these kinds of informative blogs...
    Devops Training in Bangalore

    ReplyDelete
    Replies
      Reply
  23. UnknownJune 4, 2020 at 7:06 PM


    ReplyDelete
    Replies
      Reply
  24. UnknownJune 4, 2020 at 7:08 PM


    ReplyDelete
    Replies
      Reply
  25. KUBETJune 9, 2020 at 9:26 PM

    TOPSoiCau - Chuyên trang SOI CẦU MB, MT, MN VIP 24h tốt nhất Việt Nam 247 cho anh em tham khảo, lấy số đẹp. Dự đoán kết quả xổ số 3 miền Bắc, Trung, Nam nhanh nhất hàng ngày.

    Xem thêm: #topsoicau, #soicau, #soicauxsmb, #soicauxsmt, #soicauxsmn, #dudoanxsmb, #dudoanxsmt, #dudoanxsmn, #soicaurongbachkim, #soicauviet, #soicaulotto, #soicaulovip, #soicau3mien, #soicau7777, #soicau247, #soicau555, #soicau366, #soicauwap, #soicau568, #soicau24h, #soicau888, #soicau666, #soicauwin2888, #soicaukubet, #soicaukhongtu


    https://www.domestika.org/en/topsoicaucom

    https://sketchfab.com/topsoicau

    https://stocktwits.com/topsoicau

    https://vimeo.com/topsoicau/about

    https://gab.com/topsoicau



    Website: TOPSoiCau.com


    ReplyDelete
    Replies
      Reply
  26. QuickBooksJuly 14, 2020 at 10:09 PM

    Lockdown is running in the whole country due to coronavirus, in such an environment we are committed to provide the best solutions for QuickBooks Support Phone Number.
    Click Here to Know How to fix QuickBooks error cc 501 to get in touch.
    Dial : 1-844-908-0801

    ReplyDelete
    Replies
      Reply
  27. soi cau 247 meAugust 21, 2020 at 9:49 AM

    Wesite https://soicau247.me được biết đến là một diễn đàn được thành lập dành riêng cho “tín đồ” xổ số . Đặc biệt, để hỗ trợ người chơi tìm được những con số may mắn, tỷ lệ trúng cao nên Soi Cầu 247 đã áp dụng các phương pháp soi cầu lô hiện đại
    Số 16 Liễu Giai, Ba Đình, Hà Nội
    sdt: 0989898989

    #soicau247me #soicau247 #soicaume247 #chuyengiasoicau247

    https://www.scoop.it/u/soi-cau-247-me
    https://www.deviantart.com/soicau247me
    https://www.diigo.com/profile/soicau247me
    https://vk.com/soicau247me
    https://www.instapaper.com/p/8068130
    https://soicau247me.tumblr.com/
    https://www.vingle.net/soicau247me

    ReplyDelete
    Replies
      Reply
  28. soi cau 247 meAugust 21, 2020 at 9:49 AM

    Wesite https://soicau247.me được biết đến là một diễn đàn được thành lập dành riêng cho “tín đồ” xổ số . Đặc biệt, để hỗ trợ người chơi tìm được những con số may mắn, tỷ lệ trúng cao nên Soi Cầu 247 đã áp dụng các phương pháp soi cầu lô hiện đại
    Số 16 Liễu Giai, Ba Đình, Hà Nội
    sdt: 0989898989

    #soicau247me #soicau247 #soicaume247 #chuyengiasoicau247

    https://ok.ru/soicau247me
    https://dashburst.com/soicau247me
    https://muckrack.com/soicau247me
    https://ello.co/soicau247me
    https://www.reddit.com/user/soicaume247
    http://soicau247me.over-blog.com/
    http://www.myfolio.com/soicau247me

    ReplyDelete
    Replies
      Reply
  29. thomasSeptember 4, 2020 at 9:18 PM

    nice post!
    Worried About QuickBooks Support ?Get in touch with QuickBooks expert for instant solution.
    Dial QuickBooks Support Number 1-844-514-7111

    ReplyDelete
    Replies
      Reply
  30. thomasSeptember 6, 2020 at 10:26 PM

    Get Your Error and Problem Solve With QuickBooks Expert 24*7 live.
    Dial QuickBooks Pos Support Phone Number to get in touch for
    More Details Dial : 1-844-514-7111

    ReplyDelete
    Replies
      Reply
  31. thomasSeptember 7, 2020 at 10:59 PM

    Get Your Error and Problem Solve With QuickBooks Expert 24*7 live.
    Dial Phone Number for QuickBooks to get in touch for
    More Details Dial : 1-844-514-7111

    ReplyDelete
    Replies
      Reply
  32. solar water heaterOctober 8, 2020 at 1:11 AM

    Chuyennhasgthanhhung.com - là công ty cung cấp dịch vụ chuyển nhà uy tín ✅✅✅ Liên hệ ngay chuyển nhà trọn gói Hà Nội - chuyển nhà tại Hà Nội để được tư vấn và khảo sát miễn phía
    Từ khóa chuyển nhà trọn gói Thành Hưnhttps://www.woddal.com/solarescooW
    https://gitlab.redox-os.org/eswater
    https://gitlab.redox-os.org/eswater/diy-hot-water-storage-tank-2020
    https://forums.prosportsdaily.com/member.php?790932-eswaterqsa
    https://forum.cloudron.io/user/eswater
    https://www.oaklandperio.com/User-Profile/userId/112700

    ReplyDelete
    Replies
      Reply
  33. Online FrontDecember 1, 2020 at 10:49 PM

    Excellent post. I was always checking this blog, and I’m impressed! Extremely useful info specially the last part, I care for such information a lot. I was exploring this particular info for a long time. Thanks to this blog my exploration has ended.
    If you want Digital Marketing Serives :-
    Digital marketing Service in Delhi
    SMM Services
    PPC Services in Delhi
    Website Design & Development Packages
    SEO Services PackagesLocal SEO services
    E-mail marketing services
    YouTube plans

    ReplyDelete
    Replies
      Reply
  34. UnknownJanuary 12, 2021 at 4:54 AM

    Excellent post. I was always checking this blog, hair transplantation success rate

    ReplyDelete
    Replies
      Reply
  35. PrintersolutionAugust 14, 2021 at 2:20 AM

    Thanks for choosing this specific Topic. As i am also one of big lover of this. Your explanation in this context is amazing. Keep posted these overwarming facts in front of the world.
    Printer customer support number

    ReplyDelete
    Replies
      Reply
  36. Varsha SharmaDecember 20, 2021 at 1:23 AM

    These are genuinely fantastic ideas about blogging really. You have touched some very nice points here. Please keep up this good writing.

    BSc Time Table

    BSc 1st year time table

    BSc 2nd year time table

    BSc 3rd year time table

    ReplyDelete
    Replies
      Reply
  37. dhanshree pannel chartNovember 24, 2022 at 12:43 AM

    You have great ideas to share something like this. Thanks for share this info.
    royal meenakshi pannel chart | kalyan matka pannel chart | shubhank pannel chart.

    ReplyDelete
    Replies
      Reply
  38. BuğraSeptember 26, 2023 at 7:47 PM

    https://bayanlarsitesi.com/
    Eskişehir
    Erzincan
    Ardahan
    Erzurum
    N8L7NE

    ReplyDelete
    Replies
      Reply
  39. BinaryByteChaser666October 3, 2023 at 6:24 AM

    Batman
    Ardahan
    Adıyaman
    Antalya
    Giresun
    İİV

    ReplyDelete
    Replies
      Reply
  40. NeonNinja101October 9, 2023 at 12:20 AM

    goruntulu show
    ücretli
    3JRZ

    ReplyDelete
    Replies
      Reply
  41. GülSavaşçı47October 15, 2023 at 9:07 PM

    https://titandijital.com.tr/
    trabzon parça eşya taşıma
    zonguldak parça eşya taşıma
    kayseri parça eşya taşıma
    edirne parça eşya taşıma
    5F4DC

    ReplyDelete
    Replies
      Reply
  42. ÖmerOctober 20, 2023 at 9:39 PM

    Antep Lojistik
    Yalova Lojistik
    Erzincan Lojistik
    Tekirdağ Lojistik
    Elazığ Lojistik
    A3Y6M

    ReplyDelete
    Replies
      Reply
  43. CosmicCipherA716October 24, 2023 at 3:32 PM

    rize evden eve nakliyat
    muğla evden eve nakliyat
    kırıkkale evden eve nakliyat
    mardin evden eve nakliyat
    istanbul evden eve nakliyat
    0QW7

    ReplyDelete
    Replies
      Reply
  44. 98A41Mark120D7November 6, 2023 at 3:41 AM

    FF932
    Ağrı Parça Eşya Taşıma
    Artvin Lojistik
    Antalya Lojistik
    Bartın Evden Eve Nakliyat
    Isparta Evden Eve Nakliyat

    ReplyDelete
    Replies
      Reply
  45. 36985Gerald469FBNovember 10, 2023 at 8:43 PM

    EC8B0
    Paribu Güvenilir mi
    Adana Şehirler Arası Nakliyat
    Bolu Parça Eşya Taşıma
    Çankaya Boya Ustası
    Adıyaman Parça Eşya Taşıma
    Karaman Parça Eşya Taşıma
    Şırnak Lojistik
    Konya Lojistik
    Malatya Lojistik

    ReplyDelete
    Replies
      Reply
  46. F0FA8Patrick929BANovember 20, 2023 at 1:04 AM

    FDE62
    Yozgat Parça Eşya Taşıma
    Aydın Şehir İçi Nakliyat
    Bitlis Şehirler Arası Nakliyat
    Bolu Şehir İçi Nakliyat
    Ağrı Lojistik
    Erzurum Evden Eve Nakliyat
    Çerkezköy Çekici
    İstanbul Şehir İçi Nakliyat
    Ankara Parça Eşya Taşıma

    ReplyDelete
    Replies
      Reply
  47. 3E3A9Kasey66223November 20, 2023 at 3:30 AM

    A3DE2
    Sivas Evden Eve Nakliyat
    order steroid cycles
    Yozgat Evden Eve Nakliyat
    sustanon for sale
    order testosterone propionat
    Bartın Evden Eve Nakliyat
    Tokat Evden Eve Nakliyat
    clenbuterol
    Binance Referans Kodu

    ReplyDelete
    Replies
      Reply
  48. D194EAnthony81362December 5, 2023 at 7:24 AM

    74562
    https://referanskodunedir.com.tr/

    ReplyDelete
    Replies
      Reply
  49. A6209Thomas69825December 23, 2023 at 4:32 AM

    DC0D8
    mersin canlı sohbet
    Aksaray Canlı Sohbet Odaları
    Burdur Bedava Sohbet Odaları
    siirt yabancı sohbet
    muş sesli sohbet sesli chat
    siirt en iyi rastgele görüntülü sohbet
    zonguldak rastgele görüntülü sohbet uygulaması
    şırnak canli sohbet chat
    diyarbakır en iyi ücretsiz görüntülü sohbet siteleri

    ReplyDelete
    Replies
      Reply
  50. 67625Bruce92C3AJanuary 17, 2024 at 7:05 PM

    46E0C
    Binance Referans Kodu
    Spotify Takipçi Satın Al
    Kripto Para Nedir
    Btcst Coin Hangi Borsada
    Youtube İzlenme Satın Al
    Tiktok İzlenme Satın Al
    Soundcloud Beğeni Satın Al
    Chat Gpt Coin Hangi Borsada
    Binance Hesap Açma

    ReplyDelete
    Replies
      Reply
  51. 1F584E64F9Tatum7FD0ACAE0EJanuary 4, 2025 at 4:59 PM

    188F0D0C91
    instagram takipçi alma güvenilir

    ReplyDelete
    Replies
      Reply
  52. AnonymousFebruary 1, 2025 at 2:23 AM

    C2BCBCB468
    garantili türk takipçi

    ReplyDelete
    Replies
      Reply
  53. AnonymousFebruary 2, 2025 at 10:32 PM

    A0A839AC47
    instagram takipçi gönderme

    ReplyDelete
    Replies
      Reply
  54. kanchikamakotiApril 4, 2025 at 8:00 AM

    Children with neurological conditions require expert care, and Kanchi Kamakoti Child Trust Hospital has the
    best pediatric neurosurgeon doctors in Chennai
    . Their team specializes in treating brain and spinal cord disorders with precision and care.

    ReplyDelete
    Replies
      Reply
Add comment
Load more...

About The Author

Unknown
View my complete profile

Total Pageviews

84537

Popular Posts

  • Clr - Common Language Runtime
    .Net framework provides a run time environment - CLR. Common language runtime takes the IL code from the compiler( language specific) and p...
  • Auto logout chrome extension for Gmail
    Hello Friends, In the last article we learned to create a sample chrome extension. Here we are going to create auto logout Gmail script as...
  • Predicate delegate in C#
    Hello Everyone, In the article we will talk about Predicate delegate. Predicate is also a delegate which encapsulate a method that takes...
  • .Net Framework overview
    Hello friends : Here i am writing my first article on .Net framework anyways....So the question is What is .Net Framework ? The .Net fram...
  • Nagarro Placement Papers..
    Ques.1 :- Seat Reservation prog for the theatre. Write a function for seat allocation for the movie tickets. Total no of seats available are...
  • What does it mean by disconnected data access architecture of ADO.Net?
    ADO.Net introduces the concept of disconnected data architecture. In traditional data access components, you make a connection to the databa...
  • Calling the Delegates using Invoke(), BeginInvoke() and DynamicInvoke() ?
    Hello Guys, So in the last article we talked about What is delegate and how can we create a delegate. In this article we will discuss w...
  • C code to Check the string has valid identifier or not in.
    #include #include #include char keyword[][10]={"auto","break","case","char","const","...
  • Garbage Collection - Automatic Memory Management Part II
    Welcome friends in the second article of Garbage Collection. Those who have missed the first one can visit here . So in this article i will...
  • Delegates in C Sharp
    A Delegate is a type variable that holds the reference to a method. Delegates are similar to Pointer to functions in C and C++ When we...

Blog Archive

  • ▼  2016 (4)
    • ▼  September (2)
      • ▼  Sep 03 (2)
        • Auto logout chrome extension for Gmail
        • Auto logout chrome extension for facebook
    • ►  August (1)
      • ►  Aug 28 (1)
    • ►  April (1)
      • ►  Apr 24 (1)
  • ►  2015 (12)
    • ►  September (10)
      • ►  Sep 30 (1)
      • ►  Sep 29 (1)
      • ►  Sep 28 (1)
      • ►  Sep 27 (2)
      • ►  Sep 26 (3)
      • ►  Sep 20 (1)
      • ►  Sep 19 (1)
    • ►  August (1)
      • ►  Aug 16 (1)
    • ►  March (1)
      • ►  Mar 31 (1)
  • ►  2013 (10)
    • ►  June (1)
      • ►  Jun 16 (1)
    • ►  April (1)
      • ►  Apr 21 (1)
    • ►  February (8)
      • ►  Feb 18 (3)
      • ►  Feb 17 (2)
      • ►  Feb 16 (2)
      • ►  Feb 15 (1)
  • ►  2012 (1)
    • ►  May (1)
      • ►  May 27 (1)
  • ►  2010 (22)
    • ►  October (14)
      • ►  Oct 21 (1)
      • ►  Oct 06 (12)
      • ►  Oct 04 (1)
    • ►  April (2)
      • ►  Apr 22 (1)
      • ►  Apr 16 (1)
    • ►  March (1)
      • ►  Mar 30 (1)
    • ►  January (5)
      • ►  Jan 08 (3)
      • ►  Jan 01 (2)
  • ►  2009 (110)
    • ►  December (8)
      • ►  Dec 18 (2)
      • ►  Dec 05 (1)
      • ►  Dec 04 (5)
    • ►  November (1)
      • ►  Nov 27 (1)
    • ►  October (14)
      • ►  Oct 09 (4)
      • ►  Oct 07 (1)
      • ►  Oct 06 (3)
      • ►  Oct 05 (3)
      • ►  Oct 01 (3)
    • ►  September (17)
      • ►  Sep 30 (1)
      • ►  Sep 29 (1)
      • ►  Sep 28 (1)
      • ►  Sep 25 (1)
      • ►  Sep 24 (1)
      • ►  Sep 17 (2)
      • ►  Sep 15 (3)
      • ►  Sep 11 (2)
      • ►  Sep 09 (3)
      • ►  Sep 08 (2)
    • ►  August (31)
      • ►  Aug 31 (1)
      • ►  Aug 27 (3)
      • ►  Aug 26 (1)
      • ►  Aug 25 (2)
      • ►  Aug 24 (1)
      • ►  Aug 22 (2)
      • ►  Aug 21 (3)
      • ►  Aug 20 (2)
      • ►  Aug 19 (3)
      • ►  Aug 18 (1)
      • ►  Aug 16 (1)
      • ►  Aug 12 (2)
      • ►  Aug 11 (1)
      • ►  Aug 10 (3)
      • ►  Aug 07 (4)
      • ►  Aug 06 (1)
    • ►  July (24)
      • ►  Jul 25 (4)
      • ►  Jul 24 (20)
    • ►  April (15)
      • ►  Apr 10 (3)
      • ►  Apr 07 (9)
      • ►  Apr 06 (3)

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments
copyright @ TechGiant 2015. Powered by Blogger.

Disclaimer

This is my personal blog and i write articles on .Net, WPF, C#, OOPS, Threading and other .Net technologies. This is not related to any of my employer and organizations. This is the result of my personal interest.

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Followers

Copyright © 2025 A Developer Journey who codes for fun | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com