I hereby claim:
- I am kimslawson on github.
- I am kimslawson (https://keybase.io/kimslawson) on keybase.
- I have a public key whose fingerprint is F24A 0B36 BBFC 94E4 BC5D 8ADF 0CB0 C09F BCDA E9AF
To claim this, I am signing this object:
| Yo, woke up on that mad lit vibe this morning—energy on overload and ready to flex my code like it’s straight fire. No sleep for the legends, I’m out here chasing that next-level drip. | |
| Deadass, my workflow is a whole mood. I’m grinding with that unapologetic hustle while others are busy scrolling memes. My keyboard clacks like it’s dropping beats, and every line is pure sauce. | |
| Real talk: my design is peak aesthetic—sleek, savage, and serving looks that are straight-up iconic. If you’re still rocking last-gen styles, you’re catching a vibe check that’s way above your pay grade. | |
| I’m not just coding; I’m architecting digital dreams. My CSS is on fleek, and my layouts are so fire they’d make even the dopest influencers double-tap IRL. This isn’t basic, this is next-level wizardry. | |
| No cap, every project is a masterpiece curated with zero tolerance for weak sauce. I’m blending pure artistry with hardcore grind—imagine a canvas where every pixel is a brushstroke of genius. | |
| I keep it 100, building apps that hit harde |
| #!/usr/bin/python | |
| # Downloads the current "Astronomy Picture of the Day" from nasa.gov and sets as wallpaper | |
| # | |
| # Installation steps: | |
| # - store this file somewhere and take note of the path | |
| # - change WALLPAPER_DIR to some folder in your home directory | |
| # and create the folder | |
| # - make it executable: | |
| # chmod a+x /path/to/change_wallpaper | |
| # - follow instructions given in the .plist file to make it run daily |
| { | |
| "global": { | |
| "check_for_updates_on_startup": true, | |
| "show_in_menu_bar": true, | |
| "show_profile_name_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { |
I hereby claim:
To claim this, I am signing this object:
Revised: November 25, 2013
Between us (Kernel Panic Consulting) and you (Company Name)
We’ll always do our best to fulfill your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We have no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.
| /******************** | |
| SEARCH BAR | |
| ********************/ | |
| div#searchBar { | |
| right: 411px; | |
| position: absolute; | |
| background-color: transparent; | |
| top: 21px; | |
| height: 22px; | |
| border: 1px solid transparent; |
| def find_acrostic(acrostic, wordlist): | |
| """ | |
| Constrain choice of words to those beginning with the letters of the given word (acrostic) | |
| """ | |
| """ | |
| # slower but more elegant. "pythonic" | |
| while 1: | |
| words = " ".join(rng().sample(wordlist, n_words)) | |
| if acrostic.lower() == "".join(item[0] for item in words.split()).lower(): |