Skip to content

Instantly share code, notes, and snippets.

View csharpforevermore's full-sized avatar
🏠
Working from home

Randle csharpforevermore

🏠
Working from home
View GitHub Profile
@csharpforevermore
csharpforevermore / bookmarks.html
Last active June 1, 2018 01:40
Get all URLs from W3Schools sidebar menu (and formatted into the XML style required for Import Bookmarks in Chrome's Bookmark Manager!). Copies XML to clipboard ready for pasting into text editor viewing exported Chrome bookmarks.
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<TITLE>Bookmarks</TITLE>
<H1>Bookmarks</H1>
<DL><p>
<DT><H3 ADD_DATE="1527292565" LAST_MODIFIED="1527802552" PERSONAL_TOOLBAR_FOLDER="true"></H3>
<DL><p>
<!-- PASTE CLIPBOARD HERE! -->
</DL><p>
</DL><p>
How to add all the JS libraries to your web page - https://developers.google.com/speed/libraries/
@csharpforevermore
csharpforevermore / jQuery-version-check.js
Created June 1, 2018 00:39
Verify that jQuery is loaded and display the version number
if (typeof jQuery != 'undefined') {
// jQuery is loaded => print the version
alert(jQuery.fn.jquery);
}
@csharpforevermore
csharpforevermore / 1-Q&A.md
Last active January 29, 2020 18:32
Current and updated availability - February 2020

Chris Randle, Senior Developer / Team Leader / Technical Architect

Question: Actively looking for roles? # NO (on contract until March)

  • I have basic security clearance and financial clearance (through Experian 2019).

  • I am passively searching and happy to consider any contract roles. I am not interested in permanent employment. Contracts have more flexibility based on the fact that most contracts expect an on-site presence and this necessitates obtaining suitably located accommodation, meaning that the closer contracts get to London, the more they approach the £500 a day mark.

  • I aim for my rate to be around the £325 a day (+/- £25) for local contract based in the North of the UK. See above for London and surrounding area.

@csharpforevermore
csharpforevermore / MinecraftTasksV1.7.2.md
Last active May 22, 2018 22:23
My Minecraft tasks - for v1.7.2 and above

Minecraft Tasks

List 1

## V1.7.2+ [Source](http://minecraftsurvivalfun.blogspot.co.uk/)

  • Collect a few pieces of wood.
  • Make a crafting table, a wooden pickaxe, and some sticks.
  • Dig down to cobblestone and collect enough to make a complete set of stone tools, 2 stone swords and a furnace. (Could also be the start of your main mine)
  • Look for easy food sources. (Animals, mushroom soup, village farms, fishing)

Frontend Development

Looking for something else? Take a look at the awesome collection of other awesome lists.

@csharpforevermore
csharpforevermore / voicemail-redirect.md
Created May 19, 2018 12:36
Voicemail redirect on UK networks. Works on US ones too including CDMA networks

Will always work even on CDMA networks in the states.

  • Firstly, erase any active diverts. Dial ##004# and press OK then dismiss on the message.

  • Dial ##002# and press OK or dismiss.

  • Then dial 61*0795322222230#

You'll get a message about it being successful. Then dial *#61# and you can see your voicemail divert status.

@csharpforevermore
csharpforevermore / learning-plan2018.md
Last active May 19, 2018 17:08
Things I have learned and plan to learn in 2018 and beyond

Learn checklist

A checklist and overview of work studied in 2018.

Example: Resource grouping (Tutsplus, Pluralsight, etc)

Sub-grouping

Example subject title
  • Incomplete example course
  • Completed example course
@csharpforevermore
csharpforevermore / RogueMovementDemo.cs
Created December 5, 2017 16:21
Rogue-Like Movement
using System;
namespace ConsoleCoordiates
{
class Program
{
static void Main(string[] args)
{
int x = 20;
int y = 20;
@csharpforevermore
csharpforevermore / Search All Tables for String.sql
Created December 3, 2017 22:33
Search All Tables for String.sql
USE DATABASE_NAME
DECLARE @SearchStr nvarchar(100) = 'SEARCH_TEXT'
DECLARE @Results TABLE (ColumnName nvarchar(370), ColumnValue nvarchar(3630))
SET NOCOUNT ON
DECLARE @TableName nvarchar(256), @ColumnName nvarchar(128), @SearchStr2 nvarchar(110)
SET @TableName = ''
SET @SearchStr2 = QUOTENAME('%' + @SearchStr + '%','''')