Skip to content

Instantly share code, notes, and snippets.

View IceWreck's full-sized avatar

Anchit Bajaj IceWreck

View GitHub Profile
@IceWreck
IceWreck / app-privacy-policy.md
Created November 11, 2021 11:46
Abifog Apps Privacy Policy

Privacy Policy

  • We do not collect or store any user data.
  • The app works locally and does not require internet access.
  • No data or logs ever leave your device.
@IceWreck
IceWreck / stack_linked_list.go
Created September 28, 2020 06:28
Stack implemented in go using a linked list
// Stack implemented in Go without using any std lib function
// Uses linked lists instead of a slice or something
package main
import (
"errors"
"fmt"
)
@IceWreck
IceWreck / gsoc2020anchit.md
Last active September 23, 2021 09:05
GSOC 2020 (Fedora) - Dashboard for Packit - Anchit Bajaj

GSOC 2020 Progress Report

Dashboard for Packit (Fedora Project)

Project Recap

  • Packit-as-a-Service is an installable app for git forges like GitHub, Pagure, etc that helps developers continuously ensure that their project works in Fedora.
  • Packit Service validates pull requests by building that project in Fedora so that others can install and test those built rpms before merging.