duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| # Copyright (c) 2014-2023 Florian Wolters | |
| # MIT License | |
| cmake_minimum_required(VERSION 3.26.3) | |
| project( | |
| "hello_boost_with_cmake" | |
| VERSION 2.0.0 | |
| LANGUAGES CXX) |
| CREATE TABLE IF NOT EXISTS `continents` ( | |
| `code` CHAR(2) NOT NULL COMMENT 'Continent code', | |
| `name` VARCHAR(255), | |
| PRIMARY KEY (`code`) | |
| ) ENGINE=InnoDB; | |
| INSERT INTO `continents` VALUES | |
| ('AF', 'Africa'), | |
| ('AS', 'Asia'), | |
| ('EU', 'Europe'), |
| # Workflow from https://github.com/necolas/dotfiles | |
| # Add the new submodule | |
| git submodule add git://example.com/remote/path/to/repo.git vim/bundle/one-submodule | |
| # Initialize the submodule | |
| git submodule init | |
| # Clone the submodule | |
| git submodule update | |
| # Stage the changes | |
| git add vim/bundle/one-submodule |
| #!/bin/sh -e | |
| #git-cache-meta -- simple file meta data caching and applying. | |
| #Simpler than etckeeper, metastore, setgitperms, etc. | |
| #from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
| #modified by n1k | |
| # - save all files metadata not only from other users | |
| # - save numeric uid and gid | |
| # 2012-03-05 - added filetime, andris9 |
| --- C:/cpplib/nana/source/gui/cursor.cpp.bkp Tue Dec 13 19:37:44 2011 | |
| +++ C:/cpplib/nana/source/gui/cursor.cpp Mon Dec 19 15:49:01 2011 | |
| @@ -60,8 +60,13 @@ | |
| { | |
| #if defined(NANA_WINDOWS) | |
| const nana::char_t *idstr = translate(id); | |
| +#ifdef _WIN64 | |
| + ::SetClassLongPtr(reinterpret_cast<HWND>(wd), GCLP_HCURSOR, | |
| + static_cast<unsigned long>(reinterpret_cast<size_t>(::LoadCursor(0, idstr)))); | |
| +#else |
| #!/bin/bash -e | |
| #### | |
| # Helper script to update the Last modified timestamp of files in a Git SCM | |
| # Projects working Copy | |
| # | |
| # When you clone a Git repository, it sets the timestamp of all the files to the | |
| # time when you cloned the repository. | |
| # | |
| # This becomes a problem when you want the cloned repository, which is part of a | |
| # Web application have a proper cacheing mechanism so that it can re-cache files |