User contributions for David
From Federal Burro of Information
Jump to navigationJump to search
8 March 2023
- 02:0102:01, 8 March 2023 diff hist 0 How to make an FM wireless BUG No edit summary current
- 02:0002:00, 8 March 2023 diff hist +3,470 N 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..."
6 March 2023
- 05:4205:42, 6 March 2023 diff hist +1,579 N 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..." current
- 04:1804:18, 6 March 2023 diff hist +176 Quotes No edit summary current
28 February 2023
- 16:0616:06, 28 February 2023 diff hist +884 N 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..." current
- 04:0304:03, 28 February 2023 diff hist +18 Tinker →Todo current
- 04:0204:02, 28 February 2023 diff hist +60 Tinker →Thumbsup gallery
- 03:5603:56, 28 February 2023 diff hist +331 Tinker →Services / Apps
- 03:3603:36, 28 February 2023 diff hist −1 Tinker No edit summary
26 February 2023
- 18:5518:55, 26 February 2023 diff hist +311 Htttest.sh No edit summary current
- 18:5418:54, 26 February 2023 diff hist +632 N 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:4518:45, 26 February 2023 diff hist +111 Showsize No edit summary current
- 18:4118:41, 26 February 2023 diff hist +859 N 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:3718:37, 26 February 2023 diff hist +1,037 N 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..." current
- 18:3418:34, 26 February 2023 diff hist +846 N 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..." current
- 18:3418:34, 26 February 2023 diff hist +19 N Fwlog2sql Created page with " /fwlog2sql.sql" current
- 18:3418:34, 26 February 2023 diff hist +7 Randomname.py" No edit summary current
- 18:3318:33, 26 February 2023 diff hist +2,985 N 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:1718:17, 26 February 2023 diff hist +79 N Epoch Created page with "<pre> #!/bin/sh date -d "1970-01-01 UTC $1 seconds" </pre> category:script" current
- 18:1618:16, 26 February 2023 diff hist +21 Dhcp.cmd No edit summary current
- 17:3917:39, 26 February 2023 diff hist +745 N 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..."
- 17:3517:35, 26 February 2023 diff hist 0 Makedict random.pl No edit summary current
- 17:3517:35, 26 February 2023 diff hist +1,647 Makedict random.pl No edit summary
25 February 2023
- 05:5805:58, 25 February 2023 diff hist +404 N 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>" current
18 February 2023
- 20:1920:19, 18 February 2023 diff hist +85 Sun 4600 fan pin out. No edit summary
- 20:1820:18, 18 February 2023 diff hist 0 N File:Sun 4600 fan pin out.png No edit summary current
- 20:1820:18, 18 February 2023 diff hist +34 N Sun 4600 fan pin out. Created page with "image:sun_4600_fan_pin_out.png"
17 February 2023
- 23:5123:51, 17 February 2023 diff hist +434 N 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" current
16 February 2023
- 20:4420:44, 16 February 2023 diff hist +1,009 Git notes →Visualizing changes current
- 20:0720:07, 16 February 2023 diff hist +120 N Timeline Created page with " using google java script: https://developers.google.com/chart/interactive/docs/gallery/timeline#putting-bars-on-one-row" current
- 05:0705:07, 16 February 2023 diff hist −9 Curated Blog Roll No edit summary current
10 February 2023
- 20:4120:41, 10 February 2023 diff hist 0 Htu21d.py No edit summary current
6 February 2023
- 20:0920:09, 6 February 2023 diff hist 0 Gcp Notes →Netowrking
- 20:0920:09, 6 February 2023 diff hist +72 Gcp Notes →Netowrking
- 20:0820:08, 6 February 2023 diff hist +1 Gcp Notes →Netowrking
- 19:5719:57, 6 February 2023 diff hist +636 Gcp Notes →How Tos
26 January 2023
- 06:0706:07, 26 January 2023 diff hist +132 Chinese No edit summary current
- 03:5603:56, 26 January 2023 diff hist +25 Eve-online/Wormhole No edit summary current
- 03:5503:55, 26 January 2023 diff hist +33 N Eve-online/Wormhole IDs David moved page Eve-online/Wormhole IDs to Eve-online/Wormhole: 'cus current Tag: New redirect
- 03:5503:55, 26 January 2023 diff hist 0 m Eve-online/Wormhole David moved page Eve-online/Wormhole IDs to Eve-online/Wormhole: 'cus
- 03:5503:55, 26 January 2023 diff hist +2 Eve-online/Wormhole No edit summary Tag: Manual revert
- 03:5503:55, 26 January 2023 diff hist −2 Eve-online/Wormhole No edit summary Tag: Reverted
- 03:5403:54, 26 January 2023 diff hist 0 N File:Eve wormhole collapse.png No edit summary current
- 03:5403:54, 26 January 2023 diff hist +51 Eve-online/Wormhole No edit summary
4 January 2023
- 14:4214:42, 4 January 2023 diff hist +140 Gcp Notes →Gotchas
2 January 2023
- 20:0220:02, 2 January 2023 diff hist +433 N 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:5819:58, 2 January 2023 diff hist +17 Wsl No edit summary current
- 19:5619:56, 2 January 2023 diff hist +185 N 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"
31 December 2022
- 20:4320:43, 31 December 2022 diff hist +1,382 Shortbread recipe No edit summary current
- 20:4120:41, 31 December 2022 diff hist +1,079 N 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,..."