Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/python
from sys import argv
from os.path import basename
from ftplib import FTP, error_perm, error_reply
import configparser
import netrc
def _parse_config(filename):
config = configparser.ConfigParser({
'port': '0',
use std::sync::mpsc::{channel, Sender};
use std::sync::Mutex;
use std::thread;
#[derive(Debug)]
enum Message { A, B }
struct Request;
struct Response;
struct IronError;

Keybase proof

I hereby claim:

  • I am alextalker on github.
  • I am alextalker (https://keybase.io/alextalker) on keybase.
  • I have a public key whose fingerprint is 3B76 C91D B5DB 1F42 AAE3 BA13 6F05 5519 8EEC 55E0

To claim this, I am signing this object:

class GamesController < ApplicationController
Vertical = 'v'
Horizontal = 'h'
def new
@game = Game.new
@game.field = new_field
@player = auth
@game.vscore = 0 # default scores
@game.hscore = 0
@game.way = Vertical
public class Numbers{
public static void main(String[] args){
String[] numbers = {"один", "два", "три", "четыре", "пять", "шесть", "семь", "восемь", "девять"};
for(String arg: args){
for(String number: numbers){
System.out.print(arg+ " " + number + ",");
}
System.out.print("\n");
}
. $topsrcdir/browser/config/mozconfig
ac_add_options --prefix=/usr
ac_add_options --libdir=/usr/lib
ac_add_options --enable-official-branding
# System libraries
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
Link pekwm/pekwm
/usr/bin/ld: pekwm/PImageLoaderPng.o: undefined reference to symbol 'png_set_longjmp_fn@@PNG16_0'
/usr/lib/libpng16.so.16: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Leslie P. Polzer <polzer@stardawn.org>
# Contributor: RaxG
pkgname=ede
pkgver=2.1
pkgrel=1
pkgdesc="The lightweight Equinox Desktop Environment"
arch=('i686' 'x86_64')
Copyright (c) 2012 The Go Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
@AlexTalker
AlexTalker / main.cpp
Last active August 29, 2015 14:02 — forked from anonymous/main.cpp
int main()
{
ifstream in1("in1.txt");
vector<int> mas;
int m=0;
while(!in1.eof())
{
in1>>m;
mas.push_back(m);
}