This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <rms> (5 Resplendant Wood); Ivy and Gad hide in the boardroom, while the circle deals with the flaring fire aspect and her dozen of companions. | |
| -*- Hidden sighed as the soldiers refused to give up this inane attack. "Hey, Marruk. Think you can hold the kid still for a sec?" | |
| <Marruk> "Probably. Lets end this quickly, I'm don't want to hurt our hosts home simply because this childish twit decided this was the best time and place to fight." | |
| <Hidden> "Agreed." The alchemical vanished instantly, a brief flash of anima appearing as her wings unfurled before instantly being quashed by her cloaking systems. "Hold her down, I can finish the rest..." | |
| <Marruk> (Join battle rms?) | |
| <Hidden> (we already DID. I just don't remember who's up.) | |
| <rms> (Not that I can see) | |
| <Hidden> (Oh.) | |
| <rms> !e 8 Gk's JB | |
| <SwampLing> rms: 7 [0, 9, 5, 9, 8, 2, 2, 0] Gk's JB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Ionak> "How close can we get to it before the guards will turn us away?" | |
| <Kes> "I can attempt to infiltrate fully?" | |
| <Ruby> "Unless he has artifacts on the same level as his brother." | |
| <xp194> Vasan: "There's a gate they guard." | |
| <Ruby> "What of the wall around it, is it patrolled?" | |
| <xp194> Vasan: "Yes." | |
| <Ruby> "Hmm." | |
| --> FearMeForIAmPhone ([email protected]) has joined #Exaltedgamewotdoesn'thaveanameyet | |
| <-> FearMeForIAmPhone is now known as Iphonak | |
| <Vasi> "I was under the impression he didn't want to know about the treasures of the island." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingwttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingwtttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingwttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingttettesttettestttettesttettestittettesttettestttettesttettestinttettesttettestttettesttettestittettesttettestttettesttettestingwtft |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <rms> (October 23 0600); you have each been called in for a meeting with Captain Ambercrombe. (Arrive early, late, ontime?) | |
| <FearMeForIAmPink1> Early. But not by too much | |
| <Bolt> Early, of course. | |
| <ChessyPig> Right on time, but it's probably Anya's fault he's not late | |
| --> TautologicalCat ([email protected]) has joined #exaltedout | |
| <-> FearMeForIAmPink1 is now known as RelentlessExigencyConcluder | |
| <-> ChessyPig is now known as AlekseiVasiliev | |
| <rms> <Cpt> (Captain Aloysius Ambercrombe) "Good morning ladies and gentlemen. As you are no doubt aware, we have begun scouting the outlying area as per our mission. Which we are begining 25 years early. Each of you has shown great feats and somehow become something more than mere man or machine." | |
| <rms> (Con't) | |
| <rms> <Cpt> "That is why, today, on the 75th aniversary of our planet's greatest mistake, you will set out and prepare for our ascention into glory. To the south is a mostly intact power plant, Sundance. It has become a refuge for a group calling |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private String strup(String s) { | |
| String strup = new String(s); | |
| if (strup.equals("")) { | |
| return ""; | |
| } | |
| while (new Character(strup.charAt(strup.length() - 1)).toString().matches("[`~!@#$%^&*_=|?/,. ]")) { | |
| try { | |
| strup = strup.substring(0, strup.length() - 1); | |
| if (strup.equals("")) { | |
| return ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > a = {}; b = {next: a}; c = {next: b}; d = {next:c}; a.next = d | |
| { next: { next: { next: [Object] } } } | |
| > a | |
| { next: { next: { next: [Object] } } } | |
| > JSON.stringify(a) | |
| TypeError: Converting circular structure to JSON | |
| at Object.stringify (native) | |
| at repl:1:7 | |
| at REPLServer.self.eval (repl.js:111:21) | |
| at Interface.<anonymous> (repl.js:250:12) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > a = (function(n) { var a = [], r = []; function toggle(x) { if (x == n) return; if (a[x] = !a[x]) toggle(x+1) } for (var i = n; i; --i) { a[i-1] = false; } for (var i = Math.pow(2, n); i; --i) { toggle(0); r.push(a.slice(0)) } return r })(3) | |
| [ [ true, true, true ], | |
| [ false, true, true ], | |
| [ true, false, true ], | |
| [ false, false, true ], | |
| [ true, true, false ], | |
| [ false, true, false ], | |
| [ true, false, false ], | |
| [ false, false, false ] ] | |
| > a.map(function(a) { var r = a[0] ? 1 : 0; for (var i = 1; i < a.length; ++i) { r |= a[i] << i } return r }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [16:25:28] <rms> (10 Descending Water); the group prepares for an excursion to that unknown island. However, they are missing things. They lack a means to ensure they can get there in a timely manner, and a guide back home. | |
| [16:27:57] <Hidden> (Too bad that hearthstone doesn't work in the wyld. >.<) | |
| [16:31:23] <rms> The group meets in Marruk's office to plan. | |
| [16:31:30] -*- Valkyria is packing snacks, and lunches, and more snacks, and lunches, and snacks, and lunches, and maybe a dinner, but certainly she was not taking an excursion like this without a lunch, oh did I mention some snacks? | |
| [16:33:13] -*- Quartz is looking over some documents. Apparently, Quartz decided that an itemized itenerary is the way to go. He actually isn't smoking, at the moment. Instead he bites into a half-eaten apple and washes it down with some gin. "So, anyone have an idea how we get back?" | |
| [16:33:14] <Valkyria> "So," the winged woman asks as she settles down, "When do depart?" She is clueless to the affairs of deeper planning |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <rms> So basic premis on the Exalted side is Abyssals won, everything is in Oblivion, except the Exalted Shards, and the Wyld kind of borders with Oblivion now. With nowhere to go they sat in the Wyld waiting for a chance to Exalt something. | |
| <rms> Yeah typing. | |
| <rms> Eventually, "rifts" open up on Earth (Fallout side) which are actually bordermarches. This leads the Fae and the shards to a new world. | |
| <rms> A world with a low population and 750 shards capable of Exalting people. | |
| <rms> Because the means of propegation for GSPs and DBs are gone, they're unavailable. | |
| <Schleiermacher> Hmmm. | |
| <Schleiermacher> I really don't understand why I'm arguing this, considering I hate GSPs and all their workings, but what do you mean they're unavailable? | |
| <Schleiermacher> *or rather what do you mean the means of propagation are gone? | |
| <rms> Yozis are dead and gone. | |
| <Schleiermacher> Can the Infernal shards literally not Exalt people without coadjutors? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Lingerance> When assigning to a variable in bash, what do parens do? Eg: source=($pkgname-$pkgver.tar.gz) | |
| <Black_Prince> have you used any different zlib version than the one in tbe book? | |
| <dizzylizzy> Black_Prince, yes :( | |
| <dizzylizzy> i had to | |
| <dizzylizzy> the desired version is not at the zlib site anymore | |
| <Black_Prince> take a look at zlib page | |
| <dizzylizzy> okay | |
| <Black_Prince> you will see ln -s command that uses zlib version | |
| <Black_Prince> you need to change that to match your version | |
| <Black_Prince> ln -s ../../lib/libz.so.1.2.7 /usr/lib/libz.so |