<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Mac Classic.tmTheme", | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_size": 12, | |
| "highlight_line": true, | |
| "ignored_packages": | |
| [ | |
| "Markdown", | |
| "Vintage" |
| # Folder view configuration files | |
| .DS_Store | |
| Desktop.ini | |
| # Thumbnail cache files | |
| ._* | |
| Thumbs.db | |
| # Files that might appear on external disks | |
| .Spotlight-V100 |
| /* | |
| * Note: This template uses some c++11 functions , so you have to compile it with c++11 flag. | |
| * Example:- $ g++ -std=c++11 c++Template.cpp | |
| * | |
| * Author : Akshay Pratap Singh | |
| * Handle: code_crack_01 | |
| * | |
| */ | |
| /******** All Required Header Files ********/ |
| /* | |
| * Note: This template uses some c++11 functions , so you have to compile it with c++11 flag. | |
| * Example:- $ g++ -std=c++11 c++Template-Codejam.cpp | |
| * | |
| * Author : Akshay Pratap Singh | |
| * Handle: code_crack_01 | |
| * | |
| */ | |
| /******** All Required Header Files ********/ |
| /* | |
| Author : Akshay Pratap Singh | |
| Email-Id : pratapakshay0@gmail.com | |
| */ | |
| /******** Union-Find Disjoint Set Implementation *****/ | |
| class UFDS { | |
| private: | |
| vector<int> p, rank, setSizes; | |
| int numSets; |
| /* | |
| * Note: This template uses some c++11 functions , so you have to compile it with c++11 flag. | |
| * Example:- $ g++ -std=c++11 c++Template-4-Topcoder.cpp | |
| * | |
| * Author : Akshay Pratap Singh | |
| * Handle: code_crack_01 | |
| * | |
| */ | |
| /******** All Required Header Files ********/ |
| #!/bin/bash | |
| # Author : Akshay Pratap Singh | |
| # Email-id : pratapakshay0@gmail.com | |
| # These variable are sets by user | |
| SERVER_IP="127.0.0.1" | |
| HOST_NAME="example.com" | |
| DIR_PATH=$(pwd) | |
| APACHE_DIR_PATH="/etc/apache2/sites-available" |
| #!/bin/bash | |
| # Author : Akshay Pratap Singh | |
| # Email-id : pratapakshay0@gmail.com | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi |
| #!/usr/bin/env bash | |
| # start YARN | |
| sudo service hadoop-yarn-resourcemanager start | |
| sudo service hadoop-yarn-nodemanager start | |
| sudo service hadoop-mapreduce-historyserver start | |
| # start Hadoop | |
| for x in `cd /etc/init.d ; ls hadoop-hdfs-*` ; do sudo service $x start ; done |