Skip to content
View tytusspullo's full-sized avatar
  • TKomp, RedGate
  • Bydgoszcz

Block or report tytusspullo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Articles-and-documents Articles-and-documents Public

    articles and documents

  2. PrimeNumbers PrimeNumbers Public

    Usage of Async/Await for big calculations. EN: Calculate big prime numbers saves result alowing restart from last big number. PL: Wylicza liczby pierwsze zapisuje wyniki pozwala wznowić obliczenia.…

    C#

  3. OracleDbObjectsInformationRetriver OracleDbObjectsInformationRetriver Public

    Retrives information abaut oracle database objects in specific schema using DevArt components. Technology used MVC+WinForms+Oracle Database.

    C#

  4. CREATES SCHEMA on ORACLE DATABASE an... CREATES SCHEMA on ORACLE DATABASE and SET up some GRANTS
    1
    DECLARE 
    2
      cnt NUMBER;
    3
    BEGIN
    4
      SELECT COUNT(*)
    5
       INTO cnt
  5. Good way to clean your obj folder if... Good way to clean your obj folder if do not have access to VS plugins, specially on older Visual Studio versions.
    1
    FOR /d /r . %%d IN ("obj") DO @IF EXIST "%%d" rd /s /q "%%d"