Skip to content

Instantly share code, notes, and snippets.

View philips's full-sized avatar
👨‍💻
at the keebs

Brandon Philips philips

👨‍💻
at the keebs
View GitHub Profile
Greetings, openSUSE fans! We have another development release ready for your testing pleasure. openSUSE 11.1 beta 5 is now available for immediate download and testing.
You may have noticed that we were scheduled to release RC 1 today. However, as Stephan Kulow mentioned on openSUSE-Factory list [1] on Tuesday, we have several blocker bugs and 11 P1 bugs still present. While we're ready to do another release today, we decided that it wasn't ready to be called a release candidate. This shouldn't push back the final release, but it will mean that we will only plan to have one public release candidate.
With just a little more than a month [2] before the public release on December 18th, there's still plenty to do. So, roll up your sleeves and start downloading!
Call for Testing
================
We all want openSUSE 11.1 to be the best release yet, and we need your help to get there. This release is ready for widespread testing, and we're encouraging everyone to download and test the beta releases.
#include <stdio.h>
int main(int argc, char **argv)
{
if (1 && 0)
printf("1 && 0 \n");
return 0;
}
#include <stdio.h>
int main(int argc, char **argv)
{
if (1 && 0)
printf("1 && 0 \n");
return 0;
}
#include <stdio.h>
int main(int argc, char **argv)
{
if (1 && 0)
printf("1 && 0 \n");
asdfsadfa
return 0;
(in /home/philips/projects/openconferenceware)
** Invoke test:plugins (first_time)
** Invoke environment (first_time)
** Execute environment
** SecretsReader - WARNING! Using insecure 'config/secrets.yml.sample' settings, see README.txt
** Execute test:plugins
** SecretsReader - WARNING! Using insecure 'config/secrets.yml.sample' settings, see README.txt
Loaded suite /usr/lib64/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader
Started
.......-- create_table(:rated_things, {:force=>true})
@philips
philips / libpci-example.c
Created September 8, 2010 15:47
pci-lookup.c
#include <stdio.h>
#include "pci/pci.h"
/* Compile: gcc pci-lookup.c -lpci -o pci-lookup */
int main(int argc, char **argv)
{
struct pci_access *pacc;
struct pci_dev dev;
char namebuf[1024], *name;
philips:~/ $ if [[ $TERM =~ "^foobar123" || $TERM == "rxvt" ]]; then echo $TERM; fi
xterm
philips:~/ $ if [[ $TERM =~ "^foobar123" ]] || [[ $TERM == "rxvt" ]]; then echo $TERM; fi
philips:~/ $ if [[ $TERM =~ "^xterm" ]] || [[ $TERM == "rxvt" ]]; then echo $TERM; fi
xterm
31 if (new_resource.key =~ /http/)
32 key_file = method(:remote_file)
33 else
34 key_file = method(:cookbook_file)
35 end
36
37 key_file.call "#{Chef::Config[:file_cache_path]}/#{key_name}" do
38 source new_resource.key
39 mode "0644"
40 action :nothing
#!/usr/bin/env python
import simplejson
from datadiff import diff
actual = simplejson.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
expected = simplejson.loads('["foo", {"bar":["zap", null, 2.0, 2]}]')
print diff(actual, expected)
--- a
Could not fetch URL http://www.orbited.org (from http://pypi.python.org/simple/orbited/): timed out
Will skip URL http://www.orbited.org when looking for download links for orbited (from -r requirements.txt (line 9))