Chain Of Responsibility in Python…

In this design pattern, there are some sorts of executors of a command tied in a chain – at different levels. Depending upon the complexity of the task, the command is handled at different levels. Each receiver is well aware of if he can handle the command. If he can’t he simply passes the buck…

Read More

[Boost] – DEV Community

Dropdown menu Dropdown menu Skip to content Navigation menu Add reaction Jump to Comments Save Boost n8n and Bright Challenge: Unstoppable Workflow Sign in to view linked content Top comments (0) Follow Just a curious frontend developer learning in public We’re a place where coders share, stay up-to-date and grow their careers. Source link

Read More

geolocation 이용한 위치정보 – DEV Community

if (navigator.geolocation) { // GPS를 지원하면//navigator.geolocation.watchPosition(function(position) { //위치정보를 계속해서 관제navigator.geolocation.getCurrentPosition(function(position) { //단발성으로 현재 위치값 var latitude = position.coords.latitude; // 위도 var longitude = position.coords.longitude; // 경도 var xhr = new XMLHttpRequest(); //결과를 받아오기위한 xhr객체 선언 var formData = new FormData(); //POST로 보내기 위한 폼데이터 객체 formData.append(‘latitude’, latitude); //위도 객체 추가 formData.append(‘longitude’, longitude); // 경도 객체…

Read More