FEATURED How do you run multiple instances of Microsoft Teams? Ralph Willgoss, December 22, 2020 Microsoft Teams Remote Sometimes you may need to be run two or more instances of Microsoft Teams, as you have multiple accounts that you need to be logged into at the same time. I found various solutions but they all fell short for me.The hybrid nature of the solutions, where you run an instance of the Teams app and an instance of Teams in a browser - means you miss out on the video features, which is the main reason I use teams.Continued on: https://ralphwillgoss.githu... ... Read More Share How do you run multiple instances of Microsoft Teams? 0 0 0 Microsoft Teams Remote
MOST POPULAR Need Something to Do over the Break? How About 25 Free JavaScript ... Jeremy Morgan, December 18, 2020 Object Oriented Programming Programming web design javascript If you want to just skip to the free courses, go here. Want something to do over the break?Want to polish ... Read More Share Need Something to Do over the Break? How About 25 Free JavaScript ... 0 0 0 Object Oriented Programming Programming web design javascript
HOT TOPIC Benefits of Apple Cider Vinegar Aman Garg, December 8, 2020 Health GERD REFLUX Headache Learn about the benefits of Apple Cider Vinegar and how it can help in your daily life.http://amangarg.com/?p=20 ... Read More Share Benefits of Apple Cider Vinegar 0 0 0 Health GERD REFLUX Headache HOT TOPIC Shaking down the Raspberry Pi 400 Jeremy Morgan, December 2, 2020 I recently got my hands on the Raspberry Pi 400, the "$70 desktop PC," and I have now had the chance ... Read More Share Shaking down the Raspberry Pi 400 0 0 0 HOT TOPIC Blog is Moving Patrick Liekhus, November 21, 2020 This blog is moving over to https://sitecore-liekhus.bl... Please check us out over there ... Read More Share Blog is Moving 0 0 0
HOT TOPIC Benefits of Apple Cider Vinegar Aman Garg, December 8, 2020 Health GERD REFLUX Headache Learn about the benefits of Apple Cider Vinegar and how it can help in your daily life.http://amangarg.com/?p=20 ... Read More Share Benefits of Apple Cider Vinegar 0 0 0 Health GERD REFLUX Headache
HOT TOPIC Shaking down the Raspberry Pi 400 Jeremy Morgan, December 2, 2020 I recently got my hands on the Raspberry Pi 400, the "$70 desktop PC," and I have now had the chance ... Read More Share Shaking down the Raspberry Pi 400 0 0 0
HOT TOPIC Blog is Moving Patrick Liekhus, November 21, 2020 This blog is moving over to https://sitecore-liekhus.bl... Please check us out over there ... Read More Share Blog is Moving 0 0 0
MOST RECENT Essential Tools to find bugs... before they get to production Stackify sponsor Developers now have access to free and inexpensive developer tools that can help find and fix many common application problems. These new APM tools are now an essential part of every developer’s tool set. Show me the tools! SQL Server: How do I split a comma delimited column into multiple columns or rows? Paula DiTallo, March 9, 2017 Practical Answers SQL -- converting column with commas to multiple columns --declare @col1 varchar(500)set @col1 = 'I,Hate,Broccoli'DECLARE @Tmp TABLE ( Id int, Element VARCHAR(20)) INSERT @Tmp SELECT 1,@col1 SELECT Id, PARSENAME(REPLACE(Element,'... ... SQL Server: How do I split a comma delimited column into multiple columns or rows? 0 0 0 Practical Answers SQL MonoGame – v3.6 now available Chris G. Williams, March 7, 2017 Game Development General Interest MonoGame MonoGame 3.6 now available! Pardon the interruption of the regular MonoGame blog series, but this is important. There’s a new version of MonoGame now available!! Grab MonoGame 3.6 here: http://www.monogame.net/201... ... MonoGame – v3.6 now available 0 0 1 Game Development General Interest MonoGame Handling Exception in calling Web Service, In BizTalk Koushal Deshpande, March 6, 2017 BizTalk Service End Point Exception Web Exception HTTP400 HTTP500 HTTP200 There was no endpoint listening at System.Net.WebException This is often caused by an incorrect address or SOAP action. See InnerException if present for more details. Resource not found. System.Net.WebException: The remote server returned an unexpected response: (400) BadRequest System.Net.WebException: The remote server returned an unexpected response: (500) BadRequest I have faced the issue of calling web service from BizTalk, where intermittently either service is not available or there is some problem in connecting the service. Service can return response error code ... Handling Exception in calling Web Service, In BizTalk 0 0 34 BizTalk Service End Point Exception Web Exception HTTP400 HTTP500 HTTP200 There was no endpoint listening at System.Net.WebException This is often caused by an incorrect address or SOAP action. See InnerException if present for more details. Resource not found. System.Net.WebException: The remote server returned an unexpected response: (400) BadRequest System.Net.WebException: The remote server returned an unexpected response: (500) BadRequest Capture HTTPS traffic from iOS devices using Charles Changhong Fu, March 3, 2017 iOS Charles HTTPS SSL This article will show you how to set up Charles and iOS devices so that you can capture HTTPS traffic from iOS devices using Charles. Step 0: Download and install Charles from https://www.charlesproxy.co... ... Capture HTTPS traffic from iOS devices using Charles 2 0 19 iOS Charles HTTPS SSL Execute AsyncTask like jquery’s $.ajax in Kotlin on Android Changhong Fu, March 3, 2017 Android Kotlin AsyncTask Last time I showed how to execute an AsyncTask in Jquery style. Now I will show how to do it in Kotlin. Kotlin has much better support for functional programming, functions/lambdas are first class member ... Execute AsyncTask like jquery’s $.ajax in Kotlin on Android 1 0 7 Android Kotlin AsyncTask Free Licenses for MVPs bconlon, March 2, 2017 I was interested to see a tweet from Liquid Technologies promoting free licenses of its XML products for Microsoft Most Valuable Professionals (MVPs). So this got me wondering what else is available for ... Free Licenses for MVPs 0 0 0 Execute AsyncTask like jquery’s $.ajax in Java on Android Changhong Fu, March 1, 2017 Android Java async lambda expression On Android, if you want to make an async call, AsyncTask is the way to go. Basically you will have to implement something like this:private class LongOperation extends AsyncTask<String, Void, String> ... Execute AsyncTask like jquery’s $.ajax in Java on Android 0 0 42 Android Java async lambda expression angular it's just angular now foxjazz, March 1, 2017 angular git rxjs angular.io it's just angular man. using angular-cli with webpack is the way to go.Use gitter and the angular/angular channel if you have questions. They are friendly and responsive.rxjs of course rocks ... angular it's just angular now 0 0 0 angular git rxjs Reasons for Automated Testing Timothy Klenke, February 23, 2017 Testing Testing So I gave a talk at the Edmonton .NET User Group on an introduction to automated testing. And of course in this introduction I gave a list of reasons why unit testing is a good idea. Although there are ... Reasons for Automated Testing 0 0 2 Testing Testing How To Hire Top iOS App Developers For The Company? Ritesh Patil, February 23, 2017 Things have become so easy these day and all the credits go to the smartphones and mobile applications. People can just tap on smartphones and virtually do everything right from booking air tickets to ... How To Hire Top iOS App Developers For The Company? 0 0 0 Multithreading with PowerShell using RunspacePool Herve Roggero, February 22, 2017 If you are working with PowerShell, you may want to start running certain scripts in parallel for improved performance. While doing some research on the topic, I found excellent articles discussing Runspaces ... Multithreading with PowerShell using RunspacePool 0 0 0 7. MonoGame - Putting Text Onscreen With SpriteFonts Chris G. Williams, February 22, 2017 Game Development MonoGame MonoGame – Putting Text Onscreen With SpriteFonts In MonoGame, text is displayed on the screen in much the same way as sprites, or 2D images. The difference is in how you prepare the font and how you work ... 7. MonoGame - Putting Text Onscreen With SpriteFonts 0 0 5 Game Development MonoGame Why Should iOS Developers Choose Swift Programming For Applications? Ritesh Patil, February 22, 2017 Whenever the developers decide to start new iOS app project, they might be pondered whether to chose Swift programming or Objective-C. Apple introduced Swift in the year 2014 after thorough research and ... Why Should iOS Developers Choose Swift Programming For Applications? 0 0 0 Migrating from NUnit to XUnit–SetupFixture fun Chris Skardon, February 22, 2017 So I was limited to a specific version of NUnit for various reasons, and needed to start being able to run ‘core’ tests, so I migrated to XUnit. Generally not a problem until I hit ‘SetupFixture’. XUnit ... Migrating from NUnit to XUnit–SetupFixture fun 0 0 0 Is Your Developer Team Designing for a Disaster? mwatson, February 21, 2017 Dev Culture BuildBetter Development teams work at top speed, and the environment in which they work is demanding and complex. Software is no longer considered done until it’s shipped, and there’s been a tendency to view shipped ... Is Your Developer Team Designing for a Disaster? 0 0 10 Dev Culture BuildBetter Architecting a Developer Team Turnaround mwatson, February 21, 2017 Dev Culture BuildBetter A couple years ago, I accepted a position as the “director of digital” at a small marketing firm. And yes, there was still a divide between digital and traditional work there. I was mostly hired for my ... Architecting a Developer Team Turnaround 0 0 2 Dev Culture BuildBetter Developer Teams Must Work Differently in the Future mwatson, February 21, 2017 Dev Culture BuildBetter As we inject more new technology into our everyday lives, software development continues to be one of the most popular and fastest growing job fields. But have you ever really thought about the core essence ... Developer Teams Must Work Differently in the Future 0 0 2 Dev Culture BuildBetter Continuous Improvement is Critical for Developer Success mwatson, February 21, 2017 Dev Culture BuildBetter From the beginning, it became clear that Kanbanize would need more than just cool perks and a nice office to build a dream team equipped to deal with the challenges of a growing startup. A productive and ... Continuous Improvement is Critical for Developer Success 0 0 0 Dev Culture BuildBetter Changing the World with Agile and Lean Startup Methods mwatson, February 21, 2017 Dev Culture BuildBetter I can’t tell you how many companies I’ve seen, of all sizes, who start out with an innovative mission to change the world. They acquire a budget, rally a team together, and get to work for months or years ... Changing the World with Agile and Lean Startup Methods 0 0 1 Dev Culture BuildBetter Past the Ping Pong Table for Better Dev Team Culture mwatson, February 21, 2017 Dev Culture BuildBetter here’s quite a bit of press paid to the quirky perks of startup offices. From ping pong tables to beer kegs to pet-friendly work spaces, sometimes it seems like offices are more into having fun than getting ... Past the Ping Pong Table for Better Dev Team Culture 0 0 5 Dev Culture BuildBetter Inspire Your Developer Team in 5 Simple Ways mwatson, February 21, 2017 Dev Culture BuildBetter We have a great developer team. We make software. We also invest a lot of time and energy in ensuring that the work we do is excellent. It goes without saying then that our development team is a crucial ... Inspire Your Developer Team in 5 Simple Ways 0 0 10 Dev Culture BuildBetter 5 Principles for a Developer Team Culture that Wins mwatson, February 21, 2017 Dev Culture BuildBetter Culture. Of all the overloaded, over-used, buzzword-bingo, five dollar corporate-jingoistic catchphrases of leadership jargon out there, are there any that are more hyped yet seemingly less tangible than ... 5 Principles for a Developer Team Culture that Wins 0 0 4 Dev Culture BuildBetter Coded to Teach mwatson, February 21, 2017 BuildBetter You will be hard-pressed to find someone who doesn’t enjoy or engage with video games in this modern age. From mobile apps, Facebook games, to everyday gamification, we are always at play. Developer turned ... Coded to Teach 0 0 12 BuildBetter Developing for Change mwatson, February 21, 2017 BuildBetter John Negron, Founder / Be a DoerThe path from developer to founder takes people on many different paths. In the process of creating a non-profit volunteer pipeline and event management platform, Be a Doer ... Developing for Change 0 0 9 BuildBetter Repeating the Successes of the Past in a New Mission mwatson, February 21, 2017 BuildBetter Jeff Atwood, Founder / Stack Overflow / Discourse.orgCo-founder / Stack Exchange When you finally reach your goal of a successful product launch, where do you go from there? Do you stick with it or sell ... Repeating the Successes of the Past in a New Mission 0 0 0 BuildBetter When Your Backup Plan Becomes Your Biggest Success mwatson, February 21, 2017 BuildBetter Steve McConnell, Founder / Construx SoftwareIn this growing age of technology, not everyone who becomes a developer starts out with that as theirgoal. Many start out with a different career or interest, ... When Your Backup Plan Becomes Your Biggest Success 0 0 0 BuildBetter The Twist at the Crossroads mwatson, February 21, 2017 BuildBetter Alexis Pratsides Founder / MintTwistThe path from developer to founder is not always through a single app or product. Many developers take the path of putting their code to use for others. Alexis Pratsides, ... The Twist at the Crossroads 0 0 0 BuildBetter The Code that Rocks the Cradle mwatson, February 21, 2017 BuildBetter Life has a funny way of sending you down the path you are destined to travel. For me, this funny way involved two babies, a husband tired of living in the clutter of leftover baby gear, my professional ... The Code that Rocks the Cradle 0 0 0 BuildBetter White Noise & Coding for Success mwatson, February 21, 2017 BuildBetter Todd Moore / Developer of White Noise / Founder of TMSOFTWhen you dream of founding your own company, you probably have a vision in your head of what it looks like. While everyone hopes that they launch ... White Noise & Coding for Success 0 0 0 BuildBetter Fulfilling a Need, Founding a Company mwatson, February 21, 2017 BuildBetter Robert Collazo / Co-founder & CTO / HelpSocialOften, the apps and products we create are born out of necessity, and founders are born from that simple need-based-solution. Robert Collazo, co-founder ... Fulfilling a Need, Founding a Company 0 0 0 BuildBetter It’s The Bugs You Can’t See That Get Hairiest. mwatson, February 21, 2017 BuildBetter Matt Watson / Founder & CEO / StackifyOur fridge at home is always full. This is generally a good thing. The downside is, it’s hard to find stuff in a fridge that’s been packed to survive an apocalypse. ... It’s The Bugs You Can’t See That Get Hairiest. 0 0 0 BuildBetter Onshore, Offshore, Nearshore. Boon is One Epic Leader. mwatson, February 21, 2017 BuildBetter Boon Lee, Director of KC Dev Con & Dev Manager ExtraordinaireWhat’s better than chatting with a multi-talented, hugely respected development manager like Boon Lee? Seeing his kids’ heads pop up in ... Onshore, Offshore, Nearshore. Boon is One Epic Leader. 0 0 0 BuildBetter Government clearance and a happy wife. Success. mwatson, February 21, 2017 BuildBetter Brian Madsen, LinkedIn .Net User Group Manager, Microsoft MVP, Blogger, & Consultant at byBrick Development ABYou know when you meet someone and you say to yourself, “this person is my new best friend.” ... Government clearance and a happy wife. Success. 0 0 0 BuildBetter Developers are saving the world. It’s true. Eric Meyer is proof. mwatson, February 21, 2017 BuildBetter Eric A. Meyer, Technical Consultant, Author, Trainer and Co-founder of An Event ApartWhen he’s not doing things like speaking at An Event Apart (which he co-founded), writing bleeding edge books on front-end ... Developers are saving the world. It’s true. Eric Meyer is proof. 0 0 0 BuildBetter devRant Co-Founder Talks Shipping Code & Making Poops Fun mwatson, February 21, 2017 BuildBetter David Fox, Co-Founder & Head of Eng / devRantAfter a day on the developer front line, we all need to blow off steam. Now there’s an app for that. We got to chat with David Fox, co-founder and head ... devRant Co-Founder Talks Shipping Code & Making Poops Fun 0 0 0 BuildBetter Paging Dr. Campbell… mwatson, February 21, 2017 BuildBetter The Co-host of .NET Rocks! Opens His Performance Diagnostic Toolbox for us, and for a Good CauseRichard Campbell, Podcast, Dev Con, & Non-profit Rock StarRichard Campbell—veteran developer, podcasting ... Paging Dr. Campbell… 0 0 0 BuildBetter To Tool is Human mwatson, February 21, 2017 BuildBetter Matt Watson, Founder & CEO / StackifyIt has been said that tools are what made us human. Our ability to create and use tools allows us to do things that were not imaginablebefore. Software itself has ... To Tool is Human 0 0 0 BuildBetter How To Develop Android Applications With iOS Background? Ritesh Patil, February 21, 2017 Android has been a successful and the most used operating system. It is based on the Linux and it’s open source. There are various advantages and disadvantages of using Android.It is possible to customize ... How To Develop Android Applications With iOS Background? 0 0 2 Amazon Alexa Skills Article in Code Magazine Chris G. Williams, February 20, 2017 Alexa Amazon General Interest My Amazon Alexa Skills article in Code Magazine is out now, and it’s the cover article!!! Very exciting stuff. You can find it online, at: http://www.codemag.com/Arti... Or you can download the ... Amazon Alexa Skills Article in Code Magazine 1 0 3 Alexa Amazon General Interest 2017 Syntax Code & Craft Conference Chris G. Williams, February 17, 2017 General Interest speaking Looks like I'll be speaking again this year at the Syntax Code & Craft Conference, in Charleston, SC. Date: May 18 & 19Topic: What's New in C# 7C# 7 introduces a number of great features, including ... 2017 Syntax Code & Craft Conference 2 0 9 General Interest speaking Robotics Process Automation (RPA) - Moving towards digital transformation Aman Garg, February 17, 2017 Robotic Process Automation (RPA) Singapore REASPro Digital Transformation Automation Asia-Pacific World is changing and its changing at a faster pace. Companies need to transform to be able to survive in this competitive world. Focus is more and more on reducing costs and bringing efficiency to the ... Robotics Process Automation (RPA) - Moving towards digital transformation 1 0 0 Robotic Process Automation (RPA) Singapore REASPro Digital Transformation Automation Asia-Pacific 6. MonoGame - Putting a Sprite Onscreen Chris G. Williams, February 16, 2017 Game Development MonoGame MonoGame - Putting a Sprite Onscreen If you aren’t familiar with the term “sprite”, it refers to a two-dimensional (2D) graphical image that you can display onscreen. Sometimes they are individual images, ... 6. MonoGame - Putting a Sprite Onscreen 1 0 9 Game Development MonoGame Logging To Application Insights In Azure Functions Tim Murphy, February 16, 2017 Azure Development Cloud Computing PSC In my last post I covered logging in Azure Functions using TraceWriter and log4net. Both of these work, but Application Insights rolls all your monitoring into one solution, from metrics to tracking messages. ... Logging To Application Insights In Azure Functions 1 0 0 Azure Development Cloud Computing PSC Setting up Slackin using Azure and Let’s Encrypt Chris Skardon, February 14, 2017 .NET Azure So I started the sw-dotnet-developers slack (https://sw-dotnet.uk/) a week or so ago, and quickly realised I needed some kind of self registration system to avoid me having to send off invites to everyone, ... Setting up Slackin using Azure and Let’s Encrypt 1 0 0 .NET Azure How To Avoid Malicious Attacks On Android Devices Ritesh Patil, February 14, 2017 With millions of smartphone users around the globe, mobile application development is undoubtedly the top income generating business of today’s world of technology. As the number of users of the applications ... How To Avoid Malicious Attacks On Android Devices 1 0 0 5. MonoGame - The Game Loop Chris G. Williams, February 13, 2017 MonoGame Game Development The MonoGame Game Loop (just like the XNA Game Loop) In the previous section, we talked about what you can find in the MonoGame project, so these methods should look familiar. Now I’ll explain a bit more ... 5. MonoGame - The Game Loop 1 0 4 MonoGame Game Development Adventures in 3D Printing Chris G. Williams, February 13, 2017 General Interest Iot Background: I have a Micro 3D Printer, which runs (usually headless) off an OctoPrint server, running on a Raspberry Pi 3. I moved a few months ago and the whole setup sat in a box until this weekend. ... Adventures in 3D Printing 2 0 3 General Interest Iot Implementing Logging In Azure Functions Tim Murphy, February 13, 2017 Development Cloud Computing PSC Azure Logging is essential to the support of any piece of code. In this post I will cover two approaches to logging in Azure Functions: TraceWriter and log4net. TraceWriter The TraceWriter that is available ... Implementing Logging In Azure Functions 1 0 4 Development Cloud Computing PSC Azure Building a Culture is Deliberate mwatson, February 10, 2017 The Dev Life Dev Culture BuildBetter Written by: Larissa Murillo, Marketing Manager, MarketGooWENCES GARCIA CEO/MARKETGOOOur company, MarketGoo, was founded in 2012, and we have dedicated four years to building a workplace that enables a ... Building a Culture is Deliberate 0 0 0 The Dev Life Dev Culture BuildBetter What Factors Really Affect The Cost Of iPhone App Development? Ritesh Patil, February 10, 2017 Many application development businesses start with one major question- How much it will cost to develop an iOS app?Well, all kind of businesses are demanding for mobile applications now. For example, entertainment, ... What Factors Really Affect The Cost Of iPhone App Development? 1 0 3 Page: 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20
Essential Tools to find bugs... before they get to production Stackify sponsor Developers now have access to free and inexpensive developer tools that can help find and fix many common application problems. These new APM tools are now an essential part of every developer’s tool set. Show me the tools!
SQL Server: How do I split a comma delimited column into multiple columns or rows? Paula DiTallo, March 9, 2017 Practical Answers SQL -- converting column with commas to multiple columns --declare @col1 varchar(500)set @col1 = 'I,Hate,Broccoli'DECLARE @Tmp TABLE ( Id int, Element VARCHAR(20)) INSERT @Tmp SELECT 1,@col1 SELECT Id, PARSENAME(REPLACE(Element,'... ... SQL Server: How do I split a comma delimited column into multiple columns or rows? 0 0 0 Practical Answers SQL
MonoGame – v3.6 now available Chris G. Williams, March 7, 2017 Game Development General Interest MonoGame MonoGame 3.6 now available! Pardon the interruption of the regular MonoGame blog series, but this is important. There’s a new version of MonoGame now available!! Grab MonoGame 3.6 here: http://www.monogame.net/201... ... MonoGame – v3.6 now available 0 0 1 Game Development General Interest MonoGame
Handling Exception in calling Web Service, In BizTalk Koushal Deshpande, March 6, 2017 BizTalk Service End Point Exception Web Exception HTTP400 HTTP500 HTTP200 There was no endpoint listening at System.Net.WebException This is often caused by an incorrect address or SOAP action. See InnerException if present for more details. Resource not found. System.Net.WebException: The remote server returned an unexpected response: (400) BadRequest System.Net.WebException: The remote server returned an unexpected response: (500) BadRequest I have faced the issue of calling web service from BizTalk, where intermittently either service is not available or there is some problem in connecting the service. Service can return response error code ... Handling Exception in calling Web Service, In BizTalk 0 0 34 BizTalk Service End Point Exception Web Exception HTTP400 HTTP500 HTTP200 There was no endpoint listening at System.Net.WebException This is often caused by an incorrect address or SOAP action. See InnerException if present for more details. Resource not found. System.Net.WebException: The remote server returned an unexpected response: (400) BadRequest System.Net.WebException: The remote server returned an unexpected response: (500) BadRequest
Capture HTTPS traffic from iOS devices using Charles Changhong Fu, March 3, 2017 iOS Charles HTTPS SSL This article will show you how to set up Charles and iOS devices so that you can capture HTTPS traffic from iOS devices using Charles. Step 0: Download and install Charles from https://www.charlesproxy.co... ... Capture HTTPS traffic from iOS devices using Charles 2 0 19 iOS Charles HTTPS SSL
Execute AsyncTask like jquery’s $.ajax in Kotlin on Android Changhong Fu, March 3, 2017 Android Kotlin AsyncTask Last time I showed how to execute an AsyncTask in Jquery style. Now I will show how to do it in Kotlin. Kotlin has much better support for functional programming, functions/lambdas are first class member ... Execute AsyncTask like jquery’s $.ajax in Kotlin on Android 1 0 7 Android Kotlin AsyncTask
Free Licenses for MVPs bconlon, March 2, 2017 I was interested to see a tweet from Liquid Technologies promoting free licenses of its XML products for Microsoft Most Valuable Professionals (MVPs). So this got me wondering what else is available for ... Free Licenses for MVPs 0 0 0
Execute AsyncTask like jquery’s $.ajax in Java on Android Changhong Fu, March 1, 2017 Android Java async lambda expression On Android, if you want to make an async call, AsyncTask is the way to go. Basically you will have to implement something like this:private class LongOperation extends AsyncTask<String, Void, String> ... Execute AsyncTask like jquery’s $.ajax in Java on Android 0 0 42 Android Java async lambda expression
angular it's just angular now foxjazz, March 1, 2017 angular git rxjs angular.io it's just angular man. using angular-cli with webpack is the way to go.Use gitter and the angular/angular channel if you have questions. They are friendly and responsive.rxjs of course rocks ... angular it's just angular now 0 0 0 angular git rxjs
Reasons for Automated Testing Timothy Klenke, February 23, 2017 Testing Testing So I gave a talk at the Edmonton .NET User Group on an introduction to automated testing. And of course in this introduction I gave a list of reasons why unit testing is a good idea. Although there are ... Reasons for Automated Testing 0 0 2 Testing Testing
How To Hire Top iOS App Developers For The Company? Ritesh Patil, February 23, 2017 Things have become so easy these day and all the credits go to the smartphones and mobile applications. People can just tap on smartphones and virtually do everything right from booking air tickets to ... How To Hire Top iOS App Developers For The Company? 0 0 0
Multithreading with PowerShell using RunspacePool Herve Roggero, February 22, 2017 If you are working with PowerShell, you may want to start running certain scripts in parallel for improved performance. While doing some research on the topic, I found excellent articles discussing Runspaces ... Multithreading with PowerShell using RunspacePool 0 0 0
7. MonoGame - Putting Text Onscreen With SpriteFonts Chris G. Williams, February 22, 2017 Game Development MonoGame MonoGame – Putting Text Onscreen With SpriteFonts In MonoGame, text is displayed on the screen in much the same way as sprites, or 2D images. The difference is in how you prepare the font and how you work ... 7. MonoGame - Putting Text Onscreen With SpriteFonts 0 0 5 Game Development MonoGame
Why Should iOS Developers Choose Swift Programming For Applications? Ritesh Patil, February 22, 2017 Whenever the developers decide to start new iOS app project, they might be pondered whether to chose Swift programming or Objective-C. Apple introduced Swift in the year 2014 after thorough research and ... Why Should iOS Developers Choose Swift Programming For Applications? 0 0 0
Migrating from NUnit to XUnit–SetupFixture fun Chris Skardon, February 22, 2017 So I was limited to a specific version of NUnit for various reasons, and needed to start being able to run ‘core’ tests, so I migrated to XUnit. Generally not a problem until I hit ‘SetupFixture’. XUnit ... Migrating from NUnit to XUnit–SetupFixture fun 0 0 0
Is Your Developer Team Designing for a Disaster? mwatson, February 21, 2017 Dev Culture BuildBetter Development teams work at top speed, and the environment in which they work is demanding and complex. Software is no longer considered done until it’s shipped, and there’s been a tendency to view shipped ... Is Your Developer Team Designing for a Disaster? 0 0 10 Dev Culture BuildBetter
Architecting a Developer Team Turnaround mwatson, February 21, 2017 Dev Culture BuildBetter A couple years ago, I accepted a position as the “director of digital” at a small marketing firm. And yes, there was still a divide between digital and traditional work there. I was mostly hired for my ... Architecting a Developer Team Turnaround 0 0 2 Dev Culture BuildBetter
Developer Teams Must Work Differently in the Future mwatson, February 21, 2017 Dev Culture BuildBetter As we inject more new technology into our everyday lives, software development continues to be one of the most popular and fastest growing job fields. But have you ever really thought about the core essence ... Developer Teams Must Work Differently in the Future 0 0 2 Dev Culture BuildBetter
Continuous Improvement is Critical for Developer Success mwatson, February 21, 2017 Dev Culture BuildBetter From the beginning, it became clear that Kanbanize would need more than just cool perks and a nice office to build a dream team equipped to deal with the challenges of a growing startup. A productive and ... Continuous Improvement is Critical for Developer Success 0 0 0 Dev Culture BuildBetter
Changing the World with Agile and Lean Startup Methods mwatson, February 21, 2017 Dev Culture BuildBetter I can’t tell you how many companies I’ve seen, of all sizes, who start out with an innovative mission to change the world. They acquire a budget, rally a team together, and get to work for months or years ... Changing the World with Agile and Lean Startup Methods 0 0 1 Dev Culture BuildBetter
Past the Ping Pong Table for Better Dev Team Culture mwatson, February 21, 2017 Dev Culture BuildBetter here’s quite a bit of press paid to the quirky perks of startup offices. From ping pong tables to beer kegs to pet-friendly work spaces, sometimes it seems like offices are more into having fun than getting ... Past the Ping Pong Table for Better Dev Team Culture 0 0 5 Dev Culture BuildBetter
Inspire Your Developer Team in 5 Simple Ways mwatson, February 21, 2017 Dev Culture BuildBetter We have a great developer team. We make software. We also invest a lot of time and energy in ensuring that the work we do is excellent. It goes without saying then that our development team is a crucial ... Inspire Your Developer Team in 5 Simple Ways 0 0 10 Dev Culture BuildBetter
5 Principles for a Developer Team Culture that Wins mwatson, February 21, 2017 Dev Culture BuildBetter Culture. Of all the overloaded, over-used, buzzword-bingo, five dollar corporate-jingoistic catchphrases of leadership jargon out there, are there any that are more hyped yet seemingly less tangible than ... 5 Principles for a Developer Team Culture that Wins 0 0 4 Dev Culture BuildBetter
Coded to Teach mwatson, February 21, 2017 BuildBetter You will be hard-pressed to find someone who doesn’t enjoy or engage with video games in this modern age. From mobile apps, Facebook games, to everyday gamification, we are always at play. Developer turned ... Coded to Teach 0 0 12 BuildBetter
Developing for Change mwatson, February 21, 2017 BuildBetter John Negron, Founder / Be a DoerThe path from developer to founder takes people on many different paths. In the process of creating a non-profit volunteer pipeline and event management platform, Be a Doer ... Developing for Change 0 0 9 BuildBetter
Repeating the Successes of the Past in a New Mission mwatson, February 21, 2017 BuildBetter Jeff Atwood, Founder / Stack Overflow / Discourse.orgCo-founder / Stack Exchange When you finally reach your goal of a successful product launch, where do you go from there? Do you stick with it or sell ... Repeating the Successes of the Past in a New Mission 0 0 0 BuildBetter
When Your Backup Plan Becomes Your Biggest Success mwatson, February 21, 2017 BuildBetter Steve McConnell, Founder / Construx SoftwareIn this growing age of technology, not everyone who becomes a developer starts out with that as theirgoal. Many start out with a different career or interest, ... When Your Backup Plan Becomes Your Biggest Success 0 0 0 BuildBetter
The Twist at the Crossroads mwatson, February 21, 2017 BuildBetter Alexis Pratsides Founder / MintTwistThe path from developer to founder is not always through a single app or product. Many developers take the path of putting their code to use for others. Alexis Pratsides, ... The Twist at the Crossroads 0 0 0 BuildBetter
The Code that Rocks the Cradle mwatson, February 21, 2017 BuildBetter Life has a funny way of sending you down the path you are destined to travel. For me, this funny way involved two babies, a husband tired of living in the clutter of leftover baby gear, my professional ... The Code that Rocks the Cradle 0 0 0 BuildBetter
White Noise & Coding for Success mwatson, February 21, 2017 BuildBetter Todd Moore / Developer of White Noise / Founder of TMSOFTWhen you dream of founding your own company, you probably have a vision in your head of what it looks like. While everyone hopes that they launch ... White Noise & Coding for Success 0 0 0 BuildBetter
Fulfilling a Need, Founding a Company mwatson, February 21, 2017 BuildBetter Robert Collazo / Co-founder & CTO / HelpSocialOften, the apps and products we create are born out of necessity, and founders are born from that simple need-based-solution. Robert Collazo, co-founder ... Fulfilling a Need, Founding a Company 0 0 0 BuildBetter
It’s The Bugs You Can’t See That Get Hairiest. mwatson, February 21, 2017 BuildBetter Matt Watson / Founder & CEO / StackifyOur fridge at home is always full. This is generally a good thing. The downside is, it’s hard to find stuff in a fridge that’s been packed to survive an apocalypse. ... It’s The Bugs You Can’t See That Get Hairiest. 0 0 0 BuildBetter
Onshore, Offshore, Nearshore. Boon is One Epic Leader. mwatson, February 21, 2017 BuildBetter Boon Lee, Director of KC Dev Con & Dev Manager ExtraordinaireWhat’s better than chatting with a multi-talented, hugely respected development manager like Boon Lee? Seeing his kids’ heads pop up in ... Onshore, Offshore, Nearshore. Boon is One Epic Leader. 0 0 0 BuildBetter
Government clearance and a happy wife. Success. mwatson, February 21, 2017 BuildBetter Brian Madsen, LinkedIn .Net User Group Manager, Microsoft MVP, Blogger, & Consultant at byBrick Development ABYou know when you meet someone and you say to yourself, “this person is my new best friend.” ... Government clearance and a happy wife. Success. 0 0 0 BuildBetter
Developers are saving the world. It’s true. Eric Meyer is proof. mwatson, February 21, 2017 BuildBetter Eric A. Meyer, Technical Consultant, Author, Trainer and Co-founder of An Event ApartWhen he’s not doing things like speaking at An Event Apart (which he co-founded), writing bleeding edge books on front-end ... Developers are saving the world. It’s true. Eric Meyer is proof. 0 0 0 BuildBetter
devRant Co-Founder Talks Shipping Code & Making Poops Fun mwatson, February 21, 2017 BuildBetter David Fox, Co-Founder & Head of Eng / devRantAfter a day on the developer front line, we all need to blow off steam. Now there’s an app for that. We got to chat with David Fox, co-founder and head ... devRant Co-Founder Talks Shipping Code & Making Poops Fun 0 0 0 BuildBetter
Paging Dr. Campbell… mwatson, February 21, 2017 BuildBetter The Co-host of .NET Rocks! Opens His Performance Diagnostic Toolbox for us, and for a Good CauseRichard Campbell, Podcast, Dev Con, & Non-profit Rock StarRichard Campbell—veteran developer, podcasting ... Paging Dr. Campbell… 0 0 0 BuildBetter
To Tool is Human mwatson, February 21, 2017 BuildBetter Matt Watson, Founder & CEO / StackifyIt has been said that tools are what made us human. Our ability to create and use tools allows us to do things that were not imaginablebefore. Software itself has ... To Tool is Human 0 0 0 BuildBetter
How To Develop Android Applications With iOS Background? Ritesh Patil, February 21, 2017 Android has been a successful and the most used operating system. It is based on the Linux and it’s open source. There are various advantages and disadvantages of using Android.It is possible to customize ... How To Develop Android Applications With iOS Background? 0 0 2
Amazon Alexa Skills Article in Code Magazine Chris G. Williams, February 20, 2017 Alexa Amazon General Interest My Amazon Alexa Skills article in Code Magazine is out now, and it’s the cover article!!! Very exciting stuff. You can find it online, at: http://www.codemag.com/Arti... Or you can download the ... Amazon Alexa Skills Article in Code Magazine 1 0 3 Alexa Amazon General Interest
2017 Syntax Code & Craft Conference Chris G. Williams, February 17, 2017 General Interest speaking Looks like I'll be speaking again this year at the Syntax Code & Craft Conference, in Charleston, SC. Date: May 18 & 19Topic: What's New in C# 7C# 7 introduces a number of great features, including ... 2017 Syntax Code & Craft Conference 2 0 9 General Interest speaking
Robotics Process Automation (RPA) - Moving towards digital transformation Aman Garg, February 17, 2017 Robotic Process Automation (RPA) Singapore REASPro Digital Transformation Automation Asia-Pacific World is changing and its changing at a faster pace. Companies need to transform to be able to survive in this competitive world. Focus is more and more on reducing costs and bringing efficiency to the ... Robotics Process Automation (RPA) - Moving towards digital transformation 1 0 0 Robotic Process Automation (RPA) Singapore REASPro Digital Transformation Automation Asia-Pacific
6. MonoGame - Putting a Sprite Onscreen Chris G. Williams, February 16, 2017 Game Development MonoGame MonoGame - Putting a Sprite Onscreen If you aren’t familiar with the term “sprite”, it refers to a two-dimensional (2D) graphical image that you can display onscreen. Sometimes they are individual images, ... 6. MonoGame - Putting a Sprite Onscreen 1 0 9 Game Development MonoGame
Logging To Application Insights In Azure Functions Tim Murphy, February 16, 2017 Azure Development Cloud Computing PSC In my last post I covered logging in Azure Functions using TraceWriter and log4net. Both of these work, but Application Insights rolls all your monitoring into one solution, from metrics to tracking messages. ... Logging To Application Insights In Azure Functions 1 0 0 Azure Development Cloud Computing PSC
Setting up Slackin using Azure and Let’s Encrypt Chris Skardon, February 14, 2017 .NET Azure So I started the sw-dotnet-developers slack (https://sw-dotnet.uk/) a week or so ago, and quickly realised I needed some kind of self registration system to avoid me having to send off invites to everyone, ... Setting up Slackin using Azure and Let’s Encrypt 1 0 0 .NET Azure
How To Avoid Malicious Attacks On Android Devices Ritesh Patil, February 14, 2017 With millions of smartphone users around the globe, mobile application development is undoubtedly the top income generating business of today’s world of technology. As the number of users of the applications ... How To Avoid Malicious Attacks On Android Devices 1 0 0
5. MonoGame - The Game Loop Chris G. Williams, February 13, 2017 MonoGame Game Development The MonoGame Game Loop (just like the XNA Game Loop) In the previous section, we talked about what you can find in the MonoGame project, so these methods should look familiar. Now I’ll explain a bit more ... 5. MonoGame - The Game Loop 1 0 4 MonoGame Game Development
Adventures in 3D Printing Chris G. Williams, February 13, 2017 General Interest Iot Background: I have a Micro 3D Printer, which runs (usually headless) off an OctoPrint server, running on a Raspberry Pi 3. I moved a few months ago and the whole setup sat in a box until this weekend. ... Adventures in 3D Printing 2 0 3 General Interest Iot
Implementing Logging In Azure Functions Tim Murphy, February 13, 2017 Development Cloud Computing PSC Azure Logging is essential to the support of any piece of code. In this post I will cover two approaches to logging in Azure Functions: TraceWriter and log4net. TraceWriter The TraceWriter that is available ... Implementing Logging In Azure Functions 1 0 4 Development Cloud Computing PSC Azure
Building a Culture is Deliberate mwatson, February 10, 2017 The Dev Life Dev Culture BuildBetter Written by: Larissa Murillo, Marketing Manager, MarketGooWENCES GARCIA CEO/MARKETGOOOur company, MarketGoo, was founded in 2012, and we have dedicated four years to building a workplace that enables a ... Building a Culture is Deliberate 0 0 0 The Dev Life Dev Culture BuildBetter
What Factors Really Affect The Cost Of iPhone App Development? Ritesh Patil, February 10, 2017 Many application development businesses start with one major question- How much it will cost to develop an iOS app?Well, all kind of businesses are demanding for mobile applications now. For example, entertainment, ... What Factors Really Affect The Cost Of iPhone App Development? 1 0 3