Skip to content

Instantly share code, notes, and snippets.

@suvrachat
suvrachat / proto_traversal.js
Created December 5, 2015 12:46
Traversing the prototype chain
//parent and child will inherit from the Object Prototype
//prototype chain for parent : parent -> Object Prototype
var parent = {
name : 'Tommy',
species : 'dog'
}
//prototype chain for child : child -> Object Prototype
var child = {
name : 'Dexter'
}
@suvrachat
suvrachat / Object.js
Last active May 1, 2024 19:34
Example Object
var employee = {
name : 'Al',
age : 40,
salary : 80000,
incrementSalary : function(increment){
this.salary += increment
}
}
@niksumeiko
niksumeiko / disable-html-form-input-autocomplete-autofill.md
Last active May 1, 2024 19:33
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;">
    ...
@suvrachat
suvrachat / Prototype.js
Last active May 1, 2024 19:33
Top level prototype object in Chrome
Object().__proto__ = {
__defineGetter__: __defineGetter__()
__defineSetter__: __defineSetter__()
__lookupGetter__: __lookupGetter__()
__lookupSetter__: __lookupSetter__()
constructor: Object()
hasOwnProperty: hasOwnProperty()
isPrototypeOf: isPrototypeOf()
propertyIsEnumerable: propertyIsEnumerable()
toLocaleString: toLocaleString()
/home/nick/Music:
AC-DC/
All That Remains/
Atreyu/
Avenged Sevenfold/
Black Tide/
Creed/
Crossfade/
Deep Purple/
Disturbed/
@SteveSandersonMS
SteveSandersonMS / BlazorForm.cshtml
Created September 21, 2018 16:29
Validation mockup A: explicit <ValidateXyz> components that take a Func<T>
@* Unfortunately this has to be named BlazorForm, not Form, because we can't differentiate based on casing *@
<form onsubmit=@HandleSubmit>
@ChildContent(_context)
</form>
@functions {
private FormContext _context = new FormContext();
[Parameter] protected RenderFragment<FormContext> ChildContent { get; set; }
[Parameter] protected Action<FormContext> OnSubmit { get; set; }
@martinsam16
martinsam16 / docker-wsl2.md
Last active May 1, 2024 19:28
How to install wsl2 ubuntu + docker + docker-compose

Activate wsl2

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --set-default-version 2

Install and Configure Ubuntu

Generating Authy passwords on other authenticators


Update 04.04.2020: Please take a look at many of the forks of this gist or comments, where people have updated or improved upon the code. I have not needed this in a long time, which is why the original document has not been updated and the code probably does not work. Stay secure and only copy and paste code that you trust.

There is an increasing count of applications which use Authy for two-factor authentication. However many users who aren't using Authy, have their own authenticator setup up already and do not wish to use two applications for generating passwords.

Since I use 1Password for all of my password storing/generating needs, I was looking for a solution to use Authy passwords on that. I couldn't find any completely working solutions, however I stumbled upon a gist by Brian Hartvigsen. His post had a neat code with it to generate QR codes (beware, thro

@qoomon
qoomon / conventional_commit_messages.md
Last active May 1, 2024 19:23
Conventional Commit Messages

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs

Commit Message Formats

Default

@y0ngb1n
y0ngb1n / docker-registry-mirrors.md
Last active May 1, 2024 19:23
国内的 Docker Hub 镜像加速器,由国内教育机构与各大云服务商提供的镜像加速服务 | Dockerized 实践 https://github.com/y0ngb1n/dockerized

Docker Hub 镜像加速器

国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务。

Dockerized 实践 https://github.com/y0ngb1n/dockerized

配置加速地址

Ubuntu 16.04+、Debian 8+、CentOS 7+