Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 SOFTWARE


  Noteworthy Aspects of PSD to Markup Conversion

Are you a great designer but can't code to turn your pixel-perfect design into a mark-up language? You will certainly begin scrolling the web to seek out an expert PSD to mark-up conversion service provider. But before venturing out for a credible service partner, it's very important to decide the right platform for your website. Especially, when you're thinking about converting your photoshop document into a CMS (content management system), you will get a plenty of choices. However, WordPress, Drupal and Joomla are the three most sought-after CMS used by webmasters for developing sites. Choos...

7,593 0       PSD TO WORDPRESS CONVERT PSD TO WORDPRESS CONVERT PSD TO WORDPRESS THEME PSD TO WORDPRESS SERVICE


  GitHub Copilot may generate code containing GPL code

GitHub Copilot is a new AI-powered code completion tool that can generate code snippets from natural language descriptions. It is powered by OpenAI Codex, a deep learning system that has been trained on billions of lines of public code. GitHub Copilot claims to be a “copilot, not a pilot”, meaning that it is not intended to write code for you, but rather to help you write code faster and better.However, some developers have raised concerns about the legal and ethical implications of using GitHub Copilot. One of the main issues is that GitHub Copilot may emit code that is derived fr...

7,391 0       GITHUB COPILOT GPL


  Fuzzy search algorithm in Sublime Text

Fuzzy string searching is the technique of finding strings that match a pattern approximately (rather than exactly. In many editors, we can easily find the Find menu item to do exact matching. While in Sublime Text and some other editors, we can use fuzzy string searching as well if we just want to have an approximate match.There is some algorithm implemented in Sublime Text to implement achieve this. First the search query is split into characters, join them with a regex wildcard, and then run the regex on your set of strings.stringsToSearch.forEach(function(string) { if (RegExp(string.spl...

6,853 2       SUBLIME TEXT FUZZY SEARCH


  Command line todo list manager-- Taskwarrior

What is Taskwarrior?Taskwarrior is a task management tool in a terminal environment, it has powerful functions. Here is a short description about it from its official website:It maintains a task list, allowing you to add/remove, and otherwise manipulate your tasks. Task has a rich set of subcommands that allow you to do sophisticated things. You'll find it has customizable reports, charts, GTD features, device synching, documentation, extensions, themes, holiday files and much more.InstallationUbuntusudo apt-get install taskMac with brewbrew install taskUsageAdd a new taskIt's easy to add a ne...

6,817 0       TASKWARRIOR TASK MANAGEMENT


  Don't Give Your Users Shit Work

The problem with shit work is that no one likes doing it, but an awful lot of people say they do.Shit workTake a look at Twitter Lists. The idea behind Twitter Lists was that users would carefully cultivate lists on Twitter of different accounts they’re following (or not following). These could be divided into lists like Family, Friends, Coworkers, People I Find Mildly Attractive, People To Murder, People I Find Mildly Attractive And Want To Murder, and so on.The problem is that, anecdotally, no one seems to use Lists. Twitter is filled with users who have carefully made a few lists, an...

6,677 0       DESIGN FACEBOOK TWITTER USER ORIENTED


  Glass Button in Photoshop

These days glass buttons seem to be very popular. You can find glass buttons in Windows Vista and all around the Web. Other popular buttons are metallic and plastic buttons. All these buttons have one thing in common: They are all shiny. Some people call these kinds of buttons Web 2.0 buttons. Here I cover the creation of two different glass buttons in Adobe Photoshop CS3. Both glass buttons utilize the same principles. Once you have completed this tutorial you should be able to apply the same principles and create many different kind of glass buttons. In this tutorial I give you the...

6,569 0       PHOTOSHOP GLASS BUTTON ROUNDED BUTTON DESIGN


  Some lovely software design quotes

 Every time when I read technical books, I like reading the quote of a famous person at the start of a chapter(if any), usually they are very interesting. Here is a collection of famous quotes.Life’s too short to build something nobody wants – Ash Maurya, Running Lean authorGive someone a program, you frustrate them for a day; teach them how to program, you frustrate them for a lifetime. – David LeinweberThere are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies and the other way is to make it so complic...

6,495 1       QUOTE SOFTWARE DESIGN


  Frequently used Git commands

Git configurationgit config --global user.name "robbin" git config --global user.email "fankai@gmail.com"git config --global color.ui truegit config --global alias.co checkoutgit config --global alias.ci commitgit config --global alias.st statusgit config --global alias.br branchgit config --global core.editor "mate -w" # Configure Editor to use textmategit config -l #List all configurationsUser's git configuration file : ~/.gitconfigFrequently used Git commandsCheck、add、push、delete、find,reset filegit help # Show help of commandgit show # Show th...

6,342 0       COMMAND GIT