-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndex.txt
8418 lines (5087 loc) · 309 KB
/
Index.txt
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
mongodb
cayenne
http://geoimasd.upm.es/Equipo/Paginas/Estudiante.aspx?Ident=92
http://upm-es.academia.edu/EmersonCastaneda
http://www.upm.es/observatorio/vi/index.jsp?pageac=investigador.jsp&idInvestigador=11800
Installing PHP on MAC OS X 1.8
http://stackoverflow.com/questions/2526085/how-do-i-upgrade-php-in-mac-os-x
http://php-osx.liip.ch/
Short, Self Contained, Correct Example
http://sscce.org/
Foreman
The Foreman is a complete lifecycle management tool for physical and virtual servers.
http://theforeman.org/
GitHub repo: https://github.com/theforeman
Includes repot of website, and API in Ruby
Curso Android (ESP)
http://www.androidcurso.com
What have you tried?
http://mattgemmell.com/2008/12/08/what-have-you-tried/
http://whathaveyoutried.com
Java Code Coverage for Eclipse
http://www.eclemma.org/
EclEmma is a free Java code coverage tool for Eclipse, available under the Eclipse Public License. It brings code coverage analysis directly into the Eclipse workbench:
Fast develop/test cycle: Launches from within the workbench like JUnit test runs can directly be analyzed for code coverage.
Rich coverage analysis: Coverage results are immediately summarized and highlighted in the Java source code editors.
Non-invasive: EclEmma does not require modifying your projects or performing any other setup.
http://stackoverflow.com/questions/15356878/eclipse-tool-that-shows-which-lines-of-code-were-hit-throughout-an-execution
http://en.wikipedia.org/wiki/Code_coverage
Look for FasterXML y Jackson
Jackson
http://stackoverflow.com/tags/jackson/info
FasterXML
http://stackoverflow.com/tags/fasterxml/info
http://stackoverflow.com/questions/15357514/failed-to-parse-list-of-elements-with-attributes
Stack Overflow reputation display
[Firefox status bar showing reputation score and badge counts] This add-on allows you to keep track of your reputation scores and badge count on Stack Overflow and many other related sites. Once the extension has established the details of your user accounts, your current score will be displayed in the statusbar and updated periodically. Optional sound effects will notify you of any changes.
http://www.twistedlip.org/extensions/sorepdisplay/
Joda Time - Java date and time API
Joda-Time provides a quality replacement for the Java date and time classes. The design allows for multiple calendar systems, while still providing a simple API. The 'default' calendar is the ISO8601 standard which is used by XML. The Gregorian, Julian, Buddhist, Coptic, Ethiopic and Islamic systems are also included, and we welcome further additions. Supporting classes include time zone, duration, format and parsing.
http://joda-time.sourceforge.net/
YouTrack Stand-Alone
YouTrack stand-alone is a web application ready to be installed on your own server. You get full control over your YouTrack server, including upgrades and maintenance.
http://www.jetbrains.com/youtrack/download/get_youtrack.html
Start with a free 10-user pack
CodePlexProject Hosting for Open Source Software
http://www.codeplex.com/
emecas
Cucumber
http://cukes.info/
Cucumber is a tool that executes plain-text functional descriptions as automated tests. The language that Cucumber understands is called Gherkin. Here is an example:
https://github.com/cucumber/cucumber/wiki
firebug says "debugger not activated" even when script panel is activated...
FIREBUG - FIREFOX PROBLEM
https://groups.google.com/forum/?fromgroups=#!topic/firebug/HW1uNT-VwSQ
Quick and easy fix that worked for me:
* Go to configuration (with about:config in location bar. details
here: http://kb.mozillazine.org/About:config).
* Search for "FINDDEBUGGER".
* Double-click the entry to change "value" to "true"
* Close the window / tab and reload your page. Debugger should
appear.
ANTLR
What is ANTLR?
"ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build and walk parse trees. From http://www.antlr.org
KDE Necessitas project
http://necessitas.kde.org/
Necessitas is a KDE community project aimed to provide an easy way to develop Qt apps on Android platform.
Chocolat
http://www.chocolatapp.com/
A tasty new text editor for Mac.
Chocolat is a new text editor for Mac OS X, that combines native Cocoa with powerful text editing tools.
OpenRefine
A free, open source, power tool for working with messy data
http://openrefine.org/
CURSOS CARTOGRAFIA
http://www.dmsgroup.es/services.php
http://shop.dmsgroup.es/
CURSOS MOVIL - CULTURELAB
Profesionales en el sector de las Aplicaciones Móviles
http://culture-lab.es/
Clusterfck
JavaScript agglomerative hierarchical clustering
clusterfck is a JavaScript library for hierarchical clustering. Clustering is used to group similar items together. Hierarchical clustering in particular is used when a hierarchy of items is needed or when the number of clusters isn't known ahead of time. An example use, clustering similar colors based on their rgb values:
http://harthur.github.com/clusterfck/
http://stackoverflow.com/questions/15399520/a-hierarchical-clustering-in-php-or-javascript
GIT official web site
web
http://git-scm.com/about
book
http://git-scm.com/book
MongoDB
MongoDB Installation on Mac OS X as Service
http://www.joyceleong.com/log/mongodb-installation-on-mac-os-x/
Homebrew
Homebrew installs the stuff you need that Apple didn’t.
http://mxcl.github.com/homebrew/
Instalation
Neo4j
Neo4j is an open-source, high-performance, enterprise-grade NOSQL graph database.
http://www.neo4j.org/
http://www.neo4j.org/install
Tutorials Neo4J
1:
Neo4j: Making implicit relationships explicit & bidirectional relationships
http://www.javacodegeeks.com/2013/10/neo4j-making-implicit-relationships-explicit-bidirectional-relationships.html
DokuWiki (PHP)
It's better when it's simple
DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.
https://www.dokuwiki.org/dokuwiki
Scratch
http://scratch.mit.edu
Scratch is a programming language that makes it easy to create your own interactive stories, animations, games, music, and art -- and share your creations on the web.
As young people create and share Scratch projects, they learn important mathematical and computational ideas, while also learning to think creatively, reason systematically, and work collaboratively.
Plunker
The next generation of lightweight collaborative online editing.
http://plnkr.co
https://github.com/filearts/plunker
JSFiddle
http://jsfiddle.net/
JSFiddle is a non-profit educational platform, maintained by a team of two (Piotr and Oskar), who also work full-time.
My new external Mac drive is read-only. How can I fix it?
http://www.askdavetaylor.com/external_mac_hard_drive_read-only_how_to_fix_it.html
Notas CNR 2013
Dia 1 jueves 21 Mar 2013
Neutrinos -telescopio de neutrinos - Antares
WSN - wireless sensor network
Augmented Mirror - IRTIC
Dia 2
Dia 3
inSSIDer: buscando el mejor canal WiFi para maximizar la velocidad inalámbrica
http://bandaancha.eu/articulos/inssider-buscando-mejor-canal-wifi-7370
Xuggler
http://www.xuggle.com/xuggler
Xuggler is the easy way to uncompress, modify, and re-compress any media file (or stream) from Java. See licensing for licensing information.
http://stackoverflow.com/questions/15609963/how-to-get-each-and-every-frame-of-a-video-using-java
Android Airplane mode activate
How to Enable/Disable flight mode in android?
http://dustinbreese.blogspot.com.es/2009/04/andoid-controlling-airplane-mode.html
http://stackoverflow.com/questions/9587210/how-to-enable-disable-flight-mode-in-android
Tasker
Total Automation for Android
http://tasker.dinglisch.net/history.html
http://androidforums.com/android-applications/396726-automatically-activate-portable-wi-fi-hotspot-when-charging-android-2-3-a.html
MigLayout
MigLayout - Java Layout Manager for Swing, SWT and JavaFX 2!
"MiG Layout makes complex layouts easy and normal layouts zero-liners."
http://www.miglayout.com/
MAVEN
http://mvnrepository.com/artifact/com.miglayout
http://mvnrepository.com/artifact/com.miglayout/miglayout-swing/4.2
TodoMVC http://todomvc.com
Helping you select an MV* framework
http://coding.smashingmagazine.com/2012/07/27/journey-through-the-javascript-mvc-jungle/
httpfox
An HTTP analyzer addon for Firefox
http://code.google.com/p/httpfox/
KODING (before https://kodingen.com/)
https://koding.com/
A new way for developers to work
openFrameworks
www.openframeworks.cc
openFrameworks is an open source C++ toolkit designed to assist the creative process by providing a simple and intuitive framework for experimentation. The toolkit is designed to work as a general purpose glue, and wraps together several commonly used libraries, including:
CreativeApplications.Net
reports innovation and catalogues projects, tools and platforms at the intersection of art, media and technology.
http://www.creativeapplications.net/
HtmlUnit
HtmlUnit is a "GUI-Less browser for Java programs". It models HTML documents and provides an API that allows you to invoke pages, fill out forms, click links, etc... just like you do in your "normal" browser.
It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating either Firefox or Internet Explorer depending on the configuration you want to use.
http://htmlunit.sourceforge.net/
Selenium
Selenium automates browsers. That's it. What you do with that power is entirely up to you. Primarily it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
http://docs.seleniumhq.org/
code4reference
http://code4reference.com/
A List of How to do:
This page contains the list of “how to do” stuff.
Android
Blog
C
commond
git
gradle
How to do
java
news
Python
shell
source code
sql
Tutorial
Uncategorized
webapp
sample: http://code4reference.com/2012/07/tutorial-on-android-alarmmanager/
Jenkins CI
Welcome to Jenkins CI, formerly known as "Hudson Labs", a community-driven site for and by the Jenkins CI community.
There's more to be said about Jenkins CI, and this site which we'll get to soon!
An extendable open source continuous integration server
http://jenkins-ci.org/
SQLFiddle.com
A tool for easy online testing and sharing of database problems and their solutions.
http://www.sqlfiddle.com
from:
http://stackoverflow.com/questions/15680774/select-data-from-different-columns-and-two-tables http://stackoverflow.com/a/15680849/833336 http://www.sqlfiddle.com/#!2/27b6d/1
MongoDB Vs SQL
SQL to Aggregation Framework Mapping Chart
http://docs.mongodb.org/manual/reference/sql-aggregation-comparison/
Optimizing MongoDB Compound Indexes
http://emptysquare.net/blog/optimizing-mongodb-compound-indexes/
author
http://emptysquare.net/blog/about/
JXDatePicker
A component that combines a button, an editable field and a JXMonthView component. The user can select a date from the calendar component, which appears when the button is pressed. The selection from the calendar component will be displayed in editable field. Values may also be modified manually by entering a date into the editable field using one of the supported date formats.
DOC: http://www.jdocs.com/swingx/1.0/org/jdesktop/swingx/JXDatePicker.html
Knapsack problem
http://en.wikipedia.org/wiki/Knapsack_problem
http://es.wikipedia.org/wiki/Problema_de_la_mochila
itextSharp
http://sourceforge.net/projects/itextsharp/
iTextSharp is a C# port of iText, and open source Java library for PDF generation and manipulation. It can be used to create PDF documents from scratch, to convert XML to PDF (using the extra XFA Worker DLL), to fill out interactive PDF forms, to stamp new content on existing PDF documents, to split and merge existing PDF documents, and much more.
Several iText engineers are actively supporting the project on the iText mailing-list [email protected] and on StackOverflow: http://stackoverflow.com/questions/tagged/itextsharp
FOG Project
http://www.fogproject.org/
FOG is a Linux-based, free and open source computer imaging solution for Windows XP, Vista and 7 that ties together a few open-source tools with a php-based web interface. FOG doesn't use any boot disks, or CDs; everything is done via TFTP and PXE. Also with fog many drivers are built into the kernel, so you don't really need to worry about drivers (unless there isn't a linux kernel driver for it). FOG also supports putting an image that came from a computer with a 80GB partition onto a machine with a 40GB hard drive as long as the data is less than 40GB.
operator precedence -
"please excuse my dear aunt sallie" = (), **, *, /, +,-
http://www.codeskulptor.org/#examples-arithmetic_expressions.py
http://www.change.org
La plataforma de peticiones
REF:
Petición dirigida a: Ministerio de Economía y Competitividad
Ministerio de Economía y Competitividad: Trato igualitario a Ingenierías en Informática en la futura LSP
http://www.change.org/es/peticiones/ministerio-de-econom%C3%ADa-y-competitividad-trato-igualitario-a-ingenier%C3%ADas-en-inform%C3%A1tica-en-la-futura-lsp?utm_campaign=share_button_mobile&utm_medium=facebook&utm_source=share_petition
Proyecto Clone Wars
http://www.reprap.org/wiki/Proyecto_Clone_Wars
Clone Wars es un grupo dentro de la comunidad RepRap, que trata de documentar en español todo lo necesario para que puedas construir tu propia impresora 3D. Además recopilamos información como ubicación de comercios locales, miembros del grupo que tienen una impresora cerca de tí..., datos en general que te pueden ayudar con tu proyecto.
opencore multimédia framework
OpenCORE is the multimedia framework of Android
originally contributed by PacketVideo. It provides
an extensible framework for multimedia rendering and
authoring and video telephony (3G-324M).
https://android.googlesource.com/platform/external/opencore.git
https://github.com/android/platform_external_opencore
SkySQL
http://www.skysql.com/
SkySQL is the trusted provider of open source database solutions for MySQL and MariaDB users – in the enterprise and cloud, providing over 350 enterprise customers including Canal+, ClubMed, Constant Contact, Deutsche Telekom, La Poste, Virgin Mobile, Western Digital, Harvard University and XING with database deployment and management solutions.
MariaDB
https://mariadb.org/
MariaDB is a drop-in replacement for MySQL.
MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. To accomplish this, Monty Program works to hire the best and brightest developers in the industry, work closely and cooperatively with the larger community of users and developers in the true spirit of Free and open source software, and release software in a manner that balances predictability with reliability.
Ref: SkySQL Merges With MariaDB Creator Monty Program To Solidify Its Open Source Database Position
http://techcrunch.com/2013/04/23/skysql-merges-with-mariadb-to-solidify-its-open-source-database-position/
The Apache Hadoop
http://hadoop.apache.org/
The Apache™ Hadoop® project develops open-source software for reliable, scalable, distributed computing.
The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-avaiability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-availabile service on top of a cluster of computers, each of which may be prone to failures.
NoSQL Index
http://nosql-database.org/
Your Ultimate Guide to the
Non - Relational Universe!
Python - Intermezzo: Coding Style
http://docs.python.org/release/2.6.8/tutorial/controlflow.html#intermezzo-coding-style
PowerShell Quick Reference
Windows PowerShell is Microsoft's task automation framework, consisting of a command-line shell and
associated scripting language built on .NET Framework.
PowerShell provides full access to COM and WMI, enabling administrators to perform administrative tasks on both
local and remote Windows systems.
http://www.dimensionit.tv/powershell-quick-reference/
Vertica Database
http://www.vertica.com/
Vertica Systems is an analytic database management software company.Vertica was founded in 2005 by database researcher Michael Stonebraker, and Andrew Palmer. Former CEOs include Ralph Breslauer and Christopher P. Lynch.
Vertica was acquired by Hewlett Packard on March 22, 2011. The acquisition expands the Enterprise software division of HP – HP Software’s information optimization, business intelligence and analytics portfolio for enterprise companies and the public sector.
Digital Units of Measure
http://simple.be/tech/reference/bit
yottabyte = 1 yottabyte
= 1024 zettabytes
= 1048576 exabytes
= 1073741824 petabytes
= 1099511627776 terabytes
= 1125899906842624 gigabytes
= 1152921504606846976 megabytes
= 9223372036854775808 Megabits
= 1180591620717411303424 kilobytes
= 9444732965739290427392 Kilobits
= 1208925819614629174706176 bytes
= 2417851639229258349412352 nibbles
= 9671406556917033397649408 bits
LibreSoft - We study libre software, too
http://libresoft.es/
Libresoft is a research group based at University Rey Juan Carlos (Madrid). We investigate libre software and open collaboration in different areas such as software engineering, mobile technologies, virtual communities and e-learning.
PlanetUbuntu
http://planetubuntu.es/
La idea principal de PlanetUbuntu.es es crear una página web en la que pueda disponerse de forma rápida y eficaz de toda la actualidad en español sobre el mundo de Ubuntu, puedes ver la definición de planeta en la wikipedia.
http://www.pawfal.org/
mi
Music Intellegence is a collection of plugins for SSM that use artificial life to create patterns for generating innovative music.
Built with 0.1.0b2 version of SSM.
http://www.pawfal.org/Software/mi/
Spiral Synth 2
Note: SpiralSynth isn't being supported any more due to lack of time, and the existance of SpiralSynth Modular. Which is much better featured and developed.
http://www.pawfal.org/Software/SpiralSynth/
dave's blog of art and programming
games, magic, livecoding, free software
http://www.pawfal.org/dave/blog/about/
A Windows Phone 8 Run Tracking App in 100 Lines of Code!
http://www.developer.nokia.com/Community/Wiki/A_Windows_Phone_8_Run_Tracking_App_in_100_Lines_of_Code!
paid with a tweet
Sell your products for the price of a tweet
http://www.paywithatweet.com/index.php
Community Projects JBOSS
JBoss redefined the application server back in 2002 when it broke apart the monolithic designs of the past with its modular architecture. Since then we've continued to find new ways to challenge convention and redefine Enterprise Java through community-driven projects.
http://www.jboss.org/projects
getusvpn
http://www.getusvpn.com/
Welcome to high quality USA based Free VPN!
Feel free to use the US PPTP VPN in Windows, OSX, iPhone, iPad, Android Phones, Tablets & Routers!
PPTP Server: getusvpn.com
PPTP Username: free
Infobright Community Edition (ICE)
The Open-Source Database for Ad hoc Analytics
http://www.infobright.org/
Forums
http://www.infobright.org/Forums
A Interesting Entry:
Hadoop & Distributed Load Processor (DLP)
http://www.infobright.org/Forums/viewthread/3298/
Python Remove from List
Never Remove anything from a List that you are iterating on instead mark it and remove later
# define event handler for mouse click, draw
def click(pos):
remove = []
for ball in ball_list:
if distance(ball, pos) < ball_radius:
remove.append(ball)
if remove == []:
ball_list.append(pos)
else:
for ball in remove:
ball_list.pop(ball_list.index(ball))
Scholarpedia
Scholarpedia is a peer-reviewed open-access encyclopedia written and maintained by scholarly experts from around the world. Scholarpedia is inspired by Wikipedia and aims to complement it by providing in-depth scholarly treatments of academic topics.
http://www.scholarpedia.org
Pivotal Tracker
Pivotal Tracker is an easy to use, agile project management tool that brings focused collaboration to software development teams. Built by Pivotal Labs, it embodies proven agile methods, based on experience from hundreds of successful large scale projects.
Build better software, faster.
Collaborative, lightweight agile project management tool, brought to you by the experts in agile software development.
https://www.pivotaltracker.com/
Correlation database
http://en.wikipedia.org/wiki/Correlation_database
Tropos
http://www.troposproject.org/
Tropos is a software development methodology, where concepts of the agent paradigm are used along the whole software development process. Notions of agent, goal, task and (social) dependency are used to model and analyze early and late software requirements, architectural and detailed design, and (possibly) to implement the final system. In this web site, you can find details of ongoing research, developed tools, industrial projects and Tropos related events. Tropos is derived from the Greek τροποσ, which means "way of doing things"; also τροπή, which means "turn" or "change".
gource
software version control visualization
http://code.google.com/p/gource/
Ref from : https://github.com/shussekaido/gourcelog
Apache Pig Philosophy
http://pig.apache.org/philosophy.html
What does it mean to be a pig?
The Apache Pig Project has some founding principles that help pig developers decide how the system should grow over time. This page presents those principles.
Pigs Eat Anything
Pig can operate on data whether it has metadata or not. It can operate on data that is relational, nested, or unstructured. And it can easily be extended to operate on data beyond files, including key/value stores, databases, etc.
Pigs Live Anywhere
Pig is intended to be a language for parallel data processing. It is not tied to one particular parallel framework. It has been implemented first on Hadoop, but we do not intend that to be only on Hadoop.
Pigs Are Domestic Animals
Pig is designed to be easily controlled and modified by its users.
Pig allows integration of user code where ever possible, so it currently supports user defined field transformation functions, user defined aggregates, and user defined conditionals. These functions can be written in Java or scripting languages that can compile down to Java (e.g. Jython). Pig supports user provided load and store functions. It supports external executables via its stream command and Map Reduce jars via its mapreduce command. It allows users to provide a custom partitioner for their jobs in some circumstances and to set the level of reduce parallelism for their jobs. command. It allows users to set the level of reduce parallelism for their jobs and in some circumstances to provide a custom partitioner.
Pig has an optimizer that rearranges some operations in Pig Latin scripts to give better performance, combines Map Reduce jobs together, etc. However, users can easily turn this optimizer off to prevent it from making changes that do not make sense in their situation.
Python - Avoiding long if/elif chain with dictionary mappings
########################
# Long if/elif chain
def keydown(key):
global paddle1_vel, paddle2_vel
if key == simplegui.KEY_MAP["up"]:
paddle2_vel -= 2
elif key == simplegui.KEY_MAP["down"]:
paddle2_vel += 2
elif key == simplegui.KEY_MAP["w"]:
paddle1_vel -= 2
elif key == simplegui.KEY_MAP["s"]:
paddle1_vel += 2
########################
# Avoiding long if/elif chain with dictionary mapping values to actions
def paddle1_faster():
global paddle1_vel
paddle1_vel += 2
def paddle1_slower():
global paddle1_vel
paddle1_vel -= 2
def paddle2_faster():
global paddle2_vel
paddle2_vel += 2
def paddle2_slower():
global paddle2_vel
paddle2_vel -= 2
inputs = {"up": paddle2_slower,
"down": paddle2_faster,
"w": paddle1_slower,
"s": paddle1_faster}
def keydown(key):
for i in inputs:
if key == simplegui.KEY_MAP[i]:
inputs[i]()
#Avoiding long if/elif chain with dictionary mapping values to action arguments
inputs = {"up": [1, -2],
"down": [1, 2],
"w": [0, -2],
"s": [0, 2]}
def keydown(key):
for i in inputs:
if key == simplegui.KEY_MAP[i]:
paddle_vel[inputs[i][0]] += inputs[i][1]
Backing Up Subversion Automatically
http://blog.markshead.com/101/backing-up-subversion-automatically/
http://blogs.law.harvard.edu/mwshead/2011/02/01/sv-backup/
Blog
http://blog.nextgenetics.net/
Ref:
Method: Data visualization with D3.js and python - part 1
introduction to D3.js with a simple bar chart
Infographics Software Metrics of Firefox 19 vs Firefox 20 using D3
http://almossawi.com/firefox/
LOC -Cyclomatic complexity - First-order density - Propagation cost - Core size - Defect density - Resident memory - Speed
Processing & Open Data
http://freeartbureau.org/fab_activity/processing-open-data/
This tutorial is the result of work done during the Processing Workshop which took place in Rennes 4th and 5th November 2011. The original French version is available here. This English version is an adaptation of Julien’s tutorial using data from the Barclays Cycle Hire docking station.
Launchpad
The Ableton Live Controller
http://global.novationmusic.com/midi-controllers-digital-dj/launchpad
Launchpad S
The number one Live controller
http://global.novationmusic.com/midi-controllers-digital-dj/launchpad-s
IGNITE for M-Audio49
http://www.m-audio.com/products/en_us/AxiomPro49.html
http://www.airmusictech.com/product/ignite
http://www.airmusictech.com/download-ignite
LDAP on Windows (standalone)
REF: http://stackoverflow.com/questions/2299279/local-ldap-server-for-development-on-windows-7
1)
Active Directory Lightweight Directory Services (AD LDS) for Windows7
http://www.microsoft.com/en-us/download/details.aspx?id=14683
Active Directory Lightweight Directory Services (AD LDS) provides directory services for directory-enabled application. This download pertains to AD LDS for Windows® 7 operating system.
2)
ApacheDS
http://directory.apache.org/apacheds/
ApacheDS is an extensible and embeddable directory server entirely written in Java, which has been certified LDAPv3 compatible by the Open Group. Besides LDAP it supports Kerberos 5 and the Change Password Protocol. It has been designed to introduce triggers, stored procedures, queues and views to the world of LDAP which has lacked these rich constructs.
3)
OpenLDAP
http://www.openldap.org/
OpenLDAP Software is an open source implementation of the Lightweight Directory Access Protocol.
The suite includes:
slapd - stand-alone LDAP daemon (server)
libraries implementing the LDAP protocol, and
utilities, tools, and sample clients.
Also available from the OpenLDAP Project:
Fortress - Role-based identity access management Java SDK
JLDAP - LDAP Class Libraries for Java
JDBC-LDAP - Java JDBC - LDAP Bridge Driver
TABLEAU PUBLIC HOMEWORK
Link:
http://public.tableausoftware.com/views/VisualizationAssignment_2180/6_CustomDashboardB?:embed=y&:display_count=no
http://public.tableausoftware.com/views/VisualizationAssignment_2180/6_CustomDashboardB?:embed=y&:display_count=no
Embed the Viz in your website:
<script type="text/javascript" src="http://public.tableausoftware.com/javascripts/api/viz_v1.js"></script><div class="tableauPlaceholder" style="width:1004px; height:869px;"><noscript><a href="#"><img alt="6. Custom DashboardB " src="http://public.tableausoftware.com/static/images/Vi/VisualizationAssignment_2180/6_CustomDashboardB/1_rss.png" style="border: none" /></a></noscript><object class="tableauViz" width="1004" height="869" style="display:none;"><param name="host_url" value="http%3A%2F%2Fpublic.tableausoftware.com%2F" /><param name="site_root" value="" /><param name="name" value="VisualizationAssignment_2180/6_CustomDashboardB" /><param name="tabs" value="no" /><param name="toolbar" value="yes" /><param name="static_image" value="http://public.tableausoftware.com/static/images/Vi/VisualizationAssignment_2180/6_CustomDashboardB/1.png" /><param name="animate_transition" value="yes" /><param name="display_static_image" value="yes" /><param name="display_spinner" value="yes" /><param name="display_overlay" value="yes" /><param name="display_count" value="yes" /></object></div><div style="width:1004px;height:22px;padding:0px 10px 0px 0px;color:black;font:normal 8pt verdana,helvetica,arial,sans-serif;"><div style="float:right; padding-right:8px;"><a href="http://www.tableausoftware.com/public/about-tableau-products?ref=http://public.tableausoftware.com/views/VisualizationAssignment_2180/6_CustomDashboardB" target="_blank">Learn About Tableau</a></div></div>
UDEMY
Learn real skills from real experts!
Some Free COurses
TEchnology
https://www.udemy.com/courses/Technology?price=free
Music
https://www.udemy.com/courses/Music?price=free
Presentacion Antena 3:
Experiencia real: "REST para móviles en tiempo real: Trabajando al milisegundo"
Link Evento: https://plus.google.com/u/0/events/c45184gfm6qlq9fai5ah2cf3s44
VIDEO: https://www.youtube.com/watch?feature=player_embedded&v=gyF0tF7W6bA
POPCORNJS
http://popcornjs.org/
The HTML5 Media Framework
Popcorn.js is an HTML5 media framework written in JavaScript for filmmakers, web developers, and anyone who wants to create time-based interactive media on the web. Popcorn.js is part of Mozilla's Popcorn project.
Openpaths
https://openpaths.cc/
OpenPaths is a private, secure data locker for personal location information.
<blockquote class="twitter-tweet"><p>"Openpaths gives people the experience of data ownership. For the first time people can own their data". Ugh. Gong time <a href="https://twitter.com/search?q=%23hadoopsummit&src=hash">#hadoopsummit</a></p>— davi <a href="https://twitter.com/daviottenheimer/statuses/350296741570031616">June 27, 2013</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
Project Falcon
Tackling Hadoop Data Lifecycle Management via Community Driven Open Source
http://hortonworks.com/blog/project-falcon-tackling-hadoop-data-lifecycle-management-via-community-driven-open-source/
Falcon Proposal
Abstract: Falcon is a data processing and management solution for Hadoop designed for data motion, coordination of data pipelines, lifecycle management, and data discovery. Falcon enables end consumers to quickly onboard their data and its associated processing and management tasks on Hadoop clusters.
http://wiki.apache.org/incubator/FalconProposal
Gephi
https://gephi.org/
The Open Graph Viz Platform
Gephi is an interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs.
Runs on Windows, Linux and Mac OS X. Gephi is open-source and free.
Meetup API
Java client:
code.google.com/p/meetup-java-client/
Python Client
https://github.com/meetup/python-api-client
Tizen
Intel App Porter Tool
IOS to HTML5
Event Injector Concept (IDE Option)
Ludei : demo html5 phone 5000 drops (multitasking)
http://www.ludei.com/
http://cocoonjsservice.ludei.com/cocoonjslaunchersvr/demo-list/
Stories:
http://www.linuxadictos.com/tizen-se-despide-samsung-de-android.html
http://www.osnews.com/story/26865/Samsung_s_future_is_Tizen_not_Android
--> http://openmobile.co/pdf/Data_Sheet_ACL_for_Tizen_8.pdf
To solve memory problem on mac to star emulator!!!:
sudo sysctl -w kern.sysv.shmall=393216 && sudo sysctl -w kern.sysv.shmmax=1610612736
To check Linux compatibility:
Generar el Certificado
Admins-MacBook-Pro-2:certificate-generator ecastaneda$ pwd
/Users/ecastaneda/tizen-sdk/tools/certificate-generator
Admins-MacBook-Pro-2:certificate-generator ecastaneda$ ./certificate-generator.sh
(tizen)
CasperJS
http://casperjs.org
CasperJS is a navigation scripting & testing utility for PhantomJS, written in Javascript
CasperJS is an open source navigation scripting & testing utility written in Javascript and based on PhantomJS — the scriptable headless WebKit engine. It eases the process of defining a full navigation scenario and provides useful high-level functions, methods & syntactic sugar for doing common tasks such as:
defining & ordering browsing navigation steps
filling & submitting forms
clicking & following links
capturing screenshots of a page (or part of it)
testing remote DOM
logging events
downloading resources, including binary ones
writing functional test suites, saving results as JUnit XML
scraping Web contents
WorkShop CasperJS SpainJS
@vgaltes
presentation and examples : http://github.com/vgaltes/spainjs
Sample: Submiting a Form
https://github.com/vgaltes/spainjs/blob/master/samples/fillForm.js
PhantomJS
http://phantomjs.org
Full web stack - No browser required
PhantomJS is a headless WebKit scriptable with a JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.
Recover MySQL root Password
http://www.cyberciti.biz/tips/recover-mysql-root-password.html
You can recover MySQL database server password with following five easy steps.
REST with Java (JAX-RS) using Jersey - Tutorial
http://www.vogella.com/articles/REST/article.html
This tutorial explains how to develop RESTful web services in Java with the JAX-RS reference implementation Jersey.
In this tutorial Eclipse 4.2 (Juno), Java 1.6, Tomcat 6.0 and JAX-RS 1.1. (Jersey 1.5) is used.
Old Thread about Jersey and Cayenne
Help with Jersey Rest Services and Cayenne
http://comments.gmane.org/gmane.comp.java.cayenne.user/13326
How to install webmin on ubuntu 12.04 (Precise) server
http://www.ubuntugeek.com/how-to-install-webmin-on-ubuntu-12-04-precise-server.html
Startup Ranking
http://www.startupranking.com
This ranking is updated daily
StartupCTO
http://www.startupcto.com/
StartupCTO is a collection of 'notes from the trenches' on the technical aspects of building a successful Internet startup: everything from finding good engineers to creating HTML emails. It's a collaborative effort: if you have something to add, please either leave a comment or ask me (David Ordal) for a login (david -at- ordal.com).
Setting up a Java Tomcat7 Production Server on Amazon EC2
http://developer24hours.blogspot.com/2013/01/setting-up-java-tomcat7-production.html
This tutorial will demonstrate how to build a Tomcat7 server running a Java application on Amazon EC2.
Install Java OpenJDK 7 on Amazon EC2 Ubuntu
http://developer24hours.blogspot.ca/2012/12/install-java-openjdk-7-on-amazon-ec2.html
Social Media Icons
http://paulrobertlloyd.com/2009/06/social_media_icons/
https://github.com/paulrobertlloyd/socialmediaicons
by Komodo media, I’ve created a selection of different icons each available in four different sizes (48×48, 32×32, 24×24 and 16×16).
Apache Cayenne Advances Topics at WOWODC2013
http://www.mail-archive.com/[email protected]/msg53823.html
Slides
http://www.slideshare.net/wocommunity/
Life outside WO
http://www.slideshare.net/wocommunity/1-life-outsidewo
4 months ago,
327 views
Apache Cayenne for WO Devs
http://www.slideshare.net/wocommunity/2-apache-cayenneforwebobjectsdevelopers
4 months ago,
362 views
Apache Cayenne in a Web App
http://www.slideshare.net/wocommunity/3-apache-cayenneinwebapp
4 months ago,
329 views
Advanced Apache Cayenne
http://www.slideshare.net/wocommunity/4-advanced-cayenne
4 months ago,
263 views
Code for Cayenne and Tapestry demos presented at WOWODC2013
https://github.com/andrus/wowodc13
RELATED:
Script to Download Videos and Slides from WWDC 2013
http://blog.manbolo.com/2013/06/18/download-videos-and-slides-from-wwdc-2013
Uninstalling/enable or disable Apache APC
How to uninstall APC from a dedicated cpanel server using ssh
http://stackoverflow.com/questions/8946432/how-to-uninstall-apc-from-a-dedicated-cpanel-server-using-ssh
Linux: enable or disable PHP APC opcode cache for virtual host
http://www.shkodenko.com/linux-enable-or-disable-php-apc-opcode-cache-for-virtual-host/
Disable or remove apc
http://stackoverflow.com/questions/11309987/disable-or-remove-apc
Testing HTTP performance
Staying Out of Deep Water: Performance Testing Using HTTPD-Test's Flood Page 3
http://www.serverwatch.com/tutorials/article.php/10825_2216741_3/Staying-Out-of-Deep-Water-Performance-Testing-Using-HTTPDTests-Flood.htm
MySQL Tuning
2 Linux MySQL Tuning Scripts you must have
http://crivera.com/developer/2-linux-mysql-tuning-scripts-you-must-have
MySQL Performance Tuning Scripts and Know-How
http://www.askapache.com/mysql/performance-tuning-mysql.html
Jungle Disk
https://www.jungledisk.com
Cloud Backup Service - Includes Mobile APPs