ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. development
    Log in to post
    • All categories
    • scottalanmillerS

      GitLab Now Integrates VS Code Into the Browser

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion gitlab vs code visual studio ide development
      9
      2 Votes
      9 Posts
      972 Views
      stacksofplatesS

      @Obsolesce said in GitLab Now Integrates VS Code Into the Browser:

      @stacksofplates said in GitLab Now Integrates VS Code Into the Browser:

      @Obsolesce said in GitLab Now Integrates VS Code Into the Browser:

      not have the typical shitty editor like GitHub has

      Huh? GitHub has VSCode as well for an editor now.

      It does? When I hit edit, it uses the shitty editor. I don't see an option for VSCode?

      Found it, "open in github.dev" does it. I never tried that option, but also it's rare I ever edit in the web browser.

      Oh I never did that method. I just hit the period button and it opens.

    • stacksofplatesS

      Functional Options In Go

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion golang development
      2
      3 Votes
      2 Posts
      446 Views
      stacksofplatesS

      So here's a playground example of using functional options and error handling: https://play.golang.org/p/cfw7axv6pjO

      The advantage over method chaining is that we can return our errors correctly this way. Using the following as an example, I can return my error the whole way to the function call in main() and only need to handle it in a single place.

      type MethodOption func(*http.Request) (*http.Request, error) func NewRequest(opt ...MethodOption) (*http.Request, error) { r := &http.Request{} var err error for _, opt := range opt { r, err = opt(r) if err != nil { return nil, err } } return r, nil } func SetURL(URL string) MethodOption { return func(r *http.Request) (*http.Request, error) { u, err := url.Parse(URL) if err != nil { return nil, err } r.URL = u return r, nil } } req, err := NewRequest( SetURL("https://google.com"), ) if err!= nil { fmt.Println(err) os.Exit(1) }
    • mlnewsM

      Microsoft continues its quest to embrace every developer with Visual Studio 2019

      Watching Ignoring Scheduled Pinned Locked Moved News visual studio development visual studio 2019 net net core winui wpf winforms
      1
      1 Votes
      1 Posts
      508 Views
      No one has replied
    • LakshmanaL

      Creating a Android app

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion android linux development
      24
      0 Votes
      24 Posts
      3k Views
      scottalanmillerS

      Yes, always make the service first, any apps come last.

    • EddieJenningsE

      In Demand Jobs / Positions

      Watching Ignoring Scheduled Pinned Locked Moved IT Careers job hunting job posting development administration
      12
      0 Votes
      12 Posts
      2k Views
      EddieJenningsE

      @scottalanmiller said in In Demand Jobs / Positions:

      aptitude

      https://www.kent.ac.uk/careers/tests/computer-test.htm Well, of the first 8 questions I was able to answer, I got them right, but since I only answered 8, I was in the 12 and below range. I guess I practice what I preach to my saxophone students. "Accuracy over speed." 😛

    • travisdh1T

      Backend development, easiest way to use separate roles correctly?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion development developer roles tracking software
      3
      1 Votes
      3 Posts
      921 Views
      momurdaM

      The hw and sw engineers here use Jira for project and issue tracking, completion.

    • JaredBuschJ

      Anyone interested in writing a NodeBB plugin?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion nodebb plugins coding development
      1
      1 Votes
      1 Posts
      902 Views
      No one has replied
    • thanksajdotcomT

      How Much Does MangoLassi Guide NodeBB?

      Watching Ignoring Scheduled Pinned Locked Moved Platform and Category Issues nodebb mangolassi development
      13
      0 Votes
      13 Posts
      4k Views
      Minion QueenM

      Thank you both that is so awesome!

    • jospoortvlietJ

      ownCloud development reports

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion owncloud php development
      2
      5 Votes
      2 Posts
      1k Views
      mlnewsM

      Makes sense, thanks!

    • mlnewsM

      How Cool is Microsoft's Community Edition of Visual Studio?

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion microsoft development visual studio infoworld
      13
      2 Votes
      13 Posts
      4k Views
      dafyreD

      @scottalanmiller said:

      Move to C#, things are even easier. BASIC language constructs are not the most clear and easy to use. It was originally designed for learning, not for using.

      And learn, I did.... So much so that when I look at code written in C#, it leaves me going: Wha? If it's Visual C#, I can poke my way around it a little bit. I'm getting better at it, but I'm generally goingto write web apps in PHP and Windows Apps (rarely written at all these days) in VB.

    • mlnewsM

      Facebook Speeds Up PHP But Needs Developer's Help

      Watching Ignoring Scheduled Pinned Locked Moved News facebook development php php 7 php 5 hhvm jit
      1
      1 Votes
      1 Posts
      1k Views
      No one has replied
    • mlnewsM

      When Developers Don't Know What a WAN Is

      Watching Ignoring Scheduled Pinned Locked Moved News infoworld best practices development networking
      1
      1 Votes
      1 Posts
      731 Views
      No one has replied
    • AmbarishrhA

      Need to setup a practical dev environment

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion development
      22
      0 Votes
      22 Posts
      6k Views
      AmbarishrhA

      @RamblingBiped I am currently checking Ansible and came back on ML to see if someone already using it. Sorry i missed your reply 🙂

    • scottalanmillerS

      Amazing Free Dev Tools for Students

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion jetbrains development pycharm clion webstorm rubymine
      4
      2 Votes
      4 Posts
      2k Views
      scottalanmillerS

      @Dashrender said:

      I've never heard of JetBrains dev tools - though maybe that's because I'm not a dev.

      They made amazing tools. For individual developers they are typically around $99 too. Not too shabby. If you are doing Python, Ruby, PHP, JavaScript or Java then JetBrains is probably the main toolmaker for you.

    • scottalanmillerS

      Enterprise Development Tools for an SMB

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion development programming software engineeri
      31
      1 Votes
      31 Posts
      8k Views
      tonyshowoffT

      @scottalanmiller said:

      @tonyshowoff said:

      @Carnival-Boy said:

      All my internal applications are written in VBScript for classic ASP. I have started a book on C# though.

      I started using Trello just for my ERP project, and yeah, I'm all about Kanban & Agile.

      C# is where it's at!

      And F#, of course.

      Not as much as D minor

    • XeLX

      Can I have some inputs on this? - Eqela

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion programming mobile app development eqela
      8
      1 Votes
      8 Posts
      2k Views
      JaredBuschJ

      @scottalanmiller said in Can I have some inputs on this? - Eqela:

      @darrel said in Can I have some inputs on this? - Eqela:

      @scottalanmiller said in Can I have some inputs on this? - Eqela:

      @RojoLoco said in Can I have some inputs on this? - Eqela:

      @scottalanmiller said in Can I have some inputs on this? - Eqela:

      @XeL it's been a while. How did your process go of getting into mobile app development?

      Looks like the made 2 accounts here, posted a video and link to gather some precious clicks, and then disappeared. Spamtastic.

      Might look that way at first glance, but XeL is, I'm pretty sure, someone that some people like @Pol and @Joy know personally.

      Yeah, @XeL is one of my devs around 2014. I think his good now, he's been a good iOS dev.

      And by the way, can somebody delete my other acocunt? I dont use @Pol anymore. I can't access my credentials when I tried using that account.

      No, we can't delete because that would cause all your posts to be disassociated.

      You chose not to delete because posts become disassociated.

      You easily could.

    • 1 / 1