Site uses cookies to provide basic functionality.
Javascript rendering is set to off by default when visiting the site via .onion and .i2p domains. It can be enabled back again in user's settings section. Javascript rendering set to off means, that you can disable javascript in your browser now and the site will remain functional.
There is also IRC server now available via native IRC clients or non javascript web based one.
Fonts can be adjusted in user's settings section as well.
Check FAQ for more.

OK

The new MapTiler Desktop 0.6 is now available with automatic OGC WMTS services, offline map viewer, export maps to Garmin GPS, visual referencing with satellite map, and many other news.

Back in December of 2004 I started a new life from zero. I was 22 years old without any money, education or connections. I borrowed my mothers computer and started to learn HTML and internet marketing. That is now little more than 10 years ago and each year I publish an annual report. Earlier reports [...]

Back in December of 2004 I started a new life from zero. I was 22 years old without any money, education or connections. I borrowed my mothers computer and started to learn HTML and internet marketing. That is now little more than 10 years ago and each year I publish an annual report. Earlier reports [...]

Hamming's Code - www.jeremykun.com - 11 years ago - eng
Or how to detect and correct errors Last time we made a quick tour through the main theorems of Claude Shannon, which essentially solved the following two problems about communicating over a digital channel. What is the best encoding for information when you are guaranteed that your communication channel is error free? Are there any encoding schemes that can recover from random noise introduced during transmission? The answers to these ques..

Hamming's Code - www.jeremykun.com - 11 years ago - eng
Or how to detect and correct errors Last time we made a quick tour through the main theorems of Claude Shannon, which essentially solved the following two problems about communicating over a digital channel. What is the best encoding for information when you are guaranteed that your communication channel is error free? Are there any encoding schemes that can recover from random noise introduced during transmission? The answers to these ques..

Hamming's Code - www.jeremykun.com - 11 years ago - eng
Or how to detect and correct errors Last time we made a quick tour through the main theorems of Claude Shannon, which essentially solved the following two problems about communicating over a digital channel. What is the best encoding for information when you are guaranteed that your communication channel is error free? Are there any encoding schemes that can recover from random noise introduced during transmission? The answers to these ques..

Challenge of the day: what will the following code display? struct Point { public int X ; public int Y ; } static void Print ( Point p ) { Console . WriteLine ( p . X + " " + p . Y ); } static void Main () { var p = new Point (); for ( p . X = 0 ; p . X < 2 ; p . X ++) Print ( ..

Challenge of the day: what will the following code display? struct Point { public int X ; public int Y ; } static void Print ( Point p ) { Console . WriteLine ( p . X + " " + p . Y ); } static void Main () { var p = new Point (); for ( p . X = 0 ; p . X < 2 ; p . X ++) Print ( ..


RyuJIT will be available soon. It is a next generation JIT-compiler for .NET-applications. Microsoft likes to tell us about the benefits of SIMD using and JIT-compilation time reducing. But what about basic code optimization which is usually applying by a compiler? Today we talk about the loop unrolling (unwinding) optimization. In general, in this type of code optimization, the code for ( int i = 0 ; i < 1024 ; i +..

RyuJIT will be available soon. It is a next generation JIT-compiler for .NET-applications. Microsoft likes to tell us about the benefits of SIMD using and JIT-compilation time reducing. But what about basic code optimization which is usually applying by a compiler? Today we talk about the loop unrolling (unwinding) optimization. In general, in this type of code optimization, the code for ( int i = 0 ; i < 1024 ; i +..

The Mythical Man-Month - june.kim - 11 years ago - eng

Trust Me - www.craigpardey.com - 11 years ago - eng
The question of location comes up a lot in software consulting. Will the work be done on the client’s premises, or the consultant’s? There’s no right answer. Some clients don’t have the office space to accommodate an entire development team. Others already have a large IT department and want the consultancy’s team co-located with their existing staff. Working at the consultancy’s office may afford certain perks like a relaxed dress co..


The Mythical Man-Month - june.kim - 11 years ago - eng


Sometimes I want to know used JIT compiler version in my little C# experiments. It is clear that it is possible to determine the version in advance based on the environment. However, sometimes I want to know it in runtime to perform specific code for the current JIT compiler. More formally, I want to get the value from the following enum: public enum JitVersion { Mono , MsX86 , MsX64 , RyuJit } It i..

Sometimes I want to know used JIT compiler version in my little C# experiments. It is clear that it is possible to determine the version in advance based on the environment. However, sometimes I want to know it in runtime to perform specific code for the current JIT compiler. More formally, I want to get the value from the following enum: public enum JitVersion { Mono , MsX86 , MsX64 , RyuJit } It i..




Screenshot Saturday 213 - etodd.io - 11 years ago - eng
It's the end of February and this game is supposed to be content-complete. In a sense, it actually is. All the levels are done. Twenty in all. I thought this month would never end! Just so you know, there are sixty of those lights and I had to hook up each one individually. It fell just barely beneath the "worth it to automate" threshold . Don't look too closely at this next one, it's a bit spoilery.

Update 17/03/2015: I'm also using NotMuch now, for more info check out this post . Update 2/6/2015: I've added msmtp to the mix, check out my new post about it . This is part of a series of posts where I describe my workflow and OS setup.

Watching Movies and TV Shows from online streaming sources is a pain, as you depend on the availability of the your ISP network and current status of the stream provider. Furthermore, you don’t always have an internet connection available when you want to spend some time in front of the TV. So downloading it it’s a much better way to go in order to avoid this issues (giving that you have to anticipate a little bit to get downloads finished)....

Can you say, what will the following code display for step=1? public void Foo ( int step ) { for ( int i = 0 ; i < step ; i ++) { bar = i + 10 ; for ( int j = 0 ; j < 2 * step ; j += step ) Console . WriteLine ( j + 10 ); } } If you think about specific numbers, you are wrong. The right answer: it depend..

Can you say, what will the following code display for step=1? public void Foo ( int step ) { for ( int i = 0 ; i < step ; i ++) { bar = i + 10 ; for ( int j = 0 ; j < 2 * step ; j += step ) Console . WriteLine ( j + 10 ); } } If you think about specific numbers, you are wrong. The right answer: it depend..

If you don’t know the basics of AngularJS service, I recommend you read the other article I wrote on AngularJS Services Part 1: Provider.

Chances are, sooner or later, you're going to want to be able to let someone log into an application you're writing. Here in the Microsoft space where I still spend a majority of my time, authenticating against Azure Active Directory is always a consideration in any

Sometimes you can learn a lot during reading source .NET. Let’s open the source code of a Decimal constructor from .NET Reference Source ( mscorlib/system/decimal.cs,158 ): // Constructs a Decimal from an integer value. // public Decimal ( int value ) { // JIT today can't inline methods that contains "starg" opcode. // For more details, see DevDiv Bugs 81184: x86 JIT CQ: Removing the inline striction ..

Sometimes you can learn a lot during reading source .NET. Let’s open the source code of a Decimal constructor from .NET Reference Source ( mscorlib/system/decimal.cs,158 ): // Constructs a Decimal from an integer value. // public Decimal ( int value ) { // JIT today can't inline methods that contains "starg" opcode. // For more details, see DevDiv Bugs 81184: x86 JIT CQ: Removing the inline striction ..

Docker config to setup XO which is a web interface to visualize and administrate your XenServer (or XAPI enabled) hosts Github: sammcj/docker-xen-orchestra Running the app Updates are pushed to the Docker Hub’s automated build service: https://registry.hub.docker.com/u/sammcj/docker-xen-orchestra From Docker Hub docker pull sammcj/docker-xen-orchestra docker run -d -p 8000:80 sammcj/docker-xen-orchestra Building git ..

Docker config to setup XO which is a web interface to visualize and administrate your XenServer (or XAPI enabled) hosts Github: sammcj/docker-xen-orchestra Running the app Updates are pushed to the Docker Hub’s automated build service: https://registry.hub.docker.com/u/sammcj/docker-xen-orchestra From Docker Hub docker pull sammcj/docker-xen-orchestra docker run -d -p 8000:80 sammcj/docker-xen-orchestra Building git ..

HackerEarth’s web servers handle millions of requests every day. These request logs can be analyzed to mine some highly useful insights as well as metrics critical for the business, for example, no. of views per day, no. of views per sub product, most popular user navigation flow etc. Initial Thoughts HackerEarth uses Django as its primary web development framework and a host of other components which have been customized for performance ....


I started using AngularJS couple of months ago, when we got a new client that wanted us to help with building an app written in Angular.


Today must read is Nine Things to Expect from HTTP/2 , brewed for us by one of the HTTP/2 core designers, Mark Nottingham. Ten well spent minutes of your time.

Vagrant is a great tool for development, but Red Hat Enterprise Linux (RHEL) customers have typically been left out, because it has been impossible to get RHEL boxes! It would be extremely elegant if hackers could quickly test and prototype their code on the same OS as they’re running in production. Secondly, when hacking on projects that have a long initial setup phase (eg: a long rpm install) it would be excellent if hackers could ro..

Vagrant is a great tool for development, but Red Hat Enterprise Linux (RHEL) customers have typically been left out, because it has been impossible to get RHEL boxes! It would be extremely elegant if hackers could quickly test and prototype their code on the same OS as they’re running in production. Secondly, when hacking on projects that have a long initial setup phase (eg: a long rpm install) it would be excellent if hackers could ro..

may be used like free stock photography depending on its licensing. Flickr users have uploaded almost 100 million photos associated with a Creative Commons […]

Eve 0.5.2 has just been released with a bunch of interesting fixes and documentation updates. See the changelog for details.

Introduction One of the things I love about Go is the profiling and debug information you can generate. There is a special environmental variable named GODEBUG that will emit debugging information about the runtime as your program executes. You can request summary and detailed information for both the garbage collector and the scheduler. What’s great is you don’t need to build your program with any special switches for it to work.

Inspired by http://zitseng.com/archives/7489 Source (Github) WARNINGS Do not run unless you understand what this is doing The CA system is broken by design - This is not a fix for that This is merely a band-aid for those interested or concerned about these root CAs Usage chmod +x delete_gov_roots.sh ./delete_gov_roots.sh You’ll be prompted for your password as root access is required to delete system-wide root certs. ..

Inspired by http://zitseng.com/archives/7489 Source (Github) WARNINGS Do not run unless you understand what this is doing The CA system is broken by design - This is not a fix for that This is merely a band-aid for those interested or concerned about these root CAs Usage chmod +x delete_gov_roots.sh ./delete_gov_roots.sh You’ll be prompted for your password as root access is required to delete system-wide root certs. ..

91 visitors online