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
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. |
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> | |
int main(int argc, char **argv) | |
{ | |
if (1 && 0) | |
printf("1 && 0 \n"); | |
return 0; | |
} |
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> | |
int main(int argc, char **argv) | |
{ | |
if (1 && 0) | |
printf("1 && 0 \n"); | |
return 0; | |
} |
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> | |
int main(int argc, char **argv) | |
{ | |
if (1 && 0) | |
printf("1 && 0 \n"); | |
asdfsadfa | |
return 0; |
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
(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}) |
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> | |
#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; |
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
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 |
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
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 |
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 | |
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 |
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
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)) |
OlderNewer