https://smart-lab.ru/blog/665453.php
http://www.quickfixengine.org/
https://objectcomputing.github.io/mFAST/
https://github.com/objectcomputing/mFAST
https://github.com/objectcomputing
Alor
https://pusher.com/docs/channels/using_channels/channels
asp.net
https://pusher.com/docs/channels/server_api/overview/
https://pusher.com/docs/channels/channels_libraries/libraries
https://progi.pro/pusher-t1307
https://progi.pro/pusher-t1307/11
https://habr.com/ru/post/130530/
std::cout << __cplusplus;
for c++ returns 199711
https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/
https://habr.com/ru/post/503432/
https://www.bogotobogo.com/cplusplus/sockets_server_client.php
https://www.cyberforum.ru/cpp-networks/thread1996810.html
https://www.geeksforgeeks.org/socket-programming-cc/
https://www.geeksforgeeks.org/tcp-server-client-implementation-in-c/
https://github.com/elhayra/tcp_server_client
https://riptutorial.com/cplusplus/example/23999/hello-tcp-server
WebSockets
https://github.com/zaphoyd/websocketpp
https://coderoad.ru/9528811/Websocket-%D0%BA%D0%BB%D0%B8%D0%B5%D0%BD%D1%82-%D0%B2-C
https://stackoverflow.com/questions/9528811/websocket-client-in-c
https://istarik.ru/blog/programmirovanie/73.html
https://docs.websocketpp.org/md_tutorials_utility_client_utility_client.html
https://www.boost.org/doc/libs/1_70_0/libs/beast/doc/html/beast/quick_start/websocket_client.html
https://doc.qt.io/qt-5/qtwebsockets-examples.html
https://devblogs.microsoft.com/cppblog/c-rest-sdk-websocket-client/
https://rstudio.github.io/websocket/
https://stackoverflow.com/questions/7196238/populate-html-table-with-jquery
<table id="tablefriendsname">
<tbody>
</tbody>
</table>
$.ajax({
type: "POST",
url: "/users/index/friendsnamefromids",
data: "IDS="+requests,
dataType: "json",
success: function(response){
var name = response;
//Important code starts here to populate table
var yourTableHTML = "";
jQuery.each(name, function(i,data) {
$("#tablefriendsname").append("<tr><td>" + data + "</td></tr>");
});
}
});
Vue
https://www.codementor.io/@pmbanugo/how-to-build-a-real-time-editable-data-table-in-vue-js-kuxfvb215
React
https://www.codementor.io/@pmbanugo/how-to-build-a-real-time-editable-data-table-in-vue-js-kuxfvb215
Other
https://medium.com/front-end-weekly/websocket-and-data-visualization-be3613c880db
https://fastapi.tiangolo.com/advanced/websockets/
Examples:
https://www.codegrepper.com/code-examples/javascript/javascript+websocket+example+code
https://riptutorial.com/node-js/example/22406/a-simple-tcp-client
https://gist.github.com/tedmiston/5935757
https://cs.lmu.edu/~ray/notes/jsnetexamples/
https://www.xspdf.com/resolution/50670392.html
https://qastack.ru/programming/12407778/connecting-to-tcp-socket-from-browser-using-javascript
https://www.xspdf.com/resolution/50670392.html
https://riptutorial.com/node-js/example/22406/a-simple-tcp-client
https://www.youtube.com/watch?v=gIlfHtqgKk8
but Create new AspNet Core 3 project does work
https://docs.microsoft.com/en-us/dotnet/core/dotnet-five
https://devblogs.microsoft.com/aspnet/announcing-asp-net-core-in-net-5/
https://devblogs.microsoft.com/dotnet/announcing-net-5-0/
https://www.infoworld.com/article/3533053/whats-new-in-microsoft-net-5.html
https://www.theregister.com/2020/11/11/aspnet_core_50_released_with/
https://habr.com/ru/company/microsoft/blog/493390/
https://www.clariontech.com/blog/microsoft-announces-.net-5-a-brief-overview
https://www.telerik.com/support/whats-new/aspnet-core-ui
https://www.dotnetcurry.com/dotnetcore/dotnet-5-new-features
Исполняемый файл dotnet
C:\program files\dotnet\dotnet.exe
Пакет SDK для .NET
C:\program files\dotnet\sdk\{версия}\
Среда выполнения .NET
C:\program files\dotnet\shared\{тип среды выполнения}\{версия}\
Error in MVC App
@wiero: Me. Happened after installing VS 2019 Preview side-by-side with VS 2017 Community. FWIW, solution was to remove line
<add assembly="Microsoft.VisualStudio.Web.PageInspector.Loader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
from C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\web.config
OR
Add new Line to web.config
<system.web>
<authentication mode="None" />
<compilation>
<assemblies>
<remove assembly="Microsoft.VisualStudio.Web.PageInspector.Loader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</assemblies>
</compilation>
<httpRuntime targetFramework="4.5" />
Tornado
https://github.com/kacieh80/TornadoTalk/
https://www.tornadoweb.org/en/stable/
https://www.tornadoweb.org/en/stable/webframework.html
https://channels.readthedocs.io/en/stable/tutorial/part_1.html
https://www.tornadoweb.org/en/stable/tcpserver.html#
Video:
https://www.youtube.com/watch?v=ZA28l34Jih0
Channels:
https://channels.readthedocs.io/en/stable/introduction.html
Aiohttp:
Asyncio
https://docs.aiohttp.org/en/stable/
https://www.youtube.com/watch?v=BbyVHtsIM1M
https://github.com/NancyFx/Nancy
Docs
https://github.com/NancyFx/Nancy/wiki
https://github.com/NancyFx/Nancy/wiki/Introduction
https://github.com/NancyFx/Nancy/wiki/Documentation
https://riptutorial.com/ru/nancy
https://habr.com/ru/company/piter/blog/318334/
https://auth0.com/blog/meet-nancy-a-lightweight-web-framework-for-dot-net/
https://github.com/NancyFx/Nancy
https://www.infoworld.com/article/3393455/how-to-use-nancy-in-aspnet-core.html
https://www.c-sharpcorner.com/UploadFile/suthish_nair/who-is-nancy/
https://ashirobokov.wordpress.com/2016/02/29/hello-nancyfx/
https://blog.jonathanchannon.com/2013-08-24-async-route-handling-with-nancy/
Video:
https://www.youtube.com/watch?v=K0DE9LXziBs
https://www.youtube.com/watch?v=SJm7chCfaDs
https://www.youtube.com/watch?v=QdylpDz1t3w
Examples
Codeproject
https://www.codeproject.com/Articles/694907/Embed-a-web-server-in-a-windows-service
https://www.codeproject.com/Articles/1088409/How-to-use-Owin-and-Nancy-to-serve-a-reusable-web
github
https://github.com/NancyFx/Nancy
NancyBlog
https://github.com/Nosfheratu/NancyBlog
OwinNancy
https://github.com/zeppaman/Owin-Nancy-Tutorial
https://timber.io/blog/multiprocessing-vs-multithreading-in-python-what-you-need-to-know/
https://docs.python.org/3/library/multiprocessing.html
https://docs.python.org/3/library/multiprocessing.html#pipes-and-queues
https://www.cloudcity.io/blog/2019/02/27/things-i-wish-they-told-me-about-multiprocessing-in-python/
http://zetcode.com/python/multiprocessing/
https://tatyderb.gitbooks.io/python-express-course/content/chapter_stdlib/ipc_multiprocessing.html
http://toly.github.io/blog/2014/02/13/parallelism-in-one-line/
Django Channels
https://channels.readthedocs.io/en/stable/
https://www.sitepoint.com/premium/books/django-channels-for-real-time-updates/read/1
https://www.amazon.co.uk/dp/1484240987?tag=hackr-21
https://blog.heroku.com/in_deep_with_django_channels_the_future_of_real_time_apps_in_django
https://channels.readthedocs.io/en/stable/introduction.html
Flask Socket
https://flask-socketio.readthedocs.io/en/latest/
https://stackoverflow.com/questions/62548499/how-to-create-channels-using-flask-socketio
https://blog.miguelgrinberg.com/post/easy-websockets-with-flask-and-gevent
https://codeburst.io/building-your-first-chat-application-using-flask-in-7-minutes-f98de4adfa5d
https://pypi.org/project/Flask-Pusher/
https://pypi.org/project/Flask-Channels/
https://www.youtube.com/watch?v=RdSrkkrj3l4
https://www.youtube.com/watch?v=zQDzNNt6xd4
Python WebSocket
https://www.fullstackpython.com/websockets.html
https://www.fullstackpython.com/websockets.html
video
https://flask.palletsprojects.com/en/1.1.x/quickstart/#
https://flask-table.readthedocs.io/en/stable/
https://flask-table.readthedocs.io/en/stable/#extra-things
https://pypi.org/project/Flask-Table/#files
https://flask-appbuilder.readthedocs.io/en/latest/quickhowto.html
https://www.reddit.com/r/flask/comments/bj4kgx/creating_realtime_charts_with_flask/
https://ron.sh/creating-real-time-charts-with-flask/
https://habr.com/ru/post/152653/
https://github.com/plumdog/flask_table
Django vs Flask
https://blog.heroku.com/in_deep_with_django_channels_the_future_of_real_time_apps_in_django
https://ron.sh/creating-real-time-charts-with-flask/
https://blog.heroku.com/in_deep_with_django_channels_the_future_of_real_time_apps_in_django
Django version
https://dev.to/hellocodeclub/how-to-check-django-version-ultimate-guide-2020-31d5
https://django-tables2.readthedocs.io/en/latest/index.html
https://habr.com/ru/post/326194/
https://habr.com/ru/post/115754/
https://stackoverflow.com/questions/9388064/django-template-turn-array-into-html-table
https://djangobook.com/mdj2-django-templates/
https://pypi.org/project/django-tables2-bootstrap4/
Video:
https://www.codeproject.com/Articles/1088409/How-to-use-Owin-and-Nancy-to-serve-a-reusable-web
https://www.bytefish.de/blog/token_authentication_owin_nancy.html
https://github.com/NancyFx/Nancy/wiki/Hosting-nancy-with-owin
https://blog.jonathanchannon.com/2014-05-07-introducing-owin-statelessauth-with-nancy-angular-demo/
https://github.com/NancyFx/Nancy/wiki/Hosting-nancy-with-owin
https://dokumen.pub/microservices-in-net-core-with-examples-in-nancy-1617293377-9781617293375.html
http://ivdon.ru/uploads/article/pdf/IVD_210_Grechko_Kudryavtsev.pdf_3b7228a83c.pdf
https://www.science-education.ru/ru/article/view?id=7261
Python:
https://aaronschlegel.me/implied-volatility-functions-python.html
https://stackoverflow.com/questions/35391850/implied-volatility-calculation-in-python
https://stackoverflow.com/questions/30360840/implied-volatility-calculator-is-wrong
Video
https://www.youtube.com/watch?v=Jpy3iCsijIU
https://www.youtube.com/watch?v=4z_nOgl8oHU
https://www.youtube.com/watch?v=2UJ9kFqQF-s
https://www.youtube.com/watch?v=wV8ox9mns0o
https://stackoverflow.com/questions/9957141/dynamically-invoke-a-method-in-dll
https://stackoverflow.com/questions/30094655/invoke-a-method-from-another-assembly
https://stackoverflow.com/questions/2202381/reflection-how-to-invoke-method-with-parameters
https://stackoverflow.com/questions/232535/how-do-i-use-reflection-to-call-a-generic-method
https://stackoverflow.com/questions/20164298/how-to-build-a-url
Some examples of URL's that require parsing:
server:8088
server:8088/func1
server:8088/func1/SubFunc1
http://server
http://server/func1
http://server/func/SubFunc1
http://server:8088
http://server:8088/func1
http://server:8088/func1/SubFunc1
magnet://server
magnet://server/func1
magnet://server/func/SubFunc1
magnet://server:8088
magnet://server:8088/func1
magnet://server:8088/func1/SubFunc1
http://[2001:db8::1]
http://[2001:db8::1]:80
The format of a Url is:
foo://example.com:8042/over/there?name=ferret#nose
\_/ \_________/ \__/\_________/\__________/ \__/
| | | | | |
scheme host port path query fragment
https://docs.microsoft.com/ru-ru/aspnet/web-api/overview/advanced/dependency-injection
https://www.accusoft.com/resources/blog/dependency-injection-going-start-finish-unity-c/
https://www.tutorialsteacher.com/ioc/constructor-injection-using-unity-container
https://jakeydocs.readthedocs.io/en/latest/mvc/controllers/dependency-injection.html
https://www.youtube.com/watch?v=tlQ3SbrZdgw
https://www.tutorialsteacher.com/ioc/register-and-resolve-in-unity-container
OWIN
https://stackoverflow.com/questions/19781970/how-to-use-di-container-when-owinstartup
https://damienbod.com/2013/10/01/self-host-webapi-with-owin-and-unity/
Unity
https://stackoverflow.com/questions/43850125/webapi-mvc-owin-mvc-routes-dont-work
https://metanit.com/sharp/mvc5/11.1.php
https://stackoverflow.com/questions/22238424/run-asp-net-mvc-as-owin-middleware
Alternatives instead MVC:
Some alternatives that do run on OWIN are FubuMVC, Nancy and Simple.Web
https://habr.com/ru/company/microsoft/blog/446512/
https://habr.com/ru/company/microsoft/blog/480222/
https://wakeupandcode.com/worker-service-in-net-core-3-1/
https://medium.com/swlh/creating-a-worker-service-in-asp-net-core-3-0-6af5dc780c80
https://medium.com/@nickfane/introduction-to-worker-services-in-net-core-3-0-4bb3fc631225
https://www.codeproject.com/Articles/5263939/Build-a-Windows-Worker-Service-Using-NET-Core-3-1
https://www.stevejgordon.co.uk/what-are-dotnet-worker-services
https://www.youtube.com/watch?v=PzrTiz_NRKA