This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Running 447.22 km βββββββββββββββββββ 9.57/h | |
| Swimming 0.00 km βββββββββββββββββββ 0.00/h | |
| Cycling 0.00 km βββββββββββββββββββ 0.00/h | |
| Last month 68.63 km 16 achievements 7:1h | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Author: Pieter Noordhuis | |
| # Description: Simple demo to showcase Redis PubSub with EventMachine | |
| # | |
| # Update 7 Oct 2010: | |
| # - This example does *not* appear to work with Chrome >=6.0. Apparently, | |
| # the WebSocket protocol implementation in the cramp gem does not work | |
| # well with Chrome's (newer) WebSocket implementation. | |
| # | |
| # Requirements: | |
| # - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>λ¨μΆURL μμ±κΈ°</title> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"> | |
| <style> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | pre > code { | |
| font-size: 1.3em; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | apiVersion: v1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: sa-admin | |
| --- | |
| kind: ClusterRoleBinding | |
| apiVersion: rbac.authorization.k8s.io/v1 | |
| metadata: | |
| name: admin-all-cluster | |
| subjects: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Java 1 hr 49 mins βββββββββββββββββββββ 32.4% | |
| YAML 1 hr 40 mins βββββββββββββββββββββ 29.8% | |
| Python 1 hr 36 mins βββββββββββββββββββββ 28.5% | |
| Other 15 mins βββββββββββββββββββββ 4.7% | |
| Groovy 13 mins βββββββββββββββββββββ 4.0% | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @Api(tags = {"1. Store"}) | |
| @Validated | |
| @RestController | |
| @AllArgsConstructor | |
| @RequestMapping(value = "/api/v1/store") | |
| public class StoreController { | |
| private static final Logger LOGGER = LogManager.getLogger(StoreController.class); | |
| private StoreRepository storeRepository; | |
| private final int RADIUS = 1000; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.aaronroh.gmoney.domain.store; | |
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | |
| import lombok.Builder; | |
| import lombok.Getter; | |
| import lombok.NoArgsConstructor; | |
| import javax.persistence.*; | |
| import javax.validation.constraints.NotNull; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.aaronroh.gmoney.domain.store; | |
| import org.springframework.data.domain.Page; | |
| import org.springframework.data.domain.Pageable; | |
| import org.springframework.data.jpa.repository.JpaRepository; | |
| import org.springframework.data.jpa.repository.Query; | |
| import org.springframework.data.repository.query.Param; | |
| public interface StoreRepository extends JpaRepository<Store, Long> { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <iostream> | |
| #include <cmath> | |
| using namespace std; | |
| typedef long double ld; | |
| ld get_m(int K, int idx, int array[]){ | |
| ld m = 0; | |
| for(int i =idx; i<idx+K; i++){ | 
NewerOlder