diff --git a/random/Untitled-1.md b/docs/financial_docs/Untitled-1.md similarity index 100% rename from random/Untitled-1.md rename to docs/financial_docs/Untitled-1.md diff --git a/random/scratch(1).md b/docs/financial_docs/scratch(1).md similarity index 100% rename from random/scratch(1).md rename to docs/financial_docs/scratch(1).md diff --git a/random/scratch (2).md b/docs/projects/book_crafting/scratch (2).md similarity index 100% rename from random/scratch (2).md rename to docs/projects/book_crafting/scratch (2).md diff --git a/random/template.md b/docs/projects/book_crafting/template.md similarity index 100% rename from random/template.md rename to docs/projects/book_crafting/template.md diff --git a/random/wire.md b/docs/projects/wire.md similarity index 100% rename from random/wire.md rename to docs/projects/wire.md diff --git a/random/wplayout.md b/docs/tech_docs/wplayout.md similarity index 100% rename from random/wplayout.md rename to docs/tech_docs/wplayout.md diff --git a/random/wpb_summer.md b/docs/travel/wpb_summer.md similarity index 100% rename from random/wpb_summer.md rename to docs/travel/wpb_summer.md diff --git a/random/master_schedule.md b/personal/master_schedule.md similarity index 100% rename from random/master_schedule.md rename to personal/master_schedule.md diff --git a/random/noah_trouble.md b/personal/noah_trouble.md similarity index 100% rename from random/noah_trouble.md rename to personal/noah_trouble.md diff --git a/random/notes.md b/personal/notes.md similarity index 100% rename from random/notes.md rename to personal/notes.md diff --git a/random/scratch copy 4.md b/personal/random_account_info.md similarity index 61% rename from random/scratch copy 4.md rename to personal/random_account_info.md index 378f109..53de906 100644 --- a/random/scratch copy 4.md +++ b/personal/random_account_info.md @@ -1,3 +1,18 @@ +TravelID,StartDate,EndDate,Location,Accommodation,Transportation,Activities,People,Expenses,Notes +1,2023-07-01,2023-07-10,"New York, USA","Hilton Hotel","Plane","Central Park, Broadway","John Doe","$3000","Great trip, enjoyed a lot." +2,2023-07-15,2023-07-20,"Paris, France","Airbnb Apartment","Train","Eiffel Tower, Louvre Museum","Jane Doe","$2500","Loved the food, particularly the cheese." + +11/19/2023 - 11/29/2023 Newport Beach +10/22/2023 - 11/01/2023 Brechenridge + +tool0 - 192.168.1.193 +prox - 192.168.1.224 +server1 - 192.168.1.114 +tinypilot - 192.168.4.224 +download0 - 192.168.5.181 + +--- + RlEZF2qC4LWvKeYvJlyj ## Site @@ -24,4 +39,5 @@ Admin Url: https://www.crazystorm.xyz/wp-admin/ Could you provide a comprehensive outline on the topic of being a Shopify expert and the services they provide to their clients, organized from the most important to least important aspects? Please include key points, sub-points, and any essential details within each point. -Could you provide a comprehensive outline on the topic of being a WordPress expert and the services they provide to their clients, organized from the most important to least important aspects? Please include key points, sub-points, and any essential details within each point. \ No newline at end of file +Could you provide a comprehensive outline on the topic of being a WordPress expert and the services they provide to their clients, organized from the most important to least important aspects? Please include key points, sub-points, and any essential details within each point. +--- \ No newline at end of file diff --git a/random/scratch(5).md b/personal/scratch(5).md similarity index 100% rename from random/scratch(5).md rename to personal/scratch(5).md diff --git a/random/migratingFromV1.md b/random/migratingFromV1.md deleted file mode 100644 index dd00838..0000000 --- a/random/migratingFromV1.md +++ /dev/null @@ -1,86 +0,0 @@ -# socks - -## Migrating from v1 - -For the most part, migrating from v1 takes minimal effort as v2 still supports factory creation of proxy connections with callback support. - -### Notable breaking changes - -- In an options object, the proxy 'command' is now required and does not default to 'connect'. -- **In an options object, 'target' is now known as 'destination'.** -- Sockets are no longer paused after a SOCKS connection is made, so socket.resume() is no longer required. (Please be sure to attach data handlers immediately to the Socket to avoid losing data). -- In v2, only the 'connect' command is supported via the factory SocksClient.createConnection function. (BIND and ASSOCIATE must be used with a SocksClient instance via event handlers). -- In v2, the factory SocksClient.createConnection function callback is called with a single object rather than separate socket and info object. -- A SOCKS http/https agent is no longer bundled into the library. - -For informational purposes, here is the original getting started example from v1 converted to work with v2. - -### Before (v1) - -```javascript -var Socks = require('socks'); - -var options = { - proxy: { - ipaddress: "202.101.228.108", - port: 1080, - type: 5 - }, - target: { - host: "google.com", - port: 80 - }, - command: 'connect' -}; - -Socks.createConnection(options, function(err, socket, info) { - if (err) - console.log(err); - else { - socket.write("GET / HTTP/1.1\nHost: google.com\n\n"); - socket.on('data', function(data) { - console.log(data.length); - console.log(data); - }); - - // PLEASE NOTE: sockets need to be resumed before any data will come in or out as they are paused right before this callback is fired. - socket.resume(); - - // 569 - //