Right-click your bookmarks bar and choose Add Page (Chrome) or New Bookmarklet (Firefox).
In Name, put this:
Pin It
In URL, put this:
# .github/workflows/code-check.yml | |
name: Code Check | |
on: [push] | |
jobs: | |
code-check: | |
name: Code Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 |
'use strict'; | |
/** | |
* A place to debug an object from an isml file | |
* Useful to pass in pdict to see what it contains | |
* | |
* @param debugObject Object you'd like to see in the debugger | |
* @param debugLabel Optional label for the debugObject | |
* | |
**/ |
We write resumes to convince employers to hire us. What if we created a list for what we were looking for in our next employer and their environment?
This allows both sides to cut through the game of telephone, establish what you are looking for in your role, and define the type of organization you're looking to work for. Fork, modify and add this checklist to your portfolio site to quicken the pace of getting through companies that don't match your criteria.
--
<HTML> | |
<HEAD> | |
</HEAD> | |
<BODY> | |
<% if request.querystring("post") <> "y" then %> | |
<form name="myForm" action="mailer.asp?post=y" method="post"> | |
<table> | |
<tr> | |
<td> |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
<% | |
'on error resume next | |
'****************************************************************************** | |
' db_subs.asp ' | |
' ' | |
'****************************************************************************** | |
dim dbSyc, DBcmd | |
'***************************************************************************** |
<?php | |
// Set these dependant on your BB credentials | |
$username = 'username'; | |
$password = 'password'; | |
// Grab the data from BB's POST service and decode | |
$json = stripslashes($_POST['payload']); | |
$data = json_decode($json); |