293 private links
Currently selectable: Facebook, Instagram, LinkedIn, Messenger Signal, Snapchat, Whatsapp
A password generator system based on hash generation. The hash take the website URL and a master password as input, it then generates a hash and returns the first X characters of it.
Tadaa you have your password.
A password generator based on the website URL and a master password. Thus it avoids to have a password generator.
A reboot of https://crypto.stanford.edu/PwdHash/ btw ...
I had the idea last year as the extension of stanford was old ! Here you are doing it LessPass :D
Make all software developed on public funds open-source.
Ok alors le nucléaire c'est pas mal pour l'indépendance.
C'est donc une preuve que le choix des sources d'énergie est économique et politique, avant d'être sécuritaire.
+1 pour le CO2 en moins qui sera rejeté dans l'atmosphère.
The biggest canvas where everyone can draw
Mes élèves ont trouvé comment tricher avec un QCM #Pronote : ils explorent le code source de la page pour lire les réponses. Donc, je fais la chasse aux tricheurs, ou je valide des compétences numériques ? #SNT
@Eli_Ana_Ma
C'est si drôle ! Les réponses sont donc stockées dans le frontend :D
Commentaire de Bronco: https://warriordudimanche.net/article1644/6225cdfae9e3a
Seems a good project for Drag'n'Drop !
Facture 2x plus cher, quitte à échouer à signer la moitié de tes prospects
Le corollaire que j’applique : Si la très grande majorité des prospects signent, c’est que tu n’es pas assez cher.
Aller d'un point A à un point B autour du monde ? Ce site explique comment, et par moyen de transport.
(via http://nicolas-delsaux.hd.free.fr/Shaarli/?rqLbWw)
Comme disait je ne sais plus qui, rapporté à leur chiffre d'affaire, c'est comme si on vous demandait de payer une amende de 17€.
Most wolf packs simply consist of two parents and their puppies. The group may also include one- to three-year-old offspring that have not yet headed out on their own.
Les idées de mâles alpha et de hiérarchie viennent d’observations en captivité où on force des loups adultes de familles différentes à cohabiter dans des espaces réduits. Ce sont des comportements provoqués qui n’ont rien de ceux que choisissent les loups quand ils ont le choix.
TL;DR you have to read the entire blob binary and create the appropriate data structure before filtering whereas you can skip parts with JSON, and thus make it faster.
JSON, however, allows stream parsing. Consider for example, the Jackson library’s [nextToken()](https://fasterxml.github.io/jackson-core/javadoc/2.8/com/fasterxml/jackson/core/JsonParser.html#nextToken()) or Go’s json.Tokenizer.
Sadly the code produced for Amazon Web Services is not open-source yet.
A powerful color picker with corresponding color palette. A clean & simple color picker for web designers.
Le logiciel Helio simple et épuré dédié à la composition. Je l'essaierais au besoin :)
TL;DR SPAs hurt the built-in navigation of the browser. Developers reinvent the wheel for it and it is common to make mistakes bout it.
Some use cases are justified such as Youtube or Soundcloud (keep playing a video while navigating).
/*
* Copyright (c) 2016 Intel Corporation. All rights reserved.
* See the bottom of this file for the license terms.
*/
/*
* Sketch: LedControl.ino
*
* Description:
* This is a Central sketch that looks for a particular Sevice with a
* certain Characteristic from a Peripheral. Upon succesful discovery,
* it reads the state of a button and write that value to the
* Peripheral Characteristic.
*
* Notes:
*
* - Expected Peripheral Service: 19b10000-e8f2-537e-4f6c-d104768a1214
* - Expected Peripheral Characteristic: 19b10001-e8f2-537e-4f6c-d104768a1214
* - Expected Peripheral sketch:
*
*/
#include <CurieBLE.h>
const char* testService = "19B10000-E8F2-537E-4f6C-D104768A1214";
BLEPeripheral blePeripheral;
void setup() {
Serial.begin(9600);
// initialize the BLE hardware
blePeripheral.begin();
blePeripheral.setLocalName("Hello world BLE");
blePeripheral.setAdvertisedServiceUuid(testService);
Serial.println("BLE Central - LED control");
}
void loop() {
// check if a peripheral has been discovered
BLECentral central = blePeripheral.central();
if (central) {
Serial.print("Connected to central: ");
Serial.println(central.address());
}
Serial.println("BLE Central - LED control");
delay(100);
}