Andre Polykanine A.K.A. Menelion Elensúlë
68c9aed134
Corrected as per @iirelu's comment
2014-10-09 23:06:24 +03:00
Andre Polykanine A.K.A. Menelion Elensúlë
39d8753d52
[python/en] Adding exponentiation operator
2014-10-09 22:49:47 +03:00
Alexander Sologub
6629b5cd39
[python/en] Removed unnecessary plus signs in bool operators section
2014-10-09 19:50:55 +03:00
jmaud
54835f2094
Updates to tmux.conf
...
Added reloading tmux configuration
2014-10-08 21:23:20 -04:00
Simon Neveu
46f174fab1
testing git config
2014-10-08 23:32:22 +01:00
Simon Neveu
f6a604e155
Copy change to intro and formatting
2014-10-08 23:25:21 +01:00
Simon Neveu
269d717224
added comments, tags, classes, and attributes
2014-10-08 23:18:30 +01:00
Simon Neveu
645233dce9
Init haml md
2014-10-08 09:38:07 +01:00
Johnathan Maudlin
a66c00c599
Correct Contributor's list & line spacing
...
- Contributor's list had an improper character which ruined the formatting.
- The Theme section was preceded by three line breaks rather than two.
2014-10-07 17:12:25 -04:00
jmaud
fd29de7f59
Adjustments to Style & Content
...
Style changes
- Site format has changed back to ~80 columns, certain rows have had line
breaks removed.
- Indentation has been adjusted globally to give additional space and
consistency.
- Configuring Tmux has been separated due to long lines causing the entire
page to scroll horizontally and block text.
- tmux.conf has been reorganized to better explain settings categorically to
new users.
Content Changes
- Unmapping the prefix key contained erroneous data
- Misc section and it's contained "bind r source.." setting are superfluous,
as when this points to the next file to use in the configuration, not the
current file. Since no additional configuration files have been used, it
has been removed.
2014-10-07 16:55:40 -04:00
Nami-Doc
ce3fb267f7
Merge pull request #793 from m90/csharp-typo
...
[c#/en] fix typo
2014-10-07 21:21:18 +02:00
m90
6ce6aa7b54
fix typo -> re(s)pository pattern
2014-10-07 20:38:14 +02:00
Nami-Doc
d786c94f84
Fix a braino
...
caught by @wryk++
2014-10-07 15:47:06 +02:00
Gregory S. Kielian
d83a0f0385
Changed descriptions, added grep, fgrep examples
2014-10-04 14:50:00 -07:00
C. Bess
923a8ed99b
- mo betta examples
...
- add `inout` example
- better `optional` example
- Playground issue has been resolved, uncommented `protocol` example
2014-10-04 12:08:23 -05:00
Nami-Doc
254548a70a
Merge pull request #752 from Oire/add-ru-python3
...
[python3/ru] Adding a Russian translation for Python 3.x tutorial
2014-10-03 10:24:40 +02:00
Nami-Doc
ed96a34e11
Merge pull request #771 from Jell-E/master
...
[coffeescript/nl] Added Dutch translation of the coffeescript tutorial
2014-10-03 10:23:52 +02:00
Nami-Doc
3495117c5b
Merge pull request #788 from SDLyu/master
...
LiveScript translation of zh-cn
2014-10-03 10:23:41 +02:00
sdlyu
221d72bcb0
Correct typo and rewrite the meaning of :=
2014-09-29 10:30:40 +08:00
Nami-Doc
c77c92818c
Merge pull request #790 from adventuretc/patch-2
...
Correction to use the intended variables.
2014-09-27 21:59:11 +02:00
Nami-Doc
160c826847
Capturing captures, and numbering them
...
also, multi-indexing in arrays
also, labeled loops (draft)
also, arrays vs $() vs parcel vs ... (@moritz++)
2014-09-27 21:57:10 +02:00
adventuretc
a5b7319eac
Correction to use the intended variables.
2014-09-27 21:38:30 +02:00
Gregory S. Kielian
d22d591e3e
amended sed and bash descriptions
2014-09-27 12:12:56 -07:00
Gregory S. Kielian
e9c21740df
amended grep description
2014-09-27 12:06:36 -07:00
Gregory S. Kielian
b52a32dd24
Added sed
and grep
examples to useful-commands
2014-09-27 12:04:25 -07:00
sdlyu
0c77c29c88
Add translators information.
2014-09-26 16:16:19 +08:00
sdlyu
6de3499277
Fix typo
2014-09-26 15:13:10 +08:00
sdlyu
83d20b05f3
Add chinese translate of LiveScript
2014-09-26 15:11:06 +08:00
Nami-Doc
66f62c63ca
Merge pull request #787 from eternalthinker/patch-1
...
Added correct syntax for c++ inheritance.
2014-09-24 09:48:29 +02:00
eternalthinker
7b95a1e921
Added correct syntax for c++ inheritance.
...
[more] Minor indent correction at namespaces intro example
2014-09-24 08:42:21 +05:30
Nami-Doc
b6ba516743
Exception thingies!
2014-09-23 23:28:24 +02:00
Nami-Doc
40620d6816
Merge pull request #786 from Mienaikage/patch-1
...
Added 'lang: es-es'
2014-09-23 21:53:35 +02:00
Mienaikage
e68f2b4da1
Added 'lang: es-es'
2014-09-23 17:15:36 +01:00
Levi Bostian
007aa583ba
Merge pull request #783 from g-liu/en-julia
...
Update the naming conventions in Julia
2014-09-22 19:42:44 -05:00
Nami-Doc
809bc8ce49
Merge pull request #784 from kb1/master
...
[go] Fix no new variables on left side of :=
2014-09-22 14:14:55 +02:00
kb
5e5a7a19fe
[go] Fix no new variables on left side of :=
...
Cannot short declaration twice without at least one new var. Also changing type from string to slice.
$ go run learnxiny.go
# command-line-arguments
./learnxiny.go:83: no new variables on left side of :=
./learnxiny.go:83: cannot use []int literal (type []int) as type string in assignment
./learnxiny.go:84: first argument to append must be slice; have string
./learnxiny.go:90: first argument to append must be slice; have string
2014-09-22 12:11:49 +00:00
Geoffrey Liu
54fad387b5
Naming conventions in Julia
...
As suggested in #768 by @ChristianPeel
2014-09-21 17:16:05 -07:00
Adam
41c3d0329a
Ruby syntax for nimrod for now
2014-09-21 22:31:07 +02:00
Adam Bard
1d25d7a08c
Merge pull request #772 from JasonJAyalaP/nim
...
Added Nim(rod)
2014-09-21 22:27:43 +02:00
Levi Bostian
c9446d4512
Merge pull request #782 from m90/patch-1
...
[json/en] JSON should not use single quote delimited strings
2014-09-21 11:47:17 -05:00
Frederik Ring
074d488aa2
[json/en] JSON should not use single quote delimited strings
2014-09-21 18:27:43 +02:00
Nami-Doc
1eb78e0a72
Merge pull request #781 from m90/css-de
...
[css/de] fix lots of typos, weird phrasings and translation errors
2014-09-21 11:46:26 +02:00
Nami-Doc
6090f083bf
Merge pull request #778 from g-liu/en-julia
...
Fixes issue #747 pertaining to Julia
2014-09-21 11:17:42 +02:00
Nami-Doc
88c9cd50d7
Merge pull request #779 from g-liu/en-css
...
Update the CSS tutorial
2014-09-21 11:17:24 +02:00
m90
c3dc014180
fix lots of typos, weird phrasings and translation errors
2014-09-21 10:57:16 +02:00
Geoffrey Liu
1b90e0f41b
Update the CSS tutorial
...
add more properties, formatting, spelling/grammar, more actual examples
2014-09-21 00:22:26 -07:00
Geoffrey Liu
92a2dbf34e
Fixes issue #747
2014-09-21 00:07:34 -07:00
Jason J Ayala P
d7e939ffd7
minor tweaks
2014-09-20 07:07:06 -05:00
Jason J Ayala P
86022f3f3f
proof reading
2014-09-19 20:33:21 -05:00
Jason J Ayala P
7c450ebc0c
minor fix
2014-09-19 20:30:11 -05:00