FREE: English to Bengali dictionary software (Office AddIn)

Hello Guys:
 
We hope that everyone heaving with wonderful life. However it’s our pleasure to inform you that we have developed English to Bengali dictionary software (Office AddIn) for everyone and it’s FREE. So you don’t need to go for searching over the internet; this application will be automatically plugged-in with your Microsoft Office Word 2007 and 2010 as well. What you would do is just like –> select the word –> right click –> click to “translate to Bangla” that’s it.
 
Isn’t cool (A screenshot is attached herewith for more). you can download this FREE Office Addin from the link below:
 
Download link(s):
 
(1) Windows XP,7,8, 32 bit OS with Microsoft Office 2007 x86_x64.
 
(3) Windows XP,7,8, 32 bit OS with Microsoft Office 2010 x86_x64.
 
(4) Windows7,8, 64 bit OS with Microsoft Office 2010 x86_x64.
 
***NOTE: THIS SOFTWARE IS FREE FOR ALL.

 

Best Regards,
Marketing Team
 
MNH Technologies
Cell: 8801983560820
 

Why Microsoft not allowing to register windows azure for BD users?

I can’t understand that, why Microsoft not allowing to register / create an account into the windows azure?

My personal opinion is:
“Microsoft should allow Bangladeshi user to register and use the windows azure for trial period (could be 120/160 days) to learn and understand the technologies and to closely work with Microsoft Platform. I am wondering that this year they are not allowing any BD user to register into the Azure.”

Thanks,

Md. Marufuzzaman


Get your storedProcedure dependency list quickly

Hi there, I would like to share with you guys a simple transact-sql statement which will return all the dependency list of your storedProcedure. For example, you have a database name as “myDatabase”. Your database may contains numbers of procedures, functions and tables as well. To know the object dependencies we always try SQL server features, but the limitation is we will able to see only one object at a time. But this  transact-sql statement will return all the dependency list as a table. So you can see all the object dependence at a time… I hope you enjoy it.

Transact-sql statement:

WITH storedPprocedures AS (
SELECT sysObjectsA.name AS tx_procedure_name
, sysObjectsB.name AS tx_table_name
, ROW_NUMBER() OVER
(
partition by sysObjectsA.name,sysObjectsB.name
ORDER BY sysObjectsA.name,sysObjectsB.name
) AS row
FROM sysdepends sysDependObject
INNER JOIN sysobjects sysObjectsA ON sysObjectsA.id=sysDependObject.id
INNER JOIN sysobjects sysObjectsB ON sysObjectsB.id=sysDependObject.depid
WHERE sysObjectsA.xtype = ‘P’)
SELECT tx_procedure_name, tx_table_name FROM storedPprocedures
WHERE row = 1
ORDER BY tx_procedure_name,tx_table_name

Thanks,

Md. Marufuzzaman


i_robo_v1

i_robo_v1 

An open source template I wrote that may use for lithe weight enterprise application. i_robo_v1 follow Multi-tier architecture (often referred to as n-tier architecture) which is a client-server architecture in which, the presentation, the application processing and the data management are logically separate processes.

You can download this template (i_robo_v1) at this link.

https://github.com/Md-Marufuzzaman/i_robo_v1


Analysis on Claim-based-security for ASP.NET Web APIs using DotNetOpenAuth

I do a short analysis on the “Claim-based-security for ASP.NET Web APIs using DotNetOpenAuth”
(http://zamd.net/2012/05/04/claim-based-security-for-asp-net-web-apis-using-dotnetopenauth/?goback=%2Egde_4477233_member_121979238).
Few things I tried to short out are listed below:

Why I like this approach:

  1. It’s easy to implements for any client authentication based API access, basically which (the client) will consume the API.
  2. Simple flow such as:
    1. The client request to the issuer for token, actually issuer is the OAuth.
    2. Using of OAuth AuthorizationServer class which is doing the token issuance request, producing and returning a token for valid & authenticated request.
    3. Easy to configure resource server to generate keys from the certificate.
    4. Single REST call base authentication.
  3. Overall process is short / effort less to integrate with RESTful api using WebAPI framework for client request authentication.

Why I am concern on the following scenario:

  1. Each and every client request will assume as a new client and apply fresh authentication process, that is:
    1. This example will simply verify a client has been registered to access the resource rather than the specific user.
    2. How can we make the request for refresh the token? (We need to implements database part)
  2. As per current sample with considering current flow than we have to use Microsoft Windows Identity Foundation.

Important Changes to Microsoft Services Agreement…

Microsoft Services Agreement

windows.microsoft.com

2.1. What is a Microsoft account? To access portions of the services, such as the Microsoft branded services, you will need a Microsoft account. The Microsoft account, formerly known as Windows Live ID, is the credentials you…


Generic Architecture For Rapid Software Development Project Cycle – Part 1

Table of Contents

  1. Introduction (Part – 1)
    1. Open a New Project
      1. Primary Project Analysis
      2. What client wants?
    2. Project Architecture Design
      1. “Human Activity As A Software” (HAAS)
      2. Where I am?
      3. Where I have to move
  2. Implementation (Part – 2)
    1. Database design and Performance Testing (DBDPT)
    2. Product Architecture Design (PAD)
    3. Generic Template Design
      1. Using N-tire Architecture
      2. Using Multiple Design Pattern in the Template.
  3. Coding (Part – 3)
    1. Code Engine
      1. Using of Code Engine
      2. Integrate Code Engine Output class
      3. Using DAO GEN services
      4. Integrate DAO GEN Output class/methods
  4. Testing & Deployment (Part – 4)
    1. Host Environment Analysis
    2. Application Security Module
    3. Product Testing & Releasing for Test Run(PTRT)
  5. References
  6. Points of Interest
  7. Conclusion
  8. History
Figure: Generic Architecture For Rapid Software Development Project Cycle.

 

Introduction (Part – 1)

Hello guys, last couple of years I tried to setup an organized structure where we will move forward very fast with the latest technologies without compromising product quality. That’s why I tried to create an excellent environment structure, the way of how we move with a new project , how could we delivery faster, actually the core think is to create a RAD (Rapid application development) or even it’s like component base construction environment for our organization.

From the above point of view I prepared a project flow diagram, which I would like to share with you. So that you guys can help me to make it more standard, more efficient, where I am doing wrong or where I am doing the right.

However lest go thru the steps as per diagram. Here I will discuss on how this process take place to move faster than before and complete the entire project within time.

Open a New Project

Well at first I would like say that I will not discuss regarding the roll of the Marketing department, Management department as well as Administration section. Anyway when I start a new software development project at first I give my top priority on the client requirements. In this part I assign a project manager with a project management team and a system analyst for that particular project. This guys are involved with the client & requirement study the requirement, if any existing system already using the client then short out the limitations are.

Primary Project Analysis

This team actually follow the complete SDLC with proper documentation. After completing the primary analysis, the classical way is to proposed new system with the detail that the client want in proper document. Here I add a new steps which is project prototyping, this is actually a graphical representation of the new system with sample data.

What client wants?

The purpose of that is to make sure the client that we got the actual scenario of what client wants? Is the prototype is correct or need to change anything. If so we make the changes and again give a demonstration of the prototype again it’s just a cyclic process until the client approve that prototype and go for an agreement officially.

Project Architecture Design

I think this part is the heart of any software development project cycle; In this section as an architect at first a draw a complete picture of the full project, there are lots of standard methodologies are available for example, studying software requirement specification (SRS), writing use case, data flow diagram, using UML etc…. Well off course I follow all of this but I would also include another step which I call “Human Activity As A Software” (HAAS).

“Human Activity As A Software” (HAAS)

Lets to make it more clear on this, HAAS is nothing but just a diagram, it represent the each & every interaction between two or more persons which we are going to automate. From my experiences I found this diagram really take a very good impact on the developer while design the software algorithm, writing code etc. it’s like a developer is developing a system which will act like HAAS diagram, while writing code this diagram helps program to draw a visual picture and it represent of human behavior in a visual manner.

Where I am?

Well, let move to understand few more interesting thinks; Okay I hope you guys understand / got a scenario up to requirement analysis, steps of standard SDLC. So now we have the following items in hand to move forward:

  • All the documents related to SDLC.
  • A visual representation / prototype of the actual product.
  • A GANTT chart for walking on the road.
Where I have to move

Great, I really very much concern on the using of technologies for any type of software development project. Because of that I sort out what are the related development tools required to develop this project. You may ask, there is nothing to short out… If the target platform is Microsoft and application type may be web application, standard win32Form application, web services… etc., then generally go for Microsoft Visual Studio .Net (Framework 4) , Eclipse, NetBean etc., as IDE for the project and development language could be C#, Visual Basic, F# or something else and for the database platform it’s simple either Microsoft SQL Server 2008, Oracle 11g, Microsoft Access, DB2 etc.,

Yes I off-course I also agree with you, I also go for the same but do a little analysis on the requirement and all the development tools. At first I would prefer using tiny wait open source api, I don’t want to kill a mosquito using my all the accessories which I traditionally use to hunt a big tiger….. ha ha ha…………. It good to use lite and efficient tools.
So now I make my decision & select all the tools which will be use for that project development, & here I hate to change tools / any third party api at the middle stage in development project.

References

Points of Interest

Well, I wish I could complete all the parts & would love to create this environment in my current organization “Dhrupadi Techno Consortium Ltd (DTCL)”

Conclusion

The purpose of this is not to share something new, I hope you guys will go thru in detail & and I will be glad for your any valuable suggestion.

History

  • 27th Jan 2012-Initial post

Follow

Get every new post delivered to your Inbox.