Tagged Questions

Source code is text written in a computer programming language. It can be automatically translated to binary machine code that the computer can directly read and execute.

learn more… | top users | synonyms

-3
votes
1answer
35 views

Decompile the whole jar file and construct the code base automatically [closed]

Hi to understand my requirement I'm going to break it as follows, I have some legacy client-program jar which are using some older version dependencies, for log4j etc.. I want to decompile the code ...
2
votes
0answers
20 views

utf8 math characters from source code file with minted in XeLaTeX

I want XeLaTeX/minted to display all my mathematical characters from my .java source file. More detailed: I file my programming homework in PDF documents in my university. I have been using LaTeX and ...
0
votes
2answers
27 views

Apply patches to python libraries

I want to apply patches that the author of a Python library uploaded on his website. Is there any way to do this easily without resorting to doing it manually on each impacted line? Something like: ...
-1
votes
2answers
25 views

Simple source code generation tutorial

I have downloaded some source codes (for some applications), configured and make it to get the executable. These source codes contains Folders like contrib, doc, examples, man, src,tests and files ...
0
votes
0answers
26 views

IDE compatable Compiler/Interpreter/Runtime error message format “standard” and format distribution

Various implementations of computer languages produce various formats for error messages.. eg in gawk, gcc, gFortran, Gnat-Ada, Python & Bash: awk: gawk_interpreter_msg.awk:2: BEGIN{ x)( } ...
0
votes
1answer
28 views

Advantages of installing from source instead of installer for Python 2.7

I'm a complete beginner learning Python. I noticed the Windows installer for Python states "does not include source" and below it there's an option to install the source via tarball. ...
1
vote
1answer
27 views

How to get current view HTML source and pass it JSF MangedBean as String

I want to get current view HTML source and pass it to JSF managed bean as a parameter. Is there anyway in JSF I can do this?
0
votes
1answer
60 views

Good source code with multiple classes and good design, JAVA [closed]

So, I asked a few questions here and realize that I lack some fundamentals in JAVA programming. Especially considering a code design. Is there a page where I can download a full application and import ...
-5
votes
3answers
110 views

How to lock source code of terminal ran perl, obj c, c++, python, and ruby etc scripts?

I am looking to sell scripts I made in perl, obj c, c++, python, ruby, bash, php, etc etc etc They are all ran in the terminal. (Linux) How can I lock the source code, so my scripts can be ...
0
votes
2answers
36 views

WordPress Sidebar Slider

I found what I think is called a sidebar slider on a website: http://www.bobbyberkhome.com/home (it's the orange 5% off thing on the left) I would like to either duplicate this or use something ...
-1
votes
0answers
26 views

Need desktop chat client for free or paid [closed]

I wont to make desktop chat application with client and server side. But i dont wont make it from scratch, i prefer buy some source code and costumize it for my self. Can anybody suggest some variants ...
0
votes
1answer
20 views

Utility for selectively coping source project

I need some tool. I have project (Java/Android). At folder src I have all my java files. I made some changes in the project (some files changed). Now I want copy from src all updated files (for ...
0
votes
0answers
19 views

Free C++ coding rules add-on for Visual Studio [closed]

I'd like to ask you if you know some free add-on for C++ coding rules (for example adding automatically "C" before class, etc.) for Visual Studio. It should also tell whether the code is valid for the ...
1
vote
1answer
26 views

UDK Scripting Help - simulated event BecomeViewTarget

I'm following a tutorial on making a top down/isometric camera and have run into a bit of a snag. See, the following comes up when I compile. BGCGamePawn.uc(15) : Error, Type mismatch in '=' Now, ...
-4
votes
1answer
44 views

Source code parser(prefered Python) [closed]

I am looking a tool which take source code as a input and tokenize them as a operator, keyword, class, function, member variable, comments and parameter. Tool should take parsing logic from ...
-2
votes
0answers
23 views

Selling product with source - when to hand over the code. [closed]

My company has created a hosted solution for one of the customers. Customer now wants to purchase it and work with InfoSys on further development. They want to purchase the source code. In the first ...
0
votes
0answers
21 views

Custom workflows in Usergrid

Has anyone successfully created custom workflows in Usergrid(https://github.com/usergrid/stack) in addition to the ones they provide like the follower-following one, if yes, can they share how they ...
0
votes
0answers
52 views

What programming languages use UTF8 characters? [closed]

Just read yet another article explaining the trouble C++ has with ">>" and templates. C++11 provides a rule of interpretation, but I wonder: why not just use some other character? Sadly, all the ...
1
vote
1answer
38 views

passing uthash to function

i have the problem that as soon as i am returning from a function my hash is empty - i assume it is just a small error of mine, but i can't find it by myself :/ thx for your help!! #include ...
0
votes
1answer
20 views

Create Mac OSX Installer from source code

I follow the following documentation to install some software called xtherion and other binaries. This works perfectly fine for me but many users are not able to do all this. I would like to create an ...
0
votes
0answers
36 views

Qix Source code

I need to make a project - small game with a Qix-style gameplay. Basically it's a cursor that runs on the screen and reveals the picture behind (or fills the screen) until you fill about 80% of the ...
-2
votes
1answer
44 views

What is the size of the Android open source code? [closed]

I am downloading the souce code for Android from Here. As per the instructions on : Downloading Source. I am downloading the source for a specific branch, i.e., 4.0.4_r1 (ICS). The ...
0
votes
1answer
20 views

CDT AST traversal

I am writing a C code analyzer from Java in Eclipse. I need to traverse AST generated in Eclipse CDT to find the methods, variables, user defined types, etc in a C souce code. Can someone please give ...
0
votes
1answer
48 views

how to retrieve mobile website html source code, android

I want to retrieve html source code from a mobile version website, String url = "m.kitco.com"; HttpClient client = new DefaultHttpClient(); HttpGet request = new HttpGet(url); HttpResponse response = ...
2
votes
1answer
115 views

Full HTML code from iframes using webbrowser

I need get the html code this site (with C#): http://urbs-web.curitiba.pr.gov.br/centro/defmapalinhas.asp?l=n (only works with IE8) Using the WebClient class, or HttpWebResquest, or any other ...
-6
votes
0answers
30 views

How can I know the original source code of the below link? [closed]

https://groups.google.com/forum/?fromgroups#!forumsearch/@gmail.com the source code that i get on clicking VIEW SOURCE code is not that i want. I want the source code that will contain the email ...
0
votes
3answers
68 views

Downloading Eclipse Source Code [closed]

Before this question is blocked for duplication, I would like to mention is that this is an extension of a previous question here: Downloading Eclipse's Source Code Here's what I need: I am ...
1
vote
1answer
57 views

Building either a Swing and Android app from the same code base using Ant

Based on suggestions from my previous question on programmers.SE, I have split my current project into three subdirectories (swing, common, and android) and created separate Ant scripts in each one. ...
-1
votes
1answer
44 views

How to get source code from dll

I am new to .net development and I beg you pardon if this question is foolish. There .net inbuilt classes like object, string etc. If I need to go through the source code, How can I get that? Is this ...
0
votes
0answers
23 views

Eclipse plug in or tool for dynamic call graph generation for java

I need to generate call graph for my android code at runtime. Is there any plug-in in eclipse to generate call graph at run time? Is there any other tool to get call graphs dynamically for java ...
3
votes
3answers
114 views

How much source information is stored in c++ executables

Some days ago I accidentally opened a C++ executable of a commercial application in Notepad++ and found out that there's quite a lot information about the original source code stored in the ...
0
votes
2answers
60 views

Java native method source code

Could you please kindly tell me where I can download the java native method source code? for example,I wanna know the source code of System.arraycopy(),but I can't find. Thanks in advance
1
vote
2answers
71 views

How to comment out python code using sed command

I want to comment out following line of code using the sed command. Actual Code: response = HttpResponse() response['Content-Disposition'] = 'attachment; filename=%s.zip' % ...
-1
votes
0answers
8 views

Wp method source code

I am studying FSM. Now I need source code of Wp mehtod. Any open source software or valuable link is welcome.
0
votes
1answer
36 views

how to compile Android 2.3.4 source code and get .img file

I'm using Android ARM board from TECHNEXION, I have Android 2.3.4 sourcecode. How can I compile and get .img file?
3
votes
2answers
106 views

How to get current line number - for example use at messagebox.show

Alright what i am asking is pretty simple thing. Ok here the example thing i want to do MessageBox.Show("Error line number "+CurrentLineNumber); Current line number will be the line number in the ...
3
votes
1answer
84 views

Adding Hadoop's source jars to local maven repo [closed]

Apache Hadoop didn't post the source jars to the public maven repository yet. HADOOP-8363 Specifically, I need a way to get the source jars of the latest stable release (1.0.3). Is there another ...
0
votes
2answers
211 views

xCode 4.5 Create static library: can't copy source files into library destination folder

I just want to create a static library for iOS. I followed the instructions written in the documentation: Creating the Library I run the latest version of xCode (4.5, 4G182). I'm experiencing an ...
-3
votes
0answers
84 views

source code for fingerprint alignment [closed]

I'm doing research on fingerprint identification. I need to align two fingerprints before doing the rest of matching processes. So now I'm in an urgent need of fingerprint alignment Matlab code. Your ...
0
votes
0answers
19 views

XulRunner - How to open in editor

Ive downloaded xulrunner 14.0 src, but aabout 4 days I am feeleng stupid... I just can not find out how to open it? I need to make some modifications in its code for my project, and it would be ...
0
votes
2answers
53 views

PHP change link address in html source code

In source code I have address's like this /images/image.jpg js/file.js how to add to this address's server address that will be http://server.com/folder/file.jpg with str_replace() it will be hard, ...
4
votes
6answers
69 views

Delete divs from html source code [closed]

I have html code in which are many divs, and want delete some divs from this code, it's so hard to do with substr() or similar php string function, maybe are better way to do this ?
1
vote
1answer
81 views

Parsing C# source code files using Regular Expressions to Quick-Rename Methods

I need to port over 900-1000 Java source code files to C#. To speed things up, I am using C# to do the majority of the durty-work ~not necessarily error-free. I created one process to go over all ...
1
vote
2answers
78 views

SWT source code editor widget

Is there any source code editor widget for SWT? I looked for a long time and nothing found... I saw that question: SWT Syntax highlighting widget, but I don't want to use raw StyledText widget - I ...
-6
votes
0answers
55 views

How to know what a website is about from its source [closed]

So I'm building a website that delivers to its users based on their personal preferences, links to websites that might interest them that they may not have known of. To be able to collect these links, ...
0
votes
0answers
39 views

source files in project subfolder not compile, qnx momentics ide

I was about trying to develop an app for BlackBerry tablet (Playbook), it requires to use QNX Momentics IDE, everything has been done ok until I was trying to put some sources files into subfolder ...
2
votes
1answer
65 views

Efficiently consolidating source code from multiple files to a single file including (Roxygen) comments

Question What is an efficient way to consolidate source code from multiple source files to a single source file - including Roxygen documentation comments and possibly also including other comments? ...
3
votes
1answer
39 views

How to replace web codes with their equivalent symbols?

This could be a duplicate question, but I have no idea what search terms to look up, so don't be hard on me if it has been asked before (and I'm pretty sure it was). So I am getting a web page's ...
0
votes
1answer
68 views

Geting source from webpage with System.Net.WebClient.DownloadString

I'm trying to get the source-code of a webpage using WebClient with somethig like this: Private Function GetSource(ByVal tcLink As String) As String Dim r As String Dim oEnc As ...
0
votes
0answers
24 views

Digital Certificate API [closed]

We are doing project to implement certification authority for final yr engineering.Where do I get source code for digital certificate? Which language is used to create digital certificate? Can we ...

1 2 3 4 5 30
15 30 50 per page