This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright © 2011 Rohan Garg <[email protected]> | |
| This program is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU General Public License as | |
| published by the Free Software Foundation; either version 2 of | |
| the License or (at your option) version 3 or any later version | |
| accepted by the membership of KDE e.V. (or its successor approved | |
| by the membership of KDE e.V.), which shall act as a proxy | |
| defined in Section 14 of version 3 of the license. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright © 2011 Rohan Garg <[email protected]> | |
| This program is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU General Public License as | |
| published by the Free Software Foundation; either version 2 of | |
| the License or (at your option) version 3 or any later version | |
| accepted by the membership of KDE e.V. (or its successor approved | |
| by the membership of KDE e.V.), which shall act as a proxy | |
| defined in Section 14 of version 3 of the license. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fatal: 'conversion' value 'BLOB_AUTO' is invalid at line 986 col 10 | |
| Fatal error 20010, no valid configuration could be read from XML file | |
| [ERROR] internal error, invalid XML configuration (without datastores): | |
| <?xml version="1.0"?> | |
| <!-- SYNTHESIS SYNCML CLIENT Version 3.2 Configuration file --> | |
| <sysync_config version="1.0"> | |
| <configvar name="logpath" value="$(defout_path)"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \makeatletter | |
| \newcommand\ackname{Acknowledgements} | |
| \if@titlepage | |
| \newenvironment{acknowledgements}{% | |
| \titlepage | |
| \null\vfil | |
| \@beginparpenalty\@lowpenalty | |
| \begin{center}% | |
| \bfseries \ackname | |
| \@endparpenalty\@M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%%%%% | |
| % Rohan Garg - curriculum vitae | |
| % Edited using kile | |
| % Uses LaTeX and moderncv | |
| %%%%%% | |
| \documentclass[11pt,a4paper]{moderncv} | |
| % \usepackage{helvet} | |
| % moderncv themes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************** | |
| * If god was a programmer and was using the Qt toolkit, * | |
| * here's how he would create the world * | |
| ********************************************************/ | |
| #include <QApplication> | |
| #include "mycreation.h" | |
| int main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * This file is part of libqcalparser | |
| * | |
| * Copyright (C) Rohan Garg <[email protected]> | |
| * | |
| * This library is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU Lesser General Public | |
| * License as published by the Free Software Foundation; either | |
| * version 2.1 of the License, or (at your option) any later version. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%%%%% | |
| % Rohan Garg - curriculum vitae | |
| % Edited using kile | |
| % Uses LaTeX and moderncv | |
| %%%%%% | |
| \documentclass[11pt,a4paper]{moderncv} | |
| \usepackage{helvet} | |
| % moderncv themes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %%%%%% | |
| % Rohan Garg - curriculum vitae | |
| % Edited using kile | |
| % Uses LaTeX and moderncv | |
| %%%%%% | |
| \documentclass[11pt,a4paper]{moderncv} | |
| \usepackage{helvet} | |
| % moderncv themes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void discovery_free_item (gpointer data, gpointer user_data) | |
| { | |
| CandidateDiscovery *cand = data; | |
| g_assert (user_data == NULL); | |
| g_free (cand->msn_turn_username); | |
| g_free (cand->msn_turn_password); | |
| g_slice_free (CandidateDiscovery, cand); | |
| } | |
| /* |