|
This may give you some ideas.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
<pre lang="C#">I have problem with this visual c# uwp code when I am trying to save to text file with raspberry pi 3 with Windows 10 IoT.
var path = @"urls.txt";
var folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
var file = await folder.GetFileAsync(path);
var lines = await Windows.Storage.FileIO.ReadLinesAsync(file);
(lines[0]) = textBoxRadio.Text;
(lines[1]) = textBoxRadio2.Text;
await Windows.Storage.FileIO.WriteLinesAsync(file, lines);
Following error message appears
Unhandled exception at 0x75DC0D6F (twinapi.appcore.dll) in blinky.exe: 0xC000027B: An application-internal exception has occurred
(parameters: 0x038CF1D0, 0x00000001). occurred
and the application halted.
Can someone help me?
|
|
|
|
|
How to redirect to a default page when connected to a server from a browser?
|
|
|
|
|
I don't see anything urgent, nor do I see a proper question.
|
|
|
|
|
im doing my project!! so i wanted to know how to redirect to a particular page through the browser when connected to a server.
|
|
|
|
|
No, I checked with my boss and he said it's not urgent at all.
This isn't any more of a question than your vague posting in QA. There isn't any need to cross post all over the place. And, "I'm doing my project" means nothing to us and isn't an answer to question that anyone has asked you so far.
|
|
|
|
|
how will your boss decide if its urgent or not?? its urgent for me.
|
|
|
|
|
We are all volunteers here, so saying something is urgent means nothing to us. Please learn to post proper questions, and stick to one forum only.
|
|
|
|
|
Member 12800411 wrote: its urgent for me
We are unpaid volunteers and no one cares how urgent you think it is, because it's not urgent to anyone but you.
|
|
|
|
|
NotPolitcallyCorrect wrote: I checked with my boss I'm calling you out on this. I don't think you really did check. I say you are fibbing. Tsk tsk.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Not sure how this is related to mobile development, but...
See here.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
Member 12800411 wrote: a default page In IIS switch to Features View and open Default Document. Then click add and put in your default document.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Whether bluetooth audio can support 5.1 channel audio?
|
|
|
|
|
You should post that question to Google.
|
|
|
|
|
I tried here (not only here) to get a direct answer.
|
|
|
|
|
|
I am working in a custom camera renderer implemented a form.
> TurnTorchOnOff() - The problem is that Doesnot WORK!
Here is the code:
public void TurnTorchOnOff()
{
if (_mediaCapture.VideoDeviceController.FlashControl.Supported)
{
_mediaCapture.VideoDeviceController.FlashControl.Enabled = true;
_mediaCapture.VideoDeviceController.FlashControl.Auto = false;
if (_mediaCapture.VideoDeviceController.FlashControl.PowerSupported)
{
_mediaCapture.VideoDeviceController.FlashControl.PowerPercent = 100;
}
if (_mediaCapture.VideoDeviceController.FlashControl.AssistantLightSupported)
_mediaCapture.VideoDeviceController.FlashControl.AssistantLightEnabled = false;
}
else
{
UserDialogs.Instance.Alert("No Flash Control supported on this device", Strings.Atte
|
|
|
|
|
Hello,
Can anybody tell me where can I get the BITCOIN API in PHP
|
|
|
|
|
The Bitcoin website most likely.
|
|
|
|
|
Message Removed
modified 21-Oct-16 16:46pm.
|
|
|
|
|
I'm investigating and exploring what technology to recommend for our development team's mobile application development. I have previous experience using Xamarin.Android (but not Xamarin.Forms), and my manager has previous experience with Telerik Platform (but not NativeScript).
As a team we're full stack ASP.NET developers so have experience with C#, HTML, CSS and Javascript.
We're looking to build fairly straight-forward apps with limited use of the device's capabilities in the future (e.g. the camera). The apps we have are currently responsive web pages but we want to start using some of the device features hence why we want to write apps.
From my own explorations thus far.
Xamarin.Forms
Pros
- Uses C# which we are already familiar with
- I have previous experience with Xamarin.Android
- It's part of Visual Studio
- It has great integration with the .NET ecosystem
Cons
- You need to write separate code for all device specific functionality
- You need to download and install the Windows Phone emulators to develop for the Windows Phone (which has thus far failed on my dev PC as I need to enable virtualisation in my BIOS)
- You need a Mac to develop for iOS
At the time of writing I have only managed to get a basic Android device running in the VS IDE
Telerik NativeScript
Pros
- Uses XML, Javascript (Node.js) and CSS which we are already familiar with
- One codebase for all mobile platforms
- Access to the NPM ecosystem of modules
Cons
- No support for Windows Phone (although Telerik have stated that this will be addressed in a future release)
I really like Xamarin.Forms but so far Telerik NativeScript seems easier to use with some great debugging tools and clean and consistent UI.
I've been looking into both tools over the last few days and they both have their pros and cons, so I'd appreciate any thoughts from others who may have ideas, suggestions, thoughts etc.
"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." - C.A.R. Hoare
Home | LinkedIn | Google+ | Twitter
|
|
|
|
|
Thanks for this, it's really useful. I'm currently looking into different types of mobile responsive development and design. Would be interested to know what you think of this articleI found online.
I am new to the world of app development, do you agree with the fonts recommended that are recommended in the above article?
|
|
|
|
|
What's the best way designing animated web content for a mobile friendly website?
|
|
|
|
|
What sort of animations? Simple animations on the web page can be performed using jQuery (or JavaScript itself). Even CSS can do these things, such as animating the elements and their properties of view. JavaScript Animation[^], Using CSS animations - CSS | MDN[^].
If you somehow want to run animations that are other than simple ones like HTML element based animations, then OpenGL would be where you should go. Most of the browsers support it, Three.js[^] is also one of such framework which support animations using JavaScript. But note that however you write, whichever framework you support, JavaScript is based on an engine that interprets the script and runs it, and that is going to take a lot of CPU power and RAM, so basically JavaScript would be a monster eating: 1) CPU, 2) RAM, 3) Battery. If your animations are promising, don't worry about these.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
For mobile friendly website whatever your content is. you should compressed all high resolution images & banners. It is increase you user experience, it is the best way to optimize your animated design for mobile devices.
|
|
|
|