This file contains 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
main(i){for(;i++<100;)printf(i%3?i%5?"%d\n":"Buzz\n":i%5?"Fizz\n":"FizzBuzz\n",i);} |
This file contains 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
# Makefile template | |
CC = gcc | |
CFLAGS = -W -Wall -ansi -pedantic -g | |
LDFLAGS = | |
SOURCES = $(wildcard *.c) | |
OBJECTS = $(SOURCES:.c=.o) | |
TARGET = executable | |
This file contains 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> | |
struct foo { | |
const char *string; | |
}; | |
int main(int argc, char **argv) | |
{ | |
struct foo sourceFoo; | |
struct foo destFoo; |
This file contains 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
all: | |
valac --pkg gtk+-3.0 --pkg json-glib-1.0 --pkg libsoup-2.4 main.vala --thread --pkg gio-2.0 --pkg cairo -o colourl | |
--- | |
// Colourl is a simple app to retrieve nice patterns from ColorLOVERS | |
// Copyright (C) 2012 Nick Glynn <[email protected]> | |
// | |
// This program is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or |
This file contains 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/env bash | |
# Simple script to create a pastable rsync command | |
foo="$(readlink -f "$1")" | |
# Use everybodys favourite Dynamic IP address checker to get our external IP address. | |
my_external_ip=$(wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/<.*$//') | |
#echo $my_external_ip |
This file contains 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
I ended up doing the following to get a publically shared folder on F18 after installing samba and samba-client | |
Used the graphical tool to allow samba through the firewalld (it's just called firewall in the applications) or alternatively kill it with prejudice: | |
# sudo systemctl disable firewalld | |
# sudo systemctl stop firewalld | |
Tell the system to enable and start smbd and nmbd | |
# sudo systemctl enable smb | |
# sudo systemctl enable nmb |
This file contains 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
To get Git to diff between your odt/odp/ods files you will need to do the following things: | |
Install a conversion tool | |
$ sudo yum install odt2txt | |
Create your git config info directory if it's not already there | |
$ mkdir -p ~/.config/git/info | |
Add in attributes (you can paste this straight in or edit the file accordingly) | |
$ cat > ~/.config/git/info/attributes <<DELIM |
This file contains 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 <exception> | |
#include <iostream> | |
class Money { | |
public: | |
Money() : m_value(0) { | |
std::cout << "Money() Value is " << m_value << std::endl; | |
} | |
This file contains 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/env python | |
"""Simple implementation of a quicksort""" | |
def quicksort(array): | |
if len(array) <= 1: | |
return array | |
pivot = array.pop(len(array) / 2) # Naive? | |
print "Chose pivot ", (pivot) | |
les = [] |
This file contains 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
# | |
# This file is your local configuration file and is where all local user settings | |
# are placed. The comments in this file give some guide to the options a new user | |
# to the system might want to change but pretty much any configuration option can | |
# be set in this file. More adventurous users can look at local.conf.extended | |
# which contains other examples of configuration which can be placed in this file | |
# but new users likely won't need any of them initially. | |
# | |
# Lines starting with the '#' character are commented out and in some cases the | |
# default values are provided as comments to show people example syntax. Enabling |