Skip to content

Instantly share code, notes, and snippets.

View Fahrek's full-sized avatar

Andres G. Quina Fahrek

View GitHub Profile
@Fahrek
Fahrek / animated-portfolio-cards.markdown
Created October 15, 2017 12:20
Animated Portfolio Cards
@Fahrek
Fahrek / index.html
Created October 16, 2017 09:58
pWxQMw
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AngularJS Example</title>
<script>src='https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.min.js'</script>
</head>
<body>
@Fahrek
Fahrek / webpack.config.js
Created October 21, 2017 17:07 — forked from jerolan/webpack.config.js
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : null,
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"
@Fahrek
Fahrek / CH00 - MarkDown Challenge.md
Created May 17, 2018 21:58
CH00 - MarkDown Challenge

Status Code

Every web return status code that says whether it was successful or had an error. The most infamous code is 404.

Common codes

Code Description
200 OK
403 Forbbiden
@Fahrek
Fahrek / CH02 - three days JSON Response.md
Last active May 18, 2018 10:11
CH01 - Three Days JSON Response


Three Days Forecast Response

@Fahrek
Fahrek / CH01 - JSON Meeting Request.md
Last active May 18, 2018 10:27
CH01 - JSON Meeting Request


Meeting Request

import java.text.DecimalFormat;
import javax.swing.JOptionPane;
public class TuitionCost {
public static void main(String[] args) {
int costHours;
int student;
String input;
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DBNavigator.Project.DataEditorManager">
<record-view-column-sorting-type value="BY_INDEX" />
<value-preview-text-wrapping value="true" />
<value-preview-pinned value="false" />
</component>
<component name="DBNavigator.Project.DataExportManager">
<export-instructions>
<create-header value="true" />
@Fahrek
Fahrek / index.html
Created December 16, 2018 03:02
MouseEffectJS
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div class="content-fluid">
@Fahrek
Fahrek / countries.php
Created March 19, 2019 10:22 — forked from josephilipraja/countries.php
List of Countries with Country code & Telephone (Dial) Code as a PHP Array. Bonus: PHP function to list all Countries as HTML Select Tag Options with their 2 character Country code as values
<?php
$countryArray = array(
'AD'=>array('name'=>'ANDORRA','code'=>'376'),
'AE'=>array('name'=>'UNITED ARAB EMIRATES','code'=>'971'),
'AF'=>array('name'=>'AFGHANISTAN','code'=>'93'),
'AG'=>array('name'=>'ANTIGUA AND BARBUDA','code'=>'1268'),
'AI'=>array('name'=>'ANGUILLA','code'=>'1264'),
'AL'=>array('name'=>'ALBANIA','code'=>'355'),
'AM'=>array('name'=>'ARMENIA','code'=>'374'),
'AN'=>array('name'=>'NETHERLANDS ANTILLES','code'=>'599'),