All public logs

From Federal Burro of Information
Jump to navigationJump to search

Combined display of all available logs of Federal Burro of Information. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 17:23, 31 July 2023 David talk contribs created page Reporting, Paperwork, and Busy-work (Created page with " Often Learship / Management wants staff to "report" data. Surveys, timesheets, self assessments. For staff that can feel lke busy work, or boring paperwork. So had this idea of an agrement between staff and management: If you want me to do some data entry / reporting / survey then I want something in return. If I give you the data so that you can make a report, then the agreement would be that you _share_ that report back to the staff that entered it. It seems only...")
  • 01:56, 27 June 2023 David talk contribs created page Logi Skirm Loki (Created page with "<pre> [Loki, magena1's Loki] Co-Processor II Damage Control II Power Diagnostic System II Power Diagnostic System II Power Diagnostic System II 100MN Y-S8 Compact Afterburner Dread Guristas Large Shield Booster Multispectrum Shield Hardener II Multispectrum Shield Hardener II Republic Fleet Large Cap Battery Pithum C-Type Medium Remote Shield Booster Pithum C-Type Medium Remote Shield Booster Pithum C-Type Medium Remote Shield Booster Pithum C-Type Medium Remote Shield...")
  • 23:58, 9 June 2023 David talk contribs created page Duplicate Finder Script (Created page with " finder.py <pre> #!/usr/bin/env python3 import os import hashlib def get_file_checksum(filename): """ Returns the SHA-256 hash of the contents of a file """ sha256 = hashlib.sha256() with open(filename, 'rb') as f: while True: data = f.read(1024) if not data: print("x", end = '') break sha256.update(data) print("!", end = '') return sha256.hexdigest() def fi...")
  • 03:43, 29 May 2023 David talk contribs created page Tomcat 4.0.3 Notes (Created page with "installs: rpm -i ant-1.4.1-4.noarch.rpm rpm -i regexp-1.2-1.noarch.rpm rpm -i servletapi4-4.0.3-1.noarch.rpm rpm -i tomcat4-4.0.3-1.noarch.rpm rpm -i tomcat4-webapps-4.0.3-1.noarch.rpm got http://download.sourceforge.net/junit/junit3.7.zip unzipped , dropped: "junit.jar" in /usr/share/java/ cd /usr/include/ ln -s /usr/local/apapche/include apache cp /usr/local/apache/libexec/mod_jk.so /usr/local/apache/libexec/mod_jk.so.3.x edit /usr/local/apache/conf/httpd....")
  • 21:06, 9 May 2023 David talk contribs created page ESP32 Wi-Fi Signal Strength (Created page with " refernce / source: https://randomnerdtutorials.com/esp32-cam-connect-external-antenna/ <pre> #include "WiFi.h" const char* ssid = "REPLACE_WITH_YOUR_SSID"; const char* password = "REPLACE_WITH_YOUR_PASSWORD"; void setup(){ Serial.begin(115200); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.println("WiFi connected."); delay(100); } void loop(){ Serial.print...")
  • 04:42, 8 May 2023 David talk contribs created page Gemmology toronto (Created page with " ; Canadian Gemmological Association : https://canadiangemmological.com/education/professional-gemmology-program-2/ ; George Brown Program: : https://www.georgebrown.ca/programs/gemmology-program-f105 ; George brown course : gem settings : https://coned.georgebrown.ca/courses-and-programs/gem-setting")
  • 23:47, 7 May 2023 David talk contribs created page File:Wrl-18036-pinout.jpg
  • 23:47, 7 May 2023 David talk contribs uploaded File:Wrl-18036-pinout.jpg
  • 15:45, 29 April 2023 David talk contribs created page Gen Z Terms (Created page with "as per my eve alliance ( DWH ) 1. "Lit" - A word used to describe something that is exciting or amazing. 2. "Lowkey" - A word used to describe something that is not well-known or not talked about often. 3. "Highkey" - A word used to describe something that is very well-known or talked about often. 4. "I can't even" - A phrase used to express disbelief or shock. 5. "Yeet" - A word used to express excitement or enthusiasm. 6. "Stan" - A word used to describe someon...")
  • 03:28, 11 April 2023 David talk contribs created page Weatherstation/Weather Station April 2023 (Created page with "<pre> #include <Wire.h> #include <SPI.h> #include <Adafruit_Sensor.h> #include "Adafruit_BME680.h" #include <WiFi.h> #include <ESPmDNS.h> #include "wifi_secrets.h" #define HOSTNAME "weatherstation3" #define SEALEVELPRESSURE_HPA (1013.25) #define I2C_SDA 0 #define I2C_SCL 1 char ssid[] = SECRET_SSID; char password[] = SECRET_PASS; String hostname = HOSTNAME; String mylocalip ; String mymacaddr ; WiFiServer server(80); // Variable to store the HTTP request String...")
  • 00:59, 4 April 2023 David talk contribs created page File:Temperaturedata.png
  • 00:59, 4 April 2023 David talk contribs uploaded File:Temperaturedata.png
  • 13:22, 3 April 2023 David talk contribs created page Weatherstation/Weatherstation Talk (Created page with " == Slide 1 Who == ; Speaker David THornton I play a tech enthusiast on TV. : Sysadmin / Devops/ SRE / Scientist / Statitician / Breaker of things Weather stations == Slide 2 Idea == Idea: COllect data about "this old house". Temerature Humidity Also collect air pressure data to better understand various physiological resonses. Use linux, use IOT. == Slide 3 THe idea == Some sensors sprinkled around the house so I can make a "data picture" of the house. Learn...")
  • 05:11, 1 April 2023 David talk contribs moved page Weatherstation1 to Weatherstation/Weatherstation1
  • 05:10, 1 April 2023 David talk contribs created page Weatherstation/Weather Station March 2023 (Created page with " Features / improvements # MDNS for discovery of web service. # Moved Secrets to include file. # removed serial requirement, so it can run "headless" <pre> #include <Wire.h> #include <SPI.h> #include <Adafruit_Sensor.h> #include "Adafruit_BME680.h" #include <WiFi.h> #include <ESPmDNS.h> #include "wifi_secrets.h" #define HOSTNAME "weatherstation3" char ssid[] = SECRET_SSID; char password[] = SECRET_PASS; #define SEALEVELPRESSURE_HPA (1013.25) #define I2C_SDA 0...")
  • 01:19, 19 March 2023 David talk contribs created page Eve-online/Fitting/Catalyst (Created page with " == t2 longbow / mediumg shield no point == <pre> [Catalyst, t2longbow] Magnetic Field Stabilizer II Magnetic Field Stabilizer II Co-Processor I Medium Shield Extender II 5MN Y-T8 Compact Microwarpdrive 150mm Railgun II 150mm Railgun II 150mm Railgun II 150mm Railgun II 150mm Railgun II 150mm Railgun II Small Hyperspatial Velocity Optimizer I Small Ancillary Current Router I Small Polycarbon Engine Housing I Caldari Navy Iridium Charge S x240 </pre>")
  • 05:04, 9 March 2023 David talk contribs created page Orbitofrontal Christmas Poem (Created page with "Orbitofrontal Christmas Poem 'Twas the night before finals, when all through my brain all the neurons were stirring and firing again. The cerebellum was hung by the pons with such care, in hopes that basal ganglia soon would be there. The colliculi were nestled all snug in their tectum, while visions of hippocampi danced with tegmentum. The lobes in the cortex, serotonin in their lap, were settling my brain for a long winter's nap. When out of the hypothalamus there...")
  • 03:58, 8 March 2023 David talk contribs created page Bank's faith in Linux pays dividends (Created page with "Bank's faith in Linux pays dividends By Liesbeth Evers [24-04-2002] Credit Suisse replaces Unix with Linux on mission-critical financial system Financial giant Credit Suisse First Boston has increased system performance twenty-fold by moving its mission critical application infrastructure from Risc-Unix to a Lintel environment. While incumbents continue to dismiss Linux as unfit for serious enterprise applications, the bank has proved the opposite by trusting its glob...")
  • 02:00, 8 March 2023 David talk contribs created page How to make an FM wireless BUG (Created page with " This handy little device can be used for two purposes. The first is a FM bug, which transmits on the FM frequency, thus making it extremely easy to pick up. The second is a FM station blocker (which can be really fun if you are pissed at someone who just happens to be listening to the radio. In this case, you can do 1 (or both) of these: A) announce through the bug (on their station) that Fred (whoever is listening) has just won 1 years supply of orthopedic shoe pads, o...")
  • 05:42, 6 March 2023 David talk contribs created page Linux in Banks (Created page with "A director once told me that the banks would never use linux. Here are my notes from that. ( all pretty much dead, but I challenge you do see wherethis stuff went to. ) http://www.people.hbs.edu/delfenbein/ Ownership and control rights in Internet portal alliances, 1995-1999 http://www.people.hbs.edu/delfenbein/PortalDeals1.pdf Explaining the Recent Wave of Total IT Outsourcing by Global Banks http://www.people.hbs.edu/delfenbein/Larkin11192003.doc http://www.peo...")
  • 16:06, 28 February 2023 David talk contribs created page Terraform Defaults and Local (Created page with " Now you tfvars file can have only defaults for larger groups of vars. <pre> variable "liveness_default" { type = map default = { health_threshold = 1 interval = 5 logging = true path = "/health" timeout = 1 unhealth_threshold = 2 } } variable "liveness" { type = map default = {} } locals { liveness = merge(var.liveness_default, var.liveness) } resource google_liveness_thing...")
  • 18:54, 26 February 2023 David talk contribs created page Htttest.sh (Created page with "smash apache with ab. <pre> #!/bin/sh # this test the performance of apache alone based on various concurrency levels. #URL="http://66.46.148.83/" COUNT="10000" AB="/usr/local/apache/bin/ab" CONCURS="300" PID=$$ #CONCURS="100 200 300 400 500 600 700 800 900 1000" # sample size N=10 for i in `seq 1 $N` do for CONCUR in $CONCURS do echo Processing run $i CONCUR $CONCUR echo $AB -n $COUNT -c $CONCUR $URL...")
  • 18:41, 26 February 2023 David talk contribs created page Showsize (Created page with "a c program to tell you what the size of data types are: showsize.c <pre> #include <sys/types.h> #include <stdio.h> int main(void) { printf("In bits:\n"); printf("%d <-unsigned long\n", sizeof(unsigned long)*8); mul8 to get it in bits: printf("%d <-unsigned long\n", sizeof(unsigned long)); mul8 to get it in bits: printf("%d <-long long\n", sizeof(long long)*8); mul8 to get it in bits: printf("%d <-int\n",...")
  • 18:37, 26 February 2023 David talk contribs created page Test http pl (Created page with " test_http.pl <pre> #!/usr/bin/perl -w # $Author: staradm $ # $Date: 2006/03/28 14:07:00 $ # $Id: test_http.pl,v 1.3 2006/03/28 14:07:00 staradm Exp $ # $Name: $ # $Revision: 1.3 $ # $State: Exp $ use strict; require HTTP::Request; require LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->credentials( '192.168.1.30:443', 'Restricted Files', 'staradm' => 'XXX' ); my ( $sec, $min, $hour, $day, $month, $year ) = ( localtime ) [ 0, 1, 2, 3, 4, 5 ]; # my...")
  • 18:34, 26 February 2023 David talk contribs created page Fwlog2sql/fwlog2sql.sql (Created page with " <pre> CREATE table hit ( hash varchar(32), ID INT, TS TIMESTAMP, hostname varchar(255), PROTO varchar(8), TOS varchar(8), CH varchar(8), RULE varchar(8), PREC varchar(8), DST varchar(15), SRC varchar(15), SPT varchar(8), DPT...")
  • 18:34, 26 February 2023 David talk contribs created page Fwlog2sql (Created page with " /fwlog2sql.sql")
  • 18:33, 26 February 2023 David talk contribs created page Randomname.py" (Created page with "#!/usr/bin/env python3 import random colours = [] fruits = [ "apple", "apricot", "avocado", "banana", "blackberry", "blackcurrant", "blueberry", "breadfruit", "cactus", "cantaloupe", "cashew", "cherry", "clementine", "coconut", "crabapple", "cranberry", "cucumber", "currant", "date", "dragonfruit", "durian", "eggplant", "elderberry", "fig", "goji", "gooseberry", "grape", "grapefruit", "guava", "honeyberry",...")
  • 18:17, 26 February 2023 David talk contribs created page Epoch (Created page with "<pre> #!/bin/sh date -d "1970-01-01 UTC $1 seconds" </pre> category:script")
  • 17:39, 26 February 2023 David talk contribs created page Dhcp.cmd (Created page with "<pre> # This is a widows cmd script. # It's meant to be run on tio-ads server. # You should change the MAC address, hostname and IP address to match your server. set subnetwork=172.31.4.0 set IPAddress=172.31.4.XX set mac_address=XX set machine_name=ibmbcXXbXX set BootServerIP=172.31.4.250 netsh dhcp server scope %subnetwork% add reservedip %IPAddress% %mac_address% %machine_name% "DHCP for %machine_name%" BOTH netsh dhcp server scope %subnetwork% set reservedoptionvalue...")
  • 05:58, 25 February 2023 David talk contribs created page Crow (Created page with " <pre> [Crow, 逮住你了(got you)] Nanofiber Internal Structure II Overdrive Injector System II Warp Scrambler II Small Azeotropic Restrained Shield Extender Warp Disruptor II 5MN Quad LiF Restrained Microwarpdrive Interdiction Nullifier I Prototype Cloaking Device I Small Ghoul Compact Energy Nosferatu Small Hyperspatial Velocity Optimizer II Small Hyperspatial Velocity Optimizer II </pre>")
  • 20:18, 18 February 2023 David talk contribs created page File:Sun 4600 fan pin out.png
  • 20:18, 18 February 2023 David talk contribs uploaded File:Sun 4600 fan pin out.png
  • 20:18, 18 February 2023 David talk contribs created page Sun 4600 fan pin out. (Created page with "image:sun_4600_fan_pin_out.png")
  • 23:51, 17 February 2023 David talk contribs created page Python Machine Learning Data Pre-Processing Template (Created page with " <pre> import numpy as np import matplotlib.pyplot as plt import pandas as pd dataset = pd.read_csv('filename.csv') X = dataset.iloc[:, :-1].values y = dataset.iloc[:, -1].values from sklearn.model_selection import train_test_split X_train, X_test , y_train, y_test = train_test_split(X,y,test_size = 0.2 , random_state = 81 ) </pre> source: Udemey "Machine Learning A-Z™: Python & R in Data Science [2023]" category:script")
  • 20:07, 16 February 2023 David talk contribs created page Timeline (Created page with " using google java script: https://developers.google.com/chart/interactive/docs/gallery/timeline#putting-bars-on-one-row")
  • 03:55, 26 January 2023 David talk contribs moved page Eve-online/Wormhole IDs to Eve-online/Wormhole ('cus)
  • 03:54, 26 January 2023 David talk contribs created page File:Eve wormhole collapse.png
  • 03:54, 26 January 2023 David talk contribs uploaded File:Eve wormhole collapse.png
  • 20:02, 2 January 2023 David talk contribs created page Mdns (Created page with " automagical dns on local nets. on a windows machine use this to discover services: dns-sd -B _ssh._tcp dns-sd -B _http._tcp dns-sd -B _https._tcp You can get arduino's to advertise their services like this: https://github.com/arduino-libraries/ArduinoMDNS https://tttapa.github.io/ESP8266/Chap08%20-%20mDNS.html https://support.arduino.cc/hc/en-us/articles/4506515275548-About-mdns-discovery I use this on my esp32's")
  • 19:56, 2 January 2023 David talk contribs created page Wsl (Created page with " dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart")
  • 20:41, 31 December 2022 David talk contribs created page Shortbread recipe (Created page with " reference: https://www.theendlessmeal.com/melt-in-your-mouth-shortbread/ * whipped * 3 cups all-purpose flour * 2 cups salted butter, at room temperature – see notes * 1 cup powdered sugar * ½ cup cornstarch * 1 teaspoon vanilla steps: 1. You'll start by slowly mixing the salted butter, flour, icing sugar, cornstarch, and vanilla using electric beaters at their lowest setting – this is to prevent a cloud of flour dust from flying out of the bowl. After a minute,...")
  • 16:25, 21 December 2022 David talk contribs created page Gcp Notes/basic-web-server-startup.sh (Created page with " <pre> #! /bin/bash if [ -f /etc/startup_script_completed ]; then exit 0 fi apt-get update apt-get install apache2 -y a2ensite default-ssl a2enmod ssl file_ports="/etc/apache2/ports.conf" file_http_site="/etc/apache2/sites-available/000-default.conf" file_https_site="/etc/apache2/sites-available/default-ssl.conf" http_listen_prts="Listen 80\nListen 8008\nListen 8080\nListen 8088" http_vh_prts="*:80 *:8008 *:8080 :8088" https_listen_prts="Listen...")
  • 04:28, 17 December 2022 David talk contribs created page Esp32/esp32 bme680 http (Created page with "<pre> #include <Wire.h> #include <SPI.h> #include <Adafruit_NeoPixel.h> #include <Adafruit_Sensor.h> #include "Adafruit_BME680.h" // https://www.arduino.cc/reference/en/libraries/wifi// #include <WiFi.h> // #include <Adafruit_NeoPixel.h> // esp32 onboard Neopixel stuff #define PIN 8 #define NUMPIXELS 1 #define DELAYVAL 500 #define SEALEVELPRESSURE_HPA (1013.25) #define I2C_SDA 0 #define I2C_SCL 1 const char* ssid = "Tomato24"; const char* password = ""; // Se...")
  • 16:52, 16 December 2022 David talk contribs moved page Home Lab to Home Laboratory
  • 16:44, 16 December 2022 David talk contribs created page Laboratory Supplies (Created page with " ;Drycan inc :https://www.getdesiccants.ca/")
  • 04:41, 2 December 2022 David talk contribs created page Windows Rsync Example (Created page with "<pre> # done # "C:\Program Files\cwRsync\bin\rsync.exe" --progress -v -a -c --stats /cygdrive/i/backup /cygdrive/h/i # done # "C:\Program Files\cwRsync\bin\rsync.exe" --progress -v -a -c --stats /cygdrive/i/docs /cygdrive/h/i # done # "C:\Program Files\cwRsync\bin\rsync.exe" --progress -v -a -c --stats /cygdrive/i/drivers /cygdrive/h/i # done # "C:\Program Files\cwRsync\bin\rsync.exe" --progress -v -a -c --stats /cygdrive/i/eve_stuff /cygdrive/h/i # done # "C:\Progr...")
  • 04:25, 2 December 2022 David talk contribs moved page Crappy Internet to Crappy Internet 20170715
  • 04:24, 2 December 2022 David talk contribs created page File:149758326028573 1497583260 1496719200.png
  • 04:24, 2 December 2022 David talk contribs uploaded File:149758326028573 1497583260 1496719200.png
  • 04:24, 2 December 2022 David talk contribs created page File:20170615.PNG
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)