www.schoolfreeware.com Microsoft Visual C++ (VC++) can be downloaded for free at http That website also holds the downloads for the Express editions of Visual Basic, C#, Visual Web Developer, and Visual Studio for Windows Phone CTP, Visual Studio Express 2008 is still available and so is the Visual Studio 2010 Professional Edition Trial. After 30 days Visual Basic 2010 will have to be registered. No financial information is needed to receive the free product key code that will unlock VC++. Registration can be done by clicking the registration button or by going to Microsoft’s website. System Requirements can be found at: www.microsoft.com
Posts Tagged ‘ podcast ’
Windows 8 Preview On a Mac!
Windows 8 in 8 Seconds! video: www.youtube.com I downloaded the Windows 8 Developer Preview to a disc and installed on my iMac using Boot Camp. Parallels in Mac had problems, as well as other virtual programs, as reported all over Twitter. I highly recommend Boot Camp if you have a Mac! Sorry, I cannot provide ANY tech support for you installing this. Use Google search to help you find out how to install it to a DVD, use Boot Camp, etc, or ask in the comments, and maybe someone can assist! Download Windows 8 Developer Preview: wt1.me Video of Windows 8 on a Tablet as mentioned in the video: www.youtube.com Gamefly: One FREE Month of video game rentals! wt1.me Netflix: One FREE Month of Movie Streaming/DVDs! wt1.me Twitter: twitter.com Facebook: facebook.com Google+: lamarrwilson.com Tech Podcast lifepluggedin.com Outro by Charlie Puth www.youtube.com Thanks for the sssSTOP IT!: youtube.com
FIX WiFi Issues in Mac OS X Lion
This video will ONLY WORK with Late-2009 iMac models with the Atheros Wi-Fi chip version 3.2. Each time you upgrade to a newer version of Mac OS X, you will have to perform the tutorial displayed in this video again. This tutorial will not work with any other models. Comments asking about any other models will not be answered. *NOTE* Performing this downgrade WILL remove AirDrop capabilities from your Mac. *CLICK HERE TO READ MORE* Rys Sommefeldt: bit.ly Full TechInform Post: techinform.us Useful Links: Sponsor: www.youtube.com www.twitter.com Vlog Channel: www.youtube.com Facebook Page: fb.me Twitter: bit.ly Tumblr: www.joethetechie.tumblr.com The Site www.TechInform.us TechIn5 – Official TechInform.us Podcast bit.ly Site Twitter: www.twitter.com
How to program a quantum computer #1: hello multiverse demonstration
Today I will be demonstrating the Hello Multiverse programme for a quantum computer using the D-wave toolkit. You will need the following things: D-wave toolkit: www.dwavesys.com (these are the instructions in order to get the D-wave toolkit) Python 2.6: www.python.org NOTE: You will need some experience of the python programming language and some knowledge of quantum theory. D-wave tutorials are here: www.dwavesys.com Tutorial: Step 1 : Download python 2.6 and the d-wave toolkit (once you a login to the d-wave portal) Step 2: install python Step 3: install d-wave toolkit (current version is 1.4.0-alpha1) Step 4: Open up python 2.6 and enter the following script: # Import D-Wave’s Python API from dwave_sapi import * conn = LocalConnection() # Using the emulator solver = conn.get_solver(‘c4-sw_sample’) # mimics a Rainier system with 128 qubits #define the problem h = [0]*128 # Emulating a Rainier 128 qubit processor J = dict() h[48] = -1 # The qubits with their current energy levels h[53] = -1 h[52] = -1 h[49] = -1 J[(48,53)] = -0.5 # The energy levels between the qubits J[(48,52)] = 0.2 J[(49,52)] = -0.3 J[(49,53)] = 0.8 # This means the computer will run this 100 times and ask for the solutions answer = solver.solve_ising(h,J,num_reads = 100)['solutions'][0] # How the output should be structured print ’48 = ‘, answer[48] # Answers will be the final state of the qubit print ’49 = ‘, answer[49] print ’52 = ‘, answer[52] print ’53 = ‘, answer[53] input(“nnPress the enter …