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
    
  
  
    
  | #include <glib.h> | |
| #include <stdio.h> | |
| int main( int argc, char *argv[] ) | |
| { | |
| GString *s; | |
| GString gs; | |
| GArray *a; | |
| int i; | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| export LANG=C | |
| cores=$(nproc --all) | |
| # disable zram | |
| core=0 | |
| while [ $core -lt $cores ]; do | |
| if [[ -b /dev/zram$core ]]; then | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # lsb_release -a | |
| # Distributor ID: Ubuntu | |
| # Description: Ubuntu 20.04.3 LTS | |
| # Release: 20.04 | |
| # Codename: focal | |
| VERSION=2021.2 | |
| VIVADO_WORKSPACE=$HOME/vivado | 
  
    
      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
    
  
  
    
  | from fastapi import FastAPI | |
| from fastapi import HTTPException, Security | |
| from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer | |
| from auth import Auth | |
| from models.user import AuthModel_User | |
| app = FastAPI() | |
| security = HTTPBearer() | |
| auth_handler = Auth() | 
  
    
      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
    
  
  
    
  | import jwt | |
| from fastapi import HTTPException | |
| from passlib.context import CryptContext | |
| from datetime import datetime, timedelta | |
| from config import settings | |
| import base64 | |
| import json | |
| from jwt.algorithms import ECAlgorithm | 
  
    
      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
    
  
  
    
  | ## Tested on | |
| # pi@raspberrypi:~ $ python3 --version | |
| # Python 3.7.3 | |
| # pi@raspberrypi:~ $ pip3 --version | |
| # pip 18.1 from /usr/lib/python3/dist-packages/pip (python 3.7) | |
| curl https://pyenv.run | bash | |
| export PATH="$HOME/.pyenv/bin:$PATH" | |
| eval "$(pyenv init --path)" | |
| eval "$(pyenv virtualenv-init -)" | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| set -euo pipefail | |
| # This script downloads, compiles, and installs python3.8 as the system default | |
| export VERSION=3.8.5 | |
| apt install -y \ | |
| build-essential \ | |
| libbz2-dev \ | 
  
    
      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
    
  
  
    
  | import 'package:flutter/material.dart'; | |
| @immutable | |
| class ClipShadowPath extends StatelessWidget { | |
| final Shadow shadow; | |
| final CustomClipper<Path> clipper; | |
| final Widget child; | |
| ClipShadowPath({ | |
| @required this.shadow, | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en" style="width: 100%; height: 100%;"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>PoC</title> | |
| </head> | |
| <body style="width: 100%; height: 100%;"> | |
| <audio | |
| id="player" | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en" style="width: 100%; height: 100%;"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>PoC</title> | |
| </head> | |
| <body style="width: 100%; height: 100%;"> | |
| <audio | |
| id="player" |