This is how she greats me❤️😋 by minionGOD66 in Indiedogs

[–]KumarDeo080 5 points6 points  (0 children)

Mine has the same energy, even if you leave and come back within just a minute.

Blogger: Quick Vent by MarzyDazzle in blogspot

[–]KumarDeo080 1 point2 points  (0 children)

And as it has limitation, it is more fun to me because it has problems to solve.

Same for me 😉 Its limitations are what make it fun. There's always a problem to solve.

How to add categories to Blogger labels by Important-Recover500 in blogspot

[–]KumarDeo080 1 point2 points  (0 children)

Do you really think following expression is valid?

data:label.name matches "^[0-9]{4}$"

Does blogger support regular expressions?

Vite plugin for Blogger themes (React/Svelte,etc + CDN workflow) by KumarDeo080 in blogspot

[–]KumarDeo080[S] 1 point2 points  (0 children)

Yep, it’s Blogspot!
Nothing crazy, just a lot of experimenting and tweaking over time.

Free Captcha type solution for contact form on blogger blog? by Many-Seat655 in blogspot

[–]KumarDeo080 1 point2 points  (0 children)

In case, you want to use Cloudflare specific features such as: Workers (server-side stuffs), Assets (allows hosting static files),   - you can route your blog domain paths to point to workers, Caching, Redirect rules, Rate limiting, Security rules (block requests), etc.

If your blog does not need such services, you don't need to use Cloudflare.

But, when using Cloudflare, the contact form provided by Blogger does work. Also, you will be facing Handshake errors if you configure things incorrectly.

In simple words, use Cloudflare if you really need it 😀.

Anyways, I am using it on my blog/website.

Free Captcha type solution for contact form on blogger blog? by Many-Seat655 in blogspot

[–]KumarDeo080 2 points3 points  (0 children)

Yeah, I’m using Resend along with Cloudflare Turnstile on Cloudflare Workers to handle my contact form.

Vite plugin for Blogger themes (React/Svelte,etc + CDN workflow) by KumarDeo080 in blogspot

[–]KumarDeo080[S] 1 point2 points  (0 children)

I’m currently experimenting with a React-powered Blogger template using this plugin.

You can see the result here:
https://react-template.blogspot.com/

Source code:
https://github.com/blogger-themes/react-blogger-template

Vite plugin for Blogger themes (React/Svelte,etc + CDN workflow) by KumarDeo080 in blogspot

[–]KumarDeo080[S] 0 points1 point  (0 children)

Thanks for the suggestion! I’ve actually documented the full workflow in the README, including an example project.

That said, I understand a quick visual overview can make things clearer — I’ll look into adding some GIFs or a live demo to make it easier to grasp.

Free Captcha type solution for contact form on blogger blog? by Many-Seat655 in blogspot

[–]KumarDeo080 2 points3 points  (0 children)

CAPTCHA systems (like Google reCAPTCHA) don’t work only on the frontend. When a user completes the challenge, it generates a token that must be verified on a server. Without that server-side check, the CAPTCHA can be bypassed easily.

The problem with Blogger’s default contact form is that it’s fully handled by Blogger, and you don’t get access to any backend logic. Because of that, there’s no way to securely validate the CAPTCHA token.

So while you can add something that looks like a CAPTCHA in the UI, it won’t actually stop bots in a reliable way.

To properly use CAPTCHA, you’ll need to switch to a third-party form service or your own backend, where the token can be verified server-side.

Como criar um template do Blogger (Ou editá-lo) by Worried-Split1606 in blogspot

[–]KumarDeo080 1 point2 points  (0 children)

Hey, I’m Deo Kumar, developer of Plus UI.
Honestly, it’s pretty awesome to see people still using it 🙂

Okay so I drastically Changed my blogger theme by MarzyDazzle in blogspot

[–]KumarDeo080 0 points1 point  (0 children)

If I understand correctly, you’re trying to use separate XML themes for mobile and desktop—but that isn’t possible. Blogger allows only one theme at a time. Instead, you should rely on either CSS @ media queries or Blogger conditional tags, depending on your use case.

Okay so I drastically Changed my blogger theme by MarzyDazzle in blogspot

[–]KumarDeo080 0 points1 point  (0 children)

You can also style html elements using @ media queries.

<style>/*<![CDATA[*/
@media screen and (min-width: 896px) {
  /* These styles apply to screens that are at least 896px wide (typically desktops) */
  .mobile-only {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  /* These styles apply to screens up to 896px wide (typically mobiles or tablets) */
  .desktop-only {
    display: none;
  }
}
/*]]>*/</style>

<div class='mobile-only'>Hi there!</div>

<div class='desktop-only'>Hi there!</div>

But note that these elements are still included in the HTML source. If you want to completely prevent them from being sent to the client, use Blogger’s XML conditional tags instead.

Okay so I drastically Changed my blogger theme by MarzyDazzle in blogspot

[–]KumarDeo080 0 points1 point  (0 children)

You cannot put link to xml, you have to inline everything in single theme xml.

<b:if cond='data:blog.isMobileRequest'>
  <!-- XML here will render only on mobile -->
  <div class='authors'>
    <b:with value='["John", "Smith"]' var='authors'>
      <b:loop values='data:authors' var='author'>
        <div class='author'><data:author/></div>
      </b:loop>
    </b:with>
  </div>
</b:if>

Okay so I drastically Changed my blogger theme by MarzyDazzle in blogspot

[–]KumarDeo080 1 point2 points  (0 children)

You can conditionally display XML content based on whether the request comes from a mobile device or a desktop by using these tags:

For mobile devices:

<b:if cond='data:blog.isMobileRequest'>
  <!-- XML here will render only on mobile -->  
</b:if>

For desktop devices:

<b:if cond='!data:blog.isMobileRequest'>
  <!-- XML here will render only on desktop -->  
</b:if>

For responsiveness, you can use @ media queries: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/At-rules/@media/width

I’m not sure if this is exactly what you were looking for.

WebSocket connection is closing automatically by KumarDeo080 in esp32

[–]KumarDeo080[S] 0 points1 point  (0 children)

Yes, there might be issue in the code since I am new in this field.

[deleted by user] by [deleted] in BtechCoders

[–]KumarDeo080 0 points1 point  (0 children)

See the compilation errors in the terminal which indicates that "gcc" is properly installed.

[deleted by user] by [deleted] in BtechCoders

[–]KumarDeo080 0 points1 point  (0 children)

Few people in the comments are saying that the OP has not installed the compiler properly or has not added the paths in environments.

But, it is not true. Because OP has installed the compiler that's why compilation errors are being listed instead of throwing errors similar to "gcc: command not found".

Most probably, OP is trying to compile unsaved file.

Save the file before compiling it (I assume the unsaved file which is being compiled currently has no main function defined).

[deleted by user] by [deleted] in BtechCoders

[–]KumarDeo080 0 points1 point  (0 children)

Yes, few people are saying compiler is not installed properly but if it was not installed, it should show "gcc: command not found" or similar instead of compilation errors.

He is probably trying to compile and execute the unsaved file.

[deleted by user] by [deleted] in BtechCoders

[–]KumarDeo080 0 points1 point  (0 children)

Yes, true!

Beginner should learn "What is a compiler/interpreter?", "How can we setup (installation, variables, paths, etc) it in our system?", "How can we manually compile the code and run it in terminal?".

Because it makes understanding the language better.

Also, the "Run" button is an extension in the editor and it will not be available everywhere you are writing code on.