- Scrape the contents of this website: https://www.levi9.com/event/strategic-data-transformation-from-bi-reports-to-ai-powered-decision-making/ and tell me who were the authors. Use whatever programming language you think is necessary.
- Generate a game design doc for the game lunar lander but with a lunar module shaped like the letter 9.
- Generate a space invaders game using p5.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Disable compatibility with vi which can cause unexpected issues. | |
set nocompatible | |
" Enable type file detection. Vim will be able to try to detect the type of file in use. | |
filetype on | |
" Enable plugins and load plugin for the detected file type. | |
filetype plugin on | |
" Load an indent file for the detected file type. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is Git's per-user configuration file. | |
[user] | |
# Please adapt and uncomment the following lines: | |
name = <name> | |
email = <email> | |
[core] | |
editor = vim | |
[color "branch"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
Most developers I know prefer to use Visual Studio Code, but some preffer Jetbrains Webstorm, which is also a good option.
For VSCode, some useful extensions are:
- auto close tag
formulahendry.auto-close-tag
- auto import - ES6 & TS
moppitz.vscode-extension-auto-import
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var Indicator = function(){ | |
var self = this, bar, latestKnownScrollY, ticking; | |
this.init = function init() { | |
latestKnownScrollY = window.scrollY; | |
ticking = false; | |
self.createIndicator(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\monokai] | |
"Colour21"="255,255,255" | |
"Colour20"="245,222,179" | |
"Colour19"="200,240,240" | |
"Colour18"="0,217,217" | |
"Colour17"="179,146,239" | |
"Colour16"="174,129,255" | |
"Colour15"="122,204,218" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Zoresvit (c) 2012 <[email protected]> | |
# Solarized colorscheme for pidgin. This file seats in | |
# ~/.purple/gtkrc-2.0 | |
style "pidgin-solarized" { | |
font_name = "Sans 11" | |
base[NORMAL] = "#002B36" | |
text[NORMAL] = "#839496" | |
# Change the color of hyperlinks. | |
GtkIMHtml::hyperlink-color = "#268BD2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Which | |
Grep="`/usr/bin/which grep`" | |
Awk="`/usr/bin/which awk`" | |
Cat="`/usr/bin/which cat`" | |
Sed="`/usr/bin/which sed`" | |
Curl="`/usr/bin/which curl`" | |
# Scrape Nagios |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var number = 0, | |
increment = 0.00000000000001, // smallest value that makes a difference | |
result, | |
matches, | |
match; | |
for (; number < 100; number += increment) { | |
result = number.toString(33); | |
matches = result.match(/[a-z]+/g) || []; | |
match = matches.indexOf('wtf'); |
NewerOlder