Skip to content

Instantly share code, notes, and snippets.

View syedsouban's full-sized avatar

Syed Souban syedsouban

  • Hyderabad
View GitHub Profile
@doctaphred
doctaphred / ntfs-filenames.txt
Last active May 9, 2024 13:27
Invalid characters for Windows filenames
Information from https://docs.microsoft.com/en-us/windows/win32/fileio/naming-a-file :
Use any character in the current code page for a name, including Unicode
characters and characters in the extended character set (128–255), except
for the following:
- The following reserved characters:
< (less than)
> (greater than)
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 3, 2024 01:01
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@gokulkrishh
gokulkrishh / media-query.css
Last active June 28, 2024 09:07
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@slightfoot
slightfoot / SpanReuseExampleActivity.java
Created December 29, 2014 16:09
Example of reusing spannables.
package com.example.test;
import java.util.ArrayList;
import java.util.EmptyStackException;
import java.util.HashMap;
import java.util.Random;
import java.util.Stack;
import android.content.Context;
import android.graphics.Typeface;