{"id":20660694,"url":"https://github.com/irchamali/links","last_synced_at":"2026-04-17T21:33:25.476Z","repository":{"id":47731712,"uuid":"515670899","full_name":"irchamali/links","owner":"irchamali","description":"Direct link to all social media","archived":false,"fork":false,"pushed_at":"2023-09-15T02:34:52.000Z","size":95861,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-10T02:03:49.616Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/irchamali.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-19T16:56:33.000Z","updated_at":"2023-05-03T02:51:27.000Z","dependencies_parsed_at":"2025-01-17T12:24:56.624Z","dependency_job_id":null,"html_url":"https://github.com/irchamali/links","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/irchamali/links","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irchamali%2Flinks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irchamali%2Flinks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irchamali%2Flinks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irchamali%2Flinks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/irchamali","download_url":"https://codeload.github.com/irchamali/links/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irchamali%2Flinks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31947663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T19:05:49.669Z","updated_at":"2026-04-17T21:33:20.467Z","avatar_url":"https://github.com/irchamali.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Demo app\n\n[![Streamlit App](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://ircham.streamlit.app/)\n\n# Setting up\n\nGetting your own Streamlit `links page` up and running is really easy, just follow the following 3 steps:\n\n**Step 1**. [Click here](https://github.com/irchamali/links/generate) to generate a copy of this repository. Next, name your new repository to anything you'd like except for `your username`.github.io\n\n**Step 2**. Customize the contents of the newly generated `links page` by editing the `streamlit_app.py` file:\n\n```python\nimport streamlit as st\nfrom st_functions import st_button, load_css\nfrom PIL import Image\n\nload_css()\n\ncol1, col2, col3 = st.columns(3)\ncol2.image(Image.open('ia.png'))\n\nst.header('Ircham Ali, M.Kom.')\n\nst.info('System Analyst, Web Designer, and Informatics Lecturer')\n\nicon_size = 20\n\nst_button('linkedin', 'https://www.linkedin.com/in/ircham-ali/', 'Follow me on LinkedIn', icon_size)\nst_button('youtube', 'https://www.youtube.com/@unusialabs', 'Unusia Labs YouTube', icon_size)\nst_button('medium', 'https://irchamali.medium.com/', 'Read my Medium Blogs', icon_size)\nst_button('instagram', 'https://instagram.com/irchamali_/', 'Follow me on Instagram', icon_size)\nst_button('twitter', 'https://twitter.com/irchamxyz/', 'Follow me on Twitter', icon_size)\nst_button('facebook', 'https://facebook.com/dosenirham/', 'Follow me on Facebook', icon_size)\nst_button('github', 'https://github.com/irchamali/', 'Follow me on GitHub', icon_size)\n```\n\nThere are 3 key information that you can modify:\n1. `st.header(A)` is used for specifying your name in place of **A**.\nExample:\n```python\nst.header('Ircham Ali, M.Kom.')\n```\n\n2. `st.info(B)` is used for speciying a quick description about who you are, what you do, etc. in place of **B**.\nExample:\n```python\nst.info('System Analyst, Web Designer, and Informatics Lecturer')\n```\n\n3. `st.button(D, E, F, G)` is a custom function for creating link buttons where **D** represents the icon to display (use `youtube` if the play button is to be displayed), **E** represents the URL, **F** represents the message to display on the clickable button and **G** represents the icon size.\nExample:\n```python\nst_button('linkedin', 'https://www.linkedin.com/in/ircham-ali/', 'Follow me on LinkedIn', icon_size)\n```\n\n**Step 3**. Deploy to [Streamlit Cloud](https://streamlit.io/cloud). Log-in and click on the **New app** button. Choose the newly generated repo from Steps 1-2. Finally click on the **Deploy!** button. \n\nAfter a few moments your new `links page` should be accessible at `https://share.streamlit.io/{your-username}/{newly-created-repo}`\n\nIn an upcoming release of Streamlit Cloud, you will be able to customize the URL address to `https://{custom-name--here}.streamlitapp.com/` such as the one that I've created at https://ircham.streamlit.app/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Firchamali%2Flinks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Firchamali%2Flinks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Firchamali%2Flinks/lists"}