Tag Archives: Windows 7
Android geo google maps .
You need to take a look under this Google Maps Intents. Start your project under Android Studio or AIDE. The source code will need to know come into this two files : The AndroidManifest.XML file: <?xml version=”1.0″ encoding=”utf-8″?> <manifest xmlns:android=”http://schemas.android.com/apk/res/android” package=”com.mycompany.myapp” > <application android:allowBackup=”true” android:icon=”@drawable/ic_launcher” android:label=”@string/app_name” android:theme=”@style/AppTheme” > <activity android:name=”.MainActivity” android:label=”@string/app_name” > <intent-filter> <action android:name=”android.intent.action.MAIN” />… Read More »
Android send mail with android mail setup.
I used AIDE development tool under my phone. The main reason was : this IDE come with a simple default project. The Android Studio can you give yourself a headache… The AIDE will make all your files under your project. I named my project MyAppMailSend with MainActivity. So the java class will be MainActivity –… Read More »
Make low poly fir tree with Blender 3D.
This will be the final result of this tutorial, I hope you will find this helpful. First, open and save the scene with the name fir-tree or named it with your file name project. The next step is to remove the default cube with Delete key or X key and press Enter key to remove… Read More »
LINQ and LinkPad – part 001.
LINQ stands for Language Integrated Query and enables us to query any type of data store, like SQL Server, XML documents, Objects in memory, etc. You don’t need to know the syntax specific to data source because LINQ enables us to work with the different data source. If we develop one application and this working… Read More »
Programming with C# and Unity 3D game engine – part 002
Today I will show you how to install Unity 5 for free. First will need to download it from official website – free download. You need to follow these steps: Select Unity 5 Personal Edition. Fill with your email address and password from Unity website account. Select your answers … Press the blue button Start… Read More »
News: Youtube without flash player.
Youtube will let the Flash player to the past and come with HTML 5 features. YouTube first added support for HTML5 back in 2010 when I used with Linux OS. The main reason can be: “Most critically, HTML5 lacked support for Adaptive Bitrate (ABR) that lets us show you more videos with less buffering.” Also,… Read More »
Using Speech with C# and Visual Studio 2013.
NOTE: I used this tutorial with Visual Studio 2017 and working well with the source code. This example will show you how to use Speech with C# an Visual Studio 2013 to recognition your words, speak your words from your list and also command the exit application. Create one empty project from File – New… Read More »