Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Licenses, what can and can't I use for my internship? (https://thetfp.com/tfp/tilted-technology/43454-licenses-what-can-cant-i-use-my-internship.html)

RelaX 01-29-2004 11:06 AM

Licenses, what can and can't I use for my internship?
 
Well... the title says it all really...
I am an intern at a company that specializes in back-ends of websites (a dream internship BTW :)) plus I am also in the process of building my own website.
All of this with PHP and MySQL databases.

Now in my internship I often run into the problem that I want to do something and I know it's already out there, Open Source. But I believe the GPL restricts you from using Open Source code in closed source software. So I have to reinvent the wheel constantly. Fortunately at my current internship I am working on an existing piece of code where things like MySQL database connections, querybuilding, tablebuilding etc. is already dealt with.
But what if my next internship isn't? What if I want to make a website with a decent back-end freelance style to sell?

Should I start building my own PHP library that I can use for work and for my private use, simply because I own the intellectual copyright? Is that even legal? Or desirable for that matter?
Could I make it open source but in such a way that I could still use it in closed source myself and companies I work for?
Does anyone have any experiance or expertise on these matters?

cheerios 01-29-2004 02:39 PM

well, your options pretty much consist of
#1: writing your own code
#2: finding a non-gpl solution

gpl is written in such a way that it encourages open-source projects. people wouldn't donate to something that would just turn around and make some corporation money... the gpl is set up so that if you use a gpl component, the result has to be released gpl as well, encouraging open-source contributions. That's not gonna work for you, and you won't be using GPL open-source code at work. There are other free-ware licenses out there, and other places to find software, so don't give up on open-source immeadiately, but well... you're pretty well stuck there.

kel 01-29-2004 02:59 PM

The GPL allows usage doesn't it?

kel 01-29-2004 03:10 PM

A little research goes a long way.

http://en.wikipedia.org/wiki/GPL

Quote:

The terms and conditions of the GPL are available to anybody receiving a copy of the GPL'ed work. The licensee accepting these terms is given permission to modify the work, as well as to copy and redistribute the work or any derivative version, either free of charge or for a fee. This latter point distinguishes the GPL from software licenses that prohibit commercial redistribution. Stallman has argued that free software should not place restrictions on commercial use, and the GPL explicitly states that GPL'ed works may be (re)sold.

n0nsensical 01-29-2004 04:02 PM

Yes, you can charge for GPL software, but you must provide access to the source and anyone else can redistribute it at no charge under the same terms, among other restrictions. What you cannot do is take GPL code and redistribute it under an incompatible license (e.g., a license that restricts the rights to modification and distribution) in modified or original form. There is no obligation to distribute your modifications, but if you do, you must abide by the terms of the license.

kel 01-29-2004 04:06 PM

Quote:

The licensee is only required to provide the source code to people who received a copy from her, or alternatively to accompany binaries with a written offer of the source code to any third party. This means, for example, that one may make private modified versions of GPLed software, provided that the modified software is not distributed to anyone else.
Which means internal company use is cool.

cheerios 01-29-2004 06:42 PM

ok, so you can sell something you make with gpl code... but you have to offer the source for free. If I worked for a software company, think my boss wouldn't be real pleased if i put gpl code in our new flagship application, then had to release the source.

kel 01-29-2004 07:17 PM

Not all software developed is meant to be sold. GPL code is still very useful, even in a business environment.

ratbastid 01-31-2004 05:33 AM

Be careful about building your own libraries, by the way. If you build them on company time, they belong to the company. If you build them on your own time, but with company projects in mind, they still arguably belong to the company.

redrum 02-03-2004 05:26 AM

I would be careful placing your personal code library in a program thats closed source and sold if you ever plan on using that exact coding again.

It then belongs to the company you wrote it for.


All times are GMT -8. The time now is 03:45 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360