Skip to content

Instantly share code, notes, and snippets.

View thecodingcod's full-sized avatar
🏠
Working from home

Mohamed Halawa thecodingcod

🏠
Working from home
View GitHub Profile
Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
@jimmywarting
jimmywarting / readme.md
Last active July 4, 2024 11:58
Cors proxies
Exposed headers
Service SSL status Response Type Allowed methods Allowed headers
@glennblock
glennblock / scriptcs-vscode-debugging.md
Last active January 19, 2021 17:51
Debugging with scriptcs in VS Code

scripts debugging in VS Code!

Pre-requisites

  1. Install latest mono here (don't use brew) http://www.mono-project.com/docs/getting-started/install/mac/
  2. Clone the dev branch of scriptcs or download from here
  3. Run brew_build.sh in the scriptcs folder this will build the scriptcs binaries into scriptcs\artifacts
  4. Install Visual Studio Code.
  5. Open VS code and install the Mono Debug extension.

Debugging

@MWins
MWins / FEF-active.md
Created January 24, 2017 06:10
Front End Frameworks - Active

Front-end Frameworks v2.6

1:07 AM 1/24/2017

A collection of active front-end frameworks for web development.

You can Compare all front-end frameworks here: http://usablica.github.com/front-end-frameworks/compare.html All credit goes to usablica for the original list. I have removed frameworks which have gone inactive. In some cases the framework still is available but has not received updates in years.

@benhowes
benhowes / info.md
Last active March 22, 2021 12:49
Simple JWT decoder

Gets a JS object which contains the decoded body of the JWT. For now I am pasting this in to postman tests when I need to get JWT decoding

#Important Does not validate the token at all!

@andreicristianpetcu
andreicristianpetcu / ansible-summary.md
Created May 30, 2016 19:25
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@richardtorres314
richardtorres314 / flexbox.scss
Last active June 30, 2024 10:10
CSS Flexbox - Sass Mixins
// --------------------------------------------------
// Flexbox SASS mixins
// The spec: http://www.w3.org/TR/css3-flexbox
// --------------------------------------------------
// Flexbox display
@mixin flexbox {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
@vasanthk
vasanthk / System Design.md
Last active July 8, 2024 14:43
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@seripap
seripap / months.js
Created October 8, 2015 21:32 — forked from bgadrian/months.js
JavaScript JS month names arrays
var month= ["January","February","March","April","May","June","July",
"August","September","October","November","December"];
var month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul","Aug", "Sep", "Oct", "Nov", "Dec"];
//used with date.getMonth()
@pocari
pocari / wpf_rounded_corner_button_sample.xaml
Last active May 14, 2022 23:42
WPF Rounded Corner Button
<Style x:Key="RoundedButton" TargetType="{x:Type Button}">
<Style.Setters>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="button" CornerRadius="5" BorderBrush="Black" BorderThickness="1" Background="Azure">
<TextBlock Text="{TemplateBinding Button.Content}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">