summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2019-11-17Kernel+LibC: Remove the isatty() syscallAndreas Kling
2019-11-17Kernel: Implement some basic stack pointer validationAndreas Kling
2019-11-16LibPthread: Implement a basic first pthread mutexAndreas Kling
2019-11-14Kernel+LibPthread: Implement pthread_join()Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06Revert "LibHTML: Rename parse_html() => parse_html_document()"Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-05disk_benchmark: Add a -c flag to enable use of disk cachesAndreas Kling
2019-11-04Userland: Add syscall programMauri de Souza Nunes
2019-11-04Userland: Add the utility "nl" (number line) (#693)balatt
2019-11-04wc: Rewritten with added features (#690)balatt
2019-11-03cat: Use a 32 KB I/O buffer here to improve "cat a > b" scenarioAndreas Kling
2019-11-02cp: Fail immediately if there's not enough space for the destinationAndreas Kling
2019-11-02cp: Read/write 32 KB at a time to go faster :^)Andreas Kling
2019-11-02disk_benchmark: Use 64-bit values for bytes-per-second valuesAndreas Kling
2019-11-02cp: Try to pre-size the destination file to the final size up frontAndreas Kling
2019-10-31Userland: cat no longer tries to open "cat"balatt
2019-10-29cat: Updated to handle multiple input files (#694)balatt
2019-10-19ls: Fix alignment of device files in long mode (ls -l)Andreas Kling
2019-10-19ls: Add -t and -r flagsAndreas Kling
2019-10-19aplay: Fixed incomplete playback of filesTill Mayer
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-29FileManager+LibGUI+html: Add an icon to represent HTML filesAndreas Kling
2019-09-29html: Set the window title based on the HTML document's titleAndreas Kling
2019-09-28Userland+LibHTML: Add the html commandSergey Bugaev
2019-09-28Userland: Add a man commandSergey Bugaev
2019-09-28Userland: Add an md commandSergey Bugaev
2019-09-28Libraries: Add LibMarkdownSergey Bugaev
2019-09-28Userland: Add disk_benchmark program to test read/write speedsConrad Pankoff
2019-09-23ifconfig: Allow setting an adapter's IPv4 addressAndreas Kling
2019-09-23Userland: Unbreak "copy" and "paste" after GEventLoop removalAndreas Kling
2019-09-22LibCore+LibGUI: Remove GEventLoop and use CEventLoop everywhereAndreas Kling
2019-09-22LibCore: Make CObject reference-countedAndreas Kling
2019-09-21LibCore: Convert CFile to ObjectPtrAndreas Kling
2019-09-21LibCore: Convert CLocalSocket to ObjectPtrAndreas Kling
2019-09-17Userland: Add copy and paste commandsSergey Bugaev
2019-09-12Add stdin support to wc programTim Morgan
2019-09-11Inspector+LibCore+rpcdump: Rework the RPC stuff to be request/responseAndreas Kling
2019-09-11rpcdump: Don't call CSocket::connect() before setting up hooksAndreas Kling
2019-09-11ls: Add -h (human readable) output switchAndreas Kling
2019-09-07cp: Implement directory copyingAaron Malpas
2019-09-07cp: Refactor copying into copy_file functionAaron Malpas
2019-09-07cp: Use LibCore/CArgsParser for command-line arg parsingAaron Malpas
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-01wc: Add missing newlines to some error messagesAndreas Kling
2019-08-29Userland: Add 'which' command (#497)Brandon Scott
2019-08-26LibThread: Introduce a new threading librarySergey Bugaev
2019-08-25Userland: Add realpathRok Povsic