Skip to content
View rosasurfer's full-sized avatar
💭
a Foo walks into a bar...
💭
a Foo walks into a bar...

Highlights

  • Pro

Organizations

@phpeclipse
Block or Report

Block or report rosasurfer

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. mt4-expander mt4-expander Public

    DLL extension for the MetaTrader4 MQL framework

    C++ 34 28

  2. mt4-php-tools mt4-php-tools Public

    PHP tools supporting the MetaTrader4 MQL framework

    PHP 45 34

  3. bfx-core-volume bfx-core-volume Public

    Proof that the BankersFX Core Volume indicator is not feeded by institutional data

    Shell 6 3

  4. ministruts ministruts Public

    PHP MVC micro framework inspired by Java Struts

    PHP 1

  5. Encoding Conversion In C++ Encoding Conversion In C++
    1
    // Convert a wide Unicode string to an UTF8 string
    2
    std::string utf8_encode(const std::wstring &wstr)
    3
    {
    4
    	int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), NULL, 0, NULL, NULL);
    5
    	std::string strTo(size_needed, 0);