Skip to content

Instantly share code, notes, and snippets.

View CodeBoy722's full-sized avatar
:octocat:
Coding better than ever

Codeboy CodeBoy722

:octocat:
Coding better than ever
View GitHub Profile
@CodeBoy722
CodeBoy722 / MainActivity.kt
Created December 9, 2021 13:03 — forked from codinginflow/MainActivity.kt
Circular Determinate ProgressBar with Background and Text Tutorial
package com.codinginflow.circulardeterminateprogressbar
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
private var progr = 0
override fun onCreate(savedInstanceState: Bundle?) {
@CodeBoy722
CodeBoy722 / Common-Currency.json
Created February 14, 2021 05:46 — forked from ksafranski/Common-Currency.json
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},