Archive for the ‘General’ Category
It happened this way.
This server is located in Denmark.
Unfortunately, it is this area that have been hardest hit by the huge masses of water. So host company moved it to another location.
It went pretty fast, you could say.
The server should have PHP5 installed, but it was not, and I didn’t know about it and updated WordPress to the latest version. Then stopped working anything. So I had to delete files and install back to the older version.
Now my site has returned. But you still cannot download files from this server yet.
Please use the link below to download the files.
The server has changed the settings and I seem unable to do anything about this problem.
Please try to download the software files from here.
http://www.esnips.com/web/mino-Software
If the specified link does not work, copy the entire link and paste it into your browser address bar.
I will try to update other software and MIDI files, but it takes some time.
Thank you for your patience.
LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Macintosh and Linux, that gives you six feature-rich applications for all your document production and data processing needs: Writer, Calc, Impress, Draw, Math and Base. Support and documentation is free from our large, dedicated community of users, contributors and developers. You, too, can also get involved!
I have never used it, but it looks promising.
Download LibreOffice.
Support the Red Cross disaster response in Japan
About the donations to Japan
Read more about this (http://www.ifrc.org/en/what-we-do/disaster-management/responding/ongoing-operations/japan-earthquake/about-the-donations-to-japan/).
Open the donation form (http://www.ifrc.org/en/get-involved/donate/donation/).
People want something to happen. And me too.
So I made the MP3 player. And it really can play MP3.
With the “MediaElement”, you can play video files too.
“MainPage.xaml” looks like this.
<UserControl x:Class="MP3MediaTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
<Grid x:Name="LayoutRoot">
<StackPanel>
<MediaElement AutoPlay="False" x:Name="myMP3" Source="Etudo.mp3" />
<TextBlock FontSize="20" x:Name="myStatus" />
<StackPanel Orientation="Horizontal">
<Button x:Name="myPlayButton" Width="100" Content="Play" Click="OnPlay" />
<Button x:Name="myPauseButton" Width="100" Content="Pause" Click="OnPause" />
<Button x:Name="myStopButton" Width="100" Content="Stop" Click="OnStop" />
</StackPanel>
</StackPanel>
</Grid>
</UserControl>
And “MainPage.xaml.cs” looks like this.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace MP3MediaTest
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
this.myMP3.CurrentStateChanged += new RoutedEventHandler(OnCurrentStateChanged);
}
void OnCurrentStateChanged(object sender, RoutedEventArgs e)
{
bool isPlaying = (this.myMP3.CurrentState == MediaElementState.Playing);
this.myPauseButton.IsEnabled = isPlaying && this.myMP3.CanPause;
this.myPlayButton.IsEnabled = !isPlaying;
this.myStatus.Text = this.myMP3.CurrentState.ToString() + " - " + this.myMP3.Source.ToString();
}
private void OnPlay(object sender, RoutedEventArgs e)
{
this.myMP3.Play();
}
private void OnPause(object sender, RoutedEventArgs e)
{
this.myMP3.Pause();
}
private void OnStop(object sender, RoutedEventArgs e)
{
this.myMP3.Stop();
}
}
}
<UserControl x:Class="ImageBrushTest.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
<Grid x:Name="LayoutRoot">
<Canvas>
<Rectangle RadiusX="30" RadiusY="30" Fill="AliceBlue" Stroke="Gray" StrokeThickness="5" Canvas.Left="5" Canvas.Top="5" Width="360" Height="360" />
<Ellipse Width="330" Height="330" Canvas.Left="20" Canvas.Top="20" Stroke="Coral" StrokeThickness="10">
<Ellipse.Fill>
<ImageBrush Stretch="Uniform" ImageSource="bird.png" />
</Ellipse.Fill>
</Ellipse>
</Canvas>
</Grid>
</UserControl>
Image file should be in the same folder as the XAP file (“ClientBin” folder). If it is not the case, you must specify the path to the file (ie http://www.yoursite.com/images/bird.png).
Actually, the XAP file is a ZIP file with different extension. You can change its extension and unzip it.
I recorded it last winter.
My dog (Golden Retriever and German Shepherd) plaing in snow.
I play J.S. Bach – Trio Sonata 6 in G – BWV 530 (1. Vivace).
What is AppRemover?
AppRemover is a free utility that enables users to remove antivirus and other applications as well as left over files from incomplete uninstallations. There’s no more need to mess around with your registry.
You can get it from here.
My “Kaspersky” trial period was over and I have changed my security software to “F-Secure Internet Security”. Then it happened something.
When I would start the program (actually my program), F-Secure showed a message box with the security risk blah blah ..
If your security software prompts you to start or not, let it allow run my software, otherwise you cannot use them at all.
My program has no digital signature. And that’s why security software reacts so.
The digital signature can buy by anyone who has money and UNFORTUNATELY, I cannot afford. Only thing you must do is you have to trust me.
I thought that “TRUST” grows between the parties, like you and me. But now it can be purchased, although there are discounts. Ironically! Ha ha!
By the way!
My program is virus-free and add-ware free so far I know, and they carry no onto prospective threat to your system.
I installed IEvolution by HiComponents (http://www.hicomponents.com/), but I cannot even compile the demo program included with the DLLs.
I installed IEvolution.DLL and copied IECore.DLL in the Windows System folder. But it does not work.
When I compile demo project, I get only the following exception.
Exception
Make sure the file image is a valid managed assembly or module.
This exception is thrown when unmanaged code is passed to Load for loading.
Actually I cannot convert demo projects to Visual Studio 2008 projects, not so easy either. XML error occurs!
Can someone tell me how to do it?


