https://eltechs.com/product/exagear-desktop/
for running Windows software on the Pi.
Cost of full fledged Pi system would be < Rs. 4000 including software and HDMI to VGA convertor which would enable use of old monitors.
Mostly work related stuff which I would've entered into my "Log book". Instead of hosting it on an intranet site, outsourcing the hosting to blogger!
For Audio files that are present in server2 we are able to download/stream, for all the android devices (including Android 4.4 version devices also) . But Audio files present in server1 is not downloading/streaming for few android devices (like Android 4.4 version devices etc).Links from both the servers are mentioned for your reference.http://server1/path/1.mp3 (not working in all the devices) Same links we have tested for https also.http://server2/path/1.mp3 (working in all the devices)Kindly suggest us how to go about this issue.
I'm still seeing ~100 second delays even on this stream on the Home device. On my phone/browser, it plays instantly.
I tried changing the burst-size but initially did not find any difference -
64 kB = 65535 = 100 sec delay - this is the default burst-size for icecast
128 kB = 131072 = 100 sec delay
256 kB = 262144 = 100 sec delay
512 kB = 524288 = 100 sec delay
1 MB = 1048576 = 100 sec delay
Then it turned out that I was using a relay for testing, and on-demand was set to 1. After setting the relay's on-demand parameter to 0 (so that the relay is always ready and doesn't have to start after a new connection is made),
128000 = started within 4 seconds!
64000 = 100 sec delay
Repeated this three times, waiting 100 sec + each time after restarting the server. Seems to work well with 128000. So, set this as the burst-size for all our streams.
Just a quick recipe for flipping an object in Blender -
A guide to compiling the contrib modules of OpenCV on Windows -
https://putuyuwono.wordpress.com/2015/04/23/building-and-installing-opencv-3-0-on-windows-7-64-bit/
Some notes about making use of fstream in cross-platform code -
Some interesting methods are discussed at
https://stackoverflow.com/questions/9739948/write-a-file-in-a-specific-path-in-c/40980510#40980510
In Visual Studio,
disable deprecation, use _CRT_SECURE_NO_WARNINGS -
Configuration Properties >> C/C++ >> Preporocessor >> Preprocessor Definitions >> _CRT_SECURE_NO_WARNINGS
A working code snippet -
char path[80];
char foldername[80];
sprintf(path,"homeuser/file.txt");
sprintf(foldername, "homeuser");
CreateDirectoryA(foldername, NULL);
std::ofstream file(path); //open in constructor
std::string data("data to write to file");
file << data;
var message = 'Playing Bhajan Stream.'; this.response.speak(message); this.attributes['stream'] = 'BhajanStream'; controller.play.call(this);
'AMAZON.CancelIntent' : function () { // adding the line below to stop the audio player controller.stop.call(this); ////////////// var message = 'Good bye.'; this.response.speak(message); this.emit(':responseReady'); }
A collection of links about communicating with serial control lines over USB - Arduino etc -
Maintaining google group by deleting bounced emails. And if needed, re-adding them.
https://support.google.com/a/answer/7552660?hl=en
Edit: Users can reset their bounce status by going to https://groups.google.com/bounced?pli=1 or https://groups.google.com/a/example.com/groups/bounced?pli=1
next to Bounce Status, email status -> Reset bounce status. (which appears only if it is bouncing.)
From https://playground.arduino.cc/Linux/Mint/ -
we should probably not use
sudo apt install arduino
because it is outdated or non-standard, and we should instead use the 64 bit binary from
https://www.arduino.cc/en/Main/Software
root (hd0,0)
makeactive
chainloader --force +1
boot
But grub 2 is different.
https://www.linux.com/learn/how-rescue-non-booting-grub-2-Linux
grub> set root=(hd0,1)
grub> linux /vmlinuz root=/dev/sda1
grub> initrd /initrd.img
grub> boot
set prefix=(hd1,1)/grub
set root=(hd1,1)
insmod normal
normal
https://www.aioboot.com/en/boot-windows-grub2/
from grub rescue prompt,
search -s root -f /NTDETECT.COM
drivemap -s hd0 $root
ntldr /ntldr
boot
https://www.gnu.org/software/grub/manual/grub/grub.html#DOS_002fWindows
parttool (hd0,1) hidden-
parttool (hd0,2) hidden+
set root=(hd0,1)
chainloader +1
parttool ${root} boot+
boot
https://www.aioboot.com/en/boot-windows-grub2/
http://forums.justlinux.com/showthread.php?153121-Fun-with-GPT-partitioning
Just a few lines of notes - trying making other partitions hidden to make XP boot - doesn't work, since partition is GPT, grub says hidden - unknown argument or whatever.
From
https://www.garron.me/en/bits/convert-store-copy-bootable-usb-iso-file-another-usb.html