This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://pypi.org/project/jupyter-datatables/ | |
!pip install jupyter-datatables | |
from jupyter_datatables import init_datatables_mode | |
init_datatables_mode() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# download 3.5.8 or neo4j-enterprise-4.0.0-alpha09mr02-unix | |
!curl https://neo4j.com/artifact.php?name=neo4j-community-3.5.8-unix.tar.gz -o neo4j.tar.gz | |
# decompress and rename | |
!tar -xf neo4j.tar.gz # or --strip-components=1 | |
!mv neo4j-community-3.5.8 nj | |
# disable password, and start server | |
!sed -i '/#dbms.security.auth_enabled/s/^#//g' nj/conf/neo4j.conf | |
!nj/bin/neo4j start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Here is a template and script for a Vue 3 component that uses Firebase/Auth SDK version 9 to implement | |
phone number authentication with reCAPTCHA verification: --> | |
<template> | |
<div class="container mx-auto"> | |
<form @submit.prevent="submitPhoneNumber" class="bg-white p-6 rounded-lg shadow-md"> | |
<label class="block font-medium text-gray-700 mb-2"> | |
Phone Number | |
</label> | |
<input | |
v-model="phoneNumber" |
OlderNewer