Skip to content

Instantly share code, notes, and snippets.

View vamsiikrishna's full-sized avatar
🎯

Vamsi Krishna B vamsiikrishna

🎯
  • Bengaluru - India
View GitHub Profile
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for symfony/icu 1.2.x-dev -> satisfiable by symfony/icu 1.2.x-dev.
- symfony/icu 1.2.x-dev requires lib-icu >=4.4 -> the requested linked library icu has the wrong version installed or is missing from your system, make sure to have the extension providing it.
Problem 2
- symfony/icu 1.2.x-dev requires lib-icu >=4.4 -> the requested linked library icu has the wrong version installed or is missing from your system, make sure to have the extension providing it.
- symfony/symfony v2.4.2 requires symfony/icu ~1.0 -> satisfiable by symfony/icu 1.2.x-dev.
- Installation request for symfony/symfony v2.4.2 -> satisfiable by symfony/symfony v2.4.2.
### Keybase proof
I hereby claim:
* I am vamsiikrishna on github.
* I am vamsi (https://keybase.io/vamsi) on keybase.
* I have a public key whose fingerprint is 959F DD2F ED3E 02DF F052 C407 F909 6810 9585 8817
To claim this, I am signing this object:
:] :) :D :/ >[ :p :o >_>
It also supports the word syntax:
:happy: :aw: :cool: :kiss: :meh: :mmf: :heart:';
@vamsiikrishna
vamsiikrishna / gist:849112
Created March 1, 2011 13:21
codeigniter jQuery-File-Upload Controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Upload extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->database();
@vamsiikrishna
vamsiikrishna / gist:849114
Created March 1, 2011 13:22
CodeIgniter jQuery-File-Upload upload form
<html>
<head>
<title>Upload Form</title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" id="theme">
<link rel="stylesheet" href="http://dl.dropbox.com/u/8626323/dnd/jquery.fileupload-ui.css">
<style>
body {
font-family: Verdana, Arial, sans-serif;
font-size: 13px;
margin: 0;
@vamsiikrishna
vamsiikrishna / gist:849115
Created March 1, 2011 13:23
CodeIgniter jQuery-File-Upload succes view
<?php echo '{"name":"'.$upload_data['file_name'].'","type":"'.$upload_data['file_type'].'","size":"'.$upload_data['file_size'].'"}';?>
@vamsiikrishna
vamsiikrishna / API.md
Created October 6, 2015 12:15 — forked from iros/API.md
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@vamsiikrishna
vamsiikrishna / nginx.conf
Created October 7, 2015 11:04 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@vamsiikrishna
vamsiikrishna / gist:636100e436db5e78774e
Created December 16, 2015 06:20 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>