Skip to content

Instantly share code, notes, and snippets.

View ashwinkey04's full-sized avatar

Ashwin Ramakrishnan ashwinkey04

View GitHub Profile
@officialcjunior
officialcjunior / frama-c.md
Last active October 9, 2021 17:00
A small how-to on installing frama-c, the source code analyzer on Unix systems.

How to install frama-c on *nix

I had wasted almost half of a day trying to properly install frama-c on my Linux. I was surprised to see no much documentation or troubleshooting online, so that's the whole point of me putting this note as a public gist.

Ubuntu

If you read the official documentation, you'll come across the names of these two packages:

frama-c and frama-c-base

If you are on Ubuntu 18.04 LTS, you can directly install it using apt install frama-c, and it will work. You can not do this on a 20.04 LTS Focal Fossa, because apparently, it's not included in the official packages.

@ShivangiSingh17
ShivangiSingh17 / GSoC 20@Mifos.md
Last active February 23, 2023 09:31
GSoC'20 - Mifos Mobile - Final Report
@yashk2000
yashk2000 / report.md
Last active September 12, 2023 07:08
Google Summer of Code 2020: Work Report
@iamsh4shank
iamsh4shank / GSoC20_work_report.md
Last active February 8, 2022 10:14
Google Summer of Code 2020 - Work Report

GSoC2020 work summary

Name: Shashank Priyadarshi

GitHub | LinkedIn | Email

Organisation: The Mifos Initiative

@daankauwenberg
daankauwenberg / App.js
Created February 25, 2020 12:04
A React cookie consent using hooks and context
import React from 'react';
import { CookieConsentProvider } from './CookieConsent'
import Page from './Page'
function App() {
return (
<CookieConsentProvider>
<div className="App">
<Page />
</div>
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream