Nick Johnson

11,390
Reputation
994 views

Registered User

Name Nick Johnson
Member for 1 year
Seen 2 hours ago
Website
Location Dublin, Ireland
Age 27
Developer Programs Engineer for App Engine at Google. Enthusiastic about software engineering and computer science, especially when it comes to interesting algorithms and approaches to solving difficult problems.
4h
answered How to verify sender of incoming email address in Google App Engine?
4h
comment Apache commons file upload and percentage progress in Google Apps
As I just said, your app is invoked as soon as the file finishes uploading from the client. There's no progress to check!
4h
revised How can I search for particular cell data in column of 100 records using Google spreadsheet
edited tags; edited tags
10h
awarded  Enlightened
1d
answered App Engine Authentication Error
2d
comment Optimized dot product in Python
If you're doing a dot product repeatedly, holding one of the vectors constant, a dynamic compilation approach may be worth investigating. All the terms where the fixed part is 0 can be removed entirely, and the multiplication can be eliminated if the fixed part is 1.
2d
comment Pros and cons of Go rejecting unused dependencies
Yes, headers get included more than once, because they're handled by the preprocessor. If you have 'large' bits of the code in your header files, UR DOIN IT WRONG.
Dec
1
comment Apache commons file upload and percentage progress in Google Apps
Your app is invoked as soon as the browser finishes sending the request. There is no progress to be informed about.
Dec
1
comment Pros and cons of Go rejecting unused dependencies
"If module A requires module B which requires module C, most compilers would compile C, compile B and C (again), and then compile A, B (again), and C (again) and then sort out linking issues" - no they wouldn't. They compile each source file once, then link them together.
Dec
1
accepted Can I find all of a certain base model in App Engine?
Dec
1
accepted Apache commons file upload and percentage progress in Google Apps
Dec
1
answered A static file upload (text or HTML) cause full deployment in Google App Engine?
Dec
1
answered Can I find all of a certain base model in App Engine?
Dec
1
answered Appengine performance problem. Same site 10x faster accessing from appspot than from my domain
Nov
29
accepted Wrapper google.appengine.ext.db.Model => django.db.models.Model
Nov
28
revised What’s the most challenging algorithm you ever implemented?
edited tags
Nov
28
revised xmlHttp request status is 0 for google maps http geocoder
Nothing to do with App Engine
Nov
27
answered How to implement tag system
Nov
27
comment In a BigTable datastore, with regards to concurrency, how do I “lock” an entity?
Well, you called your entities "Transactions", so when I said "insert a transaction", I meant "insert a 'transaction' entity". Reads inside transactions are transactional, though, yes - only with optimistic concurrency rather than locks.
Nov
27
comment python script optimization for app engine
Wait... you're making those HTTP requests to update the data. Removing those will cut a lot off your runtime.
Nov
27
comment python script optimization for app engine
In the code you pasted, you're doing repeated requests inside a for loop - so it's not just one fetch.
Nov
27
answered python script optimization for app engine
Nov
27
comment Is it possible to use AES with an IV in ECB mode?
I think that fits under the 'very specialized uses' umbrella. :)
Nov
27
revised Code Golf: Fractran
added 121 characters in body
Nov
27
accepted App Engine model filtering with Django
Nov
27
answered App Engine model filtering with Django
Nov
27
comment Are vector assignments copied by value or by reference in Google’s Go language?
No need to iterate - just call Vector.AppendVector.
Nov
26
answered Where/How should I do validation and transformations on entities in Google App Engine?
Nov
26
comment What is the performance cost of named keys or “pre-generated” keys in Google App Engine?
The current maximum value for the counter is stored in Bigtable. Each appserver caches counter values in blocks, so when you request an ID (or create an entity), the vast majority of the time, the appserver is able to allocate one from its locally cached set. When it runs out, it simply updates the bigtable, allocating itself another large block.
Nov
26
answered What is the performance cost of named keys or “pre-generated” keys in Google App Engine?
Nov
26
comment Code Golf: Fractran
A truly remarkable piece of work. Kudos!
Nov
26
revised Code Golf: Fractran
Added info on winners.
Nov
26
revised Code Golf: Fractran
added 1570 characters in body
Nov
26
revised Code Golf: Fractran
Updated reference implementation with better debugging capabilities
Nov
26
answered Concurrency: how does shared memory vs message passing handle large data structures?
Nov
26
answered In a BigTable datastore, with regards to concurrency, how do I “lock” an entity?
Nov
26
answered How to implement unique hits on articles
Nov
26
accepted iphone table view delete entry and update app engine db
Nov
26
accepted In Google App Engine, what happens when I change the Class related to a persisted object?
Nov
25
answered iphone table view delete entry and update app engine db
Nov
25
comment Does there exist a digital image steganography algorithm which would be resistant to image manipulation?
I presume you mean 'copyright violation detection', because your copyright is a legal right, and isn't "protected" or endangered by technical measures.
Nov
25
comment Code Golf: Fractran
Congratulations, have 500 points! :)
Nov
25
answered In Google App Engine, what happens when I change the Class related to a persisted object?
Nov
25
comment AES 256 in CTR mode
Sorry, you're right - I didn't read it closely enough. I was thinking of the situation where you use this to encrypt a mutable file, for example, by naively numbering each block after its position in the file.
Nov
25
answered Minimal binary diff for similar 1000 byte blocks with static noise?
Nov
25
comment AES 256 in CTR mode
The relationship between flipped bits in plaintext and ciphertext has privacy implications, too. For example, if the attacker can obtain a copy of a plaintext block and its ciphertext at one point in time, he can read it for as long as the same key is used, even if it's been modified.
Nov
24
comment Nearest Records
Also, you might want to go through your questions and accept answers. People will be more willing to put effort into answering your questions if you usually accept answers - but your accept rate at the moment is less than 20%!
Nov
24
answered Printing several binary data fields from Google DataStore?
Nov
24
comment Nearest Records
"For every record 'A' which records are nearer" - nearer to what than what?
Nov
24
accepted How-to create a REST service with Google App Engine and Python?