Baran Topal

Categories


Technology

pass parameters with powershell

There are various ways to pass http parameters with powershell. This powershell script would open up a browser page: $url = "http://localhost:59578/plugin/foo/baz/importDataFromExcel?path=DummyCustomerData.xlsx" start-process $url However, the authentication is one important aspect to underline and must be provided if needed to browse [...]

baranbaran

Backup of apache, php and mysql settings

Lately, I needed to move my server setup including code files, database dumps and apache settings. While it is always hard to migrate settings in IIS, it is relatively straightforward for apache and mysql. All you need to do for apache is checking out the httpd.conf file, which possibly resides in the apache folders. The path depends on [...]

baranbaran

Searching in a file

Hi again; There are several ways to search in a file. While doing that, you can go as atomic as possible or you can do it in a higher level. You can trust your intuition about your algorithm but what is the drift of a better approach? This is a part of series – Search, any better? Let’s examine the following problem: This is [...]

baranbaran

CryptoServices in .NET: 3DES

Well, this is a followup of the post This is the .NET Realm implementation. Note there are 4 other parts to fulfill this cryptoservices completely. Check the above link’s requirements, yet, this is also a standalone module if you implement this as a console library. Triple DES is famous for weakness that you can brute force. Yes, [...]

baranbaran

CryptoServices in .NET: CRC32

Well, this is a followup of the post This is the .NET Realm implementation. Note there are 4 other parts to fulfill this cryptoservices completely. Check the above link’s requirements, yet, this is also a standalone module if you implement this as a console library. To my great surprise, there is actually no direct way to check for [...]

baranbaran

CryptoServices in Java: JAX-WS-RPC

This is the Java Realm implementation for CryptoServices in JAX-WS-RPC . Note there are 4 other parts to fulfill this cryptoservices completely. Check the above link’s requirements, yet, this is also a standalone module. Now, here is our good old SOAP service. The idea is that the server and client must exchange some parameters and [...]

baranbaran