Skip to content
View nbugash's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report nbugash

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Simple Makefile for C Simple Makefile for C
    1
    #
    2
    # 'make depend' uses makedepend to automatically generate dependencies 
    3
    #               (dependencies are added to end of Makefile)
    4
    # 'make'        build executable file 'mycc'
    5
    # 'make clean'  removes all .o and executable files
  2. kickstart.nvim kickstart.nvim Public

    Forked from nvim-lua/kickstart.nvim

    A launch point for your personal nvim configuration

    Lua

  3. Creating a webclient bean that'll be... Creating a webclient bean that'll be used by the httpclient interface
    1
    @Bean
    2
    SimpleHttpClient httpclient() {
    3
      WebClient client = WebClient.builder()
    4
                  .baseUrl("some_url")
    5
                  .defaultHeader("Accept", "applications/json")