hit counter

Timeline

My development logbook

I Think I Finally Understand What the Problem Is.

I think I finally understand what the problem is.

In previous version of Xcode (prior to 4.3), it will install the llvm-gcc and the ‘original’ gcc.

gcc will invoke the llvm-gcc and gcc-4.2 will invoke the GNU gcc.

However, since 4.3, these command line tools will not be installed by default. We can have the command line tools like svn, make and gcc installed by download the ‘command line tools for OSX’ in XCode.

However, the package does not include GNU gcc.

It is the next problem I have to fix.

I Want to Enable

I want to enable

solarize

The putty solarize color scheme files can be found

here

Alternatively, if you have powershell on Windows, you can run the following:

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
cd HKCU:\Software\SimonTatham\PuTTY\Sessions\server_a
# light schema
Set-ItemProperty -Path .  -Name Colour0  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour1  -Value "88,110,117"
Set-ItemProperty -Path .  -Name Colour2  -Value "253,246,227"
Set-ItemProperty -Path .  -Name Colour3  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour4  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour5  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour6  -Value "7,54,66"
Set-ItemProperty -Path .  -Name Colour7  -Value "0,43,54"
Set-ItemProperty -Path .  -Name Colour8  -Value "220,50,47"
Set-ItemProperty -Path .  -Name Colour9  -Value "203,75,22"
Set-ItemProperty -Path .  -Name Colour10  -Value "133,153,0"
Set-ItemProperty -Path .  -Name Colour11  -Value "88,110,117"
Set-ItemProperty -Path .  -Name Colour12  -Value "181,137,0"
Set-ItemProperty -Path .  -Name Colour13  -Value "101,123,131"
Set-ItemProperty -Path .  -Name Colour14  -Value "38,139,210"
Set-ItemProperty -Path .  -Name Colour15  -Value "131,148,150"
Set-ItemProperty -Path .  -Name Colour16  -Value "211,54,130"
Set-ItemProperty -Path .  -Name Colour17  -Value "108,113,196"
Set-ItemProperty -Path .  -Name Colour18  -Value "42,161,152"
Set-ItemProperty -Path .  -Name Colour19  -Value "147,161,161"
Set-ItemProperty -Path .  -Name Colour20  -Value "238,232,213"
Set-ItemProperty -Path .  -Name Colour21  -Value "253,246,227"

#dark
Set-ItemProperty -Path . -Name Colour0 -Value "131,148,150"
Set-ItemProperty -Path . -Name Colour1 -Value "147,161,161"
Set-ItemProperty -Path . -Name Colour2 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour3 -Value "7,54,66"
Set-ItemProperty -Path . -Name Colour4 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour5 -Value "238,232,213"
Set-ItemProperty -Path . -Name Colour6 -Value "7,54,66"
Set-ItemProperty -Path . -Name Colour7 -Value "0,43,54"
Set-ItemProperty -Path . -Name Colour8 -Value "220,50,47"
Set-ItemProperty -Path . -Name Colour9 -Value "203,75,22"
Set-ItemProperty -Path . -Name Colour10 -Value "133,153,0"
Set-ItemProperty -Path . -Name Colour11 -Value "88,110,117"
Set-ItemProperty -Path . -Name Colour12 -Value "181,137,0"
Set-ItemProperty -Path . -Name Colour13 -Value "101,123,131"
Set-ItemProperty -Path . -Name Colour14 -Value "38,139,210"
Set-ItemProperty -Path . -Name Colour15 -Value "131,148,150"
Set-ItemProperty -Path . -Name Colour16 -Value "211,54,130"
Set-ItemProperty -Path . -Name Colour17 -Value "108,113,196"
Set-ItemProperty -Path . -Name Colour18 -Value "42,161,152"
Set-ItemProperty -Path . -Name Colour19 -Value "147,161,161"
Set-ItemProperty -Path . -Name Colour20 -Value "238,232,213"
Set-ItemProperty -Path . -Name Colour21 -Value "253,246,227"

(assuming your the name of the session is ‘server_a’)