Page MenuHomePhabricator
Paste Active Pastes
  • #ifndef GOLDILOCKS_SHELL_HPP
    #define GOLDILOCKS_SHELL_HPP
     
    #include <iostream>
    #include "iosqueak/blueshell.hpp"
    ...
    • Dec 13 2022, 5:06 AM
    • 53 Lines
    • C++
  • In file included from /home/anna/Documents/MousePaw/repos/ratscript/ratscript-source/src/lexer.cpp:1:
    In file included from /home/anna/Documents/MousePaw/repos/ratscript/ratscript-source/include/ratscript/lexer.hpp:64:
    In file included from /home/anna/Documents/MousePaw/repos/ratscript/ratscript-source/../../nimbly/nimbly/include/nimbly/flexarray.hpp:53:
    In file included from /home/anna/Documents/MousePaw/repos/ratscript/ratscript-source/../../iosqueak/iosqueak/include/iosqueak/channel.hpp:87:
    In file included from /home/anna/Documents/MousePaw/repos/ratscript/ratscript-source/../../libdeps/libs/include/eventpp/callbacklist.h:17:
    ...
    • Mar 5 2021, 1:20 PM
    • 41 Lines
  • ```
    lang=c++
    void foo(int bar) {
    if (bar == 42) {
    std::cout << "baz" << std::endl;
    ...
    • Nov 3 2020, 10:48 AM
    • 8 Lines
    • Remarkup
  • ---
    Language: Cpp
    # https://releases.llvm.org/9.0.0/tools/clang/docs/ClangFormatStyleOptions.html
    AccessModifierOffset: -4
    ...
    • Mar 27 2020, 3:12 PM
    • 104 Lines
  • /* Convert an integer to a string
    * \param the integer to convert
    * \param the base for the conversion, default base-10
    * \param letter case to use for digits greater than 9
    * \param the notation to use for non-decimal bases.
    ...
    • Mar 27 2020, 1:11 PM
    • 114 Lines
    • C++
  • .. _colors:
    Colors
    ################################
    ...
    • Feb 29 2020, 12:27 PM
    • 38 Lines
  • /* test.hpp */
    #ifndef TEST_HPP
    #define TEST_HPP
    ...
    • Jan 23 2020, 5:28 PM
    • 33 Lines
    • C++
  • sudo add-apt-repository "deb http://apt.llvm.org/`lsb_release -sc`/ llvm-toolchain-`lsb_release -sc` main"
    Hit:1 http://ppa.launchpad.net/system76/pop/ubuntu eoan InRelease
    Get:2 http://apt.llvm.org/eoan llvm-toolchain-eoan InRelease [4,216 B]
    Hit:3 http://packages.microsoft.com/repos/vscode stable InRelease
    Err:2 http://apt.llvm.org/eoan llvm-toolchain-eoan InRelease
    ...
    • Jan 18 2020, 9:28 AM
    • 16 Lines
    • Bash Scripting
  • HPP file
    #include "pawlib/flex_array.hpp"
    #include <iostream>
    ...
    • Dec 20 2019, 10:21 AM
    • 55 Lines
  • hpp file
    #include "pawlib/flex_array.hpp"
    #include <iostream>
    ...
    • Dec 20 2019, 10:15 AM
    • 39 Lines
    • C++
  • hpp file:
    #include "pawlib/flex_array.hpp"
    #include <iostream>
    ...
    • Dec 20 2019, 10:11 AM
    • 37 Lines
    • C++
  • """
    <TITLE> [<PROJECT>]
    Version: <SEMENTIC VERSION>
    <DESCRIPTION>
    ...
    • Aug 14 2018, 2:14 PM
    • 28 Lines
    • Python
  • /** <TITLE> [<PROJECT>]
    * Version: <VERSION>
    *
    * <DESCRIPTION>
    *
    ...
    • Aug 14 2018, 2:13 PM
    • 28 Lines
    • C++
  • """
    <TITLE> [<PROJECT>]
    <DESCRIPTION>
    ...
    • Aug 14 2018, 2:11 PM
    • 41 Lines
    • Python
  • /** <TITLE> [<PROJECT>]
    * Version: <VERSION>
    *
    * <DESCRIPTION>
    *
    ...
    • Aug 14 2018, 2:08 PM
    • 42 Lines
    • C++
  • void OneString::append(const char* ostr)
    {
    // Can tell how many bytes by masking the first character
    switch(ostr[index] & 0xF0)
    {
    ...
    • Mar 10 2018, 7:28 PM
    • 39 Lines
    • C++
  • https://eli.thegreenplace.net/2009/03/14/some-problems-of-recursive-descent-parsers/
    https://eli.thegreenplace.net/2012/08/02/parsing-expressions-by-precedence-climbing/
    • Dec 1 2017, 2:25 PM
    • 2 Lines
    • Plain Text
  • Save the above file to your computer.
    Follow [[content/storypack/#creating-storypacks | these instructions]].
    Subtasks provided for convenience. Please mark each subtask as completed when you have finished.
    • Jul 12 2017, 9:05 PM
    • 5 Lines
    • Remarkup
  • /*The following example code would dynamically allocate a bitset as 1000,
    change it to 0101, and then delete it at the end.*/
    typedef bitset<4> testBitset;
    testBitset* tB = new testBitset("1000");
    tB->reset(3);
    ...
    • Mar 6 2015, 3:21 PM
    • 9 Lines
    • C++
  • Before landing, each Revision should...
    (1) Have an associated Maniphest Task.
    (2) Accomplish the feature(s) it was designed to accomplish. [In some cases, the feature itself may be dropped, and only bugfixes and/or optimizations landed instead.]
    (3) Have merged/rebased all changes from `devel` into itself, and all conflicts resolved. ($ git pull --rebase origin devel)
    ...
    • Jan 3 2015, 1:05 PM
    • 18 Lines
    • Plain Text