Asaf Shelly
Microsoft MVP & Intel Black-Belt
Browse by Tags
All Tags
»
DEV
(
RSS
)
C#
Embedded
HPC
http://AsyncOp.com
ITPRO
multicore
multiprocessing
OFFTOPIC
Parallel Computing
TECH
TechEd
TechEd Europe 2009
VIDEO
WDK
Windows Embedded Compact 7 Book
Saturday, October 15, 2011 11:05 PM
If you are interested in Windows Embedded Compact 7 you should take a look at Avi Kcholi's new book " Pro Windows Embedded Compact 7: Producing Device Drivers ". Avi is the number one expert in Israel and is one of the leading figures world wide. Soon to be published, you can already find it on Amazon: http://www.amazon.com/Pro-Windows-Embedded...
Read More...
Interview @ Intel IDF
Saturday, October 15, 2011 10:59 PM
Hi All, This is the interview I gave Intel last month at the Intel Developers Forum in San Francisco. http://software.intel.com/en-us/videos/black-belt-developer-asaf-shelly-at-idf-2011/ It has a few hints to future innovations. Asaf
Read More...
An Interesting Review Of Windows 8
Tuesday, October 04, 2011 7:16 AM
I think that people should really listen to this.. especially Microsoft people http://altabel.wordpress.com/2011/09/28/windows-8-five-reasons-people-might-want-to-stay-away/
Read More...
השב"כ מחפש מומחה ארכיטקטורת פיתוח
Friday, September 23, 2011 5:27 AM
השב"כ מחפש מומחה ארכיטקטורת פיתוח וזה נשמע לי תפקיד מפתה ויוקרתי מאד. אני מפרסם את זה בין השאר כי לא נפתחות הרבה משרות לארכיטקטים. קישור למודעה: https://www.shabak.gov.il/jobs/alljobs/computres/Pages/129.aspx אפשר לשלוח קו"ח גם אל: it. shabak@gmail.com בהצלחה, אסף
Read More...
C# Library Version
Tuesday, May 24, 2011 8:19 PM
Colleting this from different sources. Looking for a library version similar to __DATE__ __TIME__ you need to use: System . Reflection . Assembly . GetExecutingAssembly (). GetName (). Version . ToString () For this to change every build you need to go to project properties, 'Application' tab, open 'Assembly Information', and set the last value...
Read More...
Softtalkblog Interviewed Me
Tuesday, April 26, 2011 2:09 PM
Here is the link: http://softtalkblog.com/2011/04/26/programmer-profile-asaf-shelly/ If you are reading this in the UK or Germany and interested in Parallel Computing then you are welcome to join the event for networking and technical discussions with Intel's representatives and myself
Read More...
C# Convert Generic Type
Sunday, April 03, 2011 2:09 PM
I am posting this because I didn't see a simple solution on the first few hits when searching the net. If you have a generic class of type T and you want to using it with basic types such as int, long, etc. You can use the following method to do the casting: class myClass<T> { private int myVal; public T Get() { return ((T)(Convert.ChangeType(myVal...
Read More...
WES 2009 HORM Problem
Friday, February 25, 2011 1:22 AM
Windows Embedded Standard 2009, activating HORM (Hibernate Once Resume Many), xpepm.exe reported power manager cofiguration issue, fba.exe shut down the computer instead of hiberating it. Start by verifying that you can hibernate using Windows shut-down menu. Either you cannot hibernate because a driver does not support it (or is preventing it) or you need to...
Read More...
Windows Virtual PC Disk Compacting
Saturday, February 12, 2011 11:21 PM
Now that I have a new laptop (Windows 7) I am using my old laptop (Windows XP) as a Windows Virtual PC machine. It works faster than the old real machine but I had a problem with the disk space. The virtual machine is reporting that it is using 85GB of disk but the file size was actually 85GB on the host OS. When you turn off the virtual machine you can modify...
Read More...
WDK setup on Windows Embedded "unknown trust provider"
Thursday, February 10, 2011 3:01 PM
Hi All, I tried istalling my WDF based driver on Windows Embedded Standard 2009 and it failed. Dependency walker showed that my driver is missing the reference wdfldr.sys which is installed automatically with WDF's co-installer. Device Manager shows an unknown device under my device class and setup API identifies that a device with the class is installed...
Read More...
Graphedit Error 0x8007048f: Device is not connected
Wednesday, February 09, 2011 12:14 PM
I got this error on Graph Edit: "This graph can't play. The device is not connected. (Return code: 0x8007048f)" when I tried to open a USB capture device (VC600). The solution was to add the filter WDM Crossbar under the category WDM Streaming Crossbar, then render it's video output so that it is the input to the capture card. Hope this helps...
Read More...
My Conclusions on Parallel Computing
Sunday, April 11, 2010 10:33 AM
After practicing parallel computing for a long while I have decided that it is time to summerise things as I see them so far. See the post in the link below: My Conclusions on Parallel Computing Asaf
Read More...
Exception by target of an invocation
Thursday, April 01, 2010 6:38 PM
Parallel Programming means that we use invocations more often than we did before. Visual Studio 2008 debugger will bring you to the correct line if you get an exception, but if you invoke a method within your own code the debugger will show you the location in your own thread, which means the line that invoked the code that eventually threw an exception. The...
Read More...
C# Activate Previous Application Instance
Tuesday, March 09, 2010 5:50 PM
Continuing the following post and as an answer to Jasper: http://blogs.microsoft.co.il/blogs/asafshelly/archive/2010/03/02/c-close-previous-application-instance.aspx The following code will make sure that only one instance is running by exiting if an instance is already running, and activating that instance. [ DllImport ( "user32.dll" )] static extern...
Read More...
Verify Installation of a custom device using C#
Tuesday, March 09, 2010 5:24 PM
Hi all, Using my WinUSB C# component, I also needed to automatically install the driver if it is not already installed. The INF file defines a new device class by its GUID. This means that the class does not exist on the machine if the device is not installed. Here is the code: [ DllImport ( "setupapi.dll" , SetLastError = true , CharSet = CharSet ...
Read More...
More Posts
Next page »
Go
This Blog
Home
Contact
Links
Tags
C#
DEV
Embedded
HPC
http://AsyncOp.com
ITPRO
multicore
multiprocessing
MVP Summit 2008
OFFTOPIC
Parallel Computing
TECH
TechEd
TechEd Europe 2009
TechEdIsrael2008
VIDEO
WDK
Navigation
Home
All Posts
RSS
Popular Tags
Archives
January 2012 (1)
December 2011 (1)
October 2011 (3)
September 2011 (1)
May 2011 (1)
April 2011 (2)
February 2011 (5)
July 2010 (1)
April 2010 (2)
March 2010 (3)
February 2010 (2)
January 2010 (1)
December 2009 (8)
November 2009 (1)
October 2009 (1)
September 2009 (1)
July 2009 (1)
April 2009 (3)
March 2009 (2)
October 2008 (1)
September 2008 (6)
August 2008 (2)
July 2008 (1)
June 2008 (2)
April 2008 (6)
March 2008 (3)
February 2008 (1)
Syndication
RSS
Atom
Comments RSS