Information BD

  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Home
  • News
    • Hacker News
    • Google on TechRepublic
    • Articles on TechRepublic
    • Software on TechRepublic
    • Tech And Work on TechRepublic
  • Uncategorized

Tuesday, July 28, 2026

New top story on Hacker News: Uv 0.12.0

 July 28, 2026     Hacker News     No comments   

Uv 0.12.0
43 by hallvard | 18 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: MCP 2026-07-28 Specification: transport going stateless

 July 28, 2026     Hacker News     No comments   

MCP 2026-07-28 Specification: transport going stateless
24 by Eldodi | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, July 27, 2026

New top story on Hacker News: Tokio Gives Progress, Not Ordering: Scheduling 1M Tasks

 July 27, 2026     Hacker News     No comments   

Tokio Gives Progress, Not Ordering: Scheduling 1M Tasks
7 by pranitha_m | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, July 26, 2026

New top story on Hacker News: Using ThinkPad T480 as a mobile phone

 July 26, 2026     Hacker News     No comments   

Using ThinkPad T480 as a mobile phone
12 by marosgrego | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, July 25, 2026

New top story on Hacker News: Show HN: I made some transistor animations

 July 25, 2026     Hacker News     No comments   

Show HN: I made some transistor animations
27 by stunningllama | 2 comments on Hacker News.
Hi HN, I made some animations of the most important kinds of transistors using my semiconductor simulation, details of which are on the page. I tried to make the visuals as realistic as possible while also aiming for clarity. If you want to go beyond the charge carriers and look at, for example, the electric field, you can do so in the simulation software. The desktop software also has less common devices like IBGTs and SCRs that have similar animations. The last thread about my software was posted here about a year ago: https://ift.tt/ayt2hKO

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, July 24, 2026

New top story on Hacker News: Fil-C: Garbage In, Memory Safety Out [video]

 July 24, 2026     Hacker News     No comments   

Fil-C: Garbage In, Memory Safety Out [video]
24 by Bootvis | 15 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, July 23, 2026

New top story on Hacker News: Show HN: Trifle – Open-source analytics that stores answers, not events

 July 23, 2026     Hacker News     No comments   

Show HN: Trifle – Open-source analytics that stores answers, not events
7 by iluzone | 0 comments on Hacker News.
Trifle is an open-source time-series analytics library that aggregates nested counters instead of storing raw events. All in the database you already have. After rebuilding it twice over 10 years, it now tracks ~1B events a day at my day job. It started in 2015 as my own Rails APM. I plugged into ActiveSupport::Notifications, got a few small users, and one bigger one whose scraping app broke everything. That sparked the core idea: aggregate counters into pre-defined time buckets, so a single write increments multiple buckets at once. The APM eventually faded away without much traction. Later in 2021 I needed analytics at my day job. Instead of going for something out there I revised the idea of Trifle as a more generic analytics library, borrowing some data warehouse ideas. First used Redis, then Postgres, eventually MongoDB. Hence why Trifle::Stats comes with multiple drivers that keep the DSL unified while storage layer changes with your needs. In our case (huge write volume, some reads) PG read faster but slowed on large writes. The nested values are the whole trick here. Single: Trifle::Stats.track( key: 'requests::aws::s3_uploads', values: { count: 1, status: { request.response_code => 1 }, size: payload.bytes, duration: { sum: request.duration, count: 1 } } ) builds up counts for requests, success rate, result status codes, duration for multiple time buckets at once. Single bucket from 2am then looks like: { count: 14, status: { 200: 12, 500: 2 }, size: 5628341, duration: { sum: 43, count: 14 } } If request.duration is in seconds, then sum stored under duration would be in seconds as well. Success rate is never stored, but it is calculated by dividing 200s over total number of requests. Same with average duration: sum over count. You ask for a metrics key, granularity and timeframe and you get back aggregated values at each point. Ready for charts or to answer "Average response time over last 30 days". There's a Series wrapper for aggregating and formatting values for charts in a simple call. And as building dashboards is not as much fun for other devs as I thought, I built Trifle App - a visual layer with dashboards, scheduled digests and alerts. It's written in Elixir, so I ported the library to Elixir too. And later to Go for a CLI. All three are compatible, write in one and read in another. Today we track activity from over 100M background jobs a day which turns into about 1B events. It runs surprisingly cheap when you're willing to trade some safety away (turn off journaling and write concerns in Mongo). 3-node Hetzner MongoDB cluster where the primary does 20% utilization costs us around $1k/month. It has its limitations. Payloads can't hold tens of thousands of keys. Documents becomes too large to update efficiently. Some planning ahead is needed. And then there are no dimensions. Sometimes you can nest them (country - there are only so many countries), sometimes it's better to have dedicated metrics key per dimension (customer - growing forever). That multiplies tracked events, hence 1B events from 100M jobs. The libraries are MIT. The App is source-available under ELv2 - free to self-host and paid cloud if you want it managed. I build this on the side with no investor money to burn on a free service. Happy to answer anything about architecture, storage models, my failures or why I didn't give up on this yet.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, July 22, 2026

New top story on Hacker News: John C. Dvorak has died

 July 22, 2026     Hacker News     No comments   

John C. Dvorak has died
212 by coleca | 39 comments on Hacker News.
https://ift.tt/sfYB9ZS

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: ICE shared Medicaid data it wasn't supposed to have with Palantir

 July 22, 2026     Hacker News     No comments   

ICE shared Medicaid data it wasn't supposed to have with Palantir
30 by Jimmc414 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Everyone Should Know SIMD

 July 22, 2026     Hacker News     No comments   

Everyone Should Know SIMD
20 by WadeGrimridge | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, July 21, 2026

New top story on Hacker News: Laguna S 2.1

 July 21, 2026     Hacker News     No comments   

Laguna S 2.1
40 by rexledesma | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, July 20, 2026

New top story on Hacker News: Agent swarms and the new model economics

 July 20, 2026     Hacker News     No comments   

Agent swarms and the new model economics
9 by jlaneve | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, July 19, 2026

New top story on Hacker News: Natural experiments prove phytoplankton carbon removal works

 July 19, 2026     Hacker News     No comments   

Natural experiments prove phytoplankton carbon removal works
13 by getnormality | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Less Is More: Why Audio on SoundCloud Looks Different

 July 19, 2026     Hacker News     No comments   

Less Is More: Why Audio on SoundCloud Looks Different
13 by 1317 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, July 18, 2026

New top story on Hacker News: Typing Speed Test, but for Developers

 July 18, 2026     Hacker News     No comments   

Typing Speed Test, but for Developers
8 by hronecviktor | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: The Kimi K3 Moment

 July 18, 2026     Hacker News     No comments   

The Kimi K3 Moment
32 by sbochins | 17 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, July 17, 2026

New top story on Hacker News: The Zilog Z80 has turned 50

 July 17, 2026     Hacker News     No comments   

The Zilog Z80 has turned 50
30 by st_goliath | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Homomorphically encrypted CIFAR-10 inference in 200ms

 July 17, 2026     Hacker News     No comments   

Homomorphically encrypted CIFAR-10 inference in 200ms
11 by j2kun | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, July 16, 2026

New top story on Hacker News: CD Sales Growth Outpaced Vinyl in the First Half of 2026

 July 16, 2026     Hacker News     No comments   

CD Sales Growth Outpaced Vinyl in the First Half of 2026
11 by speckx | 9 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Schema Harness Achieves ~99% on Arc‑AGI‑3 Public

 July 16, 2026     Hacker News     No comments   

Schema Harness Achieves ~99% on Arc‑AGI‑3 Public
38 by jasondavies | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, July 15, 2026

New top story on Hacker News: Duskers, the scary command line game, is getting a sequel

 July 15, 2026     Hacker News     No comments   

Duskers, the scary command line game, is getting a sequel
25 by spacemarine1 | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Inkling: Our Open-Weights Model

 July 15, 2026     Hacker News     No comments   

Inkling: Our Open-Weights Model
74 by vimarsh6739 | 28 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, July 14, 2026

New top story on Hacker News: Show HN: A Free RSS reader with a configurable recommendation engine

 July 14, 2026     Hacker News     No comments   

Show HN: A Free RSS reader with a configurable recommendation engine
7 by sammy0910 | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Guardian Angels: LLM Personalization for Productivity and Security

 July 14, 2026     Hacker News     No comments   

Guardian Angels: LLM Personalization for Productivity and Security
6 by andsoitis | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, July 13, 2026

New top story on Hacker News: Show HN: BillAI Bass, an AI-Powered Big Mouth Billy Bass Using Strands Agents

 July 13, 2026     Hacker News     No comments   

Show HN: BillAI Bass, an AI-Powered Big Mouth Billy Bass Using Strands Agents
13 by mtw14 | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, July 12, 2026

New top story on Hacker News: Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper

 July 12, 2026     Hacker News     No comments   

Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
25 by brryant | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Can We Understand How Large Language Models Reason?

 July 12, 2026     Hacker News     No comments   

Can We Understand How Large Language Models Reason?
13 by adunk | 4 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, July 11, 2026

New top story on Hacker News: Show HN: Reame – a CPU inference server that gets faster as it runs

 July 11, 2026     Hacker News     No comments   

Show HN: Reame – a CPU inference server that gets faster as it runs
7 by targetbridge | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, July 10, 2026

New top story on Hacker News: Cpp2Rust: Translates C++ to safe Rust automatically

 July 10, 2026     Hacker News     No comments   

Cpp2Rust: Translates C++ to safe Rust automatically
8 by signa11 | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, July 9, 2026

New top story on Hacker News: Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

 July 09, 2026     Hacker News     No comments   

Show HN: Abralo – Free, easy way to run several Claude Code agents in one window
15 by cwbuilds | 4 comments on Hacker News.
Hi guys, I've been using Claude Code for almost everything lately. Have given one an email account so it can research business leads, draft emails, fact-check them and clear them with me before sending (works really well by the way). I also tend to have a few Claude Code agents running at any one time for coding. I used to create a split terminal to manage them from there, but found working in the terminal all day pretty depressing and, more importantly, found it hard to follow Claude Code's process and see which agents needed my immediate attention. I tried Anthropic's VS Code Claude Code extension and it had a great UI (more info on Claude Code's process and easier to read), but it crashed my PC when I ran more than 3 and I couldn't watch multiple agents in parallel (had to constantly switch between them). So I built a lightweight Tauri desktop app which lets you run multiple Claude Code agents in one window alongside each other. It's easier to read the output and see which agents need your attention than a terminal. Have been using this all day everyday instead of an IDE and have obsessed over every detail to make sure it's easy-to-use, but also lightweight and fast (so you can manage multiple agents without your PC crashing). There are some nice features like better usage alerts for when you're going to hit your 5-hour and weekly limits (with sparklines to show when usage peaked, and which agents are the most token-intensive). It's free to use (you just need to log in with your existing Claude Code account) for up to 4 agents simultaneously. This app doesn't store your Claude Code account details and doesn't store any of your interactions with Claude Code. They remain between you and Anthropic. It's compatible with Windows, MacOS and 64-bit Linux. Would really appreciate any feedback, so if you have any thoughts, issues or suggestions please let me know. Thanks, Chris

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: How to Start a Ruby Meetup

 July 09, 2026     Hacker News     No comments   

How to Start a Ruby Meetup
13 by mooreds | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, July 8, 2026

New top story on Hacker News: Cloudflare Drop

 July 08, 2026     Hacker News     No comments   

Cloudflare Drop
25 by coloneltcb | 12 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: A bug which affected only left handed users

 July 08, 2026     Hacker News     No comments   

A bug which affected only left handed users
7 by sixhobbits | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Tuesday, July 7, 2026

New top story on Hacker News: Show HN: Halo – open-source, tamper-evident runtime evidence for AI agents

 July 07, 2026     Hacker News     No comments   

Show HN: Halo – open-source, tamper-evident runtime evidence for AI agents
3 by brian_kuan | 0 comments on Hacker News.
Hi HN, I'm Brian, I spent the last few years at Vanta (YC W18), helping startups and enterprises become compliant and I recently started exploring what that might look like in a post-agentic world. The problem Halo solves is: when a company buys an AI agent from a vendor and gives it access to their data, they have no way to check what the agent did with that data. Vendors may have built observability dashboards and audit logs, but those are editable and partisan. SOC 2 and ISO 27001 audit a company's controls, but controls are less predictive when the software is agentic. TLDR: give an agent the same prompt 50 times, and you get 50 slightly different actions/answers - so the only thing worth auditing in a post-agentic world is what happened at runtime. Halo is an open-source project that produces agent runtime evidence. It's a small recorder that records every action an agent takes (eg. tool calls, model calls, data access, etc), and becomes a record in an append-only log. It's hash-chained, so anyone can re-verify. Run the following command to see a fictional example: uvx --from halo-record halo demo --serve Then, delete a line from one of the .jsonl files and reload, and the report will catch that it's been tampered with. To wire up your own agent, run this line of Python: agent = trace(run_my_agent, profile="my-agent", log="audit.jsonl") Then use this to generate a real report and give it to your customers: halo report audit.jsonl -o report.html Disclaimer: this proves integrity, not completeness (as a self-held chain proves nothing was edited but does NOT prove that nothing was omitted). Catching this requires a witness outside the vendor and is what I'm working on next. Halo is Apache-2.0, contains zero runtime dependencies, and is about 4,300 lines of Python with 125 tests (if you prefer TypeScript, here's that repo: https://ift.tt/ga7Af5w ). Give it a try, and please let me know if you have any feedback!

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Monday, July 6, 2026

New top story on Hacker News: Orasort: 5x faster column-sorting with an expired patent from Oracle

 July 06, 2026     Hacker News     No comments   

Orasort: 5x faster column-sorting with an expired patent from Oracle
8 by theanonymousone | 2 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Sunday, July 5, 2026

New top story on Hacker News: Installing A/UX 1.1 like it's the 90s

 July 05, 2026     Hacker News     No comments   

Installing A/UX 1.1 like it's the 90s
9 by zdw | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Saturday, July 4, 2026

New top story on Hacker News: Zig: All Package Management Functionality Moved from Compiler to Build System

 July 04, 2026     Hacker News     No comments   

Zig: All Package Management Functionality Moved from Compiler to Build System
24 by tosh | 1 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: EndBASIC 0.14: Are we multimedia yet?

 July 04, 2026     Hacker News     No comments   

EndBASIC 0.14: Are we multimedia yet?
6 by jmmv | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Friday, July 3, 2026

New top story on Hacker News: Holes

 July 03, 2026     Hacker News     No comments   

Holes
53 by caminanteblanco | 8 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Instead of banning AI, I made a classroom contract with my students

 July 03, 2026     Hacker News     No comments   

Instead of banning AI, I made a classroom contract with my students
20 by digital55 | 3 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Thursday, July 2, 2026

New top story on Hacker News: Vulkan is now available on NetBSD

 July 02, 2026     Hacker News     No comments   

Vulkan is now available on NetBSD
24 by segaboy81 | 5 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: Exapunks

 July 02, 2026     Hacker News     No comments   

Exapunks
39 by yu3zhou4 | 10 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

Wednesday, July 1, 2026

New top story on Hacker News: Mortality associated with non-optimal ambient temperatures from 2000 to 2019

 July 01, 2026     Hacker News     No comments   

Mortality associated with non-optimal ambient temperatures from 2000 to 2019
20 by simonebrunozzi | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg

New top story on Hacker News: A complete ClickHouse OLAP engine, compiled to WebAssembly

 July 01, 2026     Hacker News     No comments   

A complete ClickHouse OLAP engine, compiled to WebAssembly
18 by porridgeraisin | 0 comments on Hacker News.


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Ad

Popular Posts

  • Listen to the Globe
    By BY CAITLIN KELLY from NYT At Home https://ift.tt/3jJNKk3
  • DealBook Briefing: Apple’s Struggles Add to Uncertainty in Markets
    By Unknown Author from NYT Business https://nyti.ms/2CL89mG
  • Listen to the Call: Bullock and Trump Discuss Testing
    By BY THE NEW YORK TIMES from NYT U.S. https://ift.tt/2JDppgp

Recent Posts

Categories

  • AllLanguages
  • Articles on TechRepublic
  • bangla
  • Cracking Open Blog | TechRepublic
  • desktop
  • English
  • FOX NEWS
  • Google on TechRepublic
  • Hacker News
  • HowTo
  • IOS
  • Mobile
  • MobileReviews
  • News
  • NYT
  • PcTricks
  • Reviews
  • Software on TechRepublic
  • softwareupdates
  • Tech And Work on TechRepublic
  • Tech Industry on TechRepublic
  • TechNews
  • TechRepublic
  • Tools
  • Trick
  • Updates
  • Website

Unordered List

Pages

  • Home

Text Widget

Blog Archive

  • July 2026 (44)
  • June 2026 (56)
  • May 2026 (47)
  • April 2026 (46)
  • March 2026 (50)
  • February 2026 (46)
  • January 2026 (48)
  • December 2025 (43)
  • November 2025 (38)
  • October 2025 (46)
  • September 2025 (51)
  • August 2025 (44)
  • July 2025 (38)
  • June 2025 (37)
  • May 2025 (47)
  • April 2025 (44)
  • March 2025 (47)
  • February 2025 (35)
  • January 2025 (41)
  • December 2024 (57)
  • November 2024 (64)
  • October 2024 (63)
  • September 2024 (57)
  • August 2024 (50)
  • July 2024 (66)
  • June 2024 (66)
  • May 2024 (71)
  • April 2024 (46)
  • March 2024 (68)
  • February 2024 (45)
  • January 2024 (63)
  • December 2023 (66)
  • November 2023 (60)
  • October 2023 (64)
  • September 2023 (103)
  • August 2023 (95)
  • July 2023 (89)
  • June 2023 (78)
  • May 2023 (172)
  • April 2023 (162)
  • March 2023 (176)
  • February 2023 (155)
  • January 2023 (185)
  • December 2022 (166)
  • November 2022 (158)
  • October 2022 (202)
  • September 2022 (198)
  • August 2022 (195)
  • July 2022 (198)
  • June 2022 (191)
  • May 2022 (183)
  • April 2022 (193)
  • March 2022 (176)
  • February 2022 (174)
  • January 2022 (247)
  • December 2021 (351)
  • November 2021 (626)
  • October 2021 (654)
  • September 2021 (608)
  • August 2021 (713)
  • July 2021 (713)
  • June 2021 (690)
  • May 2021 (712)
  • April 2021 (687)
  • March 2021 (713)
  • February 2021 (644)
  • January 2021 (713)
  • December 2020 (713)
  • November 2020 (690)
  • October 2020 (628)
  • September 2020 (689)
  • August 2020 (713)
  • July 2020 (713)
  • June 2020 (690)
  • May 2020 (713)
  • April 2020 (690)
  • March 2020 (713)
  • February 2020 (667)
  • January 2020 (713)
  • December 2019 (713)
  • November 2019 (690)
  • October 2019 (711)
  • September 2019 (688)
  • August 2019 (713)
  • July 2019 (713)
  • June 2019 (690)
  • May 2019 (3001)
  • April 2019 (2950)
  • March 2019 (3047)
  • February 2019 (2759)
  • January 2019 (3059)
  • December 2018 (3060)
  • November 2018 (2959)
  • October 2018 (3058)
  • September 2018 (2962)
  • August 2018 (2221)
  • July 2018 (3)

Search This Blog

Powered by Blogger.

Report Abuse

About Me

Inform BD Tech
View my complete profile

Sample Text

Copyright © Information BD | Powered by Blogger
Design by Hardeep Asrani | Blogger Theme by NewBloggerThemes.com | Distributed By Gooyaabi Templates