Install Django (Python) Kubuntu
To install Django issue the following command. [codesyntax lang=”bash”] pip3 install django [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.
To install Django issue the following command. [codesyntax lang=”bash”] pip3 install django [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.
Another approach to prepare usb drives to recieve ISO images. [codesyntax lang=”bash”] sudo dd if=/path/to/ios/your.iso of=/path/to/usb/drive [/codesyntax] The media is prepared by using the dd statement. Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.
Primary Dialog Primary Option Menu Edit Link Categories Pop Up Menu Link Pop Up Menu Our primary workbench is depicted below. This tool stores links (for web pages and executable programs). Browser counterparts cannot accomodete other links which may be useful in developing computer software. The panel on the left deals with entries for cagtegories […]
In order to sucessfully dual boot install Windows X using the entire disk. Be sure and reboot after installation to ensure proper boot sequence. Reboot using the Linux Distribution ISO. After booting proceed to install the distribution. Follow the prompts and when the installer asks for the target location select the manual option. Here you […]
A major consideration when using a Linux distribution is the lack of a GUI for many of the system administration tasks. Programmers are pretty much relegated to the command line without some fairly sophisticated tools. A c++ program issues sudo command to execute shell commands while routing the output to a text file and subsequently […]
We begin by identifying the source partition. [codesyntax lang=”bash”] sudo fdisk -l /dev/sda Disk /dev/sda: 111.8 GiB, 120040980480 bytes, 234455040 sectors Disk model: SanDisk SSD PLUS Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk […]
Currently I use multiple browsers to complete my assigned task. To accomodate multiple browsers a block of code was created. The main method is listed below. [codesyntax lang=”cpp”] void DlgTstFrame::fireBrowser(string bn) { // bn is the variable that holds the browser name string url = checkForURL(); // check the clipboard for a URL if (url […]
When c++ source code is needed to invoke the default browser with a specified URL this utility generated the need source code. In the browser highlight the desired URL then copy its contents to the clipboard by using the copy command. Curl is utilized to generate the URL then the source code is generated and […]
Invoke the following command at the command prompt to export a Mysql database. [codesyntax lang=”bash”] mysqldump -ubcs -p bcswebtools > bcswebtools.sql [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.
Retrieve the source code and extract to the install location. [codesyntax lang=”bash”] sudo add-apt-repository ppa:damien-moore/codeblocks-stable sudo apt-get update sudo apt-get install codeblocks codeblocks-contrib [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.