|
Hacking Chinese: A Practical Guide to Learning Mandarin (Hacking Chinese) . HN's comments on learning laguages . How it Works - Language Learning with The Michel Thomas Method . How to learn (But Not Master) Any Language in 1 Hour (Plus: A Favor) . Manabi Reader – Learn Japanese by Reading on iOS . Welcome - Woody Piano Shack .
|
|
I have a guest post up at the official Italian MSDN Team Blog . It’s about the new Microsoft I met last Wednesday at the Azure Open Day in Milan.
|
|
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.
|
|
I have a guest post up at the official Italian MSDN Team Blog . It’s about the new Microsoft I met last Wednesday at the Azure Open Day in Milan.
|
|
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 [...]
|
|
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 [...]
|
|
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..
|
|
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..
|
|
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 ( ..
|
|
Learning Angular: Set your language culture before any UI is displayed
-
juri.dev
-
11 years ago
-
eng
|
|
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 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..
|
|
It has been statistically proven that nobody likes a slow website. We have all moved on from the days when you'd patiently wait for a page to load over that…
|
|
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..
|
|
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.
|
|
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.
|
|
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 ..
|
|
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 ..
|
|
Logging millions of requests everyday and what it takes
-
engineering.hackerearth.com
-
11 years ago
-
eng
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 ....
|
|
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 ..
|