Download flutter
tar xvf flutter_linux_1.17.5-stable.tar.xz
  
    
      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
    
  
  
    
  | name: build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| gradle: | |
| runs-on: ubuntu-latest | 
  
    
      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
    
  
  
    
  | public class JpaApplication { | |
| @Bean | |
| CommandLineRunner commandLineRunner(AuthorService authorService, ModelRepository modelRepository) { | |
| return args -> { | |
| ModelField f1 = ModelField.builder() | |
| .filedName("f1").build(); | |
| ModelField f2 = ModelField.builder() | |
| .filedName("f2").build(); | |
| Model model1 = Model.builder() | |
| .modelName("model1") | 
  
    
      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 nginx:alpine AS builder | |
| # nginx:alpine contains NGINX_VERSION environment variable, like so: | |
| # ENV NGINX_VERSION 1.15.0 | |
| # Our NCHAN version | |
| ENV NCHAN_VERSION 1.1.15 | |
| # Download sources | |
| RUN wget "http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz" -O nginx.tar.gz && \ | 
  
    
      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
    
  
  
    
  | const net = require("net"); | |
| const server = net.createServer(); | |
| server.on("connection", (clientToProxySocket) => { | |
| console.log("Client connected to proxy"); | |
| clientToProxySocket.once("data", (data) => { | |
| let isConnectionTLS = data.toString().indexOf("CONNECT") !== -1; | |
| let serverPort = 80; | |
| let serverAddress; | 
  
    
      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 functools | |
| from http.server import BaseHTTPRequestHandler, HTTPServer | |
| from typing import Callable | |
| import requests | |
| import sys | |
| hostName = "0.0.0.0" | |
| serverPort = 8080 | |
| host = "https://jsonplaceholder.typicode.com" | 
  
    
      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
    
  
  
    
  | version: '3.8' | |
| name: kafka-cluster | |
| services: | |
| kafka1: | |
| image: confluentinc/cp-kafka:7.4.1 | |
| container_name: kafka1 | |
| hostname: kafka1 | |
| ports: | |
| - "9092:9092" | |
| environment: | 
NewerOlder