text
stringlengths
0
2.35k
[2746.08 --> 2746.56] practices.
[2748.14 --> 2749.14] For instance,
[2749.30 --> 2749.90] it's really
[2749.90 --> 2750.32] funny.
[2751.30 --> 2752.10] So I
[2752.10 --> 2752.78] actually wanted
[2752.78 --> 2753.38] to show
[2753.38 --> 2754.28] that the
[2754.28 --> 2754.72] code was
[2754.72 --> 2755.44] extendable.
[2755.78 --> 2756.68] So by
[2756.68 --> 2757.66] actually creating
[2757.66 --> 2758.08] an extra
[2758.08 --> 2759.02] package that
[2759.02 --> 2759.66] will use that
[2759.66 --> 2760.08] package.
[2760.08 --> 2760.94] and then I
[2760.94 --> 2761.58] realized that
[2761.58 --> 2761.74] no,
[2761.82 --> 2762.26] that package
[2762.26 --> 2762.62] should take
[2762.62 --> 2762.84] in an
[2762.84 --> 2763.26] interface,
[2763.38 --> 2763.64] for instance.
[2763.80 --> 2763.86] Like,
[2763.90 --> 2764.12] I mean,
[2764.50 --> 2764.84] you should
[2764.84 --> 2765.56] extend that
[2765.56 --> 2765.94] through an
[2765.94 --> 2766.40] interface,
[2766.52 --> 2767.12] not direct.
[2767.82 --> 2768.62] And as I
[2768.62 --> 2769.16] was doing
[2769.16 --> 2769.60] that,
[2769.94 --> 2770.38] the reason
[2770.38 --> 2770.94] that I
[2770.94 --> 2771.84] realized that
[2771.84 --> 2772.44] was because
[2772.44 --> 2773.00] I had a
[2773.00 --> 2773.84] third package
[2773.84 --> 2774.42] that actually
[2774.42 --> 2775.54] did need
[2775.54 --> 2776.58] that interface
[2776.58 --> 2777.54] and it needed
[2777.54 --> 2778.24] that interface
[2778.24 --> 2778.70] to be in
[2778.70 --> 2779.34] the in-between
[2779.34 --> 2779.78] layer.
[2780.34 --> 2780.80] And then I
[2780.80 --> 2781.46] started thinking,
[2781.64 --> 2782.12] so how do
[2782.12 --> 2782.58] I make,
[2782.72 --> 2782.84] like,
[2782.88 --> 2783.42] if I wanted
[2783.42 --> 2784.02] to teach
[2784.02 --> 2784.84] somebody that,
[2785.02 --> 2785.64] how would I
[2785.64 --> 2786.70] actually do it?
[2786.96 --> 2787.22] And I'm
[2787.22 --> 2787.94] still struggling
[2787.94 --> 2788.26] with,
[2788.38 --> 2788.46] like,
[2788.52 --> 2789.08] figuring out,
[2789.16 --> 2789.26] like,
[2789.28 --> 2789.84] what is the
[2789.84 --> 2791.60] exact problem
[2791.60 --> 2792.00] with that
[2792.00 --> 2792.84] code that
[2792.84 --> 2793.36] I could tell
[2793.36 --> 2793.66] somebody,
[2793.76 --> 2793.86] like,
[2793.88 --> 2794.36] if you see
[2794.36 --> 2794.70] this,
[2794.76 --> 2795.28] then that is
[2795.28 --> 2795.78] your problem
[2795.78 --> 2796.14] and that's
[2796.14 --> 2796.36] what you
[2796.36 --> 2796.66] need to
[2796.66 --> 2797.20] change.
[2797.92 --> 2798.54] But it's
[2798.54 --> 2798.98] really funny
[2798.98 --> 2799.34] because I
[2799.34 --> 2799.84] was actually
[2799.84 --> 2800.66] writing something
[2800.66 --> 2801.66] to show
[2801.66 --> 2802.58] that it's
[2802.58 --> 2803.10] going to be
[2803.10 --> 2803.64] extendable
[2803.64 --> 2804.10] and then it
[2804.10 --> 2804.70] wasn't.
[2804.78 --> 2805.16] And then at
[2805.16 --> 2805.58] some point,
[2805.64 --> 2805.76] like,
[2805.82 --> 2807.08] I hit an end.
[2807.40 --> 2807.96] So obviously,
[2808.08 --> 2808.26] you know,
[2808.32 --> 2809.10] I fixed it.
[2809.66 --> 2810.96] But generally,
[2811.46 --> 2812.70] it's a different
[2812.70 --> 2813.60] type of language.