Skip to content

Instantly share code, notes, and snippets.

View enxg's full-sized avatar

Enes Genç enxg

View GitHub Profile

Keybase proof

I hereby claim:

  • I am enxg on github.
  • I am enesgenc (https://keybase.io/enesgenc) on keybase.
  • I have a public key ASAQRY0s353EaQSwPZwedeEl9RE_qIa7PdMho8lWX5GeYwo

To claim this, I am signing this object:

@enxg
enxg / quoraNoLogin.user.js
Last active April 3, 2022 03:03
View Quora questions without logging in.
// ==UserScript==
// @name Quora No Login
// @namespace http://github.com/RedS-DEV
// @version 1.0
// @description View Quora questions without logging in.
// @author github.com/RedS-DEV
// @match https://www.quora.com/*
// @grant none
// ==/UserScript==
@enxg
enxg / progressBar.vue
Created March 11, 2021 14:18
Vue 2 + Tailwind Progress Bar
<template>
<div class="h-3 relative max-w-xl rounded-full overflow-hidden">
<div class="w-full h-full bg-gray-200 absolute"></div>
<div class="h-full bg-green-500 absolute" :style="{width: value + '%'}"></div>
</div>
</template>
<script>
export default {
name: "progressBar",