Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a2ce9a3
Update CNAME
Leguna Sep 25, 2021
d1e6f8e
verified test
Leguna Sep 25, 2021
52a4ae2
ogey
Leguna Sep 25, 2021
32dd0dc
update 1
Leguna Sep 25, 2021
110b468
woke
Leguna Sep 25, 2021
9a8f530
disable splash
Leguna Sep 25, 2021
d8a9282
tes verified
Leguna Sep 25, 2021
8bc8971
tes verif 2
Leguna Sep 25, 2021
7d29433
tes
Leguna Sep 25, 2021
7ced50e
fetcher
Leguna Oct 7, 2021
d840169
Delete git_data_fetcher.js
Leguna Oct 7, 2021
d79758b
Merge branch 'master' of https://github.com/Leguna/leguna.github.io
Leguna Oct 7, 2021
f896f88
update git
Leguna Oct 7, 2021
19ab3a3
fix image
Leguna Oct 7, 2021
fa8b27d
funding
Leguna Oct 7, 2021
82f229a
service worker cache enabled
Leguna Oct 7, 2021
06cf92c
many updates
Leguna Oct 7, 2021
3aa9030
Siap publish.
Leguna Oct 8, 2021
c8b9661
try fixing education
Leguna Oct 9, 2021
c3f6452
fixed
Leguna Oct 9, 2021
3f34b07
oke
Leguna Oct 9, 2021
94fd8f3
turnoff cache
Leguna Nov 17, 2021
3f0c9c7
add project
Leguna Dec 29, 2021
4b3797a
Merge branch 'master' of https://github.com/Leguna/leguna.github.io
Leguna Dec 29, 2021
57040b6
update 2022
Leguna May 24, 2022
8a402d2
update cname
Leguna May 24, 2022
0bcd7d1
Update CNAME
Leguna Jul 28, 2023
0106d40
Merge branch 'master' of https://github.com/Leguna/leguna.github.io
Leguna Aug 1, 2023
e936ebf
last update 2023
Leguna Aug 1, 2023
3407f10
update august 2023
Leguna Aug 1, 2023
7bba99e
update cname
Leguna Aug 1, 2023
4afaeec
update manifest for favicon
Leguna Aug 5, 2023
f900f90
Update CNAME
Leguna Apr 10, 2024
8394382
Update CNAME
Leguna Apr 10, 2024
53b02aa
Update CNAME
Leguna Feb 16, 2025
e0e397c
update .gitignore to include .idea and fix .env formatting
Leguna Feb 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
],
"imageSize": 100,
"commit": false,
"contributors": [
{
"contributors": [{
"login": "ashutosh1919",
"name": "Ashutosh Hathidara",
"avatar_url": "https://avatars3.githubusercontent.com/u/20843596?s=460&u=7f184b911f73ae1dc5765ab686fff2b2e984830f&v=4",
Expand Down
20 changes: 20 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
env: {
browser: true,
es6: true,
node: true,
},
extends: ["plugin:react/recommended", "standard"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
},
plugins: ["react"],
rules: {},
};
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# These are supported funding model platforms
github: ashutosh1919
github: leguna
98 changes: 49 additions & 49 deletions .github/workflows/pullRequestsDataFetcher.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
name: Pull Request Creation
# name: Pull Request Creation

on:
push:
branches:
- all
# on:
# push:
# branches:
# - all

jobs:
pullRequestRelease:
runs-on: ubuntu-latest
steps:
- uses: octokit/graphql-action@v2.x
id: get_pull_requests
with:
query: |
query user(login: "ashutosh1919") {
pullRequests(last: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
totalCount
nodes {
title
url
state
mergedBy {
avatarUrl
url
login
}
createdAt
number
changedFiles
additions
deletions
baseRepository {
name
url
owner {
avatarUrl
login
url
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: "echo 'Pull Requests Data: ${{ steps.get_latest_release.outputs.data }}'"
# jobs:
# pullRequestRelease:
# runs-on: ubuntu-latest
# steps:
# - uses: octokit/graphql-action@v2.x
# id: get_pull_requests
# with:
# query: |
# query user(login: "ashutosh1919") {
# pullRequests(last: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
# totalCount
# nodes {
# title
# url
# state
# mergedBy {
# avatarUrl
# url
# login
# }
# createdAt
# number
# changedFiles
# additions
# deletions
# baseRepository {
# name
# url
# owner {
# avatarUrl
# login
# url
# }
# }
# }
# pageInfo {
# hasNextPage
# endCursor
# }
# }
# }
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - run: "echo 'Pull Requests Data: ${{ steps.get_latest_release.outputs.data }}'"
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# misc
.DS_Store
.env
.env
.env.local
.env.development.local
.env.test.local
Expand All @@ -23,3 +23,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
!/package-lock.json

git_data_fetcher.js

.idea
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ashutoshhathidara.com
tuflihun.my.id
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Ashutosh Hathidara
Copyright (c) 2020 Ahmad Tuflihun

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading
Loading