Category Archives: Others
If you are or want to be an open-source developer, you must try GitHub. It is a new hosted Git repository service that's being called a "social network" for programmers. It is basically a distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Setup SSH key Generate SSH Key If you have created your account at GitHub and now you want to work with it from your terminal. Before you start installing Github, you should set up ssh keys: If your key does not have the default filename, you'll have to pass the path to ssh-add. And you will get the following output: Add your SSH Key to GitHub Look up your SSH…
Why would I need to change the layout? Every time I upgrade the desktop for a new Ubuntu version it defaults it to a 2×2 layout. I don’t have a monitor on top of another so why would I use vertical workspaces? It maybe has advantages for some else workflow. Not mine. I’m used to horizontal multiple screens. How can I define a new workspace layout? You can change several parameters with the Compiz Config Settings Manager. I found that some friends didn’t have it installed. So, just install it first. Call it pressing your keyboard Super key and typing compiz. When it appears click on it. CompizConfig Settings Manager window shows up. Now just select General / General Options /…
In this tutorial, you will learn how you can run your application as an administrator automatically using Visual C#2012. Start by opening your C# Windows forms application. Right click on your project name in the solution explorer and add a new item... Select an application manifest file: Click add. A new tab should open up, most of the codes in it are not important to us.There is one line however that we need to change: Change asInvoker to requireAdministrator as follows: Save your application and rebuild it. You can only open your executable when using Administrator rights. If you have any more questions, please leave them in the comment section below. Have a nice day!
In computing, a regular expression is a specific pattern that provides concise and flexible means to "match" (specify and recognize) strings of text, such as particular characters, words, or patterns of characters. Common abbreviations for "regular expression" include regex and regexp. Basic Concepts A regular expression, often called a pattern, is an expression that specifies a set of strings. To specify such sets of strings, rules are often more concise than lists of a set's members. For example, the set containing the three strings "Handel", "Händel", and "Haendel" can be specified by the pattern H(ä|ae?)ndel (or alternatively, it is said that the pattern matches each of the three strings). In most formalisms, if there exists at least one regex that…