|
Assuming that the .php and .aspx extensions have been hidden from the URLs, are there any clues in the HTML that might suggest the site is coded in either php or asp?
Cheers.
Started by Nai on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
For example code like this
Sys.Application.add_init(function() { $create.
For example, in StackOverflow HTML you can find code like this
http will define a developer platform.
Carefully and you may get some clues.
|
|
I was inspired by this (number 2) to make my hard-coded strings ugly.
How can I do this in VIM?
Thanks!
Started by ThomasGHenry on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
:)
In your .vimrc:
highlight String guifg=1 guibg=11
highlight clear String highlight link String Error
A bit over the top IMO, so you might want... .
You can easily make them uglier if you like.
Many of the color schemes that come with VIM already do this .
|
|
BLISS CODED SOUNDS TV - http://worldtv.com/bliss_coded_sounds_tv_
Started by sirlordlaird on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at network54):
|
Ask your Facebook Friends
|
Hi:
I'm starting development on an existing open source project that used a hand-coded GUI. Is it possible to somehow import this into Matisse, so that I can edit this project's GUI in Matisse? Or do I basically have to rebuild it from scratch in Matisse...
Started by red.october on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you designed your code somewhat efficiently, you should be able to make.
That I think it would be far faster to redesign everything using Matisse, than to get some half-decent code automatically generated.
|
|
Duplicate:
What is the best open source application written in PHP to reference for ‘good code’?
My favorites:
Textpattern CodeIgniter Opentape Chyrp My definition of well-coded would be that you can follow how the application works just by reading the...
Started by htxt on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Similar Questions
what-is-the-best-open-source-application-written-in-php-to-reference-for-good-code
best-open-source-mvc-php understanding of how it works comes from....
And this is a dupe question.
DokuWiki Zend Framework is very well coded.
|
|
The other day I was showing a colleague some code I was working on, and in the passing he commented on the fact that I have hard coded SQL statements. Now these SQL Statements are extremely static and the ones that do tend to change I made into views ...
Started by Dean on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I prefer to call Store code where....
I avoid harder coded SQL at all costs.
There are some code generators for handling databases, but you still if the model changes -- code has to change.
coded SQL Statements, myself.
|
|
I need to have a Win32 application load a hard coded AES-256 key, ideally using the WinCrypt.h methods. I've got my key in an unsigned char[32] but I can't find the correct format of a key blob to pass to CryptImportKey. Everything seems to give me invalid...
Started by Trevor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
BYTE privateKey[] = {1,2,3,4,5,6,7,8,9,10, 11,12,13,14,15,16,17,18....
I was using the wrong bType and using 256 for keySize instead of 32 .
See this MS Knowledge Base article, How to export and import plain text session keys by using CryptoAPI
Solved it .
|
|
I've been working with xml lately. And have noticed a bit of a phenomenon (maybe not that big of a deal to the rest of the world, but to me it was). Perhaps, it is me being a newb. But shouldn't most hard coded or magic numbers be broken out to a configuration...
Started by daub815 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know.
You want to use the XSD.EXE tool for this.
This way, you can just load up the XML document into the code, and it will do the generated code to use your new element names.
All of this for you.
|
|
Suppose I want to implement a reasonably efficient 'keyword recognition algorithm', that is first given a list of keyword, and must then answer if another given word was in the list.
In an imperative language, I would store the keywords in a tree (one...
Started by Xavier Nodet on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
):
(defun buildtree (wordlist) ...code to build tree recursively returns the tree...) (define lookup (tree word) ...code to look up word using tree, returns t or nil...) (defun lookupmany (tree querylist.
|
|
I'm aware that in WPF you want to keep the sizes of controls as flexible as possible so that they can flow and expand depending on their context (like in CSS).
But most of the code examples I come across are hard-coding sizes like the heights in this ...
Started by Edward Tanguay on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's always doing silly things like.
Write in C# as if it's Java) and then start to write code in the "correct" way, from the code you posted I'm guessing they used Blend to create the XAML.
What they know (e.g.
|