This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace test | |
{ | |
public class C | |
{ | |
public C() | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Directory.Build.targets(28,9): error MSB4062: The "XXX.BuildTasks.CheckProjectReferenceCopyLocal" task could not be loaded from the assembly C:\Coding\git_repos\XXXux_Evo_4\bin\Build\Release\XXX.BuildTasks.dll. Could not load file or assembly 'file:///C:\Coding\git_repos\XXXux_Evo_4\bin\Build\Release\XXX.BuildTasks.dll' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using FakeItEasy; | |
namespace test | |
{ | |
public class DummySettingsFactory : DummyFactory<ISettings> | |
{ | |
static ISettings settings = new TestSettings(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* | |
This script analyzes the dependencies between top level types in a .NET Assembly. | |
It is then used to compare the dependency relationships in some F# projects with those in some C# projects. | |
Note that no attempt has been made to optimize the code yet! | |
REQUIRES: | |
* Mono.Cecil for code analysis | |
From http://www.mono-project.com/Cecil#Download |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* How to Be a High Performing Distributed Agile Team | |
https://www.youtube.com/watch?v=dG8FeZ5ey5c | |
https://www.collaborationsuperpowers.com/tools/ | |
http://theteamcanvas.com/ | |
* Tough Call: Handling “Difficult” Remote Conversations Like a Pro | |
https://www.youtube.com/watch?v=XyM8FRIO0b0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.amazon.de/Philosophy-Software-Design-John-Ousterhout/dp/1732102201 | |
https://www.amazon.de/Invitation-Applied-Category-Theory-Compositionality/dp/1108711820/ref=pd_sim_14_43?_encoding=UTF8&pd_rd_i=1108711820&pd_rd_r=135d16a0-cd50-4290-ae4a-94517639a06a&pd_rd_w=8O4Kx&pd_rd_wg=KxB2z&pf_rd_p=b0773d2f-6335-4e3d-8bed-091e22ee3de4&pf_rd_r=QVF40G2CAS1B9N2BZ1N6&psc=1&refRID=QVF40G2CAS1B9N2BZ1N6 | |
https://www.amazon.de/Software-Craftsman-Professionalism-Pragmatism-Robert/dp/0134052501/ref=pd_sim_14_44?_encoding=UTF8&pd_rd_i=0134052501&pd_rd_r=135d16a0-cd50-4290-ae4a-94517639a06a&pd_rd_w=8O4Kx&pd_rd_wg=KxB2z&pf_rd_p=b0773d2f-6335-4e3d-8bed-091e22ee3de4&pf_rd_r=QVF40G2CAS1B9N2BZ1N6&psc=1&refRID=QVF40G2CAS1B9N2BZ1N6 | |
https://www.amazon.de/Problem-Software-Smart-Engineers-Write/dp/026203851X/ref=pd_sim_14_59?_encoding=UTF8&pd_rd_i=026203851X&pd_rd_r=135d16a0-cd50-4290-ae4a-94517639a06a&pd_rd_w=8O4Kx&pd_rd_wg=KxB2z&pf_rd_p=b0773d2f-6335-4e3d-8bed-091e22ee3de4&pf_rd_r=QVF40G2CAS1B9N2BZ1N6&psc=1&refRID=QVF40G2CAS1B9N2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://wiki.c2.com/?ArgumentsAgainstOop | |
https://content.pivotal.io/blog/all-evidence-points-to-oop-being-bullshit | |
http://www.smashcompany.com/technology/object-oriented-programming-is-an-expensive-disaster-which-must-end | |
https://www.youtube.com/playlist?list=PLtg36xKlu60wk3buYHvAdtSbqPsvNgUDV | |
https://www.youtube.com/watch?v=QM1iUe6IofM&index=17&list=PLtg36xKlu60wk3buYHvAdtSbqPsvNgUDV | |
https://medium.com/@brianwill/how-to-program-without-oop-74a46e0e47a3 | |
https://medium.com/@cscalfani/goodbye-object-oriented-programming-a59cda4c0e53 | |
https://cppcon.org/plenary2018-3/ | |
https://codeburst.io/inheritance-is-evil-stop-using-it-6c4f1caf5117 | |
https://www.youtube.com/watch?v=748TEIIlg14&list=PLYG-GfK4ITZ7Q19M8ajAdOz2I2T6wLTVx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using static MeditationHelper.Prelude; | |
namespace MeditationHelper | |
{ | |
public static class Prelude | |
{ | |
public static Func<T1, R> fun<T1, R>(Func<T1, R> f) => f; | |
public static Func<T1, T2, R> fun<T1, T2, R>(Func<T1, T2, R> f) => f; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Fiacre | |
{ | |
using System.Linq; | |
using System.IO; | |
using System.Text.RegularExpressions; | |
using System.Collections.Generic; | |
using System; | |
public static class Build | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void PointCloud::computeCovarianceMatrix() { | |
double means[3] = {0, 0, 0}; | |
for (int i = 0; i < points.size(); i++) | |
means[0] += points[i].x, | |
means[1] += points[i].y, | |
means[2] += points[i].z; | |
means[0] /= points.size(), means[1] /= points.size(), means[2] /= points.size(); | |
for (int i = 0; i < 3; i++) | |
for (int j = 0; j < 3; j++) { |
NewerOlder