{"id":15091088,"url":"https://github.com/efeyanar/obe-bank","last_synced_at":"2025-08-16T09:09:56.348Z","repository":{"id":239833514,"uuid":"800729006","full_name":"efeyanar/OBE-BANK","owner":"efeyanar","description":"It is an application developed for the Algorithm course final. OBE-Bank is not an official bank. This app will not work on devices that do not have the appropriate database installed.","archived":false,"fork":false,"pushed_at":"2024-08-24T15:53:17.000Z","size":1092,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-14T17:42:40.918Z","etag":null,"topics":["csharp","windows-forms"],"latest_commit_sha":null,"homepage":"","language":"C#","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/efeyanar.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":"2024-05-14T22:11:28.000Z","updated_at":"2024-08-24T15:53:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"6e89d4ca-fdbe-4108-8ddc-a24fe83cffae","html_url":"https://github.com/efeyanar/OBE-BANK","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"65116e2c29ed2997afc23cef40b600706aee861e"},"previous_names":["efeyanar/obe-bank"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/efeyanar/OBE-BANK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeyanar%2FOBE-BANK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeyanar%2FOBE-BANK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeyanar%2FOBE-BANK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeyanar%2FOBE-BANK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/efeyanar","download_url":"https://codeload.github.com/efeyanar/OBE-BANK/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeyanar%2FOBE-BANK/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270690543,"owners_count":24628910,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["csharp","windows-forms"],"created_at":"2024-09-25T10:35:31.382Z","updated_at":"2025-08-16T09:09:56.320Z","avatar_url":"https://github.com/efeyanar.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bu uygulama, uygun veritabanının kurulu olmadığı cihazlarda çalışmayacaktır.\nVeritabanı için 'banka' isimli bir veritabanı oluşturulmalı içine aşağıdaki script yazılmalıdır.\n\n1- CREATE DATABASE banka\n\n2- create table kullanici_bilgi (\nTC varchar(max) not null,\nkullanici_adi  varchar(max) not null,\nkullanici_soyadi  varchar(max) not null,\nkullanici_bakiye money default(0) not null,\nkullanici_sifre  varchar(max) not null,\nkullanici_uyruk  varchar(max) default('TR') not null,\nIBAN int identity(1000,1) ,\nkullanici_sube_no  varchar(max) not null,\nkullanici_sube  varchar(max) not null \n)\ncreate table kullanici_hesap_haraketleri (\ngonderen_kisi varchar(max) not null,\ngonder_iban varchar(max) not null,\nalan_kisi varchar(max) not null,\nalan_iban varchar(max) not null,\ngonderilen_miktar varchar(max) ,\naciklama varchar(max) not null,\nislem_tarihi varchar(max) not null, )\n\nArdından uygulama çalışır hale gelecektir.\nBaşka hesaplara para gönderme kısmında ortak bir veritabanı kurulu olmadığından dolayı sıkıntı çıkabilir bunun için kendi hesabınıza;\n\nupdate kullanici_bilgi set kullanici_bakiye = 1200(PARA MİKTARI) where TC = 12345678910(HESABA KAYITLI TC KİMLİK NUMARASI)\n\nkomutu ile dilediğiniz miktarda para yükleyebilirsiniz.\n\n\n\nFor English\n\nThis app will not work on devices that do not have the appropriate database installed.\nA database named 'banka' should be created for the database of the application and the following script should be written into it.\n\n1- CREATE DATABASE banka\n\n2- create table kullanici_bilgi (\nTC varchar(max) not null,\nkullanici_adi  varchar(max) not null,\nkullanici_soyadi  varchar(max) not null,\nkullanici_bakiye money default(0) not null,\nkullanici_sifre  varchar(max) not null,\nkullanici_uyruk  varchar(max) default('TR') not null,\nIBAN int identity(1000,1) ,\nkullanici_sube_no  varchar(max) not null,\nkullanici_sube  varchar(max) not null \n)\ncreate table kullanici_hesap_haraketleri (\ngonderen_kisi varchar(max) not null,\ngonder_iban varchar(max) not null,\nalan_kisi varchar(max) not null,\nalan_iban varchar(max) not null,\ngonderilen_miktar varchar(max) ,\naciklama varchar(max) not null,\nislem_tarihi varchar(max) not null, )\n\nThen the application will become operational.\nThere may be problems in sending money to other accounts because there is no common database established.\n\nupdate kullanici_bilgi set kullanici_bakiye = 1200(MONEY AMOUNT) where TC = 12345678910(TR ID NUMBER)\n\nYou can upload any amount of money you want with the command.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fefeyanar%2Fobe-bank","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fefeyanar%2Fobe-bank","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fefeyanar%2Fobe-bank/lists"}