Skip to content

Instantly share code, notes, and snippets.

View bistaastha's full-sized avatar

Aastha Bist bistaastha

View GitHub Profile
@thecraftman
thecraftman / README.md
Last active July 11, 2020 00:41
Locize Translation View

This is an Overview of the proces involved in Localization of a Service using Locize

  • Login into your Locize Dashboard. When logged into your dashboard, a Demo project is being created for you to work with called Demo Project

Capture


  • You can also add a new project by pressing the + sign close to ADD A NEW PROJECT. After that fill in the Project information for your Project
@mandiwise
mandiwise / Count lines in Git repo
Last active April 1, 2024 16:16
A command to calculate lines of code in all tracked files in a Git repo
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
$ git ls-files | xargs wc -l