728x90
반응형

나도 긱워커가 되어볼까?

1. 전문지식이 있다면?

정규직 채용이 부담스러운 스타트업 수요와 투잡을 하고 싶어하는 전문가들의 공급이 만나 탄생한 서비스들이 있어요. 개발자, 기획자, 디자이너처럼 특정 분야의 전문 인력이라면 퇴근 후 하루 2~3시간 근무를 통해 월 200~400만원의 추가 수입을 벌 수 있어요.

원포인트: 프리렌서 마케터 매칭 서비스로 서류(경력, 이력, 과거 성과 정보)를 제출하고 역량 평가와 심층 면접을 진행 후 원포인트와 계약을 체결해요. 매칭은 원포인트가 직접해주고, 재직자여도 지원가능하고 유연근무가 가능해요.

디오: 빅테크 개발자, 마케터, 디자이너, PO를 위한 사이드잡 플랫폼이에요. 경력을 입력하고 포트폴리오를 업데이트하면 공고에 맞는 일을 매칭해줘요. 단기 프리랜서 고용보다 장기적으로 한 사업과 계약 후 활동해요.

2. 자투리 시간을 활용하고 싶다면?

더벌자는 인공지능기반으로 아르바이트를 찾는 플랫폼이에요. 구직자에게는 파트타임 일을 구할 수 있는 앱이에요. 원하는 맞춤조건(장소, 시간, 소득 등)만 입력하면 최적의 공고를 안내해줘요. 지금 보고 있는 공고와 함께 시간이 겹치지 않고 같이 일할 수 있는 공고도 함께 안내해줘요.

긱플은 초단기 노동자, 긱워커와 기업을 매칭해주는 HR플랫폼이에요. 단기라는 키워드 때문에 종종 프리랜서 플랫폼과의 차이에 대해 문의가 들어오는데 프리랜서는 본인이 가진 기술(전문지식)을 기반으로 일이 매칭된다면, 긱플에서는 30분~2시간 교육을 받으면 누구나 참여할 수 있는 업무를 찾을 수 있어요.

은 프랜서 고용 사이트인 크몽에서 출시한 아르바이트 전문 플랫폼이에요. 하루이틀짜리 단기알바(작업보조, 행사판촉, 사무보조, 매장관리 등)를 매칭해주는 앱이에요. 최저시급 1만 원 이상의 단기 일자리를 소개해줘요.

이지태스크는 단순사무직, 자료 입력, 문서편집과 같은 온라인 사무 보조 업무를 연결해주는 플랫폼이에요. 실무 서포팅 수준의 사무 업무일로 누가 하더라도 비슷하거나, 동일한 결과물을 낼 수 있는 업무를 해요.

업무 프로필(학력/사무능력/프로그램역량/업무가능일정/자격증 등)을 등록 후 이루미 업무 교육 및 테스트까지 완료하시면 활동 가능해요.

3. 나만의 재능이 있다면?

크몽, 숨고, 긱몬, 탈잉, 프립, 오투잡 등 다양한 플랫폼들에서 재능을 원하는 사람과 재능을 필요로 하는 사람들의 매칭이 이루어지고 있어요,

 

https://www.etnews.com/20231006000208

 

퇴근하고 두 시간 더 일하면 월 사백만 원 더 벌 수 있다? [지브라도의 #트렌드로그]

코로나 이후로 급성장한 긱 이코노미 시장은 일시적인 현상으로 머물지 않고 고용의 또 다른 방식으로 자리 잡았어요. 긱 워커란 1인 자영업자, 프리랜서, 단기계약직, 아르바이트, 플랫폼 노동

www.etnews.com

 

728x90
SMALL
Posted by gromet
728x90
반응형

MySQL: Fastest way to count number of rows

데이터의 수량을 빨르게 확인하는 방법

 

MySQL DB replication을 하고 있는데 중간에 오류가 났다.
2개 DB의 데이터가 얼마나 틀리는지 알고 싶었다.
150GB의 DB데이터를 빨리 비교하는 방법을 확인해 보았다.

 

 

This is the best query able to get the fastest results.

SELECT SQL_CALC_FOUND_ROWS 1 FROM `orders`;
SELECT FOUND_ROWS();

 

일반적으로 많이 사용하지만 느리다

 

SELECT COUNT(*) FROM ... WHERE ...

SELECT 1 FROM ... WHERE ...



I did some benchmarks to compare the execution time of COUNT(*) vs COUNT(id) 
(id is the primary key of the table - indexed).

Number of trials: 10 * 1000 queries

Results: COUNT(*) is faster 7%

 

결과가 빠르게 나오기는 하지만, 결과값이 의심스럽다.

EXPLAIN SELECT id FROM ....

see the number of rows under rows column of the result.

 

 

MySQL: Fastest way to count number of rows

 

MySQL: Fastest way to count number of rows

Which way to count a number of rows should be faster in MySQL? This: SELECT COUNT(*) FROM ... WHERE ... Or, the alternative: SELECT 1 FROM ... WHERE ... // and then count the results with a bu...

stackoverflow.com

 

728x90
SMALL
Posted by gromet
728x90
반응형

027042698  /  02-704-2698

 

2023.09.11 설문조사

728x90
SMALL

'생활정보 > 전화번호정보' 카테고리의 다른 글

07076730428 / 070-7673-0428  (0) 2024.07.12
07074600504 / 070-7460-0504  (0) 2023.12.06
0327209403 / 032-720-9403  (0) 2023.09.07
0327189625 / 032-718-9625  (0) 2023.08.18
0423665100 / 042-366-5100  (0) 2023.03.07
Posted by gromet
728x90
반응형

0327209403 / 032-720-9403

 

2023. 09.07  우리카드 에이스 보험 권유

728x90
SMALL

'생활정보 > 전화번호정보' 카테고리의 다른 글

07074600504 / 070-7460-0504  (0) 2023.12.06
027042698 / 02-704-2698  (0) 2023.09.11
0327189625 / 032-718-9625  (0) 2023.08.18
0423665100 / 042-366-5100  (0) 2023.03.07
0233908928 / 02-3390-8928  (0) 2023.02.14
Posted by gromet
728x90
반응형

0327189625 / 032-718-9625

 

2023. 08.18  우리카드 에이스 보험 권유

728x90
SMALL

'생활정보 > 전화번호정보' 카테고리의 다른 글

027042698 / 02-704-2698  (0) 2023.09.11
0327209403 / 032-720-9403  (0) 2023.09.07
0423665100 / 042-366-5100  (0) 2023.03.07
0233908928 / 02-3390-8928  (0) 2023.02.14
07074952480 / 070-7495-2480  (0) 2023.02.10
Posted by gromet

2023. 8. 18. 18:15 WorkHolic

OpenSSL 1.1.1 / CentOS 6

728x90
반응형

Is there a way to install openssl 1.1.1 or later on centOS 6?

https://github.com/openssl/openssl/issues/19750

 

Using centOS 6 (i know..eol, but I can't switch or upgrade quite yet.).
If relevant, please remember to tell us in what OpenSSL version you
found the issue.

Trying to install OpenSSL 1.1.1s by compiling from source
Downloaded the openssl source code from openss.org (openssl-1.1.1s.tar.gz) to /usr/src/openssl-1.1.1s.tar.gz
Then I unzipped it to to /usr/src/openssl-1.1.1s
Then I cd'ed into /usr/src/openssl-1.1.1s
issued the following commands
 
After that it appears that it it installed the new open SSL binary in /usr/local/bin (so /usr/local/bin/openssl is the location), and that it installed shared objects? in /usr/local/lib64 (libssl.so.1.1, libcrypto.so.1.1, libcrypto.a, libssl.a). When I move the old openssl (v 1.0.1e-fips) for safekeeping and copy /usr/local/bin/openssl and then do a ./openssl version I get:
./openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
So, how can I get this to work? Any help is appreciated.
Thank you!
 
 
 
Member
t8m commented on Nov 24, 2022 • 
edited 
Do NOT replace the system openssl library, you will certainly break your system. The system applications built against the 1.0.1e version will not run with 1.1.1.
However, you can install the new version of openssl in /usr/local as you did. You might need to run ldconfig or configure the /usr/local/lib64 in /etc/ld.so.conf if the shared library loader cannot find the libcrypto.so.1.1 and libssl.so.1.1 placed there.
👍1
 
 
Author
Thank you. Can you please tell me what to do with ldconfig or what to put in /etc/ld.so.conf? I certainly would appreciate it.
 
 
 
Member
t8m commented on Nov 29, 2022
You just put a line with /usr/local/lib64 in /etc/ld.so.conf and run ldconfig as root.
 
 
 
Author
mrlerch commented on Nov 29, 2022 via email  • 
edited 
So this will not replace anything, but include that path, right? On Nov 28, 2022, at 10:40 AM, Tomáš Mráz ***@***.***> wrote: You just put a line with /usr/local/lib64 in /etc/ld.so.conf and run ldconfig as root. —Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
 
 
 
Member
t8m commented on Nov 29, 2022
Yes
 
 
 
Author
Thank you so much! That worked! Lifesaver you!
 
 
 
Author
mrlerch commented on Dec 13, 2022 via email 
Tomas, you rock. Thank you! That worked! Martin
 
 
 
Author
mrlerch commented on Jan 20
One more question. How can I get SSH to use the new OpenSSL?
SSH -v output:
OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013

openssl version output:
OpenSSL 1.1.1s 1 Nov 2022

Is it even possible?
Thanks.
 
 
 
Member
t8m commented on Jan 20
You would have to build the openssh yourself to link it against the new openssl build. I personally would not recommend doing that unless you know what you're doing.

 

728x90
SMALL
Posted by gromet

블로그 이미지
나는 운이 좋은 사람이다 나는 나날이 점점 더 좋아진다 내가 하는 선택과 행동은 반드시 성공으로 이어진다 내게는 인내력과 지속력이 있다 네게는 좋은것들만 모여든다
gromet

공지사항

Yesterday
Today
Total
반응형

달력

 « |  » 2024.11
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

최근에 올라온 글

최근에 달린 댓글

최근에 받은 트랙백

글 보관함

160x600