Skip to content

Instantly share code, notes, and snippets.

View gabrielctn's full-sized avatar

Gabriel Cretin gabrielctn

  • Université Paris Cité - INSERM
  • Paris
  • 00:35 (UTC +02:00)
View GitHub Profile
@jiankaiwang
jiankaiwang / recaptcha-example-js.html
Last active December 16, 2024 03:26
the example to use recaptcha in javascript
<!--
Description: The following is the example code to use recaptcha.
Notice: The function backend_API_challenge is the concept and you should implement it on the backend.
Especially, you must keep your secret key in private all the time.
Flow:
1. Click the submit button.
2. On the console, execute backend_API_challenge function.
-->
<html>
<head>
@zuyu
zuyu / ubuntu-install-gcc-6
Last active February 13, 2025 13:16
Install gcc 6 on Ubuntu
sudo apt update && \
sudo apt install build-essential software-properties-common -y && \
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
sudo apt update && \
sudo apt install gcc-6 g++-6 -y && \
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6 && \
gcc -v
@hofmannsven
hofmannsven / README.md
Last active April 1, 2025 06:51
Git CLI Cheatsheet