Skip to content

Instantly share code, notes, and snippets.

View ferparra's full-sized avatar
🎯
Focusing

Fernando Parra ferparra

🎯
Focusing
View GitHub Profile
@deanpeters
deanpeters / A_quasi-representative_time_line_of_Agile-minded_events_influencing_Product_Management.csv
Last active February 18, 2020 03:40
A quasi-representative time line of Agile-minded events influencing Product Management
Date Type Title Description URL Reference
1-Jan-83 mile marker start The location of Dean Peters' blog post explaining how this list came about, and how you can help nudge it to perfection. https://deanondelivery.com/a-33-year-retrospective-of-agile-product-management-1ae1db25ec39
3-Jul-85 influencer Tom Gilb EVO vs Waterfall Tom Gilb writes: "... the "waterfall model" may be unrealistic, and dangerous to the primary objectives of any software project. The alternative model, which I choose to call "evolutionary delivery" is not widely taught or practiced yet." https://dl.acm.org/citation.cfm?id=1012490
16-Sep-85 mile marker Apple fires Steve Jobs Walter Isaacsons' biography recalls "Steve didn't at that age know much about running companies. Apple had failed with Lisa, had failed with the Apple 3. The Apple 2 was near end of life, the company needed cash flow to fund development of the Macintosh." https://www.forbes.com/sites/randalllane/2013/09/09/john-sculley-just-gave-his-most-detailed-acco
@cldwalker
cldwalker / knowledge-graph-experiment.md
Last active March 11, 2024 11:10
knowledge graph experiment

I like to learn, index and retrieve information a lot. I know a lot of others do as well. We share data but I don't think we share our information and rarely our ontologies (a.k.a. our mental models). If we shared our ontologies, I think we could learn more from each other. With this hope in mind, I'm looking for a tool that provides these features:

  • Shares my ontology publicly
  • Shares my bookmarks publicly
  • Provides easy entry, extension and querying of my ontology
  • Provides easy entry and querying of my bookmarks
  • Shares interesting snapshots of my bookmarks
  • Encourages discovery of information that is new and interesting to others

Since I have not found such a tool, I have built a tool that:

@myshov
myshov / function_invocation.js
Last active January 21, 2024 15:14
11 Ways to Invoke a Function
console.log(1);
(_ => console.log(2))();
eval('console.log(3);');
console.log.call(null, 4);
console.log.apply(null, [5]);
new Function('console.log(6)')();
Reflect.apply(console.log, null, [7])
Reflect.construct(function(){console.log(8)}, []);
Function.prototype.apply.call(console.log, null, [9]);
Function.prototype.call.call(console.log, null, 10);
@alirobe
alirobe / reclaimWindows10.ps1
Last active April 23, 2024 06:15
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
###
###
### UPDATE: For Win 11, I recommend using this tool in place of this script:
### https://christitus.com/windows-tool/
### https://github.com/ChrisTitusTech/winutil
### https://www.youtube.com/watch?v=6UQZ5oQg8XA
### iwr -useb https://christitus.com/win | iex
###
###
@ericelliott
ericelliott / essential-javascript-links.md
Last active April 22, 2024 10:15
Essential JavaScript Links
@staltz
staltz / introrx.md
Last active April 25, 2024 04:18
The introduction to Reactive Programming you've been missing