diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 522ac7c..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -FROM mcr.microsoft.com/vscode/devcontainers/universal:linux as builder -USER root - -# Magic DNS in a container where /etc/resolv.conf is a bind mount needed -# extra support, currently on a development branch. -WORKDIR /go/src/tailscale -COPY . ./ -RUN git clone https://github.com/tailscale/tailscale.git && cd tailscale && \ - go mod download && \ - go install -mod=readonly ./cmd/tailscaled ./cmd/tailscale -COPY . ./ - -FROM mcr.microsoft.com/vscode/devcontainers/universal:linux -USER root - -RUN apt-get update && apt-get install -y curl gpg dnsutils -COPY tailscaled /etc/init.d -COPY --from=builder /go/bin/tailscaled /usr/sbin/tailscaled -COPY --from=builder /go/bin/tailscale /usr/bin/tailscale - -RUN mkdir -p /var/run/tailscale /var/cache/tailscale /var/lib/tailscale diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 2246889..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": "Tailscale-enabled Codespace", - "dockerFile": "Dockerfile", - "context": "..", - "runArgs": [ "--cap-add=NET_ADMIN", "--cap-add=NET_RAW", "--device=/dev/net/tun" ], - "postStartCommand": "/etc/init.d/tailscaled start", -} diff --git a/.github/workflows/action.yaml b/.github/workflows/action.yaml deleted file mode 100644 index dfb6d9b..0000000 --- a/.github/workflows/action.yaml +++ /dev/null @@ -1,53 +0,0 @@ -# GitHub Action for generating a contribution graph with a snake eating your contributions. - -name: Generate Snake - -# Controls when the action will run. This action runs every 6 hours. - -on: - schedule: - # every 6 hours - - cron: "0 */3 * * *" - - # This command allows us to run the Action automatically from the Actions tab. - workflow_dispatch: - -# The sequence of runs in this workflow: -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks repo under $GITHUB_WORKSHOP, so your job can access it - - uses: actions/checkout@main - - # Generates the snake - - uses: Platane/snk@main - id: snake-gif - with: - github_user_name: nooobcoder - # these next 2 lines generate the files on a branch called "output". This keeps the main branch from cluttering up. - gif_out_path: github-contribution-grid-snake.gif - svg_out_path: github-contribution-grid-snake.svg - - # show the status of the build. Makes it easier for debugging (if there's any issues). - - run: git status - - # Push the changes - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master - force: true - - - uses: crazy-max/ghaction-github-pages@v2.1.3 - with: - # the output branch we mentioned above - target_branch: output - build_dir: dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/devcard.yaml b/.github/workflows/devcard.yaml deleted file mode 100644 index 7d4e9a6..0000000 --- a/.github/workflows/devcard.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Name of the github action -name: devcard_nooobcoder -permissions: - contents: write - -on: - workflow_dispatch: - push: - branches: - - master - schedule: - - cron: '0 0/3 * * *' - -jobs: - devcard_nooobcoder: - runs-on: ubuntu-latest - steps: - - name: gendevcard - uses: dailydotdev/action-devcard@2.0.2 - with: - devcard_id: ${{ secrets.DEVCARD_ID }} diff --git a/.github/workflows/wakastats.yaml b/.github/workflows/wakastats.yaml deleted file mode 100644 index 349f7dc..0000000 --- a/.github/workflows/wakastats.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Waka Readme - -on: - schedule: - # Runs at 12am IST - - cron: "30 18 * * *" - workflow_dispatch: -jobs: - update-readme: - name: Update Readme with Metrics - runs-on: ubuntu-latest - steps: - - uses: anmol098/waka-readme-stats@master - with: - WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} - GH_TOKEN: ${{ secrets.GH_TOKEN }} - LOCALE: "False" - SYMBOL_VERSION: 2 diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index 136098e..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -FROM gitpod/workspace-full:latest - -USER root - -RUN curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add - \ - && curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list \ - && apt-get update \ - && apt-get install -y tailscale -RUN sh -c "$(curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg)" -RUN sh -c "echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null" -RUN bash -c "sudo apt update" -RUN bash -c "sudo apt install gh -y" -USER gitpod -RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" -ENV SHELL=zsh -RUN echo "alias gits='git status'" >> $HOME/.zshrc -RUN echo "alias ls='ls -GFh'" >> $HOME/.zshrc -ENV NVM_DIR="$HOME/.nvm" -RUN echo ". ~/.nvm/nvm.sh" >> $HOME/.zshrc -RUN sed -i 's/plugins=(git)/plugins=(git npm docker-compose docker)/' $HOME/.zshrc -RUN git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k -RUN sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' $HOME/.zshrc -RUN wget https://gist.githubusercontent.com/nooobcoder/d8f728b999329c4edf563cd378d0398c/raw/.p10k.zsh -O $HOME/.p10k.zsh -RUN echo "[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh" >> $HOME/.zshrc diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index bc68874..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,134 +0,0 @@ -image: - file: .gitpod.Dockerfile -tasks: - - name: tailscaled - command: | - if [ -n "${TS_STATE_TAILSCALE_EXAMPLE}" ]; then - # restore the tailscale state from gitpod user's env vars - sudo mkdir -p /var/lib/tailscale - echo "${TS_STATE_TAILSCALE_EXAMPLE}" | sudo tee /var/lib/tailscale/tailscaled.state > /dev/null - fi - sudo tailscaled - - name: Tailscale - command: | - sudo -E tailscale up --hostname "gitpod@nooobcoder-${GITPOD_WORKSPACE_ID}" \ - --authkey "${TAILSCALE_AUTHKEY}" - - name: ImportGPG - command: > - [[ ! -z $GNUPG_KEY ]] && - gpg --verbose --batch --import <(echo $GNUPG_KEY|base64 -d) && - echo 'pinentry-mode loopback' >> ~/.gnupg/gpg.conf && - git config commit.gpgsign true -vscode: - extensions: - - mutantdino.resourcemonitor - - cweijan.vscode-mysql-client2 - - Gruntfuggly.todo-tree - - jsDelivr.jsdelivr - - manuth.eslint-language-service - - markwylde.vscode-filesize - - mongodb.mongodb-vscode - - monokai.theme-monokai-pro-vscode - - ngryman.codesandbox-theme - - njzy.stats-bar - - pflannery.vscode-versionlens - - rangav.vscode-thunder-client - - redwan-hossain.auto-rename-tag-clone - - tombonnike.vscode-status-bar-format-toggle - - vlanguage.vscode-vlang - - vscjava.vscode-spring-initializr - - zaaack.markdown-editor - - aaron-bond.better-comments - - ahmadawais.shades-of-purple - - apollographql.vscode-apollo - - avraammavridis.vsc-react-documentation - - bengreenier.vscode-node-readme - - benjaminbenais.codesandbox-dark - - bierner.color-info - - bradlc.vscode-tailwindcss - - bungcip.better-toml - - chris-noring.node-snippets - - christian-kohler.npm-intellisense - - christian-kohler.path-intellisense - - chrmarti.regex - - CodeSandbox-io.codesandbox-projects - - CodeSandbox-io.codesandbox-projects-theme - - cssho.vscode-svgviewer - - DaltonMenezes.aura-theme - - Dart-Code.dart-code - - Dart-Code.flutter - - dbaeumer.vscode-eslint - - docsmsft.docs-markdown - - docsmsft.docs-preview - - DominicVonk.parameter-hints - - dsznajder.es7-react-js-snippets - - eamodio.gitlens - - ecmel.vscode-html-css - - EditorConfig.EditorConfig - - eg2.vscode-npm-script - - esbenp.prettier-vscode - - evan-buss.font-switcher - - formulahendry.auto-rename-tag - - geeebe.duplicate - - GitHub.codespaces - - GitHub.copilot-labs - - GitHub.copilot-nightly - - GitHub.github-vscode-theme - - GitHub.vscode-pull-request-github - - gitpod.gitpod-desktop - - golang.go - - GraphQL.vscode-graphql - - hashicorp.terraform - - hollowtree.vue-snippets - - jcbuisson.vue - - jeff-hykin.better-cpp-syntax - - k--kato.intellij-idea-keybindings - - me-dutour-mathieu.vscode-github-actions - - mechatroner.rainbow-csv - - mikestead.dotenv - - ms-python.python - - ms-python.vscode-pylance - - ms-toolsai.jupyter - - ms-toolsai.jupyter-keymap - - ms-vscode-remote.remote-containers - - ms-vscode-remote.remote-ssh - - ms-vscode-remote.remote-ssh-edit - - ms-vscode-remote.remote-wsl - - ms-vscode-remote.vscode-remote-extensionpack - - ms-vscode.cmake-tools - - ms-vscode.cpptools - - ms-vscode.cpptools-extension-pack - - ms-vscode.cpptools-themes - - ms-vscode.js-debug-nightly - - ms-vscode.vscode-typescript-next - - ms-vscode.vscode-typescript-tslint-plugin - - ms-vsliveshare.vsliveshare - - ms-vsliveshare.vsliveshare-audio - - ms-vsliveshare.vsliveshare-pack - - naumovs.color-highlight - - oderwat.indent-rainbow - - PKief.material-icon-theme - - pranaygp.vscode-css-peek - - Prisma.prisma - - Prisma.prisma-insider - - redhat.java - - redhat.vscode-xml - - redhat.vscode-yaml - - ritwickdey.LiveServer - - sdras.night-owl - - silvenon.mdx - - steoates.autoimport - - tgreen7.vs-code-node-require - - tomoki1207.selectline-statusbar - - twxs.cmake - - usernamehw.errorlens - - VisualStudioExptTeam.vscodeintellicode - - vscjava.vscode-java-debug - - vscjava.vscode-java-dependency - - vscjava.vscode-java-pack - - vscjava.vscode-java-test - - vscjava.vscode-maven - - vscode-icons-team.vscode-icons - - wix.vscode-import-cost - - xabikos.JavaScriptSnippets - - Zignd.html-css-class-completion diff --git a/README.md b/README.md deleted file mode 100644 index b5c09fe..0000000 --- a/README.md +++ /dev/null @@ -1,197 +0,0 @@ -

Ankur Paul's devcard

-nooobcoder's Dev Card - ---- - -[![@nooobcoder's Holopin board](https://holopin.io/api/user/board?user=nooobcoder)](https://holopin.io/@nooobcoder) - ---- - -

नमस्ते (Namaste)🙏🏻, I am Ankur Paul!

- - - -[![GitHub stats](https://github-readme-stats.vercel.app/api?username=nooobcoder&show_icons=true&count_private=true&theme=shades-of-purple)](https://github.com/nooobcoder/github-readme-stats) - -[![Twitter Follow](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40ankurpauldotdev)](https://twitter.com/ankurpauldotdev) - -[![Linkedin: ankur-paul-888b4411b](https://img.shields.io/badge/-Ankur%20Paul-blue?style=flat-square&logo=Linkedin&logoColor=white&link=https://www.linkedin.com/in/ankur-paul-888b4411b/)](https://www.linkedin.com/in/ankur-paul-888b4411b/) -![GitHub followers](https://img.shields.io/github/followers/nooobcoder?label=Follow&style=social) - -[![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=nooobcoder&layout=compact&theme=radical)](https://github.com/nooobcoder/) - -![Ankur's contribution graph](https://activity-graph.herokuapp.com/graph?username=nooobcoder&hide_border=true&bg_color=0D1117&color=58A6FF&line=58A6FF&point=1F6FEB&area=true&custom_title=Contribution%20Graph) - - -![Code Time](http://img.shields.io/badge/Code%20Time-87%20hrs%2058%20mins-blue) - -![Profile Views](http://img.shields.io/badge/Profile%20Views-0-blue) - -**🐱 My GitHub Data** - -> 🏆 6 Contributions in the Year 2023 - > -> 📦 755.5 kB Used in GitHub's Storage - > -> 💼 Opted to Hire - > -> 📜 54 Public Repositories - > -> 🔑 21 Private Repositories - > -**I'm an Early 🐤** - -```text -🌞 Morning 303 commits ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 38.50 % -🌆 Daytime 234 commits ⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 29.73 % -🌃 Evening 227 commits ⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 28.84 % -🌙 Night 23 commits ⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 02.92 % - -``` -📅 **I'm Most Productive on Friday** - -```text -Monday 93 commits ⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 11.82 % -Tuesday 130 commits ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 16.52 % -Wednesday 100 commits ⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 12.71 % -Thursday 128 commits ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 16.26 % -Friday 137 commits ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 17.41 % -Saturday 77 commits ⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 09.78 % -Sunday 122 commits ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 15.50 % - -``` - - -📊 **This Week I Spent My Time On** - -```text -⌚︎ Time Zone: Asia/Kolkata - -💬 Programming Languages: -TypeScript 3 hrs 40 mins ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣀⣀⣀ 91.39 % -JavaScript 8 mins ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 03.56 % -CSS 6 mins ⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 02.57 % -C# 5 mins ⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 02.07 % -JSON 0 secs ⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 00.41 % - -🔥 Editors: -VS Code 4 hrs 1 min ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ 100.00 % - -🐱‍💻 Projects: -project-poc 4 hrs 1 min ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ 100.00 % - -💻 Operating System: -Windows 4 hrs 1 min ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ 100.00 % - -``` - -**I Mostly Code in JavaScript** - -```text -JavaScript 10 repos ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 18.52 % -Java 9 repos ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 16.67 % -Shell 9 repos ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 16.67 % -Python 5 repos ⣿⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 09.26 % -TypeScript 4 repos ⣿⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀⣀ 07.41 % - -``` - - -**Timeline** - -![Chart not found](https://raw.githubusercontent.com/nooobcoder/nooobcoder/master/charts/bar_graph.png) - - - Last Updated on 16/02/2023 18:47:51 UTC - - -## 🗂️ Highlight Projects - -[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=nooobcoder&repo=CoWinTracker&theme=shades-of-purple)](https://github.com/nooobcoder/CoWinTracker) - -[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=nooobcoder&repo=HighRadiusTraining&theme=shades-of-purple)](https://github.com/nooobcoder/HighRadiusTraining/) - -[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=nooobcoder&repo=ReactJSCourseUpdate&theme=shades-of-purple)](https://github.com/nooobcoder/ReactJSCourseUpdate) - -[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=nooobcoder&repo=LPUProductBasedPathwayTest&theme=shades-of-purple)](https://github.com/nooobcoder/LPUProductBasedPathwayTest) - -[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=nooobcoder&repo=upGradAssignment&theme=shades-of-purple)](https://github.com/nooobcoder/upGradAssignment) - -### A little more about me... - -

- React - Webpack - Docker - github actions - Google Cloud Platform - TypeScript - Insomnia - Heroku - redux - ReactiveX - GraphQL - Sass - Styled Components - git - angular - npm - html5 - d3js - Prettier - MongoDB - Nodejs -

- -```javascript -const ankurpaul = { - pronouns: "He" | "Him", - code: ["Javascript", "Python", "Java"], - askMeAbout: ["web dev", "tech", "app dev", "photography"], - technologies: { - backEnd: { - js: [ - "Node", - "Fastify", - "Express", - "SuiteScript", - "Supabase", - "Firebase", - "Appwrite", - ], - }, - mobileApp: { - native: ["Android Development"], - }, - devOps: ["AWS", "Docker🐳", "Route53", "Nginx"], - databases: ["mongo", "MySql", "sqlite"], - misc: [ - "Firebase", - "Socket.IO", - "selenium", - "open-cv", - "php", - "SuiteApp", - ], - }, - architecture: [ - "Serverless Architecture", - "Progressive web applications", - "Single page applications", - ], - funFact: - "There are two ways to write error-free programs; only the third one works 😲", -}; -``` - - I love connecting with different people so if you want to say hi, I'll be happy to meet you more! 😊 - ---- - -[![Resume-logo](https://pixelartmaker-data-78746291193.nyc3.digitaloceanspaces.com/image/1e4ed6ace0977ce.png)](https://resumebucket-nooobcoder.s3.ap-south-1.amazonaws.com/Ankur+Paul+CV+Latest.pdf) - -[![Spotify Profile](https://spotify-github-profile.vercel.app/api/view?uid=31aqzbpl3gugod2ky5ngvvps2xdi&cover_image=true&theme=default)](https://open.spotify.com/user/31aqzbpl3gugod2ky5ngvvps2xdi) - -![Contribution Eat Up](https://github.com/nooobcoder/nooobcoder/blob/output/github-contribution-grid-snake.gif) - -> Last Updated on 18/04/2022 diff --git a/charts/bar_graph.png b/charts/bar_graph.png deleted file mode 100644 index 8ea782f..0000000 Binary files a/charts/bar_graph.png and /dev/null differ diff --git a/devcard.svg b/devcard.svg deleted file mode 100644 index 2549979..0000000 --- a/devcard.svg +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - , - - , - - , - - , - - - - - Favorite publications - - - - - - - - - - Tech News - - - 78 - - , - - - - - - Javascript - - - 76 - - , - - - - - - React - - - 71 - - , - - - - - - Devtools - - - 60 - - - - - - 1.1K - - - Articles read - - - - - - - - - - @nooobcoder - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/github-contribution-grid-snake.gif b/github-contribution-grid-snake.gif new file mode 100644 index 0000000..6b38459 Binary files /dev/null and b/github-contribution-grid-snake.gif differ diff --git a/github-contribution-grid-snake.svg b/github-contribution-grid-snake.svg new file mode 100644 index 0000000..6b96bda --- /dev/null +++ b/github-contribution-grid-snake.svg @@ -0,0 +1 @@ +Generated with https://github.com/Platane/snk \ No newline at end of file diff --git a/tailscaled b/tailscaled deleted file mode 100644 index 625093a..0000000 --- a/tailscaled +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/sh - -### BEGIN INIT INFO -# Provides: tailscaled -# Required-Start: -# Required-Stop: -# Default-Start: -# Default-Stop: -# Short-Description: Tailscale Mesh Wireguard VPN -### END INIT INFO - -set -e - -# /etc/init.d/tailscale: start and stop the Tailscale VPN service - -test -x /usr/sbin/tailscaled || exit 0 - -umask 022 - -. /lib/lsb/init-functions - -# Are we running from init? -run_by_init() { - ([ "$previous" ] && [ "$runlevel" ]) || [ "$runlevel" = S ] -} - -export PATH="${PATH:+$PATH:}/usr/sbin:/sbin" - -case "$1" in - start) - log_daemon_msg "Starting Tailscale VPN" "tailscaled" || true - if start-stop-daemon --start --quiet --oknodo --chuid 0:0 --pidfile /run/tailscaled.pid --background \ - --exec /usr/sbin/tailscaled -- --state=/var/lib/tailscale/tailscaled.state \ - --socket=/run/tailscale/tailscaled.sock --port 41641; then - tailscale up --authkey=${TAILSCALE_AUTHKEY} --netfilter-mode=off - log_end_msg 0 || true - else - log_end_msg 1 || true - fi - ;; - stop) - log_daemon_msg "Stopping Tailscale VPN" "tailscaled" || true - if start-stop-daemon --stop --quiet --oknodo --pidfile /run/tailscaled.pid --exec /usr/sbin/tailscaled; then - log_end_msg 0 || true - else - log_end_msg 1 || true - fi - ;; - - status) - status_of_proc -p /run/tailscaled.pid /usr/sbin/tailscaled tailscaled && exit 0 || exit $? - ;; - - *) - log_action_msg "Usage: /etc/init.d/tailscaled {start|stop|status}" || true - exit 1 -esac - -exit 0