Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,197,219 members, 7,963,994 topics. Date: Wednesday, 02 October 2024 at 03:58 AM

Elmas's Posts

Nairaland Forum / Elmas's Profile / Elmas's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 20 pages)

Investment / Re: Crypto Currency Investors Thread by elmas(m): 11:11pm On Sep 17
haybhi1:
100usdt... Guy, I don post everything before and explain na
No vex
I no see am
I just wanted to know if its still working

3 Likes

Investment / Re: Crypto Currency Investors Thread by elmas(m): 10:11pm On Sep 17
haybhi1:
100% bro... though I withdrew all my 500 usdt last month... met my target and got really busy in the day... one of these days, I should resume as I no see anything wey dey gimme money again

How much did u start with?
Investment / Re: Crypto Currency Investors Thread by elmas(m): 11:19pm On Sep 16
haybhi1:
Is your question like can the same signal be played on bybit/binance? If yes, yes. 100%

But if not, can you be clearer?

I wish NL has a place I could send a screenrecorded video if I make one. I could do one on Whatsapp though.

This thing no hard rara... it's basically an exchanger, and your wallet and all that...
shey una no see screenshots ni?

Is this still real?
Investment / Re: Nigerian Stock Exchange Market Pick Alerts by elmas(m): 10:57am On Jun 20
cocolacec:

Any amount you feel comfortable to start a business.
Stock market is for the patient people.

How do i start?
Is Nigeria's stock market profitable compared to other countries?
Investment / Re: Nigerian Stock Exchange Market Pick Alerts by elmas(m): 12:51am On Jun 20
Goodday everyone, please what is the least amount to get into stocks? I know nothing about this
Programming / Re: Tech Skill To Learn by elmas(m): 8:22am On May 23
airsaylongcome:


Profitable depends. You will need some time to hone your VoIP skills and "raw" Asterisk may be a bit overwhelming from you given your stated prior IT knowledge. I would say start of with FreePBX which enables you manage Asterisk using a GUI. When you understand the basic concepts (I would say at least 3 months consistently messing with FreePBX) then you can switch to learning the underlying Asterisk and how to "program" it.

For really gentle but somewhat comprehensive tutorial on FreePBX, check out Crosstalk Solution on YouTube. Chris has got a 32 video playlist titled FreePBX - Complete setup series (https://youtube.com/playlist?list=PL1fn6oC5ndU_umAhL9A_1zkC90hMPDPNO&si=GP24x02iWebDbzsY)

Many thanks boss, I will keep you posted on how it goes sir
Programming / Re: Need Help/advice Installing Laravel App by elmas(m): 12:21am On May 23
airsaylongcome:


Here's you go

version: '3.9'

services:
backend: &app
image: registry.git.amazingcat.net/cattr/core/cattr-backend:latest
depends_on:
db:
condition: service_healthy
volumes:
- backend_public:/app/public
- backend_storage:/app/storage
healthcheck:
test: ['CMD-SHELL', 'wget --spider -q "http://127.0.0.1:8090/status"']
interval: 10s
timeout: 2s

queue:
<<: *app
command: ['queue']
depends_on:
backend:
condition: service_healthy
healthcheck: {}

cron:
<<: *app
command: ['cron']
depends_on:
backend:
condition: service_healthy
healthcheck: {}

frontend:
image: registry.git.amazingcat.net/cattr/core/cattr-frontend:latest
depends_on:
backend:
condition: service_healthy
volumes:
- backend_public:/backend
ports:
- "127.0.0.1:8089:8080"
healthcheck:
test: ['CMD-SHELL', 'curl --fail -LI http://127.0.0.1:8080 -o /dev/null -w "%{http_code}\n" -s > /dev/null']
interval: 10s
timeout: 2s

db:
image: percona:latest
environment:
- MYSQL_DATABASE=cattr
- MYSQL_ROOT_PASSWORD=password
cap_add:
- SYS_NICE
volumes:
- database:/var/lib/mysql
healthcheck:
test: ['CMD', 'mysqladmin', 'ping', '-h', 'localhost']
timeout: 20s
retries: 10

volumes:
backend_public: {}
backend_storage: {}
database: {}



Their bash install script:

#!/bin/bash

# Colors
RESET='\033[0m'
RED='\033[0;31m'
GREEN='\033[0;32m'
ORANGE='\033[0;33m'
LIGHTCYAN='\033[1;36m'

# Docker required version variables
REQUIRED_DOCKER_VERSION='20.10'
REQUIRED_DOCKER_COMPOSE_VERSION='2.3.4'

# Checking if docker and docker-compose exists
if ! command -v docker --version &> /dev/null
then
echo -e "${RED}docker${RESET} could not be found. ${LIGHTCYAN}Please install version >= ${REQUIRED_DOCKER_VERSION}${RESET}"
exit
fi

if ! command -v docker-compose --version &> /dev/null
then
echo -e "${RED}docker-compose${RESET} could not be found. ${LIGHTCYAN}Please install version >= ${REQUIRED_DOCKER_COMPOSE_VERSION}${RESET}"
exit
fi

# Docker current version variables
CURRENT_DOCKER_VERSION="$(docker version --format '{{.Server.Version}}')"
CURRENT_DOCKER_COMPOSE_VERSION="$(docker-compose version --short)"

# Version check function "greater than or equal to"
function version_ge() { test "$(echo "$@" | tr " " "\n" | sort -rV | head -n 1)" == "$1"; }

# Check docker and docker-compose versions
if ! version_ge $CURRENT_DOCKER_VERSION $REQUIRED_DOCKER_VERSION; then
echo -e "${RED}Please upgrade docker!${RESET}"
echo -e "Your docker version is: ${RED}${CURRENT_DOCKER_VERSION}${RESET}. Required version is ${GREEN}>= ${REQUIRED_DOCKER_VERSION}${RESET}"
fi

if ! version_ge $CURRENT_DOCKER_COMPOSE_VERSION $REQUIRED_DOCKER_COMPOSE_VERSION; then
echo -e "${RED}Please upgrade docker-compose!${RESET}"
echo -e "Your docker-compose version is: ${RED}${CURRENT_DOCKER_COMPOSE_VERSION}${RESET}. Required version is ${GREEN}>= ${REQUIRED_DOCKER_COMPOSE_VERSION}${RESET}"
fi

echo -e "${GREEN}Cattr for Docker installer"
echo -e "${RESET}We will ask you a few questions to configure your shiny new Cattr instance\n"

echo -e "\nStarting installation\n"

echo -e "\nDownloading docker-compose.yml"

wget https://git.amazingcat.net/cattr/core/docker/-/releases/permalink/latest/downloads/compose -O ./docker-compose.yml

echo -e "\nTrying to run docker compose"

docker-compose -p cattr up -d

echo -e "\n${GREEN}Docker container was deployed.${RESET}"

docker-compose -p cattr run --rm -it backend install

# Exit
echo -e "\n${GREEN}Installation is done, thank you!${RESET}"



When I spin this up, the healthcheck for the cattr-frontend container returns as unhealthy.

Docker is running the lates version (26.x I believe)
docker-compose is v2.27

Good day boss please I quoted you concerning voip asterisk on the other thread
Programming / Re: Tech Skill To Learn by elmas(m): 12:38am On May 20
airsaylongcome:


https_://cdn(dot)oreillystatic(dot)com/pdf/Asterisk_The_Definitive_Guide.pdf

Good evening boss, please is this profitable, I don't know much about programming yet, just a little bit of html, css and Javascript
Politics / Re: President Tinubu & Sanwo-Olu Inaugurate Lagos Red Line Train by elmas(m): 1:33pm On Feb 29
U
Agriculture / Re: Nigeria To Remove ‘political Farmers’ From Database by elmas(m): 9:25pm On Feb 15
After planting, herdsmen and cows destroy crops, or high transportation of agricultural produce due to fuel price will still influence the cost of produce in the market.

If this government is serious let them use their own lands and employ labour, compete with local farmers and see how it looks like if it is favorable.

3 Likes

Investment / Re: Mutual Funds by elmas(m): 1:13pm On Dec 14, 2023
emmasoft:


For MMF your capital is guaranteed.

Sir please what is the difference with treasury bills and is the interest rate at 8% per annum?

1 Like

Investment / Re: Mutual Funds by elmas(m): 10:46am On Dec 14, 2023
emmasoft:


Yes it does because the rates are daily valued but it's not volatile ie the fluctuations in rate is not sharp it revolves round a particular figure. It's currently at the range of 8 to 12.5% in the industry.

Oh ok sir, it won't reduce my capital after a period of time?
Investment / Re: Mutual Funds by elmas(m): 12:57am On Dec 14, 2023
emmasoft:


In addition to @enque post. You can actually invest in MMF with any amount from 5k at anytime and withdrawal is also possible at anytime.
However, if withdrawal is made within the first 30 days you lose 20% on the accrued interest on the amount you are withdrawing.
If you are yet to open MMF account, click the first link on my signature and complete the online form. Within 24hrs your account will be opened. Otherwise just deposit the 1million in your existing MMF account and get both your accrued interest and capital at the end of the one month.

You can chat me up if you need further guidance.

Good day sir, please does mmf interest rate fluctuates?
Investment / Re: Mutual Funds by elmas(m): 1:54am On Dec 13, 2023
Hello, good morning good people, please what investment is advisable to indulge in that is less volatile, interest rate and with a capital of 150k?
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 9:15pm On Oct 13, 2023
Sammy101111:




Thank you for asking it is real
TikTok pays for real 😳

Just dm
With your TikTok account and you most have up to 1,000 followers before you can go live and start the cash out stuff and giftes reward paid



Na uneducate.d person no go understand all this have shown and explain .

Just Dm

Ur number bro
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 5:14pm On Oct 13, 2023
solacong:
to anyone interested, let form force together to grow our platform by sharing idea and supporting one another

send email to solacong (@) gmail dot com

we can create a group and grow together, this dollar go good for body oh

Y not create a thread?
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 12:15pm On Oct 13, 2023
iykepromotions:
Will advise serious Nigerian youts to venture into buying and selling of expired domain names. Lots of opportunities there if done right. You can register a good expired domain name for $9 and resell $500. These I've done severally with proofs. Below is one of my recent sales, with an investment of $9. Resold after 5 days hold time. For more info on domain reselling, visit this awareness thread on https://www.nairaland.com/3430037/what-make-money-online Or visit www.julanky.com for direct mentorship and guidelines.

How bro
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 11:25am On Oct 13, 2023
April396949:
im making cool cash meanwhile

I'm giving out LinkedIn 700million records for those that need it. the files are in json. I will also include a scrīpt to help you coñvert it to either csv or excel format.

contact me through my signature if interested.

Interested boss
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 11:10am On Oct 13, 2023
Mesla:
5k USD monthly

I'm interested boss
Career / Re: How Much Are You Making As An Internet Content Creator? by elmas(m): 11:08am On Oct 13, 2023
motionarena:
I make around 13k usd monthly on bad days combined on all my platforms.

I am into tech and videography content


Do you use a Nigerian account or someone abroad is using ur account as an admin?

1 Like

Jobs/Vacancies / Re: List The Skills You Have Here by elmas(m): 3:24pm On Apr 19, 2023
Lalami3232:
The only skill I have is programming.
If programming goes obsolete, I don finish be that. I've been into this shit for over 10yrs and I can confidently tell everyone to give programming a chance today and thank me later tomorrow.
I started as a web developer and I grew into a software engineer. Young boys and girls, pls go into programming and be useful to yourselves. Those of una wey wan travel abroad, abeg try learn small programming before you go japa. You can always learn it online or go to some I.T schools like NIIT, FlammyTech, New Horizon, Apptech etc


I don talk am before and I go talk am again, "Oga if no be you disvirgin your wife, go for DNA test oooooo because boreholes aka non-virgins can't be trusted"

Software engineer as a devops engineer? Or QA?
Romance / Re: My Wife Admitts She Visited A Guy But There Was No Sex by elmas(m): 3:12pm On Apr 19, 2023
The only way to keep a woman in check is maybe during courtship, you have checked properly and you were told she's yours, by both Church, mosque or native way.

Secondly go spritual with her so she won't cheat or give you problems.

Thirdly treat her fine and try to know about anything she wants.
Phones / Re: My Iphone Won't Charge Pass 3% by elmas(m): 11:07am On Jan 10, 2023
Change the port
Programming / Re: Confused Between Node Js And PHP by elmas(m): 12:25pm On Jan 07, 2023
Highremedy:
PHP laravel ..... If u are good with that , I sure u don' t even need to be employed by anyone.
Just create any script and sell on codecayon and you will cashing out daily.

How bro
Family / Re: Work Wahala In My Marriage by elmas(m): 2:07pm On Jan 04, 2023
According to the OP, he has been seeing signs of disrespect from his wife before marriage, which is a red flag to me, I believe anyone that wants to keep you won't hurt you, some might be hiding their attitude for a very long time and u may never know it. A woman that flirts with another man without even having sex is disrespectful to her husband.

This days I think it's sucidal for one to get into marriage with ordinary hand without spiritual interference.

2 Likes 1 Share

Programming / Re: Working On Client NFT Project (documented On Nl) by elmas(m): 6:39am On Oct 31, 2022
Playermayweda:




Yes you can.

Thanks boss for the motivation
Programming / Re: Working On Client NFT Project (documented On Nl) by elmas(m): 4:19pm On Oct 30, 2022
Playermayweda:


Learn at least two frameworks. React and one other. YouTube about current trends in tech. Build projects. Create a LinkedIn account and show them there. Apply for jobs.

Can one get freelance jobs too?
Investment / Re: Crypto Currency Investors Thread by elmas(m): 1:00am On Oct 30, 2022
superboyspecial:
DOGECOIN is on steroids today.
Did you catch the signal early on our platform?
over 88% in profits if you did

Is this legit?
Programming / Re: Working On Client NFT Project (documented On Nl) by elmas(m): 11:48am On Oct 29, 2022
Playermayweda:


Yh, I just got my first tech job recently. Thanks for asking

Oh ok, I just started learning coding bro, and I don't know how soon I can get a job as a newbie, when I'm through with my bootcamp
Culture / Re: List Of Ooni’s New Queens & Their Profiles by elmas(m): 4:21pm On Oct 28, 2022
Hh

1 Like 1 Share

Programming / Re: Working On Client NFT Project (documented On Nl) by elmas(m): 10:47am On Oct 28, 2022
Playermayweda:


Personal portfolio. This is even an outdated screenshot of it sef. I couldn't find the current one's screenshot. It has an NFT slider now with slider JS. My friend who's a UI/Ux dev gave me the design.

Oh fine, have u started doing client based jobs?
Programming / Re: Working On Client NFT Project (documented On Nl) by elmas(m): 10:40am On Oct 28, 2022
Playermayweda:
See mine

Wow, are you doing this for a client or as a personal portfolio?

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 20 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 44
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.