Skip to content

Instantly share code, notes, and snippets.

View bartsmykla's full-sized avatar

Bart Smykla bartsmykla

  • Kong Inc.
View GitHub Profile
@bartsmykla
bartsmykla / claude-agents-guide.md
Created October 31, 2025 10:13
Claude Agents: Comprehensive Guide - Understanding and Creating Custom Agents in Claude Code
bartsmykla
bart
martindekov
alex
use std::time;
pub fn init() {
println!();
println!("------------------------");
println!();
let my_machine = Machine {};
}
fn read_file(path: &str) -> Result<String, Error> {
let mut f = match File::open(path) {
Ok(file) => file,
Err(e) => {
return Err(e)
}
};
let mut content = String::new();
class UserPanelView extends React.Component {
constructor(props) {
super(props);
this.state = {
rodzaj_konta : 0,
typ_abonamentu : "",
okres : "",
data_konca : "",
max_ilosc_dostepow : "",
wykorzystano_ilosc_dostepow : "",
const helpers = require('../helpers');
const { root } = helpers;
module.exports = {
resolve: {
extensions: ['.jsx', '.js'],
modules: [root('src'), 'node_modules'],
alias: {
react: root('./node_modules/react'),
const webpackConfig = require('./config/webpack/karma.webpack');
require('phantomjs-prebuilt').path = './node_modules/.bin/phantomjs';
module.exports = function(config) {
config.set({
devtool: 'inline-source-map',
basePath: '',
frameworks: ['mocha', 'chai-as-promised', 'chai', 'sinon'],
files: ['config/webpack/specs.webpack.js', 'node_modules/babel-polyfill/dist/polyfill.js'],