lab.naminsik
  • Javascript, jQuery
  • Reactjs
  • React Native
  • iOS
  • Android
  • AWS
  • Server
  • Html, CSS
  • Php
  • asp .net
  • SQL
  • Word Press
search
keywords
  • WP Tip & Tech 2017‧07‧30

    목록 구현할 때 포스팅의 slug 값 가져오기

    <?php echo $post->post_name; ?> php로 이렇게 출력하면 슬러그(고유주소 뒤에 정의한 마지막 주소)가 노출됨.

  • Javascript, jQuery 2017‧03‧02

    자바스크립트를 이용해 위도,경도를 주소로 변환하기

    위도 경도 데이터는 있는데 이를 주소명, 지역명으로 변환하고 싶을 때 사용한다. API 키 발급과 정보 : https://developers.daum.net/services/apis/local/geo/coord2addr var lon = '경도'; var lat = '위도'; $.ajax({ url: 'https://apis.daum.net/local/geo/coord2addr?apikey=발급받은API키&longitude=' + lon + '&latitude=' + lat + '&inputCoordSystem=WGS84&output=json', type: 'GET', cache: false, context: {}, crossOrigin: true, success: function(data) { var jsonObj = $.parseJSON(data); var contentText = document.getElementById('content'); contentText.innerHTML […]

  • Javascript, jQuery 2015‧10‧17

    javascript - 주소의 파라미터값 변수로 받기

    http://werty.co.kr/blog/?userid=honggildong&age=21 이런식으로 접속 주소가 발생하였고 클라이언트단에서 위 주소를 기반으로 변수를 받아 인터렉션을 구현할 때 아래 방법을 쓴다. function getParameterByName(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), results = regex.exec(location.search); return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); }  함수를 추가한 후 아래와 같이 이용해서 값을 […]

popular

  • [회고] Github Actions가 갑자기 안된다. (Waiting for a runner to pick up this job…)
  • ffmpeg 이용해서 HLS 파일 인코딩
  • Auto Scaling + codedeploy 배포 오류 - The IAM role arn:aws: does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you are an AWS administrator, you can grant permissions to your users or groups by creating IAM policies.
  • 구글 맵 - 일정 범위 다중 마커 합산한 Cluster(클러스터) 기능
  • 동영상 스트리밍 서비스 구축 (AWS s3/cloudFront, HLS, video.js)
  • css - 크롬 position fixed 버그 해결 방법
  • JS - datepicker(jQueryUI,달력) 이용시 두개 날짜 범위 설정
  • 이미지와 텍스트 정렬 (위 이미지, 아래 텍스트)
  • SQLite- insert 후 입력한 값 받기
  • 로고디자인 - 블랙과 화이트 색상을 이용한 심플한 로고 디자인 모음

comment

  • 감사합니다!
  • 감사합니다~
  • 잘 해결 되셨다니 다행입니다!...
  • 정말 감사합니다. 덕분에 해결했습니다!...
  • 유용한정보 대단히 감사합니다....