936 private links
This detailed guide gives you an effective Open Source license comparison. It should help you choose the right Open Source license for your project.
The SHA-256 algorithm is a widely used hash function producing a 256-bit hash value. It is used in many security applications and protocols, including TLS and SSL, SSH, PGP, and Bitcoin.
Calculating a SHA-256 hash in JavaScript is easy using native APIs, but there are some differences between the browser and Node.js. As the browser implementation is asynchronous, both of the examples provided will return a Promise
for consistency.
Browser
In the browser, you can use the SubtleCrypto API to create a hash for the given value. You first need to create a new TextEncoder
and use it to encode the given value. Then, pass its value to SubtleCrypto.digest()
to generate a digest of the given data, resulting in a Promise
.
As the promise resolves to an ArrayBuffer
, you will need to read the data using DataView.prototype.getUint32()
. Then, you need to convert the data to its hexadecimal representation using Number.prototype.toString()
. Add the data to an array using Array.prototype.push()
. Finally, use Array.prototype.join()
to combine values in the array of hexes
into a string.
const hashValue = val =>
crypto.subtle
.digest('SHA-256', new TextEncoder('utf-8').encode(val))
.then(h => {
let hexes = [],
view = new DataView(h);
for (let i = 0; i < view.byteLength; i += 4)
hexes.push(('00000000' + view.getUint32(i).toString(16)).slice(-8));
return hexes.join('');
});
hashValue(
JSON.stringify({ a: 'a', b: [1, 2, 3, 4], foo: { c: 'bar' } })
).then(console.log);
// '04aa106279f5977f59f9067fa9712afc4aedc6f5862a8defc34552d8c7206393'
Node.js
In Node.js, you can use the crypto
module to create a hash for the given value. You first need to create a Hash
object with the appropriate algorithm using crypto.createHash()
. Then, use hash.update()
to add the data from val
to the Hash
and hash.digest()
to calculate the digest of the data.
For consistency with the browser implementation and to prevent blocking on a long operation, we'll return a Promise
by wrapping it in setTimeout()
.
import { createHash } from 'crypto';
const hashValue = val =>
new Promise(resolve =>
setTimeout(
() => resolve(createHash('sha256').update(val).digest('hex')),
0
)
);
hashValue(JSON.stringify({ a: 'a', b: [1, 2, 3, 4], foo: { c: 'bar' } })).then(
console.log
);
// '04aa106279f5977f59f9067fa9712afc4aedc6f5862a8defc34552d8c7206393'
Notes
- The two implementations are not compatible with each other. You cannot use the browser implementation in Node.js and vice versa.
- Both implementations should produce the same result for the same input.
Pour simplifier les explications, les résolveurs DNS sont des services qui permettent de convertir un nom de domaine (google.com) en adresse IP (172.217.168.238). Par défaut, vous utilisez les résolveurs DNS fournis automatiquement par votre fournisseur d'accès, mais il est possible d'en utiliser d'autres.
Dans un précédent article, je vous avais présenté BorgBackup et comment l'utiliser pour effectuer des sauvegardes sur un disque local. Aujourd'hui, je vais vous expliquer comment effectuer les sauvegardes sur une machine distante via SSH et comment sécuriser et automatiser tout ça.
A protip by nicolaslazartekaqui about vim.
TL;DR
To convert all text to lowercase and to uppercase in vim do:
ggVGu
ggVGU
Function in search/replace, do this to lowercase and to uppercase (example):
:%s/[A-Z]/\L&/g
:%s/[A-Z]/\U&/g
Modern DNS Hosting for Everyone
deSEC is a free DNS hosting service, designed with security in mind.
Running on open-source software and supported by SSE, deSEC is free for everyone to use.
Une fois qu'on a bien transpiré et configuré proprement son [serveur de messagerie](https://fr.wikipedia.org/wiki/Serveur%20de%20messagerie%20%C3%A9lectronique "Consultez l'article "Serveur de messagerie électronique" de l'encyclopédie libre Wikipedia"), comment vérifier s'il marche ? En écrivant un message ? Cela ne teste que la moitié du trajet, il serait bien d'avoir aussi une réponse... Si on a des copains patients, on peut leur écrire et solliciter une réponse mais c'est assez abusif. Il vaut mieux compter sur un programme qui répondra à chaque fois, sans se lasser, et qui pourra en prime vous indiquer à quoi ressemblait le message entrant. Quelles sont les adresses qui correspondent à un tel programme ?
12-Factor-App est un ensemble de principes décrivant une manière de créer des logiciels de type Software-as-a-Service. (SaaS) qui, lorsqu'ils sont suivis, permettent de créer du code qui peut être pub...
TIO is a family of online interpreters for an evergrowing list of practical and recreational programming languages.
To use TIO, simply click the arrow below, pick a programming language, and start typing. Once you click the run button, your code is sent to a TIO arena, executed in a sandboxed environment, and the results are sent back to your browser. You can share your code by generating a client-side permalink that encodes code and input directly in the URL.
Coopmaths.fr est un collectif d'enseignants de mathématiques qui, en plus du générateur d'exercices MathALÉA, vous propose une sélection de ressources et d'outils (et bientôt un site mis à jour).
Exercices à données aléatoires, diaporama, PDF, exercices interactifs, annales du brevet des collèges, du bac ou du CRPE, création de « Courses aux nombres »...
Microsoft PowerToys est un ensemble d’utilitaires permettant de personnaliser Windows. Les utilitaires incluent ColorPicker, FancyZones, les extensions File Explorer, Image Resizer, Keyboard Manager, PowerRename, PowerToysRun, un Shortcut Guide, et plus encore.
Tips from Configure ton PC comme un crack ou jette-le ! - YouTube de Cocadmin.
Generate branded QR code online, you can add image and color to your QR code. Use the QR code styling library in your site to generate QR codes dynamically.
Créer, écouter et imprimer de magnifiques partitions grace au logiciel de notation musicale gratuit et facile à utiliser MuseScore. Pour Windows, Mac, Linux.
Un administrateur peut implémenter des changements sur un ordinateur qui affecteront les autres utilisateurs. Il/Elle peut modifier les paramètres de sécurité, installer et désinstaller des logiciels, accéder à l'ensemble des fichiers de...
TL;DR
net user administrator /active:yes
Comment générer ses propres certificats SSL à des fins de développement
I wrote A Modern CSS Reset almost 4 years ago and, yeh, it’s not aged overly well. I spotted it being linked up again a few days ago and thought it’s probably a good idea to publish an updated version.
I know I also have a terrible record with open source maintenance, so I thought I’d archive the original and just post this instead. Do with it what you want!
To be super clear, this is a reset that works for me, personally and us at Set Studio. Whenever I refer to “we”, that’s who I’m referring to.
Experience Windows 11 in your way! Contribute to builtbybel/BloatyNosy development by creating an account on GitHub.
Le projet FreeMedForms est une suite logicielle médicale à code ouvert de grande qualité. Ce projet est international, libre, communautaire et totalement indépendant. Depuis 2008, il regroupe des professionnels bénévoles (médecins, pharmaciens, kinésithérapeutes, informaticiens, étudiants de toutes spécialités) qui oeuvrent à offrir des applications modernes et abouties. Le projet est disponible pour les plateformes informatiques suivantes : Linux, Mac OS X et Windows.