As it doesn’t appear to be online elsewhere, here are the checksums for redsn0w 0.8 for Windows: Filename CRC32 MD5 SHA1 redsn0w-win_0.8.zip 45849b42 6b9480bde795f20c62592645ecddec1c b7c3f3e1ec1f9b62fde9030265f2e3623e2576bd ⌙ redsn0w.exe 01324e34 aeb7ac29b1954c992f33335da1e59189 1499f5fad69a2212126096379582204298abf911
Posted in:
Gadgets
by
Ashley Ross
/
Tags: iphone
No Comments
Ahh, a new PC, a new install of iTunes, and all the apps I downloaded for my iPhone are nowhere to be seen. iTunes doesn’t offer me a way to redownload all the apps I installed, and what’s more, when I try to sync my iPhone with the new copy of iTunes, I get the [...]
Posted in:
Gadgets
by
Ashley Ross
/
Tags: iphone, itunes
1 Comment
Writing quines is a fun way to while away an afternoon, especially when trying to make them as short as possible. This is the result of my attempt at writing the shortest C# quine possible (155 characters, source file): class q{static void Main(){string s=”class q{{static void Main(){{string s={0}{1}{0};System.Console.Write(s,’{0}’,s);}}}}”;System.Console.Write(s,’”‘,s);}} PS: I came across a shorter C# [...]
Posted in:
Coding
by
Ashley Ross
/
Tags: C#, Quines
No Comments
A few months ago, I was playing around with a simple C# permutation generator to build a word list, with each character position having its own list of characters to iterate through: List<T>.Enumerator enumerator = characterList.GetEnumerator(); while (condition) { if (!enumerator.MoveNext()) { enumerator.Reset(); enumerator.MoveNext(); } Consume(enumerator.Current); } Oddly, I was getting a compilation error on [...]
Posted in:
Coding
by
Ashley Ross
/
Tags: .NET, C#
No Comments
Some time ago, the web project I was working on started refusing to open. Every time I tried to reload the ASP.NET project, Visual Studio (In this case, VS.NET 2003, but it may affect 2005 and 2008) gave a strange error message: The Web server reported the following error when attempting to create or open [...]
Posted in:
Coding
by
Ashley Ross
/
Tags: ASP.NET, Proxy, Visual Studio
No Comments