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
("h", 1); | |
(---)(+++++++)()(+++)(-------------------------------------------------------------------------------)(+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++)(--------)(+++)(------)(--------)(-------------------------------------------------------------------); |
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
#include <stdio.h> | |
#include <assert.h> | |
#include <stdlib.h> | |
#include <errno.h> | |
#include <string.h> | |
#define MAX_DATA 512 | |
#define MAX_ROWS 100 | |
struct Address { |
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
/* | |
* ===================================================================================== | |
* | |
* Filename: cat2.c | |
* | |
* Description: My cat program with low level | |
* | |
* Version: 1.0 | |
* Created: 25-04-2013 17:01:46 | |
* Compiler: gcc |
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
/* | |
* ===================================================================================== | |
* | |
* Filename: tfc.c | |
* | |
* Description: Two File Comparer | |
* | |
* Version: 1.0 | |
* Created: 25-04-2013 15:00:15 | |
* Compiler: gcc |
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
/* | |
* ===================================================================================== | |
* | |
* Filename: cat.c | |
* | |
* Description: My cat program | |
* | |
* Version: 1.0 | |
* Created: 25-04-2013 13:58:45 | |
* Compiler: gcc |
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
# Default configuration file for tmux-powerline. | |
# Modeline { | |
# vi: foldmarker={,} foldmethod=marker foldlevel=0 tabstop=4 filetype=sh | |
# } | |
# General { | |
# Show which segment fails and its exit code. | |
export TMUX_POWERLINE_DEBUG_MODE_ENABLED="false" | |
# Use patched font symbols. | |
export TMUX_POWERLINE_PATCHED_FONT_IN_USE="true" |
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
++ dirname powerline.sh | |
+ export TMUX_POWERLINE_DIR_HOME=. | |
+ TMUX_POWERLINE_DIR_HOME=. | |
+ source ./config/helpers.sh | |
+ source ./config/paths.sh | |
++ export TMUX_POWERLINE_DIR_LIB=./lib | |
++ TMUX_POWERLINE_DIR_LIB=./lib | |
++ export TMUX_POWERLINE_DIR_SEGMENTS=./segments | |
++ TMUX_POWERLINE_DIR_SEGMENTS=./segments | |
++ export TMUX_POWERLINE_DIR_TEMPORARY=/tmp/tmux-powerline_halit |
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
def test1(a,b): | |
a^=b | |
b^=a | |
a^=b | |
return a,b | |
def test2(a,b): | |
temp=a | |
a=b | |
b=temp | |
return a,b |
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
#!/usr/bin/python | |
# coding=utf-8 | |
# Python version of Zach Holman's "spark" | |
# https://github.com/holman/spark | |
# by Stefan van der Walt <[email protected]> | |
""" | |
USAGE: |
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
/*! | |
* \file pi.c | |
* \brief Calculates the nth digit of pi | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <string.h> |