Bitcoin Forum
May 29, 2024, 01:13:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 05, 2022, 10:03:44 AM
Please write mi in words how many years it is:

1.055e+06y
The simpler method is to just move the decimal point depending on the value of "e+number".

From your example:
1.055(e+06 = move by 6 decimal places)
10.55=  move by 1 place
105.5=  move by 2 places
1055.=  move by 3 places
10550.=  move by 4 places
105500.=  move by 5 places
1055000.=  move by 6 places

Other note: You can use your forum signature for off-topic messages.
You can access it in: "Profile->Forum Profile Information".

Thanks!



Am I correct with  6.02311e+07y?

6.02311    (e+07 = move by 7 decimal places)
60.2311      =  move by 1 place
602.311      =  move by 2 places
6023.11      =  move by 3 places
60231.1      =  move by 4 places
602311.      =  move by 5 places
6023110.      =  move by 6 places
60231100.      =  move by 7 places
2  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 04, 2022, 09:51:27 PM
Hello

I try to understand big numbers I mean, thousand of years and so on.

Please write mi in words how many years it is:

1.055e+06y



where can I find online calculator to count and show such big numbers to readable words?


Peace in Ukraine, death to Putin!!!!!!!!!
3  Alternate cryptocurrencies / Altcoin Discussion / Token Allocations - SURVEY - please answear on: February 19, 2021, 08:09:01 AM
For my university job, I do research on tokens. I want to know the community's opinion about the ideal token distribution model.

Imagine: you discover a great new decentralized platform. How would you like the developers to distribute the tokens?

Please reply in the comment. Thank you

Survey No. 1 - Distribution of tokens:

MODEL NO.1
85% - Tokens for the community (so-called Public, anyone can buy)
10% - Founders, Team
5% - Marketing, Advisors etc.

MODEL NO.2
75% - Tokens for the community (so-called Public, anyone can buy)
15% - Founders, Team
10% - Marketing, Advisors etc.

MODEL NO.3
65% - Tokens for the community (so-called Public, anyone can buy)
15% - Founders, Team
10% - Pre-seed investors
10% - Marketing, Advisors etc.

MODEL NO.4
Suggest your ideal distribution model

Google form:
https://docs.google.com/forms/d/e/1FAIpQLScBOx3zuSa2tH0dKcI4-eyVeJRGJIvt_QAmW7-P91cjAtFODA/viewform
4  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 28, 2020, 03:21:23 PM
Simply add echo $i; before or after the command


Code:
pons@linpons:~/VanitySearch$ for i in `more tst.txt`; do ./VanitySearch -cp $i | grep Addr | grep P2PKH | awk '{ print $3 }';echo $i; done
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EB
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EC
1DVjd5oZqCCYywtgL7FLbT3ZX4FFJK5nwc
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72ED


I tested today this method on my Linux Mint and unfortunately it is slow... don't know why if this is simple mathematics process (generate public address from hex key and save it to file)
I try 1575 lines of hex heys (100KB file)
The whole process took 54 sec.
I tested on HDD and SSD and results are the same.

Do you know how speedup this process to make it as fast as generating new addresses (where I have easily Mb/s of file increment)

thanks
5  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 28, 2020, 08:09:28 AM
Simply add echo $i; before or after the command

or

Code:
pons@linpons:~/VanitySearch$ for i in `more tst.txt`; do ./VanitySearch -cp $i | grep Addr | grep P2PKH | awk '{ print $3 }';echo $i; done
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EB
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EC
1DVjd5oZqCCYywtgL7FLbT3ZX4FFJK5nwc
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72ED



You are an amazing man! Thank You very much.
6  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 27, 2020, 02:07:20 PM
The -cp option expect a private key in hex format:


There is no trivial way to do what you want with VanitySearch, you can write a small script:

Code:
pons@linpons:~/VanitySearch$ for i in `more tst.txt`; do ./VanitySearch -cp $i | grep Addr | grep P2PKH | awk '{ print $3 }'; done
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
1DVjd5oZqCCYywtgL7FLbT3ZX4FFJK5nwc



1. It is possible to install VanitySearch and run this script in Cygwin64 Terminal?
2. what about CMD in Windows? It is possible to create the same script?

Thanks!

nice command thanks!

But one more question

How to attach (duplicate) also the HEX string (from input file) to output (which this address refers)
ie.
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EB
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EC
7  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 27, 2020, 01:38:43 PM
-snip-
I installed CUDA SDK and Toolkit but
I have an error. PLEASE HELP
-snip
make: /usr/local/cuda-8.0/bin/nvcc: Command not found
Makefile:63: recipe for target 'obj/GPU/GPUEngine.o' failed
make: *** [obj/GPU/GPUEngine.o] Error 127

Probably you have the different vesrion of CUDA, not 8.0

Test the version of your cuda through the command:
$ nvcc --version

It will show the version of your CUDA compiler driver.
Also you can go to /usr/local and find the folder with CUDA (cuda-8.0 or cuda-10.2)

Then open the Makefile (in Kangaroo project) and edit the folder for CUDA
You will find a line:
CUDA    = /usr/local/cuda-8.0

Change it to your cuda driver folder like this:
CUDA    = /usr/local/cuda-10.2

Save the edited Makefile and run the make command again (do not forget to run make clean as I wrote before)

It should work now.

I tried today install VanitySearch in Cygwin64 Terminal.
But i have an error, can You help me?

Code:
$ make all
mkdir -p obj
cd obj &&       mkdir -p GPU
cd obj &&       mkdir -p hash
g++ -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Base58.o -c Base58.cpp
make: g++: No such file or directory
make: *** [Makefile:68: obj/Base58.o] Error 127

and then i nawigate to VanitySearch-1.17 and run command

Code:
oem@test /cygdrive/c/test/VanitySearch/VanitySearch-1.17
$ ./VanitySearch -t 2 1TryMe
-bash: ./VanitySearch: No such file or directory

as You can see i have an error

please help





8  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 27, 2020, 07:42:05 AM
The -cp option expect a private key in hex format:


There is no trivial way to do what you want with VanitySearch, you can write a small script:

Code:
pons@linpons:~/VanitySearch$ cat tst.txt 
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EB
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72EC
5B3F38AF935A3640D158E871CE6E9666DB862636383386EE510F18CCC3BD72ED

pons@linpons:~/VanitySearch$ for i in `more tst.txt`; do ./VanitySearch -cp $i | grep Addr | grep P2PKH | awk '{ print $3 }'; done
12csaq6uhAtyhzUN8N4akVpat7GP6wB3ea
1PGVt2mWHgbULrx9pjWDPc2EKp2LWLT4fd
1DVjd5oZqCCYywtgL7FLbT3ZX4FFJK5nwc



1. It is possible to install VanitySearch and run this script in Cygwin64 Terminal?
2. what about CMD in Windows? It is possible to create the same script?

Thanks!
9  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 26, 2020, 10:52:44 PM
How to generate addresses to output file from input file (cointaining hex keys)?

I have text file with 50 hex keys in every single line.
I'm not sure what can I expect but I want to put this file into VanitySearch and get one nice output file with addresses corresponding to this hex keys.

I tried this command but it doesnt work

Code:
VanitySearch.exe -cp -i old_file.txt -o new_file.txt

please help

thanks!
10  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: May 01, 2020, 06:12:17 PM
Hi

sorry for simple question (for some people) but can You write I mean step by step
how to install VanitySearch on Linux ie. Mint, Ubuntu etc.

First of all.
1. I downloaded archive from github https://github.com/JeanLucPons/VanitySearch/archive/1.17.tar.gz
2. I extracted this archive to my desktop
3. Then In my Linux Mint I opened terminal and I navigated to this folder ie. VanitySearch-1.17
4. Then I did put and run the command:
Code:
make
5. Don't know what next to open program and start generating new addresses

Thanks!

If you do not use CUDA, just run tthis comand:
$ make all

If you use CUDA (GPU device), you should compile in another way:
$ make gpu=1 ccap=20 all

where: gpu=1 is the number of your GPU device (gpu=0 is also possible for one device)
           ccap=20 is the compute capability depending on your GPU device

Find your device here https://en.wikipedia.org/wiki/CUDA and input the version in accordance with your device (for example 20 for version 2.0; 61 for version 6.1; etc)

As soon as you compile the program you can run it in the following way:

$ ./VanitySearch -t 0 -gpu 1TryMe

where -gpu means you use GPU, -t 0 means that you so not use CPU (0 threads)
"./" - important part to run the program in Linux  Wink

I installed CUDA SDK and Toolkit but
I have an error. PLEASE HELP

Code:
make gpu=1 ccap=61 all
mkdir -p obj
cd obj && mkdir -p GPU
cd obj && mkdir -p hash
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Base58.o -c Base58.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/IntGroup.o -c IntGroup.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/main.o -c main.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Random.o -c Random.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Timer.o -c Timer.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Int.o -c Int.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/IntMod.o -c IntMod.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Point.o -c Point.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/SECP256K1.o -c SECP256K1.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/Vanity.o -c Vanity.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/GPU/GPUGenerate.o -c GPU/GPUGenerate.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/hash/ripemd160.o -c hash/ripemd160.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/hash/sha256.o -c hash/sha256.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/hash/sha512.o -c hash/sha512.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/hash/ripemd160_sse.o -c hash/ripemd160_sse.cpp
g++ -DWITHGPU -m64 -mssse3 -Wno-write-strings -O2 -I. -I/usr/local/cuda-8.0/include -o obj/hash/sha256_sse.o -c hash/sha256_sse.cpp
/usr/local/cuda-8.0/bin/nvcc -maxrregcount=0 --ptxas-options=-v --compile --compiler-options -fPIC -ccbin /usr/bin/g++-4.8 -m64 -O2 -I/usr/local/cuda-8.0/include -gencode=arch=compute_61,code=sm_61 -o obj/GPU/GPUEngine.o -c GPU/GPUEngine.cu
make: /usr/local/cuda-8.0/bin/nvcc: Command not found
Makefile:63: recipe for target 'obj/GPU/GPUEngine.o' failed
make: *** [obj/GPU/GPUEngine.o] Error 127
11  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: April 30, 2020, 02:47:22 PM
Hi

sorry for simple question (for some people) but can You write I mean step by step
how to install VanitySearch on Linux ie. Mint, Ubuntu etc.

First of all.
1. I downloaded archive from github https://github.com/JeanLucPons/VanitySearch/archive/1.17.tar.gz
2. I extracted this archive to my desktop
3. Then In my Linux Mint I opened terminal and I navigated to this folder ie. VanitySearch-1.17
4. Then I did put and run the command:
Code:
make
5. Don't know what next to open program and start generating new addresses

Thanks!
12  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: April 24, 2020, 11:39:21 AM
Okay, as a workaround to the workaround  Tongue
I've constructed this batch file that should do the trick:

Copy the code below to a text file then rename it into "filename.bat", change the extension from 'txt' into 'bat'.
Create an input file with the same name as the 'input=' in the batch file containing a single line (not 100) of your desired prefix.
Remove "-gpu" if you don't have a supported Video Card.

Code:
@set input=1test.txt
@set output=result.txt
@set command=vanitysearch -stop -gpu

set loop=0
:start
%command% -i %input% -o 1%output%
set /a loop=%loop%+1
if "%loop%"=="100" goto next
goto start

:next
%command% -i %input% -o 2%output%
set /a loop=%loop%+1
if "%loop%"=="200" goto next2
goto next

:next2
%command% -i %input% -o 3%output%
set /a loop=%loop%+1
if "%loop%"=="300" goto next3
goto next2

:next3
%command% -i %input% -o 4%output%
set /a loop=%loop%+1
if "%loop%"=="400" goto next4
goto next3

:next4
%command% -i %input% -o 5%output%
set /a loop=%loop%+1
if "%loop%"=="500" goto next5
goto next4

:next5
%command% -i %input% -o 6%output%
set /a loop=%loop%+1
if "%loop%"=="600" goto next6
goto next5

:next6
%command% -i %input% -o 7%output%
set /a loop=%loop%+1
if "%loop%"=="700" goto next7
goto next6

:next7
%command% -i %input% -o 8%output%
set /a loop=%loop%+1
if "%loop%"=="800" goto next8
goto next7

:next8
%command% -i %input% -o 9%output%
set /a loop=%loop%+1
if "%loop%"=="900" goto next9
goto next8

:next9
%command% -i %input% -o 10%output%
set /a loop=%loop%+1
if "%loop%"=="1000" goto next10
goto next9

:next10
echo end

Output files will be '1result.txt', '2result.txt', '3result.txt'..... '10result.txt'; with 100 keys each.
Just edit the values of the first three lines (after the '=' sign) depending in your preferences (it's self-explanatory).

Nice work! Thank You Smiley
But i have one more question.
How to move the newly created file to a new location after every loop?

I tried this code:

Code:
:next2
%command% -i %input% -o 3%output%
set /a loop=%loop%+1
if "%loop%"=="300" goto next3
goto next2
move *.txt c:\test\

but it did't work Sad
13  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 30, 2020, 07:24:33 AM
How to convert (in vanitysearch.exe) using one command privKey in hex hormat to WIF?
Uhh, why? Huh
WIF private key is already included in the result, it's the second line "Priv (WIF)".
Just don't include "p2pkh:" when copy-pasting, most wallets do not support that address type prefix.

Because I'm testing something important and I need to know how to get WIFI from HEX
14  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 29, 2020, 08:44:55 PM
Hi

After generating the address, I have two additional lines with keys.

PubAddress: 1f18cpm.............
Priv (WIF): p2pkh:Kz8NURADuQ..............................
Priv (HEX): 0x56C3E23E538FAA6.................................

How to convert (in vanitysearch.exe) using one command privKey in hex hormat to WIF?

thanks!
15  Bitcoin / Development & Technical Discussion / Re: Notepad++ sort by the largest number of the same results on: March 24, 2020, 07:25:52 PM
I don't have access to my other PC where I have Notepad++ installed on but if I remember correctly there are various different ways you can sort data by clicking on Edit > Line Sorting > and then you have a bunch of different options. Click through those to see if it manages to sort the addresses the way you want it to.

I have tried your method and not arranged as I want
like in my example
16  Bitcoin / Development & Technical Discussion / Notepad++ sort by the largest number of the same results on: March 24, 2020, 01:23:24 PM
Hello

I have a question about software or script for sorting addresses.

Now I'm using Notepad++ but it is difficult to sort in my way.

For example

I have few addresses

Code:
1BitcoinJNVRfTPxCJeA5UsSA5g4Twu8h8
1Bitcopt1Pf7RmFmisdQxaZUKqhW4tLBB1
1Bituiot18g2HwfVBmnb6g2eh3QRr2D853
1Bitcoin1H54ZwxFMDFod8vtz55dweqnz7
1Bitcoin17ybmkj3qH7VyT5XjdnXaz3ZBa
1Bitcoi614uwChefc5P2Um7GBebutDdjAA
1Bitco321EUbjDUQFahguAA7WEME68wx2m
1Bitc48n1Q2Kr5Erk8GrFACcGVSiEjkDWb
1Bitc1in15tA5fiT9JxENbMqnPu4QyfgPX
1Bitcoin13gGce1XJu6ni1EisMe5iPcguf
1Bit987ppKePLztu6CDe7Nq4rzkqurmjc6
1Bitcoin1DomR3kFvRVUyqvF357zZes4PD

How to sort text in Notepad ++ (or other tool) like in bellow
at the very top after sorting there will be addressess with the names most often repeating or closest,
then subsequent, subsequent and subsequent ones as in the example below

So
How to sort to this way:


1Bitcoin1DomR3kFvRVUyqvF357zZes4PD
1Bitcoin1H54ZwxFMDFod8vtz55dweqnz7
1Bitcoin13gGce1XJu6ni1EisMe5iPcguf
1Bitcoin17ybmkj3qH7VyT5XjdnXaz3ZBa
1BitcoinJNVRfTPxCJeA5UsSA5g4Twu8h8
1Bitcoi614uwChefc5P2Um7GBebutDdjAA
1Bitco321EUbjDUQFahguAA7WEME68wx2m
1Bitcopt1Pf7RmFmisdQxaZUKqhW4tLBB1
1Bitc1in15tA5fiT9JxENbMqnPu4QyfgPX
1Bitc48n1Q2Kr5Erk8GrFACcGVSiEjkDWb
1Bita87ppKePLztu6CDe7Nq4rzkqurmjc6
1Bituiot18g2HwfVBmnb6g2eh3QRr2D853

17  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 23, 2020, 05:51:45 PM
How to create files with specific size ie. 1MB or number of keys ie: 100 ?
I haven't found any arg to do that but you can use this workaround:
  • Create an input file "100test.txt" with 100 lines of "1test" (copy paste the first line until 10th, then copy the 10 lines and paste 9 times)
  • Use this command: vanitysearch -stop -i 100test.txt -o 100testresult.txt

By using -stop argument, it will only search each of the input files' line, 100 lines =100 results.
You can use notepad++ so you can monitor the number of lines.


Good solution, but what if I want create several files?
For example I will make one input file with 100 lines but I want create 10 output files with 100 lines (each file)
without any break (between making every next file)
first file, then next file, then next file and so on.... till 10 file (last).
How to do that?
18  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 22, 2020, 10:26:19 AM
Code:
 -o outputfile: Output results to the specified file

Code:
VanitySearch.exe -gpu -o test.txt 1Ubunt

How to create files with specific size ie. 1MB or number of keys ie: 100 ?
19  Bitcoin / Development & Technical Discussion / Re: VanitySearch (Yet another address prefix finder) on: March 11, 2020, 10:18:28 PM
Hello guys!
I have simple questions.
How it is?

I did run VanitySearch for one minute first for my CPU and after for my GPU.
After one min. for CPu and GPU this is my results.


CPU: Intel Xeon 1231 v3 (4 cores) ~1,45 mln keys stored in txt file
GPU: Geforce GTX 1070 (8GB) ~ 1,50 mln keys stored in txt file


1. Why the results are almost similar? (on the graphics card should be much higher)?
2. What is the best configuration to achieve the highest possible speed?
3. What is the best command to generate as many keys as possible in the shortest possible time?
4. When i choose GPU with code below i see this hint: Hint: Search with less prefixes, less threads (-g) or increase maxFound (-m)
- What does it means??


my code for CPU
Code:
VanitySearch.exe -o keys2.txt 1*

my code for GPU
Code:
VanitySearch.exe -gpu -o keys1.txt 1*
20  Bitcoin / Electrum / Re: How to send a transaction at a specific time? on: February 28, 2020, 08:42:13 PM
I never heard a tool that you can send bitcoin to a specific time but I tried to check some features from coinb.in.

You can find a tool called LockTime when making a transaction in advanced options. You can check it from here https://coinb.in/#newTransaction

According to this
Quote
A specified locktime indicates that the transaction is only valid at the given blockheight or later.

Since the locktime field indicated is 419382 and currently the latest blockheight as of 12th July 2016 1108 (AEST) is 420352 the transaction is now valid and can be included in a block by any miner that chooses to do so.
Source: https://bitcoin.stackexchange.com/questions/46495/what-does-lock-time-mean

You can set the locktime to the blockheight you want the transaction to be included on the block.
So if you can put the locktime higher than the current blockheight your transaction is lock until the blockheight reaches the specific locktime you set.

It looks like there is no exact time or the specific time when will the transaction is being sent.

For example in Mozilla Thunderbird there is a addon: send later
https://addons.thunderbird.net/pl/thunderbird/addon/send-later-3/

I know that is maybe not good example but it works how i want to.

I can prepare a few emails and save it in draft folder (with setting the exact time of sending)
It is very helpful if I want send some next next goals to complete (to my employees).

I would like to pay them a salary in Bitcoin using electrum and the function: send later.
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!