Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# Usage: | |
# $ mamp | |
# $ mamp (apache|vhosts|hosts|php|mysql|a|v|h|p|m) | |
# $ mamp (error|e) | |
# $ mamp (error|e) (clear|apache|php|mysql|a|p|m) | |
# e.g. open php.ini: $ mamp php | |
# $ mamp p | |
# e.g. open apache error log: $ mamp error apache | |
# $ mamp e a | |
# Uses $EDITOR by default. |
public class Program { | |
static void Main(string[] args) { | |
string s; | |
for (int i = 1; i < 100; i++) { | |
s = (i % 15 == 0) ? "FizzBuzz" :(i % 3 == 0) ? "Fizz" : (i % 5 == 0) ? "Buzz" : i.ToString(); | |
System.Console.WriteLine(s); //LOG | |
} | |
} | |
} |
/* Flatten das boostrap */ | |
.well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid { | |
-moz-box-shadow: none !important; | |
-webkit-box-shadow: none !important; | |
box-shadow: none !important; | |
-webkit-border-radius: 0px !important; | |
-moz-border-radius: 0px !important; | |
border-radius: 0px !important; | |
border-collapse: collapse !important; | |
background-image: none !important; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<rewrite> | |
<rules> | |
<rule name="Imported Rule 1" stopProcessing="true"> | |
<match url="^(.*)$" ignoreCase="false" /> | |
<conditions logicalGrouping="MatchAll"> | |
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> | |
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> |
#!/usr/bin/env python | |
import os | |
import yaml | |
import datetime | |
from collections import OrderedDict | |
__doc__ = 'A quick script for converting octopress posts (markdown source files) to pelican posts' | |
void Main() | |
{ | |
var printNum = true; | |
for (var i = 1; i <= 100; i++) | |
{ | |
if (i % 3 == 0) | |
{ | |
Console.Write("fizz"); | |
printNum = false; |