What Formation I Need To Be Computer Scientist?

/* Posted August 31st, 2009 at 8:41pm [Comments: 7]    */
/* Filed under Programming    */

Hi, I want be a computer scientist (Like the Geek Squad) but I but know what formation i need to do. I live at montreal and a search a formation near of me.
Thanks for help.

Related Blogs

  • Related Blogs on I

Tags:

Do Computer Science Majors Have To Be Good At Programming?

/* Posted August 30th, 2009 at 9:40pm [Comments: 6]    */
/* Filed under Programming    */

I feel like i’m struggling in programming, but I’m good with computers in general.
Maybe this is a question about degrees in general – do you have to be an expert at every part of your degree?

Related Blogs

What Programming Language Should I Start Learning First?

/* Posted August 29th, 2009 at 9:45pm [Comments: 3]    */
/* Filed under Programming    */

I’m an Electrical Engineering student that want’s improve my basic familiarity with C++ and Java into average skills or even better. I’m not going into programming but I want to learn more about programming simple programs or make my own budgeting programs or something.

Related Blogs

Tags:

Microsoft DreamSpark: Free software for students

/* Posted March 30th, 2009 at 1:04pm [Comments: 3]    */
/* Filed under Microsoft, Programming    */

Dreamspark microsoft

Microsoft DreamSpark continues to offer select high school and university students free use of select Microsoft Software. Choose from SQL Server Developer 2008, Visual Studio Professional 2008, Expression Studio 2, Windows Server 2008, and more. To obtain this software, you must first log in with or create a Windows Live ID and then verify that you’re a student by choosing your school from a list and logging in with your student information. Once verified, you will be prompted to download an ISO image of the software of your choice.

Link: https://www.dreamspark.com/default.aspx?SID=934849-2-0-ARTICLE-0

Tags:

SharePoint Template Error: The template you have chosen is invalid or cannot be found.

/* Posted February 11th, 2009 at 1:17pm [Comments: none]    */
/* Filed under Microsoft, Programming, SharePoint    */
sharepoint logo

sharepoint logo

The template you have chosen is invalid or cannot be found. at Microsoft.SharePoint.Library.SPRequestInternalClass.ApplyWebTemplate(String bstrUrl, String& bstrWebTemplate, Int32& plWebTemplateId)
at Microsoft.SharePoint.Library.SPRequest.ApplyWebTemplate(String bstrUrl, String& bstrWebTemplate, Int32& plWebTemplateId)

How to solve?

Go to CodePlex and find then download STP Inspector. Unzip and then run that app with the STP file you are trying to debug on the server you are trying to deploy the template file to

“STPInspectorWin.exe” will tell you the error. If it says you are missing a feature, export the stp file, then rename it to a CAB file and modfiy the manifest.xml file inside the CAB. Use the STP Inspector to find the missing GUID and do a search then remove that line from the xml manifest.

Repack up all the files in the STP file and the new manifest.
You should google and then use CABARC.EXE. Its a free ms tool. What I did was extract everything in the cab into a folder called test, then go to the command prompt and type in
cabarc N

Example:
C:\stp\BIN>cabarc N test1.cab C:\stp\BIN\Test\*.*

If your Template file is too large, you can change the size limit by using this command:
stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 524288000

Tags:

Generate a .lib from a DLL with Visual Studio

/* Posted January 21st, 2009 at 7:43am [Comments: 14]    */
/* Filed under C#, C/C++, Microsoft, Programming    */

visual studio team system

Oftentimes programmers have to deal with external third party DLLs that their software rely on to function. This is both smart and useful because as long as the DLL interface remains the same, externally linked DLLs can be easily swapped in and out without having to recompile and rebuild code. However, linking code in Visual Studio with an external library requires that a .lib file exist – the DLL is actually not sufficient for this task. Fortunately, there is a way to generate a .lib from a DLL with Visual Studio. Creating the .lib file is a bit like reverse engineering the DLL’s symbols.

Read more »

Tags:

SharePoint Error and Resolution: SharePoint, Failed to connect to the configuration database.

/* Posted December 24th, 2008 at 11:25am [Comments: 2]    */
/* Filed under Microsoft, Programming, SharePoint    */

I was getting this error in SharePoint and tried searching on it with no answers.

12/23/2008 14:41:17 6 ERR Failed to connect to the configuration database.
An exception of type Microsoft.SharePoint.Upgrade.SPUpgradeException was thrown. Additional exception information: An error has occurred on the server.http://go.microsoft.com/fwlink?LinkID=96177
Microsoft.SharePoint.Upgrade.SPUpgradeException: An error has occurred on the server.http://go.microsoft.com/fwlink?LinkID=96177
at Microsoft.SharePoint.Administration.SPContentDatabase.ValidateDatabaseSchemaCompatibility()
at Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request)
at Microsoft.SharePoint.SPWeb.InitializeSPRequest()
at Microsoft.SharePoint.SPWeb.EnsureSPRequest()
at Microsoft.SharePoint.SPWeb.get_Request()
at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName)
at Microsoft.SharePoint.SPListCollection.EnsureListsData(String strListName)
at Microsoft.SharePoint.SPListCollection.Undirty()
at Microsoft.SharePoint.SPBaseCollection.System.Collections.IEnumerable.GetEnumerator()
at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.get_AdministrativeTasks()
at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.EnsureSystemTask(String title, String description, Int32 priority, String actionTitle, String actionUrl, String service, String systemId)
at Microsoft.SharePoint.Administration.SPWebApplication.Provision()
at Microsoft.SharePoint.Administration.SPWebServiceInstance.Provision()
at Microsoft.SharePoint.Administration.SPFarm.Join()
at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()

If you are in a Server Farm, make sure all SharePoint Servers are updated to the same level.
(Add/Remove Programs, Check the show updates on the top)

If not find SharePoint Updates.

Tags:

How to Get Exit Status Codes from Linux Command Prompt

/* Posted December 24th, 2008 at 8:15am [Comments: 1]    */
/* Filed under How-To, Linux, Programming    */

Whenever you execute a command in Linux, the command actually returns an exit status code which is useful when you need information on how the execution went like if it failed or succeeded. An exit status code of:

  • 0 means the command executed properly without any errors
  • 1 means the command executed but there may have been some minor issues (think of these as warnings)
  • 2 means the command executed and there was a major problem (think of these as errors)

Read more »

Tags:

SQLite with C++ Example: A Compact Serverless Database Alternative

/* Posted December 9th, 2008 at 10:26pm [Comments: 5]    */
/* Filed under C/C++, Programming    */

Have you got an application you’re working on that requires the power to store and query data of a SQL database but don’t need the hassle of setting up a client and server solution? Today, let us introduce you to SQLite which was made just for you. Besides being complete free, it’s a small and fast library that acts as a SQL database wrapper to a plain text file that sits locally in your application. What this means is you can create and enforce all the great structured tables in your database design as well as construct intricate data queries just like you do with any server-backed SQL database, except your database is just a local file – no server or client architecture needed. From the SQLite website:

SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is thus free for use for any purpose, commercial or private. SQLite is currently found in more applications than we can count, including several high-profile projects

Read more »

Tags:

Changing the name of a SQL Server

/* Posted November 25th, 2008 at 10:28am [Comments: 1]    */
/* Filed under Microsoft, Programming    */

Changing the name of a SQL Server
Renaming a system 'beneath' a SQL server causes a variety of problems; SQL goes into an identity crisis, MSDTC develops amnesia and chaos reigns. As a general rule, I don't like to rename servers upon which SQL is installed, but sometimes, there's no choice. Note: you must have an SA-level account or be in the System Administrators group on the SQL Server to perform this operation.

Here are the steps to restore order; again, use at your own risk, no warranty, etc., etc.:

Allow modifications to system catalogs:

In SQL Enterprise Manager, Right-click the SQL Server and select Properties.
Click the "Server Settings" tab
In the "Server Behavior" panel, check "Allow modifications to be made directly to the system catalogs".
Click OK.
Update fields in “sysservers“:

Navigate to Master, Tables and open table "sysservers".
Set the values of field “srvname“ and field “datasource“ to the new server name (you'll note they contain the old server name).
Note: Do not modify "srvnetname"; it modifies itself based on an update to the row.
Cycle the SQL Server and SQL Agent services.
Once the services have been cycled, confirm the change has occurred in Query Analyzer:
SELECT @@SERVERNAME

Restore Order (aka, revoke updates to system catalogs):

In SQL Enterprise Manager, Right-click the SQL Server and select Properties.
Click the "Server Settings" tab
In the "Server Behavior" panel, uncheck "Allow modifications to be made directly to the system catalogs".
Click OK.
Reboot the server and monitor the event log. You will likely see this error:

COM+, Error 4440:

The CRM log file was originally created on a computer with a different name. It has been updated with the name of the current computer. If this warning appears when the computer name has been changed then no further action is required. (original server name).

This error is benign IF the current name of the system is in the “Computer“ field AND the original name of the built system is in the above message. If these are not both correct (as described), retrace the SQL Server steps and ensure you updated both fiels in table “sysservers“.

Note: If you registered your SQL and AS servers in the Enterprise Manager and Analysis Manager as the original server name (as opposed to 'localhost'), you will need to re-register the new server name.

Tags:

Page 1 of 41234