Seenthis
•
 
Identifiants personnels
  • [mot de passe oublié ?]

 
  • #c
  • #co
  • #cod
RSS: #coding

#coding

  • #codingjam
  • #codingisfun
  • #coding-party
  • #coding-style
  • #coding-goûter
  • #coding-lessons
  • #coding-language
  • #codinghorror
  • #coding_gouter
  • #coding_standards
  • #codingbootcamp
  • #codingconventions
  • #codinggouterlillois
0 | 25 | 50
  • @olange
    Olivier Lange @olange CC BY-SA 7/06/2019

    GitHub Package Registry — Your packages, at home with their code
    ▻https://github.com/features/package-registry #coding #alm

    « With GitHub Package Registry you can safely publish and consume packages within your organization or with the entire world. »

    • #Github
    Olivier Lange @olange CC BY-SA
    Écrire un commentaire

  • @olange
    Olivier Lange @olange CC BY-SA 7/06/2019

    About GitHub Package Registry
    ▻https://help.github.com/en/articles/about-github-package-registry
    #coding #alm

    • #Github
    Olivier Lange @olange CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 13/04/2019

    How Tran Got Her Internship at the Explore #microsoft Internship Program After Attending Only One…
    ▻https://hackernoon.com/how-tran-got-her-internship-at-the-explore-microsoft-internship-program-

    https://cdn-images-1.medium.com/max/1024/1*2DPNpStBrpShnumP2Nh_qA.jpeg

    How Tran Got Her Internship at the Explore Microsoft Internship Program After Attending Only One Semester of Computer ScienceBy Flora QuIf you want to gain some product management experience, along with a software development opportunity, at one of the largest Tech companies, I recently found the Explore Microsoft Internship program would be a good choice..To learn more, I interviewed Tran Le, a student at Grinnell college, who is an upcoming intern there. Three semesters ago, Tran was an Economics major. What made her decide to transfer, and how did she get her internship among the strong competition after such a short period of time?Why She Transfered from Economics to Computer ScienceTran grew up in the city of Huy in Vietnam, where traditionally girls study social sciences in college. (...)

    #coding #software-development #product-management #internships

    • #Microsoft
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 8/04/2019

    AMA with Jeff Atwood (@codinghorror) at Noon PST Today
    ▻https://hackernoon.com/ama-with-jeff-atwood-codinghorror-at-noon-pst-today-2433e74a1897?source=

    https://cdn-images-1.medium.com/max/1024/1*He8KLCFt2fgBRij7kghfNA.jpeg

    Jeff Atwood is the co-founder of Stack Overflow and Discourse. Ask him anything @ Noon PST today! This is the first AMA in the Hacker Noon community.In Jeff’s words:I co-founded Stack Overflow in 2008 which ultimately became the Stack Exchange network of Q&A sites. After leaving SO in 2012, I started working on Discourse, an open source forum software, and that’s what I still work on today.I will be answering your questions live (at noon pst). Very excited that we are doing this here on Hacker Noon’s Discourse instance. I heard it’s pretty great.Feel free to add this to your calendar or ask a question below. Talk soon!Join the AMA.To nominate yourself or someone else for a Hacker Noon AMA, direct message me on Twitter or Hacker Noon.AMA with Jeff Atwood (@codinghorror) at Noon PST Today was (...)

    #hackernoon-ama #codinghorror #tech-ama #hackernoon-jeff-atwood #jeff-atwood

    • #stack exchange
    • #Jeff Atwood
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 1/04/2019

    Moving at the Speed of Innovation: dry.io
    ▻https://hackernoon.com/moving-at-the-speed-of-innovation-dry-io-94405d9d3f82?source=rss----3a81

    https://cdn-images-1.medium.com/max/1024/1*WGhOf3R4Cpk4ykLy7Q2o8Q.png

    Think fast. I don’t mean fast like a trip on a Japanese JR-Maglev bullet train or the dive of a Perigrine Falcon. Nor do I mean fast like the 30 minutes it took for Pebble Watch to raise $1 million on Kickstarter. Think faster. Think about the speed of innovation in today’s world. Think about how many startups are formulated within the minds of new computer science majors at the dorms of Cal. Think about apps being designed at the seemingly infinite amount of techie-targeted cafes in Silicon Valley. There will never be a lack of ideas in our technology dominated world. The puzzle lies in #development and execution of these ideas. How can software development keep up with the speed of innovation?Let’s consider Uber. Its democratization of a heavily regulated industry in ridesharing helped (...)

    #user-centered-design #coding #engineering #startup

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 31/03/2019

    Let’s Make Our Bundle Size Even Smaller
    ▻https://hackernoon.com/lets-make-our-bundle-size-even-smaller-7a5727bb110?source=rss----3a8144e

    https://cdn-images-1.medium.com/max/1024/1*SpAN7DL4gLUMumCj63WBGA.jpeg

    If you ever developed a SPA (Single-Page-Application), where ever it was on Angular, #react, Vue or something else, You probably noticed that all the hard work you’ve put into your app goes to one minified .js file and one .css file. Those files contain all your dependencies and functionalities of the app.sometimes, those files could become quite big and increase the loading time of your app this something I stumbled upon during my work.With #webpack for example, the files are made after “Tree-shaking “ and Uglify.Tree-shaking is the process of removing all the unused function and variables from the code, which makes our app a lot smaller (basically we only use a small part of our dependencies and a large part of the code isn’t even being called).Uglify (as it sounds like) is the process of (...)

    #javascript #npm #coding

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 28/03/2019

    Graph Theory — Graph Data Structures and Traversal Algorithms Made Easy
    ▻https://hackernoon.com/graph-theory-graph-data-structures-and-traversal-algorithms-made-easy-28

    https://cdn-images-1.medium.com/max/337/0*gTfX-M9m0IfO6lyw.png

    Graph TheoryGraph Data Structures and Traversal Algorithms Made EasyThe graphs in computer software are a little different from the bar graphs in high school. Sure, they are still a mapping of relations just represented differently. Graphs can actually help solve a really large number of problems. They can be used to solve problems in social networking, eg. finding relations between friends or friends of friends or in GPS navigation, finding an optimal route from your house to the nearest shopping center. Graphs are used regularly in robotics and AI, for example, sometimes for maintaining all the possible states a robot is allowed to be in (so they don’t break stuff or move through walls). They’re great for scheduling problems, like when to schedule traffic flow (which can be solved with (...)

    #programming #coding #graph-theory #code #software-development

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 10/03/2019

    The Coder’s Axiom
    ▻https://hackernoon.com/the-coders-axiom-7881e88d495d?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/544/1*G1pjV7pxXBJcTOymKyCXZg.jpeg

    What if there was a way to remove opinions and personal preferences from the equation and unambiguously determine what code is better given two competing solutions?The only thing that developers have to agree upon is the axiom itself. With unanimity reached on this single point, mountains of subjective discussions suddenly become irrelevant and valuable time is reclaimed.Deference to unwanted authority is unnecessary as we make progress to a decentralized world.A handrail becomes available for developers to help them make countless decisions throughout their days. The haunting feeling of uncertainty is replaced with welcomed confidence.I came up with this idea about 5 years ago and it has withstood intense scrutiny from developers and architects at various companies since then. I (...)

    #software-architecture #computer-science #coding #code-review #programming

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @clx_asso
    clx_asso_fr @clx_asso CC BY-SA 6/03/2019

    Atelier python au Blenderlab Fablab : Ce mercredi soir de 19h à 21h au blenderlab, on code son site web en #python. #codingisfun #codeismylife #learntocode #flask #diy…
    ▻https://www.instagram.com/p/BupA8EtnG8i

    Ce mercredi soir de 19h à 21h au @blenderlab, on code son site web en #python. #codingisfun #codeismylife #learntocode #flask #diy #apprendreacoder #Lille ▻https://www.blenderlab.fr/evenement/atelier-coding-cours-du-soir-2019-03-06

    clx_asso_fr @clx_asso CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 1/03/2019

    Zero-Knowledge Proofs: A Layman’s Introduction
    ▻https://hackernoon.com/zero-knowledge-proofs-a-laymans-introduction-e9c1f50208e8?source=rss----

    https://cdn-images-1.medium.com/max/900/1*ohGcTYWcVHeqwsksMFp-YA.png

    Alex has dedicated more of his time to create an article where he is giving an introduction to what ZK-SNARKs are. We encourage you to have a read and leave a comment if you find it useful.For the past months, I’ve been immersed daily in a thrilling and cutting-edge world: that of Zero-Knowledge (ZK) proofs. It is a challenging field, and because of that, one I explore with great enjoyment.Today, I will talk a bit more about this quest of mine. The end goal is to implement a practical prototype that Artos (my employer) can use in their ticketing solutions for the Aventus protocol. I am not concerned with the final usage, for now, only with the ZK technology itself: what it is, what we can do with it and some of the tools available out there.Zero-Knowledge ProofsIn my experience, people (...)

    #cryptography #zksnark #coding #zcash #blockchain

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 28/02/2019

    #programming Languages for Blockchain Solutions Developing
    ▻https://hackernoon.com/programming-languages-for-blockchain-solutions-developing-69df215147af?s

    Blockchain is becoming so popular that finally, we can safely say: technology has emerged from the “cryptocurrency boom” shadow. Today, news headlines are increasingly filled with messages about the technology distributed registry implementation in one or another area. Such success attracts the developers` attention of course. At the same time, the demand for professionals continues to grow. For example, according to the LinkedIn investigation, over the past year in the US need to blockchain developers has increased in 33 (!) Times.If you are ambitious to break into the rating of top blockchain gurus, but still only at the beginning of your career, it is worth understanding the most popular programming languages, their advantages, and disadvantages, as well as to learn about their (...)

    #coding #golang #solidity #javascript

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 25/02/2019

    Automate Your Workflow with #git Hooks
    ▻https://hackernoon.com/automate-your-workflow-with-git-hooks-fef5d9b2a58c?source=rss----3a8144e

    https://cdn-images-1.medium.com/max/1024/1*Y1iDclyih0VroVGqzdewhA.png

    Git hooks are one of the most underrated git features, and have the potential to increase your productivity as a developer. Have you ever wanted to run a command every time you commit or push? Lucky for you, that’s exactly what git hooks do — they’re custom scripts that run before or after git commands to automate manual tasks. Read on to find out how hooks could improve your workflow.Why use git hooks?I came to learn about hooks after embarking on a quest to automate my own workflow. You see, for better or worse, I make use of FIXME: comments in my code to remind myself to revisit something. My usual process involved doing a global search for “FIXME:” before committing, however I’m sure you can already see plenty of room for human error.Hooks came to my rescue. I was able to create a simple (...)

    #developer-tools #tech #github #coding

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 14/02/2019

    The 7 Deadly Sins Of #programming
    ▻https://hackernoon.com/the-7-deadly-sins-of-programming-a7574efc639f?source=rss----3a8144eabfe3

    https://cdn-images-1.medium.com/max/1024/1*tz58NuOcsP278JpoZAke_Q.jpeg

    Is there anything more fascinating than creating something with your own hands? Watching your creation come to life slowly and slowly? We humans, above everything else, are creators.But in this digital age, the way we create has changed. Most of us now create digitally. We create software and websites to do our bidding. Though our creations may no longer depend on our creativity, we can still get the same high #coding that a potter gets while moulding a vase.The modern programming world has expanded widely giving us a wide choice of options to chose from. Want to work on functional programming or object-oriented programming? You got a choice. Want to work server side or client side? You got a choice. Oh, so you have decided? Here are a 100 programming languages and libraries you can use (...)

    #life-lessons #software-development #hackernoon-top-story

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 13/02/2019

    #mpi workloads performance on #mapr Data Platform Part 2 — Matrix Multiplication
    ▻https://hackernoon.com/mpi-workloads-performance-on-mapr-data-platform-part-2-matrix-multiplica

    https://cdn-images-1.medium.com/max/383/1*lNPotf8xsD4fbiQIZCAuDA.gif

    MPI workloads performance on MapR Data Platform Part 2 — Matrix MultiplicationIn the first part of this series, we showed how we can use MPI on top of the MapR Data Platform to successfully find prime numbers within a rather large range. Also, we compare our Sieve of Eratosthenes implementation in MPI and the same algorithm in #spark just to discover how they both behave while looking at some interesting implementation details.In the second part of the series, we are going to implement Matrix Multiplication in both, MPI and Apache Spark. Again, we will look at how each implementation behaves when running on MapR. However, our MPI implementation will be based on Cannon Algorithm while in Spark we will use the MLlib BlockMatrix functions for multiplying matrices.Cannon AlgorithmThere is (...)

    #coding #big-data

    • #Matrix
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 11/02/2019

    JSON Web Tokens (JWT) Demystified
    ▻https://hackernoon.com/json-web-tokens-jwt-demystified-f7e202249640?source=rss----3a8144eabfe3-

    https://cdn-images-1.medium.com/max/1024/1*zDUa3wiFQft0ILDZJfn9JQ.png

    JSON Web Token (JWT, often pronounced “jot”) is a powerful tool for confidently transmitting data between two parties through tokens. These parties can consist of users, servers, or any other combination of services. Based on an open standard (RFC-7519), JWTs are digitally signed with an encryption algorithm, so the receiving party can trust the information contained within. In computer #security this concept is known as Data Integrity.One main benefit of using a #jwt is that it’s very compact (assuming the issuer uses JWS Compact Serialization, which is recommended). They are generally small enough to be sent through a POST request, in an HTTP Header, or even as a query string within a URL. However, the more claims you add to a JWT, the more bloated it becomes. You could theoretically (...)

    #coding #json-web-token #nodejs

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 2/02/2019

    7 Common Web Development problems which every developer from Beginners to Experts should know [with…
    ▻https://hackernoon.com/7-common-web-development-problems-which-every-developer-from-beginners-t

    7 Common Web Development problems which every developer from Beginners to Experts should know [with multiple solutions]Web Development can be a complex task because it involves working in many technologies and languages like #html, #javascript and PHP, ASP.NET, My SQL and AJAX. There can be some problem where you can get stuck from a few hours to a few days. It may be very frustrating since there happens to be no place to go, and find your solution. In my web development career I happened to stuck on many problems but fortunately I got their solutions on time.I therefore decided to write this tutorial to point out 5 Common Web Development problems which every Beginner, intermediate or Expert developer should know to solve. So without wasting any further time let us start with them one by (...)

    #coding #programming #web-development

    • #ASP.NET
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 28/01/2019

    Work Day Optimization: Write Code as Early as You Can
    ▻https://hackernoon.com/work-day-optimization-write-code-as-early-as-you-can-c6da1e57bafd?source

    https://cdn-images-1.medium.com/max/1024/1*Ueqlbt_qHom00n87sDLdWw.png

    Do you dedicate your first working hour to code, or do you waste it reviewing your to-do list and responding to Slack messages?I often find that the longer it takes me to get to my most important tasks for the day, the less I accomplish by the end of the day.One of my favorite blog posts is “Fire and Motion” — an open admission by Joel Spolsky about days where he felt unproductive as a programmer. In his blog post, Spolsky writes:Once you get into flow it’s not too hard to keep going. Many of my days go like this: (1) get into work (2) check email, read the web, etc. (3) decide that I might as well have lunch before getting to work (4) get back from lunch (5) check email, read the web, etc. (6) finally decide that I’ve got to get started (7) check email, read the web, etc. (8) decide again (...)

    #coding #self-improvement #write-code-early-in-day #productivity #software-development

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 25/01/2019

    Demystifying Registers
    ▻https://hackernoon.com/demystifying-registers-23dea1e83702?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/960/0*SNwKxwWktRvsFrqT.jpg

    Let’s go under the hood and learn about registers.Registers are internal memory storage locations the processor utilizes to more efficiently process data. If not for registers, the processor would be forced to interact with the control bus anytime it wanted to read or write data from memory.Registers are similar to variables, except there are a fixed number of registers on any given architecture. Registers store data elements for processing without having to dive deep and access the memory. More specifically, each register is a special location in the CPU where a single piece of data is stored. Often, registers hold pointers which reference other locations in memory — and movement of values between registers is very common. There are ten different registers in the 32-bit IA-32 (...)

    #programming #assembly-language #what-are-registers #demystifying-registers #coding

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 22/01/2019

    What To Learn From Marie Kondo About Software #consulting
    ▻https://hackernoon.com/what-to-learn-from-marie-kondo-about-software-consulting-35944d24f7fe?so

    https://cdn-images-1.medium.com/max/1024/1*xBbWlBQBL3jeocSS8tWzCw.jpeg

    Have you seen Marie Kondo’s new Netflix show, Tidying Up? I have, and I love it.I work as a software developer consultant at Stride. My job is to go into companies, join their engineering teams, and help them build better software and processes. So what could Marie Kondo, organization consultant, have to teach me?There is a moment in the show when Marie is helping a family clean up their kitchen cabinets. She pulls out a silver cup. The wife explains that it is an engraved sippy cup given to the husband by his godmother. The wife says, “We asked him, ‘Will you drink out of it?’, and he’s like ‘Yes! Yes!’ and we’re (the rest of the family) like rolls eyes”.How does Marie respond? Does she roll her eyes or pinch her lips together in a sarcastic smile? No! She says, “Let’s make this a decoration (...)

    #coding #software-development #konmari #marie-kondo

    • #Netflix
    • #Marie Kondo
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 21/01/2019

    Organizing Your #react + #redux Application’s Codebase for Future Maintainability and Extensibility
    ▻https://hackernoon.com/organizing-your-react-redux-applications-codebase-for-future-maintainabi

    https://cdn-images-1.medium.com/max/1024/1*0e6fFQQRvkZ1LkeAHAMx7w.jpeg

    As the scope, size, and feature set of your React + Redux application grows, so does the pain of maintaining it, especially when you’re working with a big team, and multiple people work on each feature in your application. In this article, we are going to be exploring how to organize your codebase, to increase maintainability and extensibility.When you first start writing a new React application, the feature set is small, and the React API is simple, yet flexible and powerful enough to handle state management. Eventually however, your application grows bigger, and the shortcomings of React’s setState at handling state management for larger applications become obvious, in a painful manner.So you do a bit of research and figure out Redux is your best bet at handling the growing state (...)

    #javascript #coding-style #react-and-redux

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 20/01/2019
    2
    @sandburg
    @recriweb
    2

    How to approach any #coding problem?
    ▻https://hackernoon.com/how-to-approach-any-coding-problem-9230f3ad6f9?source=rss----3a8144eabfe

    https://cdn-images-1.medium.com/max/1024/1*lkGrbFEvhzK-qqhLaSx6gg.png

    “First, solve the problem. Then, write the code.” — John JohnsonWhenever any coding problem is given, by basic instincts most of the people follow some predefined steps which allows them to approach that problem effectively. Knowingly or unknowingly, even you might be following some of these steps when you are given any question unconsciously, but after reading this article you will try to relate to these amazing steps and you’ll be able to solve the problem more effectively. So in this article, I am going to discuss 5 steps that you can take while solving any coding question ✨The world requires devs, why should I spend time on Competitive #programming?Being a developer myself, I found that most of the developers out there (including many “very” skilled devs), are not that good when it comes to (...)

    #any-coding-problem #development #problem-solving

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 15/01/2019

    Top 10 #javascript Trends to Watch in 2019
    ▻https://hackernoon.com/top-javascript-trends-to-watch-in-2019-3ff6dd3cbf48?source=rss----3a8144

    https://cdn-images-1.medium.com/max/1024/0*uckb9A5741LidYZ7.png

    Take a deep breath. 2018 is over. If you’ve been buried up to your neck in projects, this article will bring you up to speed with the biggest JavaScript developments of 2018, and some predictions as to what 2019 will bring.You can use this to understand which frameworks would be good to learn next. And if you want even more context, have a look at last year’s JS Trends post.React vs Vue (oh, and Angular Too)Facebook had its worst year ever politically, but you wouldn’t know it by looking at React. The front-end framework is still by far the most dominant of all frameworks, and it’s still the most-loved too.React introduced a new context API, more accurate error reporting, and Hooks, a feature where you can use state and other React features without writing a class (currently in beta).That’s (...)

    #web-development #javascript-trends #software-development #coding

    • #REACT
    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 14/01/2019

    Progressive Web Apps (PWAs) FTW — Pt. 2
    ▻https://hackernoon.com/progressive-web-apps-pwas-ftw-pt-2-31c2779e55c4?source=rss----3a8144eabf

    https://cdn-images-1.medium.com/proxy/1*oGZniVn0jfVzLYkNgX4dQA.png

    Progressive Web Apps (PWAs) FTW — Pt. 2IntroductionIn part 1 of this series we looked at what Progressive Web Apps are and discussed how they can improve user experiences in mobile web. These articles are based on the talk I gave at the Reversim Summit. If you prefer to watch the video you can see it here:▻https://medium.com/media/2c31b3cbe49e18762f4820b486c62234/hrefLet’s continue where we left off last time and dive into Web Workers. Web Workers are the core technologies that enable PWAs.Web WorkersIf you’ve worked a bit with #javascript before you may have noticed that it is single threaded. This is evident if you do any expensive computations on the client side. In these cases the page becomes unresponsive until the script running the computations is finished. A web worker comes to solve (...)

    #web-development #coding #pwa #progressive-web-app

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 11/01/2019

    Software Development #bootcamp Survival Guide
    ▻https://hackernoon.com/software-development-bootcamp-survival-guide-636d725ac253?source=rss----

    https://cdn-images-1.medium.com/max/1024/1*LJByWC4b9eGioWhufgBmtQ.jpeg

    Teaching Web DevelopmentAfter training 100s of developers at multiple bootcamps, I believe it is my responsibility to share my learnings on what makes an excellent student and what steps you can take to survive and thrive in an intensive software development bootcamp.Before I dive into the main content here is a little background. I teach web development bootcamp in Houston for DigitalCrafts. The length of the bootcamp is 16 weeks. The students at bootcamp come from different backgrounds. Some students just graduated college while others have been working in different fields for few years. Needless to say most of the students have little or no prior #programming experience.PreparationAfter you have applied and got into a bootcamp don’t just sit and wait for the bootcamp to start. Use (...)

    #technology #software-development #codingbootcamp

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

  • @hackernoon
    Hacker Noon @hackernoon CC BY-SA 10/01/2019

    Set up #eslint in Atom
    ▻https://hackernoon.com/set-up-eslint-in-atom-83dfb3d34fdf?source=rss----3a8144eabfe3---4

    https://cdn-images-1.medium.com/max/1024/1*JSK29tJmY2hyGS9xDOGkzg.png

    Atom LogoSo you set up ESLint, either globally or in specific projects, but you can’t get the warnings to show up directly in Atom? You’ve come to the right place.Install linter-eslint + peer dependencies$ apm i linter-eslint linter linter-ui-default intentions busy-signalCustomize ESLint SettingsOpen Atom’s Preferences to see your Packages. Under Community Packages, open linter-eslint’s settings and make the below changes.Don’t Point to Global (do the opposite if you want global)Check “Disable when no ESLint config is found” (Disabling)Uncheck “Use global ESLint installation” (Global ESLint)Silence Some Rules While Typing (optional)Check “Ignore fixable rules while typing” (Automatic Fixes)Fix on save (optional)Check “Fix errors on save” (Automatic Fixes)NOTE: you must disable/uninstall any other (...)

    #javascript #web-development #programming #coding

    Hacker Noon @hackernoon CC BY-SA
    Écrire un commentaire

0 | 25 | 50

Thèmes liés

  • #programming
  • #software-development
  • #javascript
  • #web-development
  • #python
  • industryterm: software
  • city: lille
  • #codingbootcamp
  • #lille
  • #development
  • #technology
  • #spip
  • #coding_standard
  • #php
  • #dev
  • #clevermarks
  • position: programmer
  • #python3
  • #codinggouterlillois
  • emailaddress: coding-gouter-lillois+subscribe@googlegroups.com
  • company: github
  • #big-data
  • #git
  • #tech
  • #spark
  • #alm
  • technology: json
  • #html
  • #edtech
  • #programming-languages
  • technology: java
  • programminglanguage: java
  • #java
  • programminglanguage: python
  • position: tutor
  • #informatique
  • industryterm: codingbootcamp software
  • #learn-to-code
  • #scala
  • #computer-science