There are 28 static site generators that support AsciiDoc sourcing.
IEEE Standards Association: https://en.wikipedia.org/wiki/IEEE_Standards_Association
Software documentation: https://en.wikipedia.org/wiki/Software_documentation
IEEE 1058 - Software project management:
- https://en.wikipedia.org/wiki/Software_project_management
- https://cours.etsmtl.ca/log792/private/restreint/IEEE_1058_Project_Management_Plan.pdf
IEEE 828 - Software configuration management: https://en.wikipedia.org/wiki/Software_configuration_management
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B) | |
set -g prefix C-space | |
unbind-key C-b | |
bind-key C-space send-prefix | |
# Set new panes to open in current directory | |
bind c new-window -c "#{pane_current_path}" | |
bind '"' split-window -c "#{pane_current_path}" | |
bind % split-window -h -c "#{pane_current_path}" |
-
Boomerang: Send later, track responses, and use AI to write better emails.
-
GitHub Dark Theme: Dark mode for GitHub
-
Grammarly: Grammar correction app for chrome.
-
Great suspender: Automatically suspends unused tabs to free up system resources. Note: Issue #537
-
Honey: Automatically find and apply coupon codes when you shop online!
-
https://chrome.google.com/webstore/detail/marinara-pomodoro%C2%AE-assist/lojgmehidjdhhbmpjfa
1-In the github repo on Settings > Integration & Services, enable | |
2-Go to travisCI page and enable the repo | |
3-Configure the env variables on TravisCI so that it is not necessary to save credentials on github | |
-in the project Settings on TravisCI, add the entry for netlify site id: NETLIFY_SITE_ID - <site_id from .netlify file generated on netlify create> | |
-create a netlify access token for TravisCI | |
-On Netlify Dashboard, Go to Account Settings > OAuth Applications (https://app.netlify.com/account/applications) > Personal access tokens and press New Access Token | |
-Name it anything, but to make it easier the suggestion is name TravisCI. | |
-Generate it and COPY it - you won’t see it again! | |
-in the project Settings on TravisCI, add the entry for netlify personal access token generated for TravisCI: NETLIFY_ACCESS_TOKEN | |
4-Generate a .travis.yml file in the local repo |
To start using this site you need to have a GitHub account to sign in. Once signed in it will create your profiles information based on your GitHub account and return you to your brand new profile page. Click the profile editor button to enter in if you want to be a student, partner or teacher. You should also enter in what skills you have and what skills you are looking to learn on this page.
Once you have your profile how you like it, head on over to the search page to look for what you want to use on your next project and what kind of partner you are looking for. After hitting the search button we will find the very best matches for you to begin your pair programming journey!
#!/bin/sh | |
# List Ruby gems, that are not a dependency of any other gem (analog of `brew leaves`) | |
# https://gist.github.com/astyagun/290b783045afffb8190a0c75ab76d0fa | |
GEMS_FILE=`mktemp` | |
DEPENDENCIES_FILE=`mktemp` | |
gem list -l | sed 's/ (.*//' | sort > $GEMS_FILE | |
cat $GEMS_FILE | xargs -n1 gem dependency -l --pipe | sed 's/ --version.*//' | sort -u > $DEPENDENCIES_FILE | |
comm -23 $GEMS_FILE $DEPENDENCIES_FILE |
#Login as root | |
sudo su | |
#create jdk directory | |
mkdir /opt/jdk | |
#uncompress, change to your file name | |
tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk | |
#check if files are there |
language: node_js | |
node_js: | |
- "6" | |
script: | |
- npm run lint | |
- npm run build | |
- npm test |