Some Description Some text
Click Me To Expand
#!/bin/zsh
``` | |
struct dirent | |
``` | |
``` | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <dirent.h> |
A Pen by Eugene Andruszczenko on CodePen.
#!/bin/zsh | |
export NC='\e[0m' # No Color | |
export WHITE='\e[1;37m' | |
export BLUE='\e[1;34m' | |
export GREEN='\e[0;32m' | |
export YELLOW='\e[1;33m' | |
export TODAY=`date +%A\ %B\ %Y\ %T` | |
export NOTIFIER=0 |
#!/bin/zsh | |
export NC='\e[0m' # No Color | |
export WHITE='\e[1;37m' | |
export BLUE='\e[1;34m' | |
export GREEN='\e[0;32m' | |
export YELLOW='\e[1;33m' | |
export TODAY=`date +%A\ %B\ %Y\ %T` | |
export NOTIFIER=0 |
function Utf8ArrayToStr(array) { | |
var out, i, len, c; | |
var char2, char3; | |
out = ""; | |
len = array.length; | |
i = 0; | |
while(i < len) { | |
c = array[i++]; | |
switch(c >> 4) |
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Colorsublime - Themes/dimmed.tmTheme", | |
"theme": "Material-Theme-Lighter.sublime-theme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_guide_options": |
var color_utils = (function(){ | |
function getLong(color) | |
{ | |
return color[0] << 16 | color[1] << 8 | color[2]; | |
} | |
function getRGB(color) | |
{ | |
if(color.indexOf("#") == -1) |
/* | |
** in your header, define a reference | |
*/ | |
- (void)switchViewController:(UIViewController*)view :(NSString*)segue; |