Merge pull request #139 from chubin/len80

Fix comment line length
pull/143/head
Igor Chubin 4 years ago committed by GitHub
commit a4b941e5b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,16 +1,17 @@
# carthage
# A dependency management tool for Cocoa applications (Mac OS X)
# Download the latest version of all dependencies mentioned in Cartfile, and build them:
# Download the latest version of all dependencies mentioned in Cartfile,
# and build them
carthage update
# Update dependencies, but only build for iOS:
# Update dependencies, but only build for iOS
carthage update --platform ios
# Update dependencies, but don't build any of them:
# Update dependencies, but don't build any of them
carthage update --no-build
# Download and rebuild the current version of dependencies (without updating them):
# Download & rebuild the current version of dependencies (without updating them)
carthage bootstrap
# Rebuild a specific dependency:

@ -1,7 +1,8 @@
# C++
#
# C++ is an object-oriented programming language which provides facilities for low-level memory manipulation.
# It is widely used by big tech companies, such as, Amazon, Facebook, Google, and SpaceX
# C++ is an object-oriented programming language which provides facilities for
# low-level memory manipulation. It is widely used by big tech companies,
# such as, Amazon, Facebook, Google, and SpaceX
#
# To Compile: g++ my_script.cpp
# To Execute: ./a.out

@ -1,5 +1,6 @@
# dscacheutil
# Gather information, statistics and initiate queries to the Directory Service cache.
# Gather information, statistics and initiate queries to
# the Directory Service cache.
# Flush the DNS cache
# in OS X 10.9 Mavericks

@ -1,12 +1,15 @@
# to recover a file in /home/SomeUserName/, assuming /home is on its own partition, run:
extundelete /dev/sda4 --restore-file SomeUserName/SomeDirectory
# extundelete
# An ext3 and ext4 file undeletion utility
# Recover a file in '/home/UserName', assuming '/home' is on its own partition
extundelete /dev/sda4 --restore-file UserName/SomeDirectory
# Recover an entire directory
extundelete /dev/sda4 --restore-directory SomeUserName/SomeDirectory
extundelete /dev/sda4 --restore-directory UserName/SomeDirectory
# For advanced users, to manually recover blocks or inodes with extundelete,
# debugfs can be used to find the inode to be recovered;
# Additional inodes to recover can be listed in an unspaced, comma-separated fashion.
# `debugfs` can be used to find the inode to be recovered; additional inodes
# to recover can be listed in an unspaced, comma-separated fashion.
extundelete --restore-inode inode
# recover all deleted files from an entire partition

@ -6,7 +6,7 @@
# to the World War II military slang FUBAR,
# which evolved through being bowdlerised to foobar
# In this Scheme code sample, foobar is used to illustrate the name of a function:
# In this Scheme sample, foobar is used to illustrate the name of a function:
(define foobar
(lambda (x)
(display x)))

@ -1,5 +1,7 @@
# A simple command-line script (wrapper for nvidia-smi) for querying and monitoring GPU status
# to install: pip install gpustat
# gpustat
# A simple command-line script for querying and monitoring GPU status.
# It is a wrapper for nvidia-smi.
# To install: `pip install gpustat`
# show GPU statistsics with the processes PIDs and names
gpustat -cp

@ -1,5 +1,7 @@
# interactive ruby. irb is a tool to execute interactively ruby expressions read from stdin
# irb
# Interactive ruby. A tool to execute interactively Ruby expressions
# read from stdin.
# start irb
# Start irb
irb

@ -1,5 +1,5 @@
# The Wolfram Language is the underlying language originally used in Mathematica,
# but now available for use in multiple contexts.
# The Wolfram Language is the underlying language originally used in
# Mathematica, but now available for use in multiple contexts.
# See also:
# Mathematica language cheat sheets at /mathematica/

@ -1,6 +1,8 @@
# ncmpcpp is an mpd client (compatible with mopidy) with a UI very similar to ncmpc,
# but it provides new useful features such as support for regular expressions for library searches,
# extended song format, items filtering, the ability to sort playlists, and a local filesystem browser.
# ncmpcpp
# An mpd client (compatible with mopidy) with a UI very similar to ncmpc,
# but it provides new useful features such as support for regular expressions
# for library searches, extended song format, items filtering, the ability to
# sort playlists, and a local filesystem browser.
# configure ncmpcpp
mkdir ~/.ncmpcpp

@ -1,6 +1,6 @@
# OCaml
# OCaml, originally named Objective Caml, is the main implementation of the programming language Caml.
# A member of the ML language family.
# OCaml, originally named Objective Caml, is the main implementation of
# the programming language Caml. A member of the ML language family.
# Compile into a bytecode executable:
ocamlc hello.ml -o hello

@ -1,6 +1,6 @@
# percol
#
# adds flavor of interactive filtering to the traditional pipe concept of UNIX shell
# adds flavor of interactive filtering to the traditional pipe concept
# of UNIX shell
# to install percol
sudo pip install percol

@ -1,6 +1,6 @@
# pmset
#
# Configure macOS power management settings, as one might do in System Preferences > Energy Saver.
# Configure macOS power management settings, as one might do in
# System Preferences > Energy Saver.
# Commands that modify settings must begin with sudo (Mac OS X)
# Display the current power management settings:

@ -1,9 +1,9 @@
# ranlib
#
# generates an index to the contents of an archive and stores it in the archive.
# The index lists each symbol defined by a member of an archive that is a relocatable object file.
# Generate an index to the contents of an archive and stores it in the archive.
# The index lists each symbol defined by a member of an archive that is
# a relocatable object file.
# This creates an index of the contents of fruits.a and stores the index in fruits.a
# Creates an index of the contents of fruits.a and store the index in fruits.a.
# This is useful for linking and in case the objects call each other.
ranlib fruits.a
# after

@ -1,10 +1,11 @@
# apk is the tool used to install, upgrade, or delete software on a running system
# of Alpine Linux package management
# apk is the tool used to install, upgrade, or delete software
# on a running system of Alpine Linux package management
# To enable local APK cache run
setup-apkcache
# If you've installed Alpine to your hard drive (as 'sys'),
# then create a cache dir and then an /etc/apk/cache symlink pointing to that dir:
# then create a cache dir and then an /etc/apk/cache symlink
# pointing to that dir:
mkdir -p /var/cache/apk
ln -s /var/cache/apk /etc/apk/cache

Loading…
Cancel
Save