Skip to content

Instantly share code, notes, and snippets.

View crs1138's full-sized avatar
🤗
On a look out for a JS project

Honza crs1138

🤗
On a look out for a JS project
  • Leadtech, planXdesign
  • Barcelona
  • X @crs1138
View GitHub Profile
@crs1138
crs1138 / random-integer.js
Last active July 5, 2023 05:46
Generate random integer between limits
export function randomInt(max, min = 0) {
return Math.round(Math.random() * (max - min) + min)
}
@crs1138
crs1138 / wp-gists.sh
Created April 20, 2022 20:00
WP CLI gists
# Backup of the database
wp db export - | gzip ~/tmp/mydbdump.sql.gz
# Backup of the files
tar czvf my-site.tar.gz --exclude=no-go-dir public_html/
@crs1138
crs1138 / CHANGELOG.md
Last active April 17, 2022 11:02
NPM script to bump the version in the CHANGELOG.md file.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.15.0] (22-04-17)

@crs1138
crs1138 / index.html
Last active May 27, 2020 12:17
Unique elements array #jsbench #jsperf (https://jsbench.github.io/#de6edc50c458a54408d98a630b988cab) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Unique elements array #jsbench #jsperf</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
@crs1138
crs1138 / example.html
Created May 9, 2018 12:09
Scroll-js example
<html lang="">
<head>
<title>Scroll To Element Example</title>
</head>
<style>
.module {
margin: 20px auto;
width: 215%;
height: 300px;