Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - anirban

Pages: [1] 2 3 4
1
Software Engineering / Type With Your Brain, Hearing Through Touch
« on: April 23, 2017, 04:54:18 PM »
Facebook announced on its F8 conference audience about two new cutting-edge projects that could change the way humans engage with devices.

Over the next two years, the company will work on a new technology that will allow anyone to type around 100 words per minute -- not with fingers, but using a process that would decode neural activity devoted to speech.

What Facebook envisions is a technology that would resemble a neural network, allowing users to share thoughts the way they share photos today.

This technology also could function as a speech prosthetic for people with communication disorders or as a new way to engage in an augmented reality environment, suggested Regina Dugan, vice president of engineering at Facebook's Building8.

The other project announced at F8 would change the way users experience communication input -- that is, it would allow them to "hear" through the skin. The human body has, on average, about two square meters of skin that is packed with sensors.

Reference: Technewsworld

2
Though I do not consider myself a software engineer but for me, a long way to go... cause i understand only a few of these twelve points....

That means you know the 12th point (Know what you don't know). To know what we don't know is actually very important. So don't worry your ability to assess yourself will help you to know the other points.

3
    1 Fundamentals of Emotional Intelligence
    2 Algorithms & Big-O-Notation
    3 Basics of Project Management
    4 Mainstream Development Paradigms
    5 Basics about Software Security
    6 Know your Development Tools
    7 Don't Trust Code without Adequate Test
    8 Key Metrics of Software Development
    9 The Root Cause of the Last Defect
    10 Understand the Business of your Customer
    11 Understand the Infrastructure
    12 Know What You Don't Know

Reference: Markus Sprunck
http://www.sw-engineering-candies.com/blog-1/top10thingseverysoftwareengineershouldknow

4
Science and Information / SQL Server 2014 : WHAT-WHY-HOW
« on: July 14, 2014, 01:30:07 PM »
SQL Server 2014 introduced native compiled stored procedure. In this process code are converted to machine code that stored into DLL files stored in a specific folder of SQL Server. Memory optimized Machine codes can be directly executed by processor without further compilation or interpretation. So it is faster than T-SQL stored procedure that we are using.

http://social.technet.microsoft.com/wiki/contents/articles/25254.sql-server-2014-what-why-how-natively-compiled-stored-procedures.aspx

5
Science and Information / Microsoft released Visual Studio 2014
« on: July 14, 2014, 01:26:59 PM »
Microsoft released Visual Studio 2014 CTP2 on July 8th 2014. Microsoft fixed some major issues and introduced some new features.

Have a look via my Post.

http://www.mypassionfor.net/2014/07/early-look-at-visual-studio-2014-ctp-2/

6
is it possible to apply object oriented concept in 'chascript'? if yes, then in future it might be possible to develop an IDE in Bangla as well...

7
IT Forum / Re: Facial recognition payment system launched
« on: August 04, 2013, 01:23:57 AM »
The advancement of technology makes life easier day by day.

8
Web based Developer Forum / Something about jquery
« on: August 04, 2013, 01:17:20 AM »
jQuery is a multi-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. It is currently developed by a team of developers led by Dave Methvin. Used by over 65% of the 10,000 most visited websites, jQuery is the most popular JavaScript library in use today.

The jQuery library is a single JavaScript file, containing all of its common DOM, event, effects, and Ajax functions. It can be included within a web page by linking to a local copy, or to one of the many copies available from public servers as follows:

<script type="text/javascript" src="jquery.js"></script>

It is also possible to include jQuery directly from content delivery networks.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>


9
Top 10 most popular programming languages used in dot net framework are:

1) C language
2) C++
3) Java
4) C#
5) VB.NET(Visual Basic. NET)
6) PHP
7) JavaScript
8 ) Perl
9) Python
10) Ruby

10
Web based Developer Forum / Learn dot net languages
« on: August 04, 2013, 01:04:02 AM »
Here is a very useful site to learn about dot net languages.

http://www.dotnetlanguages.net/dnl/resources.aspx

11

    The Common Language Runtime (CLR) serves as the execution engine of the .NET Framework. All .NET programs execute under the supervision of the CLR, guaranteeing certain properties and behaviors in the areas of memory management, security, and exception handling.

    The .NET Framework introduces a Common Type System, or CTS. The CTS specification defines all possible datatypes and programming constructs supported by the CLR and how they may or may not interact with each other conforming to the Common Language Infrastructure (CLI) specification. Because of this feature, the .NET Framework supports the exchange of types and object instances between libraries and applications written using any conforming .NET language.

12
Most of the time we don't understand the basic differences between desktop and web application. Many people think that web application needs internet or LAN connection but desktop application need not these. This is totally a wrong conception. Actually for a desktop application we have to install the exe file to all of the computers that are needed for that application. But for an web application we have to host the application on a server and other computers just access the application from the server. In desktop application all the computers must have to be configured as required by the application but in web application only server machine must have to be configured.

13
ISTQB / Re: Software testing life cycle
« on: August 04, 2013, 12:15:22 AM »
What about TDD (Test Driven Development)? Is it also follow this life cycle?

14
ISTQB / Re: Software Testing Principles
« on: August 04, 2013, 12:12:04 AM »
I like this one "Absence of errors fallacy".

15
ISTQB / Re: Usability Testing Tools
« on: August 04, 2013, 12:06:10 AM »
Please share something about what is actually meant by usability testing.

Pages: [1] 2 3 4