Questions tagged [open-source]

QUESTIONS ABOUT LICENSING ARE OFF-TOPIC. You may ask questions about open source licensing on https://opensource.stackexchange.com. There are no good reasons to use this tag on Stack Overflow

Do not use this tag, it is being removed.

3575 questions
2
votes
1 answer

How to check a project into source control but omit sensitive information

I have a forum that I have been developing for a while now. The users are relentless with their requests to make it open source. I have decided to do this using Google Project Hosting. I am using AnkhSvn with Visual Studio to connect to the google…
CatDadCode
  • 58,507
  • 61
  • 212
  • 318
2
votes
3 answers

Are there any Open Source AS3 inverse kinematics libraries?

I am looking for leads on an Open Source IK library for AS3. My project involves simple 2D limbs with shoulder/elbow/wrist joints. If I am unable to find anything I am going to try and write one, although my math is not anywhere near up to the…
jkopel
  • 121
  • 5
2
votes
1 answer

Contributing to angular compiler

I was trying to fix a bug in angular-core repository. I have build the project with bazel successfully on my local and got a dist/ folder. I want to debug this file, For example: Add some console.log() statements to print values of…
aayush
  • 85
  • 1
  • 6
2
votes
6 answers

Suggestions for open source aspect-oriented library for c#

Any suggestions for open source aspect-oriented library for c#. Thanks
StackUnderflow
  • 24,080
  • 14
  • 54
  • 77
2
votes
1 answer

Looking for a small open-source PHP CMS to improve my PHP skill

I have finished a small PHP website and have an urge to learn something new, systematize to improve my PHP skill. Hence, I'm looking for a small open-source PHP CMS which is well-written and small-size that I could read the source code through and…
Jichao
  • 40,341
  • 47
  • 125
  • 198
2
votes
2 answers

Using OAuth in free/open source software

I'm now reading some introduction materials about OAuth, having the idea to use it in a free software. And I read this: The consumer secret must never be revealed to anyone. DO NOT include it in any requests, show it in any code samples…
Ryan Li
  • 9,020
  • 7
  • 33
  • 62
2
votes
1 answer

How to include libraries hosted on Github in a C++ project? (New C++ user - previously used language with package manager)

I want to include uWebSockets in a C++ project and I am unclear on how to do this. I've compiled projects with .so dependencies, when it comes to projects listed on github I am still confused. Specifically: Does the third-party repository need to…
Greg
  • 8,175
  • 16
  • 72
  • 125
2
votes
3 answers

What happened to Mephisto?

So, since starting working in Ruby I've run across tons of sites (example), SO questions (example), blog posts etc, that point to a "Ruby CMS" called Mephisto, using this address: http://www.mephistoblog.com/ That address is just some guy's blog…
Andrew
  • 42,517
  • 51
  • 181
  • 281
2
votes
0 answers

Exhaustive testing of threaded code

Does an open-source technique exist to simulate all possible memory-access-ordering permutations to exhaustively unit test threaded C or C++ code? REMARKS AND EXAMPLE One answer is: "Use a memory-safe/functional/very-high-level language. Avoid C and…
thb
  • 13,796
  • 3
  • 40
  • 68
2
votes
1 answer

How to call server action from a button click in odoo web client

I want to create a student mark-sheet for which I need information about Student name Course to which student belongs units under that course syllabus under each unit syllabus has certain criteria under them Hierarchy explained:- student is…
Sankalp Kataria
  • 479
  • 7
  • 24
2
votes
1 answer

Does an open-source Access ODBC driver exist for linux?

I am converting a Windows application to run under Linux. The original application used MS Access database files. My original thought was to convert the Access files into SQLite and only use SQLite going forward, which will run under Windows,…
E.Freitas
  • 542
  • 1
  • 4
  • 18
2
votes
3 answers

How to improve my C++ with open source projects

I am studying Computer Systems and Networks engineering at London South Bank University. I know a bit about object oriented programming languages like PHP, Java and about C++... and indeed would like to improve my knowledge of C++. But my knowledge…
VEL
  • 21
  • 2
2
votes
0 answers

Error when trying to get Chromium source code (Value from deps_os...)

I am trying to get the source code of Chromium 34, so I followed the instructions on Chromium.org: http://www.chromium.org/developers/how-tos/get-the-code/working-with-release-branches On the last command, gclient sync --with_branch_heads --jobs 16,…
WhatsYourIdea
  • 351
  • 2
  • 12
2
votes
1 answer

Online C project for excercising?

Recently I'm back into (embedded) C programming because of a new job. I never had a vast amount of C experience in my career and in the recent years (lacking in C) even that little amount dropped a little further. Thats too bad. So, in order to…
Greenberet
  • 490
  • 1
  • 5
  • 18
2
votes
1 answer

Do I need to do type checking when preparing library for open source?

I have I small module that I use inside one of my projects. Now I decided to place it on github so now I am writing some docstrings and cleaning the code. I have a composition of 2 classes so the initialization looks like this: foo = Class_1() bar =…
pythad
  • 4,241
  • 2
  • 19
  • 41