This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let row_keys = ['CALID']; | |
| let pagination = new Pagination({ | |
| container: '#nav-list .pagination', | |
| resultContainer: '#nav-list .pagination-results', | |
| query: [{limit:10}], | |
| keys: row_keys, | |
| dataContainer: '#lineID_list', | |
| sideLinks: 2, | |
| buttonDisplay: 5, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Carbon | |
| LaRecipe | |
| Akaunting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "adaptive_dividers": true, | |
| "always_prompt_for_file_reload": false, | |
| "always_show_minimap_viewport": false, | |
| "animation_enabled": true, | |
| "atomic_save": false, | |
| "auto_close_tags": true, | |
| "auto_complete": true, | |
| "auto_complete_commit_on_tab": false, | |
| "auto_complete_cycle": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "shell_cmd" : "gcc.exe *.c -o ${file_base_name}", | |
| "working_dir" : "$file_path", | |
| "variants": | |
| [ | |
| { | |
| "name": "C_RUN", | |
| "shell_cmd": "gcc *.c -o ${file_base_name} && ${file_path}/${file_base_name}" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| ini_set('display_errors', 1); | |
| error_reporting(E_ALL); | |
| if (!extension_loaded('sockets')) { | |
| die('Sockets extention not loaded'); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # enable proxy proxy_http | |
| # copy to /etc/apache2/sites-available/ | |
| <VirtualHost *:80> | |
| ServerName nodeserver.local | |
| ServerAdmin webmaster@local | |
| DocumentRoot /home/nodejs/apps/myapp | |
| ErrorLog ${APACHE_LOG_DIR}/nodeserver-error.log | |
| CustomLog ${APACHE_LOG_DIR}/nodeserver-access.log combined | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // https:/api.github.com/user | |
| $url = 'https://api.github.com/users/username/gists'; | |
| $headers = ['Authorization: Basic ' . base64_encode('username:password')]; | |
| // Get cURL resource | |
| $ch = curl_init(); | |
| // Set some options - we are passing in a useragent too here | |
| curl_setopt_array($ch, array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo '>>ADDING GOOGLE NAMESERVER' | |
| echo 'nameserver 8.8.8.8' >> /etc/resolv.conf | |
| # apt -y update && apt -y upgrade | |
| apt update | |
| #https://github.com/chef/bento/issues/661#issuecomment-248136601 | |
| apt DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade | |
| apt install git screen memcached tcpdump tshark build-essentials unzip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM centos/systemd | |
| MAINTAINER "apampolino" <pampolino.aaron@gmail.com> | |
| ENV container docker | |
| # google nameserver | |
| RUN echo 'nameserver 8.8.8.8' >> /etc/resolv.conf | |
| # updates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo '>>ADDING GOOGLE NAMESERVER' | |
| echo 'nameserver 8.8.8.8' >> /etc/resolv.conf | |
| yum -y update | |
| yum -y install wget git screen | |
| echo '>>EPEL' | |
| yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm |