본문 바로가기

카테고리 없음

2020-06-13 22시 개발자 글 모음 | "[React Navigation]Ta" 외 9개 이야기

캠핑 준비.스타필드 고양.천국이다 by 서태호

  • AWS Arch Pro
  • AWS SysOps
  • Google Pro Arch


웹서버를 엔진엑스로 교체 by 신현석 about Nginx

  • 그래서 어떻게 튜닝해야 하나 물어봤다가 그냥 엔진엑스 쓰라고 해서 아파치 대신 엔진엑스로 교체해 보기로 했다
  • htaccess 로 되어 있는 설정을 다 엔진엑스 설정으로 바꾸려다 보니 아는게 별로 없어서 엔진엑스 설정 방법도 좀 읽어보고 등등 해서 다 올렸다
  • 서버 정리하면서 느낀게 쓸데없이 돌아가고 있는게 많아서 몇가지 생각한게 회사도 아닌데 관리도 안되는 크론잡 만들지 말고 가끔 생각날 때 로컬에서 ssh로 돌리는 쪽으로 해야 겠다


삼성중공업우선주 주가 그리고 두산퓨얼셀 주가 분석 by 전재훈


    Firefox Java Coding Style by 장연철 about Java,Firefox

    • 회사가 임의로 정한 규칙 혹은 정의대로 코드를 칠 수 있게 "스타일 가이드"라는 것을 정해둡니다
    • 이를 토대로 소속 개발자들이 일관되고 통일된 스타일로 코드를 작성할 수 있을 것입니다
    • 파이어폭스는 변수나 메서드의 선언을 라인당 한 개로 정의하고 있습니다


    405. Redshift 기초 by 서태호 about SQL

    • <1> Redshift 클러스터 만들기
    • <1> Redshift 클러스터 만들기
    • <3> S3에서 Redshift로 데이터 올리기


    406. CloudFormation Designer by 서태호 about Cloud,AWS

    • Services > CloudFormation > 왼쪽 Designer > parameter 탭 > edit
    • 리소스 타입 > EC2 확장 > instance를 끌어 놓기 > 아이콘에 편집 : 이름 변경
    • <5> 리소스 속성 지정하기


    AWS EC2 인스턴스 생성 및 연결 + PERMISSIONS error by 박동건 about AWS

    • It is recommended that your private key files are NOT accessible by others
    • 대부분 최초 접속시 AWS EC2의 pem 파일 권한변경을 하지 않아서 그런 것이라고 한다
    • 위와같은 에러를 만났다면 터미널을 열어 pem 파일 경로로 이동 후 chmod 400 xxx


    [leetCode] 412. Fizz Buzz (Python) by 장동현 about Python

    • But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”
    • n+1): if i % 3 == 0 and i % 5 == 0: answer
    • append("FizzBuzz") elif i % 5 == 0: answer


    [leetCode] 136. Single Number (Python) by 장동현 about Python

    • Could you implement it without using extra memory?
    • nums: List[int]) -> int: cnt_dict = Counter(nums) items = cnt_dict
    • val in items: if val == 1: answer = key break return answer


    [React Navigation]Tab navigation by 윤해은

    • navigate ( 'Details' ) } /> ) ; } function SettingsScreen ( { navigation } ) { return ( < View style = { { flex : 1
    • View } from 'react-native' ; import { NavigationContainer } from '@react-navigation/native' ; import { createStackNavigator } from '@react-navigation/stack' ; import { createBottomTabNavigator } from '@react-navigation/bottom-tabs' ; const Stack = createStackNavigator ( ) ; const Tab = createBottomTabNavigator ( ) ; function DetailsScreen ( ) { return ( < View style = { { flex : 1
    • navigate ( 'Details' ) } /> ) ; } function SettingsScreen ( { navigation } ) { return ( < View style = { { flex : 1