Bitcoin Forum
May 05, 2024, 05:23:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Services / Re: I will pay $15 worth of bitcoin for help with my dell xps 13 on: August 29, 2017, 02:50:48 AM
Hopefully it doesnt take too long to confirm, but I just sent 0.00356155 BTC to your account.

Thanks again for your help!!

Let me know if you have any issues.
2  Economy / Services / Re: I will pay $15 worth of bitcoin for help with my dell xps 13 on: August 28, 2017, 03:05:36 AM
Thank you very much for your help.  Initially I had installed the LTS, but I couldnt get WiFi to work.  I will try your suggestion and perhaps I'll just need to install the proper wifi driver at that time.  Thanks again,  I will update you when I get the LTS installed.

ok,. You are most welcome.   Smiley

Well, I installed the LTS, and everything works perfectly.  I have to say, I feel a bit stupid.  In any event, a deal is a deal, so I will pay you.  Please provide the BTC address you would like me to send the funds to.
3  Economy / Services / Re: I will pay $15 worth of bitcoin for help with my dell xps 13 on: August 27, 2017, 12:57:15 AM
Thank you very much for your help.  Initially I had installed the LTS, but I couldnt get WiFi to work.  I will try your suggestion and perhaps I'll just need to install the proper wifi driver at that time.  Thanks again,  I will update you when I get the LTS installed.
4  Economy / Services / Re: I will pay $15 worth of bitcoin for help with my dell xps 13 on: August 26, 2017, 10:15:57 PM
I appreciate the effort, but I want to continue using Ubuntu.  Also - I have googled looking for drivers.  My inability to find a solution is what led me here, to offer money to someone to directly provide assistance. 
5  Economy / Services / I will pay $15 worth of bitcoin for help with my dell xps 13 on: August 26, 2017, 09:50:10 PM
I have a dell xps 13 9360 and I installed Ubuntu 17.04. 

Everything works and is fine as best as I can tell, but booting up takes nearly 2 full minutes.

If I run dmesg everything seems to be working well until we get to this point:

Quote
[    5.711981] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[    5.715730] random: crng init done
[    6.959842] ath10k_pci 0000:3a:00.0: htt-ver 3.26 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
[    7.045799] ath: EEPROM regdomain: 0x69
[    7.045800] ath: EEPROM indicates we should expect a direct regpair map
[    7.045801] ath: Country alpha2 being used: 00
[    7.045802] ath: Regpair used: 0x69
[    7.051138] ath10k_pci 0000:3a:00.0 wlp58s0: renamed from wlan0
[   94.246142] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   94.246144] Bluetooth: BNEP filters: protocol multicast
[   94.246148] Bluetooth: BNEP socket layer initialized


Please check my posting history.  I have paid for computer or technical help multiple times.  If you fix this, I will definitely pay you.  As you can imagine, having a 2 minute boot time is quite annoying.
6  Economy / Services / Re: Help me with GIMP (0.025BTC reward) on: April 29, 2016, 04:32:47 PM
0.025002 BTC has been sent to ChasingCars - thanks for your help.

Arwin, I appreciate the help, but in the OP I specifically said I wanted to use the command line. 
7  Economy / Services / Re: Help me with GIMP (0.025BTC reward) on: April 29, 2016, 04:19:57 PM
Nevermind, I had *.JPG, but all of my files are .jpg (lowercase).

Now it works.

Chasing cars - please provide your address.

Thanks.
8  Economy / Services / Re: Help me with GIMP (0.025BTC reward) on: April 29, 2016, 04:15:50 PM
(define (batch-resize pattern width height)
(let* ((filelist (cadr (file-glob pattern 1))))
(while (not (null? filelist))
(let* ((filename (car filelist))
(image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
(drawable (car (gimp-image-get-active-layer image))))
(gimp-image-scale-full image width height INTERPOLATION-CUBIC)
(gimp-file-save RUN-NONINTERACTIVE image drawable filename filename)
(gimp-image-delete image))
(set! filelist (cdr filelist)))))

This particular script takes a pattern for filename, desired width and height as inputs and resize all image files that are matched. This script overwrites the existing file. In order to run the script, save it with .scm extension in the ~/.gimp-/scripts/ directory.

Then goto the directory which contains images, then run the following command to resize images:

gimp -i -b '(batch-resize "./pics/*.jpg" 500 500)' -b '(gimp-quit 0)'

That runs fine, but it doesnt actually change the pictures.  They are still the same size.

Quote
desktop@desktop-desktop:~/pics$ ls -l
total 5740
-rw-rw-r-- 1 desktop desktop 1948380 Apr 28 01:30 00001833.jpg
-rw-rw-r-- 1 desktop desktop 1948405 Apr 28 01:30 00001834.jpg
-rw-rw-r-- 1 desktop desktop 1951488 Apr 28 01:30 00001835.jpg
desktop@desktop-desktop:~/pics$ gimp -i -b '(batch-resize "*.JPG" 500 500)' -b '(gimp-quit 0)'
batch command executed successfully
desktop@desktop-desktop:~/pics$ ls -l
total 5740
-rw-rw-r-- 1 desktop desktop 1948380 Apr 28 01:30 00001833.jpg
-rw-rw-r-- 1 desktop desktop 1948405 Apr 28 01:30 00001834.jpg
-rw-rw-r-- 1 desktop desktop 1951488 Apr 28 01:30 00001835.jpg
desktop@desktop-desktop:~/pics$

To the later two posters, I dont want to use imagemagik and I don't want to use the GIMP gui.  I want to do this using GIMP from the command line.
9  Economy / Services / Re: Help me with GIMP (0.025BTC reward) on: April 29, 2016, 04:01:12 PM
Thanks to both of you, but I still get the same error.

Quote
desktop@desktop-desktop:~/pics$ gimp -i -b '(batch-resize "/pics/*.jpg" 500 500)' -b '(gimp-quit 0)'
batch command experienced an execution error:
Error: ( : 1) eval: unbound variable: batch-resize

Quote
desktop@desktop-desktop:~/pics$ gimp -i -b '(batch-resize "./pics/*.jpg" 500 500)' -b '(gimp-quit 0)'
batch command experienced an execution error:
Error: ( : 1) eval: unbound variable: batch-resize

and you can see I do have images in the directory:

Quote
desktop@desktop-desktop:~/pics$ ls
00001833.jpg  00001834.jpg  00001835.jpg
desktop@desktop-desktop:~/pics$

Also - post your address so I can pay.
10  Economy / Services / Help me with GIMP (0.025BTC reward) on: April 29, 2016, 03:42:13 PM
I am running ubuntu.  I have a directory with many jpgs in it, they are all the same size.  I want to resize all of them to 500 x 500 pixels.

I want to use GIMP command line functions. 

The files are in  /pics

I am trying:

Quote
gimp -i -b '(gimp-image-scale "./pics/*.jpg" 500 500)' -b '(gimp-quit 0)'

The error I get is:

Quote
batch command experienced an execution error:
Error: ( : 1) Invalid type for argument 1 to gimp-image-scale

Surely I am doing something stupid and I am willing to pay someone 0.025BTC to help me, I've already wasted too much time on this. 

Check my posting history, I have paid many rewards in the past for help like this.
11  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: January 02, 2016, 11:51:33 PM
Here are all keys from #1 to #40:
BitsHexDecimalBinaryAs raw textLog(2)
10000000001
1
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█     0
20000000003
3
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██     1.5849625007212
30000000007
7
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███     2.8073549220576
40000000008
8
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░░░     3
50000000015
21
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░█░█     4.3923174227788
60000000031
49
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░██░░░█    15.6147098441152
7000000004C
76
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░░██░░    L6.2479275134436
800000000E0
224
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███░░░░░    à7.8073549220576
900000001D3
467
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███░█░░██    Ó8.8672787397097
100000000202
514
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░░░░░░░█░     9.0056245491939
110000000483
1155
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░░█░░░░░██    ƒ10.173677136303
120000000A7B
2683
░░░░░░░░░░░░░░░░░░░░░░░░░░░░█░█░░████░██    {11.389631339261
130000001460
5216
░░░░░░░░░░░░░░░░░░░░░░░░░░░█░█░░░██░░░░░    `12.348728154231
140000002930
10544
░░░░░░░░░░░░░░░░░░░░░░░░░░█░█░░█░░██░░░░   )013.364134655008
1500000068F3
26867
░░░░░░░░░░░░░░░░░░░░░░░░░██░█░░░████░░██   hó14.713547616913
16000000C936
51510
░░░░░░░░░░░░░░░░░░░░░░░░██░░█░░█░░██░██░   É615.652564919611
17000001764F
95823
░░░░░░░░░░░░░░░░░░░░░░░█░███░██░░█░░████   vO16.548084361224
18000003080D
198669
░░░░░░░░░░░░░░░░░░░░░░██░░░░█░░░░░░░██░█     17.600007248708
19000005749F
357535
░░░░░░░░░░░░░░░░░░░░░█░█░███░█░░█░░█████   tŸ18.447724952285
2000000D2C55
863317
░░░░░░░░░░░░░░░░░░░░██░█░░█░██░░░█░█░█░█   ,U19.719530872026
2100001BA534
1811764
░░░░░░░░░░░░░░░░░░░██░███░█░░█░█░░██░█░░   ¥420.788963611792
2200002DE40F
3007503
░░░░░░░░░░░░░░░░░░█░██░████░░█░░░░░░████  -ä 21.520134745822
230000556E52
5598802
░░░░░░░░░░░░░░░░░█░█░█░█░██░███░░█░█░░█░  UnR22.416686729788
240000DC2A04
14428676
░░░░░░░░░░░░░░░░██░███░░░░█░█░█░░░░░░█░░  Ü* 23.782435585948
250001FA5EE5
33185509
░░░░░░░░░░░░░░░██████░█░░█░████░███░░█░█  ú^å24.984050066697
26000340326E
54538862
░░░░░░░░░░░░░░██░█░░░░░░░░██░░█░░██░███░  @2n25.700781261713
270006AC3875
111949941
░░░░░░░░░░░░░██░█░█░██░░░░███░░░░███░█░█  ¬8u26.738278526959
28000D916CE8
227634408
░░░░░░░░░░░░██░██░░█░░░█░██░██░░███░█░░░  ‘lè27.762143403295
290017E2551E
400708894
░░░░░░░░░░░█░██████░░░█░░█░█░█░█░░░████░  âU 28.577979290797
30003D94CD64
1033162084
░░░░░░░░░░████░██░░█░█░░██░░██░█░██░░█░░ =”Íd29.944419458082
31007D4FE747
2102388551
░░░░░░░░░█████░█░█░░███████░░███░█░░░███ }OçG30.969382178281
3200B862A62E
3093472814
░░░░░░░░█░███░░░░██░░░█░█░█░░██░░░█░███░ ¸b¦.31.526580209328
3301A96CA8D8
7137437912
░░░░░░░██░█░█░░█░██░██░░█░█░█░░░██░██░░░ ©l¨Ø32.732759144628
34034A65911D
14133072157
░░░░░░██░█░░█░█░░██░░█░██░░█░░░█░░░███░█ Je‘ 33.718356052473
3504AED21170
20112871792
░░░░░█░░█░█░███░██░█░░█░░░░█░░░█░███░░░░ ®Ò p34.227400038686
3609DE820A7C
42387769980
░░░░█░░███░████░█░░░░░█░░░░░█░█░░█████░░ Þ‚ |35.302929017097
371757756A93
100251560595
░░░█░███░█░█░███░███░█░█░██░█░█░█░░█░░██ Wuj“36.544833738747
3822382FACD0
146971536592
░░█░░░█░░░███░░░░░█░█████░█░██░░██░█░░░░"8/¬Ð37.096745824716
394B5F8303E9
323724968937
░█░░█░██░█░██████░░░░░██░░░░░░█████░█░░█K_ƒ é38.235977688802
40E9AE4933D6
1003651412950
███░█░░██░█░███░░█░░█░░█░░██░░████░█░██░é®I3Ö39.868395419757

Looks a lot like many of the Wolfram Automaton patterns, like this one:
12  Economy / Services / Re: I will pay you 0.035BTC to solve my libav (video software) problem on: October 18, 2015, 11:13:31 PM
Thanks - that worked.  You get the BTC, please let me know where I should send it. 

I must say this was really frustrating.   What is the difference between global parameters and inline parameters? 
13  Economy / Services / Re: I will pay you 0.035BTC to solve my libav (video software) problem on: October 18, 2015, 10:47:36 PM
Did you try to raise the bitrate?
500k bitrate seems a bit low for the 30fps video. Can you do it at least 2000k (if your video 720p) or at least 3000k (if your video 1080p)?

Yes, I've had it much higher, over 10000k - I just happened to pick 500 when I did the test for purpose of screenshot.  In all cases, it still defaults back to 25 fps.
14  Economy / Services / I will pay you 0.035BTC to solve my libav (video software) [SOLVED] on: October 18, 2015, 10:26:01 PM
See screenshot below.  I specify that I want 30 fps, but it actually makes the video at 25fps.   I don't know how else to pass the framerate parameters.  I WILL pay you.  Check my posting history - I have paid off several similar bounties in the past.  Its all I use this forum for.

15  Economy / Services / Re: [0.02BTC Bounty]Help installing g++ 4.8.1 on a google compute engine instance on: December 18, 2013, 12:58:04 AM
Just sent 0.02114743 BTC in the transaction that can be found at https://blockchain.info/tx/cd53d2e4712e4fc892a2f1fdc24730e63f5ab1566215956a9b3ed8bd78b937a6

Thanks again, and enjoy the coins.
16  Economy / Services / Re: [0.02BTC Bounty]Help installing g++ 4.8.1 on a google compute engine instance on: December 17, 2013, 02:54:35 AM
nickjer:

Thanks for the help.  You aren't kidding about

Quote
Then type "gmake -j <# cpu cores>" and go eat dinner.

That takes a long time.  I had to do it three times, because the first time I did it, I passed the wrong path to configure, and the second time I did it, it nearly completed before determining that I didnt have zip installed.  Anyway, it works now.  Thanks a bunch.

Also, please verify that the BTC address in your sig is appropriate to send payment.  
17  Economy / Services / [0.02BTC Bounty]Help installing g++ 4.8.1 on a google compute engine instance on: December 15, 2013, 04:21:34 AM
I have a little c++ hobby project I am working on in which I used the "thread" class that is part of c++11.  Apparently, GCC (G++) doesnt support these new features before version 4.8.1.  On google compute engine the disk image I like to use is the debian-7-weezy, and it uses a 4.7 version of GCC.  I spent and hour or two today trying to compile 4.8.1 from scratch, but to no avail. 

If you can walk me through how to get 4.8.1 compiled and installed on there I will send you 0.02BTC.  If you look at my previous posting history, it is almost exclusively me asking computer questions and then paying people for helping me.  I have paid 3 similar bountys in the past.  I will pay you if you successfully help me.

18  Economy / Services / Re: [3 BTC] Help me covert some images to a movie on: April 26, 2012, 03:23:12 AM
Also, the quality seems a bit low.  I see in the manual that 200kbps is the default quality, and I notice that if I leave -b 1800 off the file looks the same as when I include it and its also the same file size, so I think some formatting in that line is being done wrong, because we certainly arent getting good quality. 

Thanks for your help, I have sent you an additional 0.314159 BTC and that should complete our transaction, thanks for your help.

I found the issue here, the "-b xxx" portion needs to be after the -i portion.  I got it to work.
19  Economy / Services / Re: [3 BTC] Help me covert some images to a movie on: April 26, 2012, 03:08:01 AM
Ok - I was able to get it to work, thanks for your help.  This was the first bash scripting I have ever done.  I am pretty capable at scripting in other contexts, just had no idea how it worked from the terminal.  Thanks for your help.  The only part that didnt work was the " *.jpg " part in:

Quote
ffmpeg -r 30 -b 1800 -i *.jpg output.mp4

I had to go back to
Quote
ffmpeg -r 30 -b 1800 -i %03d.jpg output.mp4
but change all my file names to 000.jpg, 001.jpg, etc.  Do you know any way to make it work from 0.jpg to 555.jpg (for instance)?

Also, the quality seems a bit low.  I see in the manual that 200kbps is the default quality, and I notice that if I leave -b 1800 off the file looks the same as when I include it and its also the same file size, so I think some formatting in that line is being done wrong, because we certainly arent getting good quality. 

Thanks for your help, I have sent you an additional 0.314159 BTC and that should complete our transaction, thanks for your help.
20  Economy / Services / Re: [3 BTC] Help me covert some images to a movie on: April 23, 2012, 03:05:06 AM
Thank you for your very detailed reply.  I don't have time right now to work on this issue, but I will send you 2.7 of the 3 promised BTC.  In 48 hours I will have time to work on this issue and if I can get it to work I will send you the rest, otherwise I will ask some more questions.   Thanks again! 

I have sent 2.71828 BTC to 1Q3DhCvgcgMKtQJGQMPZGLZaueWaTps7wh

Thanks again!
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!