Google Summer of Code 2022 Final Work Report
- Name: Anik Das
- GitHub: https://github.com/sadn1ck
- Organization: Sugar Labs
{ | |
"editor.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
"editor.lineHeight": 1.75, | |
"editor.fontFamily": "_ Nerd Font Mono", | |
"terminal.integrated.fontFamily": "_ Nerd Font Mono", | |
"editor.accessibilitySupport": "off", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.tree.indent": 12, | |
"editor.cursorBlinking": "smooth", |
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
<fontconfig> | |
<!-- Set preferred serif, sans serif, and monospace fonts. --> | |
<alias> | |
<family>serif</family> | |
<prefer><family>SF Pro Text</family></prefer> | |
</alias> | |
<alias> | |
<family>sans-serif</family> |
def xor(a, b): | |
# initialize result | |
result = [] | |
# Traverse all bits, if bits are | |
# same, then XOR is 0, else 1 | |
for i in range(1, len(b)): | |
if a[i] == b[i]: | |
result.append('0') |
I hereby claim:
To claim this, I am signing this object:
└❯ pacman -Qs mingw
local/mingw-w64-binutils 2.35.1-1 (mingw-w64-toolchain mingw-w64)
Cross binutils for the MinGW-w64 cross-compiler
local/mingw-w64-crt 8.0.0-1 (mingw-w64-toolchain mingw-w64)
MinGW-w64 CRT for Windows
import React, { Component } from "react"; | |
// import * as p5 from 'p5'; | |
import * as ml5 from 'ml5'; | |
import Sketch from "react-p5"; | |
class App extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
options: { |
$ yarn add -D @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/free-brands-svg-icons @fortawesome/free-regular-svg-icons @fortawesome/vue-fontawesome
<font-awesome-icon :icon="['far', 'user-secret']"/>
<font-awesome-icon :icon="['fab', 'facebook']" />
git config --global user.name "your name"
git config --global user.email "yourEmail@email.com"
git config --global color.ui true
ssh-keygen -t rsa -C "yourEmail@email.com"
cat ~/.ssh/githubssh.pub