Skip to content
View danieleremin's full-sized avatar

Organizations

@Project-NexTech

Block or report danieleremin

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. cpp-code cpp-code Public

    My C++ code (I am learning C++)

    C++ 3

  2. How to open a new window in front of... How to open a new window in front of the current one using JavaScript. Values can be changed for desirable result.
    1
    function NewWindow() {
    2
     window.open('page.html','about:blank','resizable=yes,scrollbars=yes,status=0,width=600,height=620');
    3
    }
    4
    // Call the function when a button is clicked.
    5