Live data from Hacker News

Lambda School leaked documents show poor performance over the last two years

businessinsider.com

251–260 of 412 posts

Re: Lambda School leaked documents show poor performance over the last two years

#251
post #83

Earlier quoted context omitted.

why do you feel you need a bootcamp? open a text editor and start programing

I've actually been off and on programming for a few years and have done my tour in tutorial hell on Udemy. Just thought maybe a bootcamp would give me experience programming with a team like you would at a job. I also have a unique opportunity next year where I will have 6 months off paid, which I plan to spend programming full time. Thought a bootcamp may be a good way to spend that time.

It is not a boot camp but you might want to checkout chingu.io to get some experience

Re: Lambda School leaked documents show poor performance over the last two years

#252
IAMA Former founder @ Hack Reactor, one of the larger coding bootcamps. I left Hack Reactor some time after selling to Galvanize in 2018. I now run a clean energy startup and am commenting as a bystander (no insider knowledge @ Lambda). Here are some thoughts in no particular order. Feel free to AMA as well.

0) Bootcamps are extremely sensitive to complaints to their regulators. If you are eg. seeking a refund for monies paid and have a grievance, know that forms like this [https://www.bppe.ca.gov/forms_pubs/complaint.pdf] exist for your state, and know that bootcamps will be very motivated to reconcile the matter before you fill one out.

1) Many bystanders think the ISA business model is predatory. I've seen it compared to slavery. I've talked with hundreds of low-income, high-promise people, and ISAs are 1000% more attractive to that audience than more conventional debt-like instruments, even debt-like instruments with forgiveness protocols. When people talk about what's good for low-income students, and say it's not ISAs... I don't think these people have a cohesive theory of educational access??? I can't explain it.

2) There is a lot of skepticism about the practice of hiring recent grads as alums. I think it's a good idea for prospective bootcamp students to ask a) which specific individuals with work experience will teach me, b) what kind/how much access will I have, c) can I talk to them. I will also observe that recent grads do the bulk of of non-lecture/non-curriculum work in pretty much every educational context ever. I live next to UC Berkeley, which has more graduate TAs than all other instructional staff put together.

3) This looks bad for Lambda. I hope they course-correct and I hope prospective students look at all their options. PROSPECTIVE STUDENTS: You should write off Lambda because a) you have better options, or b) because you've talked to current students, not c) because of coverage like this. I can't speak to Lambda but I can say I've read coverage like this about places that might be the best option out there for some students (eg General Assembly). Anyone who likes coding and wants to make it their job should go to the best bootcamp they can get into. It's an incredible onramp into a world of prosperity, and "worst bootcamp" is a quality designation that is close to "median university CS program" in terms of return on investment IMO.

Re: Lambda School leaked documents show poor performance over the last two years

#253
post #66

Earlier quoted context omitted.

Why not teach them functional concepts (map, filter, reduce, etc are well supported and comfortable) and leave the horrors of Js classes alone?

They run into enough problems with objectness just learning map / filter / reduce. I've seen so many angry / frustrated students trying to use a for each loop to iterate over an Array only to find that although this works in most languages, in js these just loop over the fucking KEYS of the object (which now opens up the discussion about how `obj[1]` is not a key but `obj['hey']` is a key and the differences therein.

[deleted]

Re: Lambda School leaked documents show poor performance over the last two years

#254
post #228

Earlier quoted context omitted.

You can’t compare uni and bootcamps because they’re a false equivalency as someone else pointed out. The sole purpose of a bootcamp is to get a job afterwards. That’s why they market their job placement rates so much. Uni, video courses, and MOOCs are for education. Not everyone uses them to get a job, so job placement for a video course or uni compared to bootcamp doesn’t give you much info. Anecdote: I did a self-p…

The only people to who can afford to go to school to broaden their education without a clear job benefit are those born rich. In other words, the people who used to go to college pre 1970s.

> The only people to who can afford to go to school to broaden their education without a clear job benefit are those born rich.

I respectfully disagree.

I've spent an enormous amount of time inside universities (as both a student and employed as an engineer). The vast majority of students have no clear job benefit at the end of their degree.

Most students are studying something with no obvious job correlation. The largest schools at most second/third rung universities in the western world are humanities (which I'm not knocking, but the employment rate for these degrees into related roles is abysmal).

Honestly, it's really sad to see. I've spoken with countless third year humanities/law students that are completely lost and have no idea what to do as graduation approaches (about 20% of law graduates at my last uni went on to practice law). Oh, and they're crippled with debt (in both Australia and the US).

In my experience, the worse off the student, the more likely they were to study something with poor career outcomes (one of the worst offenders was the bachelor of business, which was a popular choice for students hoping to escape the lower/middle class but had atrocious outcomes). I chalked this up to fewer educated role models when they were growing up.

HN is fairly skewed towards tech. The tech-related courses (CS, EE, etc) have great employment prospects, but they're the outlier.

Re: Lambda School leaked documents show poor performance over the last two years

#255
I liked this article a lot because it provided many perspectives. So here's mine, as a Lambda grad. Mileage may vary.

For smart poor folks, Lambda School is a pure good.

I come from a blue collar background, I have no college or university degree, and enough debt to make liberal arts student blush. Before Lambda I was able to slowly chip away at that debt by working outside from the literal dawn to dusk, Monday through Saturday, rain, shine, snow. This was horrible both for my body and my family. We decided to try Lambda and it worked. I'm gainfully employed as a developer for a large company, we have health insurance, and I have double digit hours to spend with my family. Sounds like a fairy tale straight outta Austen's book I know. But I tell you this as background, not as the reason why Lambda's good.

The reason I was willing to take the risk at all is because of the ISA. There is no way under my previous circumstances I would have done anything like taking 9 months of work to study without a walk away free card. Before attending Lambda I read every bad review I could find, parsed the complaints, cross-referenced the news articles and comments, and decided "good enough". Worst case scenario I'd waste a few months learning enough to play around with and go back to back breaking labor. Debt-free. But what about being owing them money for a dev career that they didn't deliver?

If I had a dev career, Lambda earned my money, because I sure didn't have one before. Your case may be very different, if you're a great auto-didact, forget Lambda, you can do anything you set your mind to all alone and with full freedom. But I'm not. I know I procrastinate, I can get demotivated, I can get sidetracked, I overplan, I underplan. So I chose Lambda, let them handle the schedule, the planning, and the social proof. More importantly, there was only upside. Of course if someone is already highly compentent dev, Lambda makes no sense, at least not as currently structured. But even a competent dev could benefit from the career services, I certainly did.

Lambda has plenty of room to improve, but as a safeish ladder out of lower income drudgery and into skilled modern work it's good enough.

Re: Lambda School leaked documents show poor performance over the last two years

#256
post #66

Earlier quoted context omitted.

They run into enough problems with objectness just learning map / filter / reduce. I've seen so many angry / frustrated students trying to use a for each loop to iterate over an Array only to find that although this works in most languages, in js these just loop over the fucking KEYS of the object (which now opens up the discussion about how `obj[1]` is not a key but `obj['hey']` is a key and the differences therein.

I wonder if there would be a market for a "stricter mode" version of JavaScript that simply does not allow you to use the legacy features that are so quirky. Eg just disallow for...in to be used at all (but allow for...of) No iterating over objects except via eg Object.entries No inheriting objects from other objects (ie no prototypal inheritance) No var No anonymous functions (ie only named function declarations or…

these should be expert mode only features that have to be unlocked as opposed to default. So easy to shoot yourself in the foot. Kinda fun if you've been doing it for a while though.

Re: Lambda School leaked documents show poor performance over the last two years

#257
post #70

I was at Lambda when they announced the switch from 9 to 6 months and the elimination of paid team leaders. The feedback was universally negative. In a channel for open student discussion, Austen Allred deleted a poll from Slack because of how lopsided the reaction was. He explained the deletion by saying the poll was "misleading." Students then got a survey "explaining" why the change was actually a good thing by as…

I'm extremely skeptical of bootcamps, especially after learning that some of the TA's at Lambda are hired to help with teaching as little as two months into the program as students[0]. I guess that counts toward their "placement" stats! Not only that, but Lambda seems so desperate that they will offer a fresh grad at no cost to any company for a 4 week trial period. [1] I don't think I've seen a single hire out of a…

I've worked with and hired a bunch of fantastic bootcamp grads without STEM degrees. There are plenty of them out there.

My own brother is one such story, and within 5 years in the industry, he became a manager and now runs engineering at a small startup. He did have programming familiarity before his bootcamp, which helped him make the most of the bootcamp, but zero prior formal training or professional experience.

That said, my brother also reported that the majority of his class didn't seem to be really on top of the material, and I wouldn't doubt that that's typical.

Re: Lambda School leaked documents show poor performance over the last two years

#258
Having worked in a similar space/company, there are a few fundamental flaws in the business model that make me very bearish on companies like Lambda:

1/ Taking VC money requires hyper growth. That’s fine if your product is software where the marginal product gets better over time. In their model, you get the early adopter students, who are talented/motivated and juice up the placement stats. But after some critical mass, the marginal student is not as talented or as motivated. It pushes the company to lower its bar and erodes the overall experience for everyone. Same thing happened to General Assembly.

2/ Iterating your business model and making tweaks to the product is fine when you’re dealing with software. It doesn’t go well when you’re dealing with students. People inherently don’t like change. They have feelings and don’t like being lied to. Sure, some people will drink the typical rah-rah startup Koolaid, but over time, most people will see right through it and will assume that management is either incompetent or lying (or both). It’s especially bad when companies use the “do things that don’t scale” PG motto. That’s fine in software but in education you die through death by a thousand cuts when your unit economics don’t work and you need to fix them in a way that deteriorates the student experience.

3/ ISA’s, like communism, sound nice in theory but don’t work at scale and in practice. They’re essentially unsecured student debt. Even student debt — which has long arms and can garnish wages for nonpayment has recently taken a hit from loan forgiveness. ISA’s have none of those protections. They’re also tied to a student’s performance and career luck — which has many factors outside the quality of education. Student debt doesn’t care how motivated you are or how unlucky you are — the security holder must get paid. In ISA’s the security holder is stuck with an IOU that may never get paid.

Education sorely needs reform but I don’t think Lambda is the way. Entrepreneurs also need to think about it a bit differently than how normal startups are built. The software model doesn’t translate well.

Re: Lambda School leaked documents show poor performance over the last two years

#259

Earlier quoted context omitted.

Interestingly enough, all of these comments could have been said about my experience at $BOOTCAMP that I attended and then was later hired at as a mentor. The degradation of quality from the removal of human presence is a common narrative, and the students react to it so much more than management ever realizes. > at no point did I feel like Lambda at its top level prioritized student wellbeing over PR, costs, or metr…

Every time I’ve seen a company bought by private equity, it spells the beginning of the end. The strategy always seems to milk every last drop of cash from the business, without any long term sustainable plan. As an anecdotal case, I visited Sea World over the summer and half the concessions and shows were closed. It was still expensive and crowded and and there were service bottlenecks everywhere. Long lines for a b…

Beginning of the end happened before that because most healthy companies don’t need private equity unless they need a lot of cash for an expansion.

Part of the reason they got in that position is that they were charging to little to make money. It only follows that prices will go up and probably service down as the company stressed customer service in the hopes of attracting better future capital.

Re: Lambda School leaked documents show poor performance over the last two years

#260
post #212
post #51

Earlier quoted context omitted.

This one particular student sticks with me. He was in his 60s-70s, and had a burgeoning career in IT/Security in the late 90s, but quit his job to take care of his ailing mother around 2001 or so. He took care of her, living off of her reverse mortgage for 20 years, but now she has passed away, and the term of the reverse mortgage ends soon (or I believe by now has ended) so the bank will be re-posessing his house, h…

Same story in most western countries by now, stumble once and you're fucked for life. And to add insult to injury, people will rather think you deserve it than face the fact that we're all in the same stinking boat.

Not working for twenty years (in the prime time for earning money) is not "stumbling once".
Post reply on HN