Powered by Blogger.
🌏World roaming Software Technology Evangelist. Proud Indian, Bought up from Coimbatore, Tamilnadu, INDIA. Pointing towards share of Knowledge. 😎
  • Programming ▼
    • DotNet
      • C# Coding Standards
    • Cloud
    • Microsoft 365/ SharePoint
    • SQL
    • Angular / ReactJS / NodeJS
    • Salesforce
    • Magento
    • Python
    • Mobile App Development
    • Database
    • DevOps
    • Automation Testing
    • User Experience
  • Learning ▼
    • Roadmap
    • Trainings
    • E-Books
    • Quick References
    • Certifications
    • Self Improvement
    • Productivity
    • TED Talks
    • Kids Programming
  • SW Engineering ▼
    • Agile
    • Software Design
    • Architecture Samples
    • Best Practises
    • Technologies and Tools
    • Open Sources
    • Free Softwares
  • Leadership ▼
    • Program Management
    • Product Management
    • Project Management
    • People Management
  • Job Search ▼
    • Interview Tips
    • Career Handbook
    • Resume Templates
    • Sample Profiles
    • Cover Letter Samples
    • HR Interview Questions
    • Job Websites List
    • Coding Site Links
    • TedEx Talks
    • International Jobs
  • Emerging ▼
    • Innovation
    • Machine Learning
    • Artificial Intelligence
    • Generative AI
    • AI Tools
    • Big Data
    • Data Science
    • Data Analytics & Visualization
    • Cyber Security
    • Microsoft Azure
    • Amazon Web Services
    • Cryptography
    • ChatBots
    • Internet of Things (IoT)
    • Mixed Reality /AR/VR
  • Misc. ▼
    • Travel
    • Photography
    • Health Tips
    • Medical Tips
    • Home Designs
    • Gardening
  • Samples ▼
    • GitHub
    • Executive Dashboard
    • Chatbot
    • Image Generator
    • Jay's Link Tree
  • Favourites▼
    • Saran Kitchen Hut
    • World of Akshu
    • Saran & Akshu - Other Links

 


Managing remote software teams successfully requires a balance of communication, accountability, collaboration, and employee engagement. A strong remote leadership approach can significantly improve productivity, quality, and team morale.

 

1. Establish Clear Goals and Expectations

Ensure every team member understands:

  • Project objectives and business outcomes
  • Sprint goals and deliverables
  • Roles and responsibilities
  • Definition of Done (DoD)
  • Success metrics and KPIs

Best Practice: Focus on outcomes rather than hours worked.

 

2. Create a Structured Communication Framework

Remote teams need intentional communication.

Recommended Cadence

  • Daily Stand-ups (15 minutes)
  • Weekly Sprint Planning
  • Backlog Grooming Sessions
  • Sprint Reviews & Demos
  • Retrospectives
  • Monthly Leadership Updates

Avoid: Excessive meetings that reduce development time.

 

3. Promote Transparency and Visibility

Maintain visibility into:

  • Sprint progress
  • Risks and blockers
  • Technical debt
  • Resource utilization
  • Release readiness

Tools

  • Azure DevOps
  • Jira
  • Microsoft Teams
  • Confluence
  • GitHub

Use dashboards to provide real-time project insights.

 

4. Build a Culture of Trust

Remote management should be trust-driven rather than surveillance-driven.

Encourage

  • Ownership
  • Accountability
  • Self-management
  • Decision-making autonomy

Avoid micromanagement whenever possible.


5. Leverage Agile and Scrum Practices

Agile methodologies work exceptionally well for distributed teams.

Focus Areas

  • Smaller deliverables
  • Frequent feedback loops
  • Continuous improvement
  • Iterative development
  • Incremental releases

This helps minimize misunderstandings and project risks.

 

6. Manage Time Zone Differences Effectively

For globally distributed teams:

  • Define overlapping collaboration hours
  • Rotate meeting schedules fairly
  • Record important meetings
  • Use asynchronous communication where possible

Example

Collaboration Window
9 AM – 12 PM EST

Reserve this period for discussions requiring real-time participation.

 

7. Strengthen Documentation Practices

Good documentation becomes the team's "single source of truth."

Document:

  • Architecture decisions
  • Requirements
  • User stories
  • Technical designs
  • Deployment procedures
  • Runbooks

A well-documented project reduces dependency on meetings.

 

8. Invest in Team Engagement

Remote teams can experience isolation.

Activities

  • Virtual coffee chats
  • Team-building sessions
  • Recognition programs
  • Technical knowledge-sharing sessions
  • Innovation days

People who feel connected perform better.

 

9. Prioritize Risk and Dependency Management

Remote environments can hide issues until they become major problems.

Track:

  • Delivery risks
  • Cross-team dependencies
  • Technical blockers
  • Vendor dependencies
  • Security concerns

Review risks during every sprint cycle.

 

10. Focus on Outcomes, Not Activity

Measure:

Good Metrics

  • Sprint velocity trends
  • Lead time
  • Cycle time
  • Deployment frequency
  • Defect leakage
  • Customer satisfaction

Avoid

  • Keyboard monitoring
  • Screenshot tracking
  • Activity-based productivity measures

High-performing teams are measured by value delivered.

 

11. Foster Continuous Learning

Encourage team members to:

  • Learn new technologies
  • Obtain certifications
  • Attend webinars
  • Participate in hackathons
  • Share lessons learned

Continuous learning improves innovation and retention.

 

12. Support Employee Well-Being

Remote burnout is a common challenge.

Encourage

  • Reasonable work hours
  • Time-off utilization
  • Mental wellness initiatives
  • Flexible scheduling
  • Healthy work-life balance

A sustainable pace leads to higher long-term productivity.


Tags: 

#RemoteTeamHandling #Leadership #BestPractices #JayavelcsArticles

 

 


Agile software engineering focuses on delivering high-quality software through iterative development, collaboration, and continuous improvement. Rather than following rigid, long-term plans, Agile teams adapt quickly to changing requirements and customer needs.

🎯 Core Agile Practices

  • Iterative Development: Build software in small increments (sprints or iterations) to deliver value frequently and gather feedback early.
  • Continuous Integration and Continuous Delivery (CI/CD): Regularly integrate code changes and automate testing and deployment to improve reliability and speed.
  • Frequent Communication and Collaboration: Promote close collaboration between developers, testers, stakeholders, and customers through daily standups, reviews, and feedback sessions.
  • Prioritize Customer Value: Focus on features that maximize business and user value while remaining adaptable to changing requirements.
  • Retrospectives and Continuous Improvement: Regularly evaluate processes and workflows to identify areas for improvement.

🎯 Coding Best Practices

  • Write Clean and Readable Code: Use meaningful naming conventions, consistent formatting, and simple logic to improve maintainability.
  • Follow Coding Standards: Establish and enforce team-wide coding guidelines to maintain consistency across the codebase.
  • Keep Functions and Components Small: Build modular, reusable components that are easier to understand, test, and maintain.
  • Perform Regular Code Reviews: Use peer reviews or pull requests to improve code quality, share knowledge, and catch issues early.
  • Refactor Continuously: Regularly improve code structure without changing functionality to reduce technical debt.
  • Document When Necessary: Focus documentation on architecture, APIs, and complex business logic rather than obvious code behavior.

🎯 Testing Best Practices

  • Automate Testing: Implement automated unit, integration, and end-to-end tests to improve reliability and reduce manual effort.
  • Shift Testing Left: Begin testing earlier in the development lifecycle rather than waiting until development is complete.
  • Maintain Fast Feedback Loops: Ensure tests run quickly so developers receive immediate feedback on changes.
  • Test Small Changes Frequently: Smaller commits and deployments reduce risk and simplify troubleshooting.
  • Use Test Coverage Wisely: Focus on meaningful coverage for critical functionality rather than maximizing coverage percentages.
  • Include Non-Functional Testing: Consider performance, security, and reliability testing as part of the overall quality strategy.

🎯 Branching and Version Control Best Practices

  • Use Short-Lived Branches: Keep feature branches small and merge frequently to minimize merge conflicts.
  • Adopt a Clear Branching Strategy: Use approaches such as feature branching, trunk-based development, or lightweight release branches depending on team needs.
  • Commit Frequently: Small, focused commits make changes easier to review and revert if necessary.
  • Use Meaningful Commit Messages: Write descriptive commit messages that explain what changed and why.
  • Protect Main Branches: Require code reviews, automated checks, and successful builds before merging.
  • Merge Frequently: Regular integration reduces long-running divergence between branches and improves collaboration.

 

By combining Agile principles with disciplined coding, testing, and version control practices, teams can improve software quality, reduce delivery risk, and maintain faster development cycles.

 

Tags: 

#SoftwareEngineering #BestPractices #Agile #Coding #JayavelcsArticles

 

 


 A Retrieval-Augmented Generation (RAG) architecture enhances Large Language Models (LLMs) by grounding responses with enterprise knowledge, improving accuracy, explainability, and reducing hallucinations. When building a scalable AI Search Engine on the Microsoft ecosystem, consider the following best practices:

1. Establish a Strong Knowledge Foundation

  • Store enterprise content in a centralized repository such as Microsoft SharePoint, Azure Data Lake Storage, databases, or file systems.
  • Implement robust data ingestion pipelines using Azure Data Factory or Microsoft Fabric.
  • Maintain metadata, document ownership, classification, and version control.

2. Optimize Document Chunking Strategy

  • Use semantic chunking rather than fixed-size splitting.
  • Recommended chunk size: 500–1,000 tokens with 10–20% overlap.
  • Preserve document hierarchy (headings, sections, tables, FAQs).
  • Create metadata-rich chunks containing source, department, tags, security labels, and timestamps.

3. Implement High-Quality Embeddings

  • Use embedding models from Azure OpenAI Service.
  • Generate embeddings consistently across all content.
  • Periodically re-index content when embedding models are upgraded.
  • Store embeddings in vector indexes optimized for similarity search.

4. Build a Hybrid Search Architecture

Combine:

  • Vector Search (semantic similarity)
  • Keyword Search (BM25)
  • Metadata Filtering
  • Semantic Ranking

Use Azure AI Search hybrid search capabilities to improve retrieval precision and recall.

5. Leverage Advanced Retrieval Techniques

  • Multi-query retrieval
  • Query rewriting
  • Contextual retrieval
  • Parent-child document retrieval
  • Reranking using semantic rankers
  • Top-K dynamic retrieval based on query complexity

These techniques significantly improve answer relevance and reduce noise.

6. Ground Responses with Citations

  • Always provide source references and document links.
  • Include confidence scores where appropriate.
  • Return supporting excerpts alongside generated answers.
  • Enable users to verify information quickly.

7. Design Secure Enterprise Access Controls

  • Implement Microsoft Entra ID (Azure AD) authentication.
  • Apply document-level and row-level security.
  • Ensure retrieval only returns content users are authorized to access.
  • Propagate security trimming into Azure AI Search indexes.

8. Build Observability and Monitoring

Track:

  • Retrieval precision and recall
  • Grounding quality
  • Hallucination rates
  • Latency
  • Token consumption
  • User feedback

Use Azure Monitor, Application Insights, and Azure AI Foundry evaluation capabilities.

9. Optimize Cost and Performance

  • Cache frequently asked questions.
  • Use smaller models for retrieval and orchestration.
  • Reserve GPT-4-class models for complex reasoning.
  • Implement prompt compression and context pruning.
  • Use streaming responses for better user experience.

10. Adopt Responsible AI and Governance

  • Implement content filtering and safety guardrails.
  • Maintain audit logs and prompt tracing.
  • Conduct regular model evaluations.
  • Monitor bias, toxicity, and compliance requirements.
  • Follow Microsoft's Responsible AI framework and governance standards.

 

🎯 Key Success Factors

  1. High-quality chunking and metadata.
  2. Hybrid retrieval with semantic ranking.
  3. Strong security trimming.
  4. Continuous evaluation and feedback loops.
  5. Cost-efficient orchestration.
  6. Responsible AI governance.

 

A well-designed Microsoft-based RAG platform should focus on retrieval quality first, model quality second. In enterprise deployments, improvements in chunking, indexing, metadata enrichment, and hybrid retrieval often deliver greater accuracy gains than upgrading to a larger LLM.

 

Tags: 

#RAGSearch #SoftwareEngineering #BestPractices # ArtificialIntelligence #Coding #JayavelcsArticles

 


Harness Engineering is the discipline of designing and implementing the orchestration, governance, observability, security, and lifecycle management framework that sits around AI/LLM applications. Rather than focusing solely on the model itself, an AI Harness provides the enterprise-grade infrastructure needed to deploy, monitor, secure, evaluate, and continuously improve AI systems at scale.

Think of the AI model as the engine, while the AI Harness is the vehicle's control system that ensures reliability, safety, performance, and governance.

 

Core Subsystems of an AI Harness

1. Prompt & Workflow Orchestration

Coordinates interactions between users, LLMs, tools, APIs, and enterprise systems.

Capabilities

  • Prompt management and versioning
  • Agent orchestration
  • Multi-step workflow execution
  • Tool calling and function invocation
  • Dynamic routing across models

2. Knowledge & Retrieval Layer

Provides grounding and enterprise context to AI applications.

Capabilities

  • RAG pipelines
  • Vector databases
  • Hybrid search
  • Knowledge graph integration
  • Context management and memory

3. Model Management Layer

Manages multiple AI models across vendors and deployment environments.

Capabilities

  • Model registry
  • Model routing
  • A/B testing
  • Fallback strategies
  • Cost-performance optimization

4. Safety & Governance Engine

Ensures AI systems comply with enterprise policies and regulatory requirements.

Capabilities

  • Content filtering
  • Prompt injection detection
  • PII protection
  • Responsible AI controls
  • Policy enforcement

5. Observability & Telemetry

Provides end-to-end visibility into AI system behavior.

Capabilities

  • Prompt tracing
  • Token monitoring
  • Latency tracking
  • Cost analytics
  • User interaction monitoring

6. Evaluation & Quality Assurance

Measures AI effectiveness and business impact.

Capabilities

  • Automated evaluations
  • Hallucination detection
  • Groundedness scoring
  • Human feedback loops
  • Benchmark testing

7. Security & Identity Management

Protects enterprise AI assets and data.

Capabilities

  • Authentication and authorization
  • Role-based access control
  • Secret management
  • Audit logging
  • Data encryption

8. Agent Runtime & Execution Framework

Enables autonomous and semi-autonomous AI agents.

Capabilities

  • Agent lifecycle management
  • Task planning
  • Multi-agent collaboration
  • State management
  • Tool execution controls

9. Human-in-the-Loop (HITL) Framework

Introduces human oversight for critical decisions.

Capabilities

  • Approval workflows
  • Escalation mechanisms
  • Expert review
  • Feedback collection
  • Continuous learning loops

10. Platform Operations & DevOps

Supports enterprise-scale deployment and maintenance.

Capabilities

  • CI/CD for AI
  • Infrastructure automation
  • Model deployment pipelines
  • Environment management
  • Disaster recovery

 

Key Benefits of an AI Harness

  • Improved Reliability through orchestration and monitoring
  • Reduced Hallucinations via grounded retrieval
  • Enhanced Security with policy enforcement
  • Regulatory Compliance through governance controls
  • Lower Operational Costs via model optimization
  • Faster Innovation through reusable AI services
  • Enterprise Scalability across multiple AI applications

 

An AI Harness is the enterprise control plane that orchestrates, secures, governs, evaluates, and operates AI systems throughout their lifecycle, transforming standalone LLMs into production-ready business platforms. 

Tags: 

#HarnessEngineering #AIHarness #BestPractices #ArtificialIntelligence #Coding #JayavelcsArticles

 

 

Story point estimation is an Agile practice used to estimate the relative effort, complexity, and risk involved in completing a user story or task. Instead of estimating in hours, teams assign “points” based on how difficult the work feels compared to other work.

 

🎯 Common Story Point Estimation Techniques

1. Planning Poker

A collaborative estimation game where team members independently select a point value (often using Fibonacci numbers like 1, 2, 3, 5, 8, 13). Everyone reveals their estimate simultaneously, then discusses differences until consensus is reached.

Benefits:

  • Encourages team collaboration
  • Reduces bias from senior team members
  • Helps uncover hidden complexity

 

2. T-Shirt Sizing

Tasks are categorized into sizes such as XS, S, M, L, XL instead of numeric points.

Benefits:

  • Fast and simple
  • Useful during early backlog grooming
  • Easy for non-technical stakeholders to understand

 

3. Affinity Estimation

The team groups user stories by relative effort. Stories are placed on a scale from small to large, then assigned story points afterward.

Benefits:

  • Efficient for estimating large backlogs
  • Encourages comparative thinking
  • Faster than estimating one story at a time

 

4. Bucket System

Stories are placed into predefined “buckets” representing point values (1, 2, 3, 5, 8, etc.). Team members sort stories into buckets collaboratively.

Benefits:

  • Scales well for many stories
  • Speeds up estimation sessions
  • Promotes consistency

 

5. Three-Point Estimation

Uses three estimates:

  • Optimistic (O)
  • Most Likely (M)
  • Pessimistic (P)

Teams calculate an average estimate

Benefits:

  • Accounts for uncertainty and risk
  • Improves forecasting accuracy

 

🎯 Best Practices

  • Estimate relatively, not absolutely
  • Use historical velocity to improve consistency
  • Keep story sizes small and manageable
  • Revisit estimates as requirements evolve
  • Focus on team consensus rather than precision

🎯 Conclusion

Story point estimation helps Agile teams plan work more effectively by focusing on effort and complexity rather than exact time. Different techniques work better for different team sizes and project stages, so many teams combine methods to improve estimation accuracy and collaboration.

 

♻️ Save and Repost this to help your network.

➕ Follow for more interesting Tech contents:

🔗 https://planetjai.blogspot.com 

 

Tags: 

#Agile #StoryPointEstimationTechniques #JayavelcsArticles


Newer Posts
Older Posts

Total Posts

Search this Site

Connect with Me

Translate Articles

Total Pageviews


Contributors

My photo
Jayavel Chakravarthy Srinivasan
Professional:I'm a Software Techie, Specialized in Microsoft technologies. Worked in CMM Level 5 organizations like EPAM, KPMG, Bosch, Honeywell, ValueLabs, Capgemini and HCL. I have done freelancing. My interests are Software Development, Graphics design and Photography.
Certifications:I hold PMP, SAFe 6, CSPO, CSM, Six Sigma Green Belt, Microsoft and CCNA Certifications.
Academic:All my schooling life was spent in Coimbatore and I have good friends for life. I completed my post graduate in computers(MCA). Plus a lot of self learning, inspirations and perspiration are the ingredients of the person what i am now.
Personal Life:I am a simple person and proud son of Coimbatore. I studied and grew up there. My mom and wife are proud home-makers and greatest cook on earth. My kiddo in her junior school.
Finally:I am a film buff and like to travel a lot. I visited 3 countries - United States of America, Norway and United Kingdom. I believe in honesty after learning a lot of lessons the hard way around. I love to read books & articles, Definitely not journals. :)
View my complete profile

My Achievements

My Achievements

My Favorite Links

  • Saran & Akshu Links
  • Saran Kitchen Hut
  • World of Akshu
  • Ashok Raja Blog

Subscribe To

Posts
Atom
Posts
All Comments
Atom
All Comments

Contact Form

Name

Email *

Message *

Blog Archive

  • ▼  2026 (31)
    • ▼  June (4)
      • Handling Remote Team - Best practices
      • Software Engineering - Best Practices
      • RAG based AI Search engine - Best Practices
      • Harness Engineering - AI Harness
    • ►  May (7)
    • ►  April (7)
    • ►  March (7)
    • ►  February (5)
    • ►  January (1)
  • ►  2025 (65)
    • ►  December (4)
    • ►  November (3)
    • ►  October (3)
    • ►  August (1)
    • ►  July (6)
    • ►  June (7)
    • ►  May (26)
    • ►  April (1)
    • ►  March (3)
    • ►  February (1)
    • ►  January (10)
  • ►  2024 (134)
    • ►  December (3)
    • ►  November (8)
    • ►  October (11)
    • ►  September (2)
    • ►  August (1)
    • ►  July (39)
    • ►  June (8)
    • ►  May (4)
    • ►  April (9)
    • ►  March (6)
    • ►  February (33)
    • ►  January (10)
  • ►  2023 (16)
    • ►  December (12)
    • ►  August (2)
    • ►  March (1)
    • ►  January (1)
  • ►  2022 (14)
    • ►  December (1)
    • ►  August (6)
    • ►  July (3)
    • ►  June (2)
    • ►  February (1)
    • ►  January (1)
  • ►  2021 (16)
    • ►  December (1)
    • ►  November (2)
    • ►  October (2)
    • ►  August (1)
    • ►  July (2)
    • ►  June (2)
    • ►  May (2)
    • ►  March (2)
    • ►  February (1)
    • ►  January (1)
  • ►  2020 (36)
    • ►  December (1)
    • ►  November (15)
    • ►  October (2)
    • ►  September (1)
    • ►  July (1)
    • ►  June (2)
    • ►  May (4)
    • ►  March (2)
    • ►  February (6)
    • ►  January (2)
  • ►  2019 (14)
    • ►  December (3)
    • ►  November (1)
    • ►  September (2)
    • ►  August (1)
    • ►  June (1)
    • ►  May (3)
    • ►  March (2)
    • ►  January (1)
  • ►  2018 (61)
    • ►  November (3)
    • ►  October (4)
    • ►  September (4)
    • ►  August (5)
    • ►  July (4)
    • ►  June (4)
    • ►  May (7)
    • ►  April (7)
    • ►  March (5)
    • ►  February (1)
    • ►  January (17)
  • ►  2017 (55)
    • ►  December (1)
    • ►  November (7)
    • ►  October (7)
    • ►  September (8)
    • ►  July (4)
    • ►  June (7)
    • ►  May (4)
    • ►  April (4)
    • ►  March (1)
    • ►  February (2)
    • ►  January (10)
  • ►  2016 (45)
    • ►  December (1)
    • ►  November (5)
    • ►  October (2)
    • ►  September (7)
    • ►  August (3)
    • ►  July (3)
    • ►  June (1)
    • ►  May (3)
    • ►  April (5)
    • ►  March (3)
    • ►  February (3)
    • ►  January (9)
  • ►  2015 (88)
    • ►  December (5)
    • ►  November (2)
    • ►  October (6)
    • ►  September (6)
    • ►  August (3)
    • ►  July (6)
    • ►  June (7)
    • ►  May (12)
    • ►  April (6)
    • ►  March (11)
    • ►  February (10)
    • ►  January (14)
  • ►  2014 (159)
    • ►  December (16)
    • ►  November (13)
    • ►  October (42)
    • ►  September (12)
    • ►  August (19)
    • ►  July (3)
    • ►  June (17)
    • ►  May (10)
    • ►  April (12)
    • ►  March (7)
    • ►  February (4)
    • ►  January (4)
  • ►  2013 (192)
    • ►  December (7)
    • ►  November (2)
    • ►  October (3)
    • ►  September (10)
    • ►  August (25)
    • ►  July (17)
    • ►  June (22)
    • ►  May (22)
    • ►  April (24)
    • ►  March (17)
    • ►  February (22)
    • ►  January (21)
  • ►  2012 (204)
    • ►  December (21)
    • ►  November (35)
    • ►  October (47)
    • ►  September (27)
    • ►  August (6)
    • ►  July (21)
    • ►  June (16)
    • ►  May (7)
    • ►  April (9)
    • ►  March (4)
    • ►  February (3)
    • ►  January (8)
  • ►  2011 (70)
    • ►  December (8)
    • ►  November (5)
    • ►  October (3)
    • ►  September (2)
    • ►  August (7)
    • ►  July (3)
    • ►  June (30)
    • ►  May (3)
    • ►  April (3)
    • ►  March (1)
    • ►  February (3)
    • ►  January (2)
  • ►  2010 (30)
    • ►  December (1)
    • ►  September (4)
    • ►  August (1)
    • ►  July (1)
    • ►  June (1)
    • ►  May (4)
    • ►  April (6)
    • ►  March (5)
    • ►  February (2)
    • ►  January (5)
  • ►  2009 (40)
    • ►  December (4)
    • ►  November (6)
    • ►  October (4)
    • ►  September (5)
    • ►  August (4)
    • ►  July (3)
    • ►  June (4)
    • ►  May (8)
    • ►  March (1)
    • ►  February (1)
  • ►  2008 (6)
    • ►  December (1)
    • ►  September (1)
    • ►  May (1)
    • ►  April (2)
    • ►  February (1)
  • ►  2007 (7)
    • ►  December (1)
    • ►  November (2)
    • ►  October (1)
    • ►  July (1)
    • ►  May (2)

Recent Posts

Followers

Report Abuse

FOLLOW ME @INSTAGRAM

Popular Posts

  • Stay Wow - Health Tips from Sapna Vyas Patel
    Referred URL https://www.facebook.com/sapnavyaspatel WATCH WEIGHT LOSS VIDEO: http://www.youtube.com/ watch?v=S_dlkjwVItA ...
  • Calorie Count chart For food and drinks
    Referred URL http://deepthidigvijay.blogspot.co.uk/p/health-diet-calorie-charts.html http://www.nidokidos.org/threads/37834-Food-Calorie-...
  • SharePoint 2010 Interview Questions and Answers
    Referred URL http://www.enjoysharepoint.com/Articles/Details/sharepoint-2010-interview-questions-and-answers-148.aspx 1.What is SharePoint...
  • 150 Best Windows Applications Of Year 2010
    Referred URL : http://www.addictivetips.com/windows-tips/150-best-windows-applications-of-year-2010-editors-pick/?utm_source=feedburner...
  • Web Developer Checklist by Mads Kristensen
    Referred Link -  http://webdevchecklist.com/ Web Developer Checklist Get the extension  Chrome  |  Firefox  |  Edge Menu Bes...
  • WCF and REST Interview Questions
    What is WPF? The Windows Presentation Foundation (WPF) is a next generation graphics platform that is part of...
  • Remove double tap to unlock feature on samsung galaxy core2
    Double tap to unlock is a feature of Talkback, so if your will disable Talkback, double tap to unlock will also be disabled. To disable doub...
  • Difference Between Content Editor and Script Editor webpart
    Referred Link -  http://jeffas.com/content-editor-vs-script-editor-webpart/ Content editor web part is a place holder for creating rich ...
  • SPFolder related operations in SharePoint
      1) Get SPListItem(s) of a particular SPFolder SPList splist; SPFolder spfolder; //Get the required folder instance SPQuery spquery = new ...

Comments

Created with by BeautyTemplates | Distributed by blogger templates