Skip to content

Instantly share code, notes, and snippets.

View Tides's full-sized avatar
🎯

Junior Tides

🎯
View GitHub Profile
using Sandbox;
using System;
// ported from https://github.com/ProtoTurtle/UnityBitmapDrawing/blob/d73a977ad918ef1c6b3fa820432291dbed388e54/src/BitmapDrawing.cs
/**
The MIT License (MIT)
Copyright (c) 2014 Lauri Hosio
Permission is hereby granted, free of charge, to any person obtaining a copy
@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active June 18, 2025 07:17
Disable HTML form input autocomplete and autofill

Disable HTML Form Input Autocomplete and Autofill

  1. Add autocomplete="off" onto <form> element;
  2. Add hidden <input> with autocomplete="false" as a first children element of the form.
<form autocomplete="off" method="post" action="">
    <input autocomplete="false" name="hidden" type="text" style="display:none;">
    ...