Quantcast
Channel: Programming – Xinyustudio
Browsing all 284 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Bing Search in C#: A step by step walk-through tutorial

This blog is the 3rd article of the series Search in C# example demonstration. If you are interested in my earlier blogs in this series, please refer to below blogs: Google Search in C#: A step by step...

View Article


How it feels to learn JavaScript in 2016

Orignal article here. Interesting!

View Article


Image may be NSFW.
Clik here to view.

Firebase Unity3D example: a walk through tutorial

Step I: Download Firebase Unity3D packages Download Firebase Unity SDK. Create a Unity3D project. Unpack the file, there will be a number of different unity packages. Double click on the packages you...

View Article

Image may be NSFW.
Clik here to view.

Using Firebase in Unity3D Tutorial 1: Basics and setup

Firebase is a platform that helps you quickly develop high-quality apps,  It is made up of a collection of features that is very handy for Unity3D, Android, iOS app developers. In this series of...

View Article

Image may be NSFW.
Clik here to view.

Using Firebase in Unity3D Tutorial 2: Authorization and User Login with email...

This is the 2nd part of the series of tutorial. If you have not setup the Firebase SDK and want to know how to create and manage project in Firebase Console, refer to my previous post below: Using...

View Article


‘com.github.dcendents.android-maven’ not found, the solution

Recently, I build some open source Android libraries, and when building the project, below error occurred: Error:(2, 0) Plugin with id ‘com.github.dcendents.android-maven’ not found. Quick Solution:...

View Article

Learn React VR: A great tutorial series deserving a good read

Chapter 1 | Hello Virtual World Chapter 2 | Panoramic Road Trip Chapter 3 | Outdoor Movie Theater Chapter 4 | Transitions and Animations Chapter 5 | Star Wars Modeling Chapter 6 | Vector Graphic...

View Article

React Native: “No dimensions set for key window” error and solution

In my recent project, I created a brand new React-native project, and run that on the simulator, then the captioned error pops up: “No dimensions set for key window” What hell does this mean? After a...

View Article


Image may be NSFW.
Clik here to view.

Vuforia: Delayed Initialization Explained

Vuforial is a widely used AR toolkit, and if you use it for some time, you will find “Delayed Initialization” for sure. You would like to try it, right? Go and do it, cry please, you will see below...

View Article


Flutter: Could not install build/ios/iphoneos/Runner.app

When running flutter apps on the device, sometimes you may encounter the captioned error message as following (either from Android Studio, Intelligidea or CLI): Could not install...

View Article

‘vue’ is not recognized as an internal or external command, operable program...

Following the instruction from vue official site, I installed vue-cli via below command in termal: npm install -g @vue/cli # OR yarn global add @vue/cli For me I used the latter. And then when I fire...

View Article

Image may be NSFW.
Clik here to view.

Ramda function explained: lens

Ramda is a practical functional library for JavaScript programmers. It follows functional programming paradigm, and official doc for lens is shown here. One of the limitation of ramda is that its...

View Article

Image may be NSFW.
Clik here to view.

Using Intellij Idea as a Markdown Editor

Markdown is a lightweight markup language with plain text formatting syntax. Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text...

View Article


Troubleshooting: node_modules/@types/react/index.d.ts – error TS2717

If you encoutner the captioned error when building a react app using typescript, you are not alone, There are bunch of solutions discussed on the internet:...

View Article

Image may be NSFW.
Clik here to view.

Unity: Detect GUI Window Created/Closed Event

On StackOverflow, someone asks how to detect the GUI Window Created/Closed Event, which Unity3D does not ship an off-the-shelf solution. Below is my solution to this problem: to use property setter to...

View Article


Visual Studio 2015, 2013 Offline download ISO link Collections

Visual Studio 2015 RC Microsoft Visual Studio 2015 RC Professional ISO Microsoft Visual Studio 2015 RC Enterprise ISO Microsoft Visual Studio 2015 RC Community ISO Microsoft Visual Studio Team...

View Article

Image may be NSFW.
Clik here to view.

Embedding web browsers in Winform applications

Winform ships with a built-in WebBrowser control where you can use it to embed a web browser in a Winform Application. It is relatively trivial to implement it: In Visual Studio Toolbox, Search “Web...

View Article


Image may be NSFW.
Clik here to view.

Using MySQL with C# (I): MySQL Installation

MySQL is a free database and can be easily used in your .Net Applications. This quick-start goes through the typical process that involves installation, up and running your “Hello MySQL” application....

View Article

Image may be NSFW.
Clik here to view.

Using MySQL with C# (II): Creating a DB for programming

You might be interested in how to install MySQL in windows, check up this link for details. Run MySQL workbench after clicking Finish   In the MySQL workbench, copy below scripts to create a new...

View Article

Image may be NSFW.
Clik here to view.

Using MySQL with C# (III): Coding in C#

Install the nuget package: in the nuget management console, type below line and run Install-Package MySql.Data Let’s create a class SqlUtils, and in the static constructor, type below code:...

View Article
Browsing all 284 articles
Browse latest View live